Datasets:
Initial commit
Browse files- disc_eval_mt.py +156 -0
- examples/anaphora.context.en +200 -0
- examples/anaphora.context.fr +200 -0
- examples/anaphora.contrast.fr +200 -0
- examples/anaphora.current.en +200 -0
- examples/anaphora.current.fr +200 -0
- examples/anaphora.type +200 -0
- examples/lexical-choice.context.en +200 -0
- examples/lexical-choice.context.fr +200 -0
- examples/lexical-choice.contrast.fr +200 -0
- examples/lexical-choice.current.en +200 -0
- examples/lexical-choice.current.fr +200 -0
- examples/lexical-choice.type +200 -0
disc_eval_mt.py
ADDED
@@ -0,0 +1,156 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright 2023 The Inseq Team. All rights reserved.
|
2 |
+
#
|
3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4 |
+
# you may not use this file except in compliance with the License.
|
5 |
+
# You may obtain a copy of the License at
|
6 |
+
#
|
7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8 |
+
#
|
9 |
+
# Unless required by applicable law or agreed to in writing, software
|
10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
+
# See the License for the specific language governing permissions and
|
13 |
+
# limitations under the License.
|
14 |
+
"""DiscEvalMT: Contrastive test sets for the evaluation of discourse in machine translation (v2)"""
|
15 |
+
|
16 |
+
from typing import Dict
|
17 |
+
|
18 |
+
import datasets
|
19 |
+
from datasets.utils.download_manager import DownloadManager
|
20 |
+
|
21 |
+
_CITATION = """\
|
22 |
+
@inproceedings{bawden-etal-2018-evaluating,
|
23 |
+
title = "Evaluating Discourse Phenomena in Neural Machine Translation",
|
24 |
+
author = "Bawden, Rachel and Sennrich, Rico and Birch, Alexandra and Haddow, Barry",
|
25 |
+
booktitle = {{Proceedings of the 2018 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers)}},
|
26 |
+
month = jun,
|
27 |
+
year = "2018",
|
28 |
+
address = "New Orleans, Louisiana",
|
29 |
+
publisher = "Association for Computational Linguistics",
|
30 |
+
url = "https://www.aclweb.org/anthology/N18-1118",
|
31 |
+
doi = "10.18653/v1/N18-1118",
|
32 |
+
pages = "1304--1313"
|
33 |
+
}
|
34 |
+
"""
|
35 |
+
|
36 |
+
_DESCRIPTION = """\
|
37 |
+
The test sets comprise hand-crafted examples that are inspired by similar examples in the parallel corpus OpenSubtitles2016 (in terms of vocabulary usage, style and syntactic formulation)
|
38 |
+
for the evaluation of discourse in English-to-French machine translation.
|
39 |
+
"""
|
40 |
+
|
41 |
+
_URL = "https://huggingface.co/datasets/inseq/disc_eval_mt/raw/main/examples"
|
42 |
+
|
43 |
+
_HOMEPAGE = "https://github.com/rbawden/discourse-mt-test-sets"
|
44 |
+
|
45 |
+
_LICENSE = "CC-BY-SA-4.0"
|
46 |
+
|
47 |
+
_CONFIGS = ["anaphora", "lexical-choice"]
|
48 |
+
|
49 |
+
|
50 |
+
class DiscEvalMTConfig(datasets.BuilderConfig):
|
51 |
+
def __init__(self, source_language: str, target_language: str, **kwargs):
|
52 |
+
"""BuilderConfig for DiscEvalMT.
|
53 |
+
Args:
|
54 |
+
source_language: `str`, source language for translation.
|
55 |
+
target_language: `str`, translation language.
|
56 |
+
**kwargs: keyword arguments forwarded to super.
|
57 |
+
"""
|
58 |
+
super().__init__(**kwargs)
|
59 |
+
self.source_language = source_language
|
60 |
+
self.target_language = target_language
|
61 |
+
|
62 |
+
|
63 |
+
class DiscEvalMT(datasets.GeneratorBasedBuilder):
|
64 |
+
VERSION = datasets.Version("1.0.0")
|
65 |
+
|
66 |
+
BUILDER_CONFIGS = [
|
67 |
+
DiscEvalMTConfig(
|
68 |
+
name=cfg,
|
69 |
+
source_language="en",
|
70 |
+
target_language="fr",
|
71 |
+
)
|
72 |
+
for cfg in _CONFIGS
|
73 |
+
]
|
74 |
+
|
75 |
+
DEFAULT_CONFIG_NAME = "anaphora"
|
76 |
+
|
77 |
+
def _info(self):
|
78 |
+
features = datasets.Features(
|
79 |
+
{
|
80 |
+
"id": datasets.Value("int32"),
|
81 |
+
"context_en": datasets.Value("string"),
|
82 |
+
"en": datasets.Value("string"),
|
83 |
+
"context_fr": datasets.Value("string"),
|
84 |
+
"fr": datasets.Value("string"),
|
85 |
+
"contrast_fr": datasets.Value("string"),
|
86 |
+
"context_en_with_tags": datasets.Value("string"),
|
87 |
+
"en_with_tags": datasets.Value("string"),
|
88 |
+
"context_fr_with_tags": datasets.Value("string"),
|
89 |
+
"fr_with_tags": datasets.Value("string"),
|
90 |
+
"contrast_fr_with_tags": datasets.Value("string"),
|
91 |
+
"type": datasets.Value("string"),
|
92 |
+
}
|
93 |
+
)
|
94 |
+
return datasets.DatasetInfo(
|
95 |
+
description=_DESCRIPTION,
|
96 |
+
features=features,
|
97 |
+
homepage=_HOMEPAGE,
|
98 |
+
license=_LICENSE,
|
99 |
+
citation=_CITATION,
|
100 |
+
)
|
101 |
+
|
102 |
+
@staticmethod
|
103 |
+
def clean_string(txt: str):
|
104 |
+
return txt.replace("<p>", "").replace("</p>", "").replace("<hon>", "").replace("<hoff>", "")
|
105 |
+
|
106 |
+
def _split_generators(self, dl_manager: DownloadManager):
|
107 |
+
"""Returns SplitGenerators."""
|
108 |
+
filepaths = {}
|
109 |
+
for lang in ["en", "fr"]:
|
110 |
+
for ftype in ["context", "current"]:
|
111 |
+
fname = f"{self.config.name}.{ftype}.{lang}"
|
112 |
+
filepaths[f"{ftype}_{lang}"] = dl_manager.download_and_extract(f"{_URL}/{fname}")
|
113 |
+
filepaths["contrast_fr"] = dl_manager.download_and_extract(f"{_URL}/{self.config.name}.contrast.fr")
|
114 |
+
filepaths["type"] = dl_manager.download_and_extract(f"{_URL}/{self.config.name}.type")
|
115 |
+
return [
|
116 |
+
datasets.SplitGenerator(
|
117 |
+
name=datasets.Split.TEST,
|
118 |
+
gen_kwargs={
|
119 |
+
"filepaths": filepaths,
|
120 |
+
"cfg_name": self.config.name,
|
121 |
+
},
|
122 |
+
)
|
123 |
+
]
|
124 |
+
|
125 |
+
def _generate_examples(self, filepaths: Dict[str, str], cfg_name: str):
|
126 |
+
"""Yields examples as (key, example) tuples."""
|
127 |
+
|
128 |
+
with open(filepaths["current_en"]) as f:
|
129 |
+
current_en = f.read().splitlines()
|
130 |
+
with open(filepaths["current_fr"]) as f:
|
131 |
+
current_fr = f.read().splitlines()
|
132 |
+
with open(filepaths["context_en"]) as f:
|
133 |
+
context_en = f.read().splitlines()
|
134 |
+
with open(filepaths["context_fr"]) as f:
|
135 |
+
context_fr = f.read().splitlines()
|
136 |
+
with open(filepaths["contrast_fr"]) as f:
|
137 |
+
contrast_fr = f.read().splitlines()
|
138 |
+
with open(filepaths["type"]) as f:
|
139 |
+
alltyp = f.read().splitlines()
|
140 |
+
for i, (curr_en, curr_fr, ctx_en, ctx_fr, con_fr, typ) in enumerate(
|
141 |
+
zip(current_en, current_fr, context_en, context_fr, contrast_fr, alltyp)
|
142 |
+
):
|
143 |
+
yield i, {
|
144 |
+
"id": i,
|
145 |
+
"context_en": self.clean_string(ctx_en),
|
146 |
+
"en": self.clean_string(curr_en),
|
147 |
+
"context_fr": self.clean_string(ctx_fr),
|
148 |
+
"fr": self.clean_string(curr_fr),
|
149 |
+
"contrast_fr": self.clean_string(con_fr),
|
150 |
+
"context_en_with_tags": ctx_en,
|
151 |
+
"en_with_tags": curr_en,
|
152 |
+
"context_fr_with_tags": ctx_fr,
|
153 |
+
"fr_with_tags": curr_fr,
|
154 |
+
"contrast_fr_with_tags": con_fr,
|
155 |
+
"type": typ,
|
156 |
+
}
|
examples/anaphora.context.en
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The <hon>buildings<hoff> will be finished next week.
|
2 |
+
The <hon>buildings<hoff> will be finished next week.
|
3 |
+
The <hon>houses<hoff> will be finished next week.
|
4 |
+
The <hon>residences<hoff> will be finished next week.
|
5 |
+
The <hon>people<hoff> who did this are really despicable.
|
6 |
+
The <hon>people<hoff> who did this are really despicable.
|
7 |
+
The <hon>men<hoff> who did this are really despicable.
|
8 |
+
The <hon>women<hoff> who did this are really despicable.
|
9 |
+
Susan, you wouldn't believe such a <hon>story<hoff>, would you?
|
10 |
+
Susan, you wouldn't believe such a <hon>thing<hoff>, would you?
|
11 |
+
Susan, you wouldn't believe such a <hon>plot<hoff>, would you?
|
12 |
+
Susan, you wouldn't believe such a <hon>story<hoff>, would you?
|
13 |
+
So you see how bad the <hon>implications<hoff> are.
|
14 |
+
So you see how bad the <hon>effects<hoff> are.
|
15 |
+
So you see how bad the <hon>accusations<hoff> are.
|
16 |
+
So you see how bad the <hon>testimonies<hoff> are.
|
17 |
+
But how do you know the <hon>guy<hoff> isn't going to turn out like all the others ?
|
18 |
+
But how do you know the <hon>man<hoff> isn't going to turn out like all the others ?
|
19 |
+
But how do you know the <hon>woman<hoff> isn't going to turn out like all the others ?
|
20 |
+
But how do you know the <hon>girl<hoff> isn't going to turn out like all the others ?
|
21 |
+
Remember when I got caught stealing those <hon>sweets<hoff> as I was leaving the shop?
|
22 |
+
Remember when I got caught stealing those <hon>dragees<hoff> as I was leaving the shop?
|
23 |
+
Remember when I got caught stealing those <hon>cakes<hoff> as I was leaving the shop?
|
24 |
+
Remember when I got caught stealing those <hon>cups<hoff> as I was leaving the shop?
|
25 |
+
Oh, I hate <hon>flies<hoff>. Look, there's another one!
|
26 |
+
Oh, I hate <hon>midges<hoff>. Look, there's another one!
|
27 |
+
Oh, I hate <hon>butterflies<hoff>. Look, there's another one!
|
28 |
+
Oh, I hate <hon>spiders<hoff>. Look, there's another one!
|
29 |
+
You don't like my <hon>device<hoff>?
|
30 |
+
You don't like my <hon>camera<hoff>?
|
31 |
+
You don't like my <hon>hat<hoff>?
|
32 |
+
You don't like my <hon>parrot<hoff>?
|
33 |
+
How about a <hon>sandwich<hoff> ?
|
34 |
+
How about a <hon>baguette<hoff> ?
|
35 |
+
How about a <hon>cake<hoff> ?
|
36 |
+
How about a <hon>cookie<hoff> ?
|
37 |
+
They are <hon>trainers<hoff>, okay?
|
38 |
+
They are <hon>tennis shoes<hoff>, okay?
|
39 |
+
They are <hon>heels<hoff>, okay?
|
40 |
+
They are <hon>slippers<hoff>, okay?
|
41 |
+
He was complaining about the <hon>women<hoff>.
|
42 |
+
He was complaining about the <hon>women<hoff>.
|
43 |
+
He was complaining about the <hon>boys<hoff>.
|
44 |
+
He was complaining about the <hon>men<hoff>.
|
45 |
+
Those <hon>nails<hoff> are in very good condition.
|
46 |
+
Those <hon>nails<hoff> are in very good condition.
|
47 |
+
Those <hon>screws<hoff> are in very good condition.
|
48 |
+
Those <hon>flowers<hoff> are in very good condition.
|
49 |
+
We don't have a <hon>table<hoff>.
|
50 |
+
We don't have a <hon>desk<hoff>.
|
51 |
+
We don't have a <hon>board<hoff>.
|
52 |
+
We don't have a <hon>tablet<hoff>.
|
53 |
+
And do you believe that <hon>owls<hoff> should be protected too?
|
54 |
+
And do you believe that <hon>owls<hoff> should be protected too?
|
55 |
+
And do you believe that <hon>ducks<hoff> should be protected too?
|
56 |
+
And do you believe that <hon>deers<hoff> should be protected too?
|
57 |
+
Can you authenticate these <hon>letters<hoff>, please?
|
58 |
+
Can you authenticate these <hon>letters<hoff>, please?
|
59 |
+
Can you authenticate these <hon>signatures<hoff>, please?
|
60 |
+
Can you authenticate these <hon>documents<hoff>, please?
|
61 |
+
It was a delicious <hon>beer<hoff>.
|
62 |
+
It was a delicious <hon>ale<hoff>.
|
63 |
+
It was a delicious <hon>wine<hoff>.
|
64 |
+
It was a delicious <hon>alcool<hoff>.
|
65 |
+
Isn't it funny how stupid <hon>humans<hoff> are?
|
66 |
+
Isn't it funny how stupid <hon>people<hoff> are?
|
67 |
+
Isn't it funny how stupid <hon>chickens<hoff> are?
|
68 |
+
Isn't it funny how stupid <hon>people<hoff> are?
|
69 |
+
All those <hon>courses<hoff>...
|
70 |
+
All those <hon>lessons<hoff>...
|
71 |
+
All those <hon>sessions<hoff>...
|
72 |
+
All those <hon>teachings<hoff>...
|
73 |
+
My <hon>parents<hoff> send me cake every week.
|
74 |
+
My <hon>uncles<hoff> send me cake every week.
|
75 |
+
My <hon>aunts<hoff> send me cake every week.
|
76 |
+
My <hon>sisters<hoff> send me cake every week.
|
77 |
+
We can't let the <hon>press<hoff> know about the photos.
|
78 |
+
We can't let the <hon>journalists<hoff> know about the photos.
|
79 |
+
We can't let the <hon>women<hoff> know about the photos.
|
80 |
+
We can't let the <hon>authorities<hoff> know about the photos.
|
81 |
+
It's been a while since I last went to the <hon>river<hoff>.
|
82 |
+
It's been a while since I last went to the <hon>river<hoff>.
|
83 |
+
It's been a while since I last went to the <hon>pool<hoff>.
|
84 |
+
It's been a while since I last went to the <hon>cinema<hoff>.
|
85 |
+
I brought you your <hon>money<hoff>.
|
86 |
+
I brought you your <hon>salary<hoff>.
|
87 |
+
I brought you your <hon>money<hoff>.
|
88 |
+
I brought you your <hon>payment<hoff>.
|
89 |
+
So you took this from his <hon>bag<hoff>?
|
90 |
+
So you took this from his <hon>bag<hoff>?
|
91 |
+
So you took this from his <hon>luggage<hoff>?
|
92 |
+
So you took this from his <hon>suitcase<hoff>?
|
93 |
+
Which means that there is an <hon>solution<hoff>.
|
94 |
+
Which means that there is an <hon>answer<hoff>.
|
95 |
+
Which means that there is an <hon>tip<hoff>.
|
96 |
+
Which means that there is an <hon>trick<hoff>.
|
97 |
+
I think you should cover your <hon>head<hoff>.
|
98 |
+
I think you should cover your <hon>head<hoff>.
|
99 |
+
I think you should cover your <hon>face<hoff>.
|
100 |
+
I think you should cover your <hon>face<hoff>.
|
101 |
+
The <hon>ring<hoff> is in there?
|
102 |
+
The <hon>ring<hoff> is in there?
|
103 |
+
The <hon>pin<hoff> is in there?
|
104 |
+
The <hon>necklace<hoff> is in there?
|
105 |
+
You ruined my <hon>jacket<hoff>.
|
106 |
+
You ruined my <hon>coat<hoff>.
|
107 |
+
You ruined my <hon>sweater<hoff>.
|
108 |
+
You ruined my <hon>shirt<hoff>.
|
109 |
+
Here's your <hon>hat<hoff>
|
110 |
+
Here's your <hon>cap<hoff>
|
111 |
+
Here's your <hon>chef's hat<hoff>
|
112 |
+
Here's your <hon>toupee<hoff>
|
113 |
+
Who taught you how to carry a <hon>knife<hoff>?
|
114 |
+
Who taught you how to carry a <hon>blade<hoff>?
|
115 |
+
Who taught you how to carry a <hon>sword<hoff>?
|
116 |
+
Who taught you how to carry a <hon>gun<hoff>?
|
117 |
+
The <hon>bike<hoff>'s so ugly.
|
118 |
+
The <hon>motorbike<hoff>'s so ugly.
|
119 |
+
The <hon>car<hoff>'s so ugly.
|
120 |
+
The <hon>boat<hoff>'s so ugly.
|
121 |
+
I can't put these <hon>pants<hoff> on.
|
122 |
+
I can't put these <hon>slips<hoff> on.
|
123 |
+
I can't put this <hon>shirt<hoff> on.
|
124 |
+
I can't put this <hon>skirt<hoff> on.
|
125 |
+
She likes to paint the <hon>nurses<hoff>.
|
126 |
+
She likes to paint the <hon>nurses<hoff>.
|
127 |
+
She likes to paint the <hon>doctors<hoff>.
|
128 |
+
She likes to paint the <hon>nannies<hoff>.
|
129 |
+
There must be <hon>spirits<hoff> in your life
|
130 |
+
There must be <hon>ghosts<hoff> in your life
|
131 |
+
There must be <hon>witches<hoff> in your life
|
132 |
+
There must be <hon>visions<hoff> in your life
|
133 |
+
So I want a new <hon>drug<hoff>.
|
134 |
+
So I want a new <hon>drug<hoff>.
|
135 |
+
So I want a new <hon>sleeping pill<hoff>.
|
136 |
+
So I want a new <hon>pill<hoff>.
|
137 |
+
Why are you singing that <hon>song<hoff>?
|
138 |
+
Why are you singing that <hon>song<hoff>?
|
139 |
+
Why are you singing that <hon>melody<hoff>?
|
140 |
+
Why are you singing that <hon>tune<hoff>?
|
141 |
+
They're wonderful <hon>girls<hoff> you've got there.
|
142 |
+
They're wonderful <hon>kids<hoff> you've got there.
|
143 |
+
They're wonderful <hon>aunts<hoff> you've got there.
|
144 |
+
They're wonderful <hon>family<hoff> you've got there.
|
145 |
+
Just <hon>potatoes<hoff>?
|
146 |
+
Just <hon>potatoes<hoff>?
|
147 |
+
Just <hon>turnips<hoff>?
|
148 |
+
Just <hon>onions<hoff>?
|
149 |
+
Just <hon>chips<hoff>.
|
150 |
+
Just <hon>fries<hoff>.
|
151 |
+
Just <hon>saltines<hoff>.
|
152 |
+
Just <hon>calissons<hoff>.
|
153 |
+
Should I wash the <hon>plate<hoff>?
|
154 |
+
Should I wash the <hon>plate<hoff>?
|
155 |
+
Should I wash the <hon>bowl<hoff>?
|
156 |
+
Should I wash the <hon>tray<hoff>?
|
157 |
+
Did you create these little <hon>statues<hoff>?
|
158 |
+
Did you create these little <hon>statues<hoff>?
|
159 |
+
Did you create these <hon>paintings<hoff>?
|
160 |
+
Did you create these <hon>artworks<hoff>?
|
161 |
+
A patient gave me these <hon>trinkets<hoff>.
|
162 |
+
A patient gave me these <hon>trinkets<hoff>.
|
163 |
+
A patient gave me these <hon>charms<hoff>.
|
164 |
+
A patient gave me these <hon>decorations<hoff>.
|
165 |
+
A sort of <hon>mist<hoff>.
|
166 |
+
A sort of <hon>mist<hoff>.
|
167 |
+
A sort of <hon>cloud<hoff>.
|
168 |
+
A sort of <hon>fog<hoff>.
|
169 |
+
I made that <hon>book<hoff> for you ten years ago.
|
170 |
+
I made that <hon>book<hoff> for you ten years ago.
|
171 |
+
I made that <hon>card<hoff> for you ten years ago.
|
172 |
+
I made that <hon>collection<hoff> for you ten years ago.
|
173 |
+
That's the new <hon>bush<hoff> the neighbour's just planted.
|
174 |
+
That's the new <hon>bush<hoff> the neighbour's just planted.
|
175 |
+
That's the new <hon>plant<hoff> the neighbour's just planted.
|
176 |
+
That's the new <hon>herb<hoff> the neighbour's just planted.
|
177 |
+
I have learnt some news <hon>ways<hoff> of handling him.
|
178 |
+
I have learnt some news <hon>ways<hoff> of handling him.
|
179 |
+
I have learnt some news <hon>approaches<hoff> for handling him.
|
180 |
+
I have learnt some news <hon>tricks<hoff> for handling him.
|
181 |
+
The <hon>teachers<hoff> are the enemy
|
182 |
+
The <hon>teachers<hoff> are the enemy
|
183 |
+
The <hon>directors<hoff> are the enemy
|
184 |
+
The <hon>directors<hoff> are the enemy
|
185 |
+
Well, I was talking to the <hon>twins<hoff>...
|
186 |
+
Well, I was talking to the <hon>twins<hoff>...
|
187 |
+
Well, I was talking to the <hon>girls<hoff>...
|
188 |
+
Well, I was talking to the <hon>boys<hoff>...
|
189 |
+
I've broken my <hon>leg<hoff>.
|
190 |
+
I've broken my <hon>tibia<hoff>.
|
191 |
+
I've broken my <hon>paw<hoff>.
|
192 |
+
I've broken my <hon>arm<hoff>.
|
193 |
+
Several of these <hon>objects<hoff>...
|
194 |
+
Several of these <hon>things<hoff>...
|
195 |
+
Several of these <hon>subjects<hoff>...
|
196 |
+
Several of these <hon>pieces<hoff>...
|
197 |
+
I told you to avoid any <hon>problems<hoff>.
|
198 |
+
I told you to avoid any <hon>challenges<hoff>.
|
199 |
+
I told you to avoid any <hon>misadventures<hoff>.
|
200 |
+
I told you to avoid any <hon>issues<hoff>.
|
examples/anaphora.context.fr
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Les <hon>bâtiments<hoff> seront terminés la semaine prochaine.
|
2 |
+
Les <hon>immeubles<hoff> seront terminés la semaine prochaine.
|
3 |
+
Les <hon>maisons<hoff> seront terminées la semaine prochaine.
|
4 |
+
Les <hon>résidences<hoff> seront terminées la semaine prochaine.
|
5 |
+
Les <hon>individus<hoff> qui ont fait ça sont vraiment ignobles.
|
6 |
+
Les <hon>personnes<hoff> qui ont fait ça sont vraiment ignobles.
|
7 |
+
Les <hon>hommes<hoff> qui ont fait ça sont vraiment ignobles.
|
8 |
+
Les <hon>femmes<hoff> qui ont fait ça sont vraiment ignobles.
|
9 |
+
Susan, vous ne croiriez pas une <hon>histoire<hoff> pareille, si ?
|
10 |
+
Susan, tu ne croirais pas un <hon>truc<hoff> pareil, si ?
|
11 |
+
Susan, tu ne croirais pas une <hon>intrigue<hoff> pareille, si ?
|
12 |
+
Susan, tu ne croirais pas un <hon>récit<hoff> pareil, si ?
|
13 |
+
Donc tu vois à quel point les <hon>implications<hoff> sont mauvaises.
|
14 |
+
Donc vous voyez à quel point les <hon>effets<hoff> sont mauvais.
|
15 |
+
Donc vous voyez à quel point les <hon>accusations<hoff> sont mauvaises.
|
16 |
+
Donc vous voyez à quel point les <hon>témoignages<hoff> sont mauvais.
|
17 |
+
Mais comment tu sais que le <hon>mec<hoff> ne finira pas comme tous les autres ?
|
18 |
+
Mais comment tu sais que l'<hon>homme<hoff> ne finira pas comme tous les autres ?
|
19 |
+
Mais comment tu sais que la <hon>femme<hoff> ne finira pas comme toutes les autres ?
|
20 |
+
Mais comment tu sais que la <hon>fille<hoff> ne finira pas comme toutes les autres ?
|
21 |
+
Tu te souviens de quand on m'a attrapé en train de voler des <hon>bonbons<hoff> lorsque j'étais en train de quitter le magasin ?
|
22 |
+
Tu te souviens de quand on m'a attrapé en train de voler des <hon>dragées<hoff> lorsque j'étais en train de quitter le magasin ?
|
23 |
+
Tu te souviens de quand on m'a attrapé en train de voler des <hon>gâteaux<hoff> lorsque j'étais en train de quitter le magasin ?
|
24 |
+
Tu te souviens de quand on m'a attrapé en train de voler des <hon>tasses<hoff> lorsque j'étais en train de quitter le magasin ?
|
25 |
+
Ô je déteste les <hon>mouches<hoff>. Regarde, il y en a une autre !
|
26 |
+
Ô je déteste les <hon>moucherons<hoff>. Regarde, un autre !
|
27 |
+
Ô je déteste les <hon>papillons<hoff>. Regarde, un autre !
|
28 |
+
Ô je déteste les <hon>araignées<hoff>. Regarde, une autre !
|
29 |
+
Vous n'appréciez pas mon <hon>appareil<hoff> ?
|
30 |
+
Vous n'appréciez pas ma <hon>caméra<hoff> ?
|
31 |
+
Vous n'appréciez pas mon <hon>chapeau<hoff> ?
|
32 |
+
Vous n'appréciez pas ma <hon>perruche<hoff> ?
|
33 |
+
Que penses-tu d'un <hon>sandwich<hoff> ?
|
34 |
+
Que penses-tu d'une <hon>baguette<hoff> ?
|
35 |
+
Que penses-tu d'une <hon>galette<hoff> ?
|
36 |
+
Que penses-tu d'un <hon>biscuit<hoff> ?
|
37 |
+
Ce sont des <hon>baskets<hoff>, d'accord ?
|
38 |
+
Ce sont des <hon>tennis<hoff>, d'accord ?
|
39 |
+
Ce sont des <hon>talons<hoff>, d'accord ?
|
40 |
+
Ce sont des <hon>chaussons<hoff>, d'accord ?
|
41 |
+
Il se plaignait des <hon>femmes<hoff>.
|
42 |
+
Il se plaignait des <hon>dames<hoff>.
|
43 |
+
Il se plaignait des <hon>jeunes<hoff>.
|
44 |
+
Il se plaignait des <hon>hommes<hoff>.
|
45 |
+
Ces <hon>ongles<hoff> sont en très bon état.
|
46 |
+
Ces <hon>clous<hoff> sont en très bon état.
|
47 |
+
Ces <hon>vis<hoff> sont en très bon état.
|
48 |
+
Ces <hon>fleurs<hoff> sont en très bon état.
|
49 |
+
Nous n'avons pas de <hon>table<hoff>.
|
50 |
+
Nous n'avons pas de <hon>bureau<hoff>.
|
51 |
+
Nous n'avons pas de <hon>tableau<hoff>.
|
52 |
+
Nous n'avons pas de <hon>tablette<hoff>.
|
53 |
+
Et est-ce que tu crois que les <hon>hibous<hoff> devraient être protégés aussi ?
|
54 |
+
Et est-ce que tu crois que les <hon>chouettes<hoff> devraient être protégées aussi ?
|
55 |
+
Et est-ce que tu crois que les <hon>canards<hoff> devraient être protégés aussi ?
|
56 |
+
Et est-ce que tu crois que les <hon>biches<hoff> devraient être protégées aussi ?
|
57 |
+
Pourriez-vous authentifier ces <hon>lettres<hoff>, s'il vous plaît ?
|
58 |
+
Pourriez-vous authentifier ces <hon>courriers<hoff>, s'il vous plaît ?
|
59 |
+
Pourriez-vous authentifier ces <hon>signatures<hoff>, s'il vous plaît ?
|
60 |
+
Pourriez-vous authentifier ces <hon>documents<hoff>, s'il vous plaît ?
|
61 |
+
C'était une <hon>bière<hoff> délicieuse.
|
62 |
+
C'était une <hon>ale<hoff> délicieuse.
|
63 |
+
C'était un <hon>vin<hoff> délicieux.
|
64 |
+
C'était un <hon>alcool<hoff> délicieux.
|
65 |
+
C'est drôle à quel point les <hon>humains<hoff> sont stupides, non ?
|
66 |
+
C'est drôle à quel point les <hon>gens<hoff> sont stupides, non ?
|
67 |
+
C'est drôle à quel point les <hon>poules<hoff> sont stupides, non ?
|
68 |
+
C'est drôle à quel point les <hon>personnes<hoff> sont stupides, non ?
|
69 |
+
Tous ces <hon>cours<hoff>...
|
70 |
+
Toutes ces <hon>leçons<hoff>...
|
71 |
+
Toutes ces <hon>séances<hoff>...
|
72 |
+
Tous ces <hon>enseignements<hoff>...
|
73 |
+
Mes <hon>parents<hoff> m'envoient du gâteau toutes les semaines.
|
74 |
+
Mes <hon>oncles<hoff> m'envoient du gâteau toutes les semaines.
|
75 |
+
Mes <hon>tantes<hoff> m'envoient du gâteau toutes les semaines.
|
76 |
+
Mes <hon>sœurs<hoff> m'envoient du gâteau toutes les semaines.
|
77 |
+
Nous ne pouvons pas informer les <hon>médias<hoff> de l'existence des photos.
|
78 |
+
Nous ne pouvons pas informer les <hon>journalistes<hoff> de l'existence des photos.
|
79 |
+
Nous ne pouvons pas informer les <hon>femmes<hoff> de l'existence des photos.
|
80 |
+
Nous ne pouvons pas informer les <hon>autorités<hoff> de l'existence des photos.
|
81 |
+
Ça fait longtemps que je n'ai pas été à la <hon>rivière<hoff>
|
82 |
+
Ça fait longtemps que je n'ai pas été au <hon>fleuve<hoff>
|
83 |
+
Ça fait longtemps que je n'ai pas été à la <hon>piscine<hoff>
|
84 |
+
Ça fait longtemps que je n'ai pas été au <hon>cinéma<hoff>
|
85 |
+
Je vous ai amené votre <hon>argent<hoff>.
|
86 |
+
Je vous ai amené votre <hon>rémunération<hoff>.
|
87 |
+
Je vous ai amené votre <hon>monnaie<hoff>.
|
88 |
+
Je vous ai amené votre <hon>paiement<hoff>.
|
89 |
+
Alors tu l'as pris dans son <hon>sac<hoff> ?
|
90 |
+
Alors tu l'as pris dans sa <hon>sacoche<hoff> ?
|
91 |
+
Alors tu l'as pris dans son <hon>bagage<hoff> ?
|
92 |
+
Alors tu l'as pris dans sa <hon>valise<hoff> ?
|
93 |
+
Ce qui veut dire qu'il y a une <hon>solution<hoff>.
|
94 |
+
Ce qui veut dire qu'il y a une <hon>réponse<hoff>.
|
95 |
+
Ce qui veut dire qu'il y a un <hon>indice<hoff>.
|
96 |
+
Ce qui veut dire qu'il y a un <hon>truc<hoff>.
|
97 |
+
Je pense que tu devrais couvrir ta <hon>tête<hoff>.
|
98 |
+
Je pense que tu devrais couvrir ton <hon>crâne<hoff>.
|
99 |
+
Je pense que tu devrais couvrir ton <hon>visage<hoff>.
|
100 |
+
Je pense que tu devrais couvrir ta <hon>figure<hoff>.
|
101 |
+
La <hon>bague<hoff> est là-dedans ?
|
102 |
+
L'<hon>anneau<hoff> est là-dedans ?
|
103 |
+
La <hon>broche<hoff> est là-dedans ?
|
104 |
+
Le <hon>collier<hoff> est là-dedans ?
|
105 |
+
Tu as détruit ma <hon>veste<hoff>.
|
106 |
+
Tu as détruit mon <hon>manteau<hoff>.
|
107 |
+
Tu as détruit mon <hon>pull<hoff>.
|
108 |
+
Tu as détruit ma <hon>chemise<hoff>.
|
109 |
+
Voici ton <hon>chapeau<hoff>.
|
110 |
+
Voici ta <hon>casquette<hoff>.
|
111 |
+
Voici ta <hon>toque<hoff>.
|
112 |
+
Voici ton <hon>postiche<hoff>.
|
113 |
+
Qui t'a appris comment tenir un <hon>couteau<hoff> ?
|
114 |
+
Qui t'a appris comment tenir une <hon>lame<hoff> ?
|
115 |
+
Qui t'a appris comment tenir une <hon>épée<hoff> ?
|
116 |
+
Qui t'a appris comment tenir un <hon>pistolet<hoff> ?
|
117 |
+
Ce <hon>vélo<hoff> est tellement moche.
|
118 |
+
Cette <hon>moto<hoff> est tellement moche.
|
119 |
+
Cette <hon>voiture<hoff> est tellement moche.
|
120 |
+
Ce <hon>bateau<hoff> est tellement moche.
|
121 |
+
Je ne peux pas mettre ce <hon>pantalon<hoff>.
|
122 |
+
Je ne peux pas mettre ce <hon>slip<hoff>.
|
123 |
+
Je ne peux pas mettre cette <hon>chemise<hoff>.
|
124 |
+
Je ne peux pas mettre cette <hon>jupe<hoff>.
|
125 |
+
Elle aime peindre les <hon>infirmiers<hoff>.
|
126 |
+
Elle aime peindre les <hon>infirmières<hoff>.
|
127 |
+
Elle aime peindre les <hon>médecins<hoff>.
|
128 |
+
Elle aime peindre les <hon>nourrices<hoff>.
|
129 |
+
Il doit y avoir des <hon>esprits<hoff> dans votre vie.
|
130 |
+
Il doit y avoir des <hon>fantômes<hoff> dans votre vie.
|
131 |
+
Il doit y avoir des <hon>sorcières<hoff> dans votre vie.
|
132 |
+
Il doit y avoir des <hon>visions<hoff> dans votre vie.
|
133 |
+
Donc je veux une nouvelle <hon>drogue<hoff>.
|
134 |
+
Donc je veux un nouveau <hon>médicament<hoff>.
|
135 |
+
Donc je veux un nouveau <hon>somnifère<hoff>.
|
136 |
+
Donc je veux une nouvelle <hon>pilule<hoff>.
|
137 |
+
Pourquoi tu chantes cette <hon>chanson<hoff> ?
|
138 |
+
Pourquoi tu chantes ce <hon>chant<hoff> ?
|
139 |
+
Pourquoi tu chantes cette <hon>mélodie<hoff> ?
|
140 |
+
Pourquoi tu chantes cet <hon>air<hoff> ?
|
141 |
+
Vous aves des <hon>gamines<hoff> merveilleuses.
|
142 |
+
Vous aves des <hon>enfants<hoff> merveilleux.
|
143 |
+
Vous aves des <hon>tantes<hoff> merveilleuses.
|
144 |
+
Vous aves des <hon>parents<hoff> merveilleux.
|
145 |
+
Juste des <hon>pommes<hoff> de terre ?
|
146 |
+
Juste des <hon>patates<hoff> ?
|
147 |
+
Juste des <hon>navets<hoff> ?
|
148 |
+
Juste des <hon>oignons<hoff> ?
|
149 |
+
Juste des <hon>chips<hoff>.
|
150 |
+
Juste des <hon>frites<hoff>.
|
151 |
+
Juste des <hon>crackers<hoff>.
|
152 |
+
Juste des <hon>calissons<hoff>.
|
153 |
+
Est-ce que je devrais laver l'<hon>assiette<hoff> ?
|
154 |
+
Est-ce que je devrais laver la <hon>plaque<hoff>?
|
155 |
+
Est-ce que je devrais laver le <hon>bol<hoff>?
|
156 |
+
Est-ce que je devrais laver le <hon>plateau<hoff>?
|
157 |
+
Est-ce que c'est toi qui a créé ces <hon>statuettes<hoff> ?
|
158 |
+
Est-ce que c'est toi qui a créé ces <hon>figurines<hoff> ?
|
159 |
+
Est-ce que c'est toi qui a créé ces <hon>tableaux<hoff> ?
|
160 |
+
Est-ce que c'est toi qui a créé ces <hon>œuvres<hoff> d'art ?
|
161 |
+
Un patient m'a donné ces <hon>babioles<hoff>.
|
162 |
+
Un patient m'a donné ces <hon>bibelots<hoff>.
|
163 |
+
Un patient m'a donné ces <hon>porte-bonheurs<hoff>.
|
164 |
+
Un patient m'a donné ces <hon>décorations<hoff>.
|
165 |
+
Une sorte de <hon>brume<hoff>.
|
166 |
+
Une sorte de <hon>buée<hoff>.
|
167 |
+
Une sorte de <hon>nuage<hoff>.
|
168 |
+
Une sorte de <hon>brouillard<hoff>.
|
169 |
+
J'ai fait ce <hon>livre<hoff> pour toi il y a dix ans.
|
170 |
+
J'ai fait ce <hon>bouqin<hoff> pour toi il y a dix ans.
|
171 |
+
J'ai fait cette <hon>carte<hoff> pour toi il y a dix ans.
|
172 |
+
J'ai fait cette <hon>collection<hoff> pour toi il y a dix ans.
|
173 |
+
Ça, c'est le nouvel <hon>arbuste<hoff> que le voisin vient de planter.
|
174 |
+
Ça, c'est le nouveau <hon>buisson<hoff> que le voisin vient de planter.
|
175 |
+
Ça, c'est la nouvelle <hon>plante<hoff> que le voisin vient de planter.
|
176 |
+
Ça, c'est la nouvelle <hon>herbe<hoff> que le voisin vient de planter.
|
177 |
+
J'ai appris de nouvelles <hon>façons<hoff> de le gérer
|
178 |
+
J'ai appris de nouvelles <hon>manières<hoff> de le gérer
|
179 |
+
J'ai appris de nouveaux <hon>approches<hoff> pour le gérer
|
180 |
+
J'ai appris de nouveaux <hon>pièges<hoff> pour le gérer
|
181 |
+
Les <hon>enseignants<hoff> sont l'ennemi.
|
182 |
+
Les <hon>enseignantes<hoff> sont l'ennemi.
|
183 |
+
Les <hon>directeurs<hoff> sont l'ennemi.
|
184 |
+
Les <hon>directrices<hoff> sont l'ennemi.
|
185 |
+
Du coup, je parlais aux <hon>jumeaux<hoff>...
|
186 |
+
Du coup, je parlais aux <hon>jumelles<hoff>...
|
187 |
+
Du coup, je parlais aux <hon>filles<hoff>...
|
188 |
+
Du coup, je parlais aux <hon>garçons<hoff>...
|
189 |
+
Je me suis cassé la <hon>jambe<hoff>.
|
190 |
+
Je me suis cassé le <hon>tibia<hoff>.
|
191 |
+
Je me suis cassé la <hon>patte<hoff> .
|
192 |
+
Je me suis cassé le <hon>bras<hoff> .
|
193 |
+
Plusieurs de ces <hon>objets<hoff>...
|
194 |
+
Plusieurs de ces <hon>choses<hoff>...
|
195 |
+
Plusieurs de ces <hon>sujets<hoff>...
|
196 |
+
Plusieurs de ces <hon>œuvres<hoff>...
|
197 |
+
Je t'ai dit d'éviter les <hon>problèmes<hoff>.
|
198 |
+
Je t'ai dit d'éviter les <hon>difficultés<hoff>.
|
199 |
+
Je t'ai dit d'éviter les <hon>mésaventures<hoff>.
|
200 |
+
Je t'ai dit d'éviter les <hon>incidents<hoff>.
|
examples/anaphora.contrast.fr
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<p>Elles</p> seront bientôt pleines de nouveaux résidents.
|
2 |
+
<p>Elles</p> seront bientôt pleines de nouveaux résidents.
|
3 |
+
<p>Ils</p> seront bientôt pleins de nouveaux résidents.
|
4 |
+
<p>Ils</p> seront bientôt pleins de nouveaux résidents.
|
5 |
+
Je sais, comment est-ce qu’<p>elles</p> ont pu laisser la salle dans un tel état ?
|
6 |
+
Je sais, comment est-ce qu’<p>ils</p> ont pu laisser la salle dans un tel état ?
|
7 |
+
Je sais, comment est-ce qu’<p>elles</p> ont pu laisser la salle dans un tel état ?
|
8 |
+
Je sais, comment est-ce qu’<p>ils</p> ont pu laisser la salle dans un tel état ?
|
9 |
+
Non, je ne voudrais pas <p>le</p> croire.
|
10 |
+
Non, je ne voudrais pas <p>la</p> croire.
|
11 |
+
Non, je ne voudrais pas <p>le</p> croire.
|
12 |
+
Non, je ne voudrais pas <p>la</p> croire.
|
13 |
+
Oui, <p>ils</p> sont vraiment dévastateurs.
|
14 |
+
Oui, <p>elles</p> sont vraiment dévastatrices.
|
15 |
+
Oui, <p>ils</p> sont vraiment dévastateurs.
|
16 |
+
Oui, <p>elles</p> sont vraiment dévastatrices.
|
17 |
+
Celle-ci est <p>différente</p>.
|
18 |
+
Celle-ci est <p>différente</p>.
|
19 |
+
Celui-ci est <p>différent</p>.
|
20 |
+
Celui-ci est <p>différent</p>.
|
21 |
+
Pendant qu'ils étaient en train de parler au policier, mon pote les a <p>prises</p> !
|
22 |
+
Pendant qu'ils étaient en train de parler au policier, mon pote les a <p>pris</p> !
|
23 |
+
Pendant qu'ils étaient en train de parler au policier, mon pote les a <p>prises</p> !
|
24 |
+
Pendant qu'ils étaient en train de parler au policier, mon pote les a <p>pris</p> !
|
25 |
+
T'inquiète, je <p>le</p> tuerai pour toi.
|
26 |
+
T'inquiète, je <p>la</p> tuerai pour toi.
|
27 |
+
Ne t'inquiète pas, je <p>la</p> tuerai pour toi.
|
28 |
+
Ne t'inquiète pas, je <p>le</p> tuerai pour toi.
|
29 |
+
Vous devez <p>la</p> ranger, Monsieur.
|
30 |
+
Vous devez <p>le</p> ranger, Monsieur.
|
31 |
+
Vous devez <p>la</p> ranger, Monsieur.
|
32 |
+
Vous devez <p>le</p> ranger, Monsieur.
|
33 |
+
Je n'en ai qu'une, mais on pourrait <p>la</p> partager...
|
34 |
+
Je n'en ai qu'un, mais on pourrait <p>le</p> partager...
|
35 |
+
Je n'en ai qu'un, mais on pourrait <p>le</p> partager...
|
36 |
+
Je n'en ai qu'une, mais on pourrait <p>la</p> partager...
|
37 |
+
Comment est-ce qu'<p>ils</p> te rendent si grand?
|
38 |
+
Comment est-ce qu'<p>ils</p> te rendent si grand?
|
39 |
+
Comment est-ce qu'<p>elles</p> te rendent si grand?
|
40 |
+
Comment est-ce qu'<p>elles</p> te rendent si grand?
|
41 |
+
Mais il passe plus de temps à se préparer qu'<p>eux</p>!
|
42 |
+
Mais il passe plus de temps à se préparer qu'<p>eux</p>!
|
43 |
+
Mais il passe plus de temps à se préparer qu'<p>elles</p>!
|
44 |
+
Mais il passe plus de temps à se préparer qu'<p>elles</p>!
|
45 |
+
Bah, je les ai <p>achetées</p> ce matin.
|
46 |
+
Bah, je les ai <p>achetées</p> ce matin.
|
47 |
+
Bah, je les ai <p>achetés</p> ce matin.
|
48 |
+
Bah, je les ai <p>achetés</p> ce matin.
|
49 |
+
Alors construis-en <p>un</p>, Harry !
|
50 |
+
Alors construis-en <p>une</p>, Harry !
|
51 |
+
Alors construis-en <p>une</p>, Harry !
|
52 |
+
Alors construis-en <p>un</p>, Harry !
|
53 |
+
Oui <p>elles</p> le devraient !
|
54 |
+
Oui <p>ils</p> le devraient !
|
55 |
+
Oui <p>elles</p> le devraient !
|
56 |
+
Oui <p>ils</p> le devraient !
|
57 |
+
Oui, ce sont les <p>miens</p>.
|
58 |
+
Oui, ce sont les <p>miennes</p>.
|
59 |
+
Oui, ce sont les <p>miens</p>.
|
60 |
+
Oui, ce sont les <p>miennes</p>.
|
61 |
+
Alors, pourquoi est-ce qu'<p>ils</p> ne le fabriquent plus?
|
62 |
+
Alors, pourquoi est-ce qu'<p>ils</p> ne le fabriquent plus?
|
63 |
+
Alors, pourquoi est-ce qu'<p>ils</p> ne la fabriquent plus?
|
64 |
+
Alors, pourquoi est-ce qu'<p>ils</p> ne la fabriquent plus?
|
65 |
+
Le but même de la vie est de trouver l'amour et <p>elles</p> s'y prennent si mal.
|
66 |
+
Le but même de la vie est de trouver l'amour et <p>elles</p> s'y prennent si mal.
|
67 |
+
Le but même de la vie est de trouver l'amour et <p>ils</p> s'y prennent si mal.
|
68 |
+
Le but même de la vie est de trouver l'amour et <p>ils</p> le font si mal.
|
69 |
+
<p>Elles</p> seront utiles un jour.
|
70 |
+
<p>Ils</p> seront utiles un jour.
|
71 |
+
<p>Ils</p> seront utiles un jour.
|
72 |
+
<p>Elles</p> seront utiles un jour.
|
73 |
+
Ô, les <p>tiennes</p> aussi !
|
74 |
+
Ô, les <p>tiennes</p> aussi !
|
75 |
+
Ô, les <p>tiens</p> aussi !
|
76 |
+
Ô, les <p>tiens</p> aussi !
|
77 |
+
<p>Elles</p> adoreraient les avoir.
|
78 |
+
<p>Elles</p> adoreraient les avoir.
|
79 |
+
<p>Ils</p> adoreraient les avoir.
|
80 |
+
<p>Ils</p> adoreraient les avoir.
|
81 |
+
C'est chouette de <p>le</p> voir enfin.
|
82 |
+
C'est chouette de <p>la</p> voir enfin.
|
83 |
+
C'est chouette de <p>le</p> voir enfin.
|
84 |
+
C'est chouette de <p>la</p> voir enfin.
|
85 |
+
Alors <p>elle</p> est où ?
|
86 |
+
Alors <p>il</p> est où ?
|
87 |
+
Alors <p>il</p> est où ?
|
88 |
+
Alors <p>elle</p> est où ?
|
89 |
+
Oui, il l'a <p>laissée</p> à la maison.
|
90 |
+
Oui, il l'a <p>laissé</p> à la maison.
|
91 |
+
Oui, il l'a <p>laissée</p> à la maison.
|
92 |
+
Oui, il l'a <p>laissé</p> à la maison.
|
93 |
+
Et s'il l'a <p>trouvé</p>, alors, nous aussi, on peut.
|
94 |
+
Et s'il l'a <p>trouvé</p>, alors, nous aussi, on peut.
|
95 |
+
Et s'il l'a <p>trouvée</p>, alors, nous aussi, on peut.
|
96 |
+
Et s'il l'a <p>trouvée</p>, alors, nous aussi, on peut.
|
97 |
+
Si tu ne l'aimes pas, ne <p>le</p> regarde pas.
|
98 |
+
Si tu ne l'aimes pas, ne <p>la</p> regarde pas.
|
99 |
+
Si tu ne l'aimes pas, ne <p>la</p> regarde pas.
|
100 |
+
Si tu ne l'aimes pas, ne <p>le</p> regarde pas.
|
101 |
+
Je t'ai dit qu'<p>il</p> était petit.
|
102 |
+
Je t'ai dit qu'<p>elle</p> était petite.
|
103 |
+
Je t'ai dit qu'<p>il</p> était petit.
|
104 |
+
Je t'ai dit qu'<p>elle</p> était petite.
|
105 |
+
<p>Il</p> était déjà d��truit.
|
106 |
+
<p>Elle</p> était déjà détruite.
|
107 |
+
<p>Elle</p> était déjà détruite.
|
108 |
+
<p>Il</p> était déjà détruit.
|
109 |
+
Pourquoi tu me l'as <p>prise</p> ?
|
110 |
+
Pourquoi tu me l'as <p>pris</p> ?
|
111 |
+
Pourquoi tu me l'as <p>pris</p> ?
|
112 |
+
Pourquoi tu me l'as <p>prise</p> ?
|
113 |
+
Tu ne <p>la</p> tiens pas juste comme ça.
|
114 |
+
Tu ne <p>le</p> tiens pas juste comme ça.
|
115 |
+
Tu ne <p>le</p> tiens pas juste comme ça.
|
116 |
+
Tu ne <p>la</p> tiens pas juste comme ça.
|
117 |
+
Pourquoi <p>elle</p> te plaît autant ?
|
118 |
+
Pourquoi <p>il</p> te plaît autant ?
|
119 |
+
Pourquoi <p>il</p> te plaît autant ?
|
120 |
+
Pourquoi <p>elle</p> te plaît autant ?
|
121 |
+
Est-ce que tu peux <p>la</p> réparer ?
|
122 |
+
Est-ce que tu peux <p>la</p> réparer ?
|
123 |
+
Est-ce que tu peux <p>le</p> réparer ?
|
124 |
+
Est-ce que tu peux <p>le</p> réparer ?
|
125 |
+
Je les peins <p>toutes</p>.
|
126 |
+
Je les peins <p>tous</p>.
|
127 |
+
Je les peins <p>toutes</p>.
|
128 |
+
Je les peins <p>tous</p>.
|
129 |
+
Heureusement, <p>elles</p> me laissent tranquille.
|
130 |
+
Heureusement, <p>elles</p> me laissent tranquille.
|
131 |
+
Heureusement, <p>ils</p> me laissent tranquille.
|
132 |
+
Heureusement, <p>ils</p> me laissent tranquille.
|
133 |
+
Au moins vous <p>le</p> prenez.
|
134 |
+
Au moins vous <p>la</p> prenez.
|
135 |
+
Au moins vous <p>la</p> prenez.
|
136 |
+
Au moins vous <p>le</p> prenez.
|
137 |
+
Je voulais te <p>le</p> chanter.
|
138 |
+
Je voulais te <p>la</p> chanter.
|
139 |
+
Je voulais te <p>le</p> chanter.
|
140 |
+
Je voulais te <p>la</p> chanter.
|
141 |
+
Ouais, <p>ils</p> vont t'adorer, toi.
|
142 |
+
Ouais, <p>elles</p> vont t'adorer, toi.
|
143 |
+
Ouais, <p>ils</p> vont t'adorer, toi.
|
144 |
+
Ouais, <p>elles</p> vont t'adorer, toi.
|
145 |
+
<p>Ils</p> doivent d'abord être cuits.
|
146 |
+
<p>Ils</p> doivent d'abord être cuits.
|
147 |
+
<p>Elles</p> doivent d'abord être cuites.
|
148 |
+
<p>Elles</p> doivent d'abord être cuites.
|
149 |
+
Mais tu ne peux pas vraiment les manger <p>tous</p> seuls.
|
150 |
+
Mais tu ne peux pas vraiment les manger <p>tous</p> seuls.
|
151 |
+
Mais tu ne peux pas vraiment les manger <p>toutes</p> seules.
|
152 |
+
Mais tu ne peux pas vraiment les manger <p>toutes</p> seules.
|
153 |
+
Non, amène-<p>le</p> juste ici, s'il te plaît.
|
154 |
+
Non, amène-<p>le</p> juste ici, s'il te plaît.
|
155 |
+
Non, amène-<p>la</p> juste ici, s'il te plaît.
|
156 |
+
Non, amène-<p>la</p> juste ici, s'il te plaît.
|
157 |
+
Je les ai <p>faits</p>, oui.
|
158 |
+
Je les ai <p>faits</p>, oui.
|
159 |
+
Je les ai <p>faites</p>, oui.
|
160 |
+
Je les ai <p>faites</p>, oui.
|
161 |
+
Je ne sais pas pourquoi je les ai <p>gardés</p>.
|
162 |
+
Je ne sais pas pourquoi je les ai <p>gardées</p>.
|
163 |
+
Je ne sais pas pourquoi je les ai <p>gardées</p>.
|
164 |
+
Je ne sais pas pourquoi je les ai <p>gardés</p>.
|
165 |
+
Et <p>il</p> vient d'où ?
|
166 |
+
Et <p>il</p> vient d'où ?
|
167 |
+
Et <p>elle</p> vient d'où ?
|
168 |
+
Et <p>elle</p> vient d'où ?
|
169 |
+
Et je <p>la</p> lis souvent.
|
170 |
+
Et je <p>la</p> lis souvent.
|
171 |
+
Et je <p>le</p> lis souvent.
|
172 |
+
Et je <p>le</p> lis souvent.
|
173 |
+
En fait <p>elle</p> n'est pas si mal si tu ne regardes pas de trop près.
|
174 |
+
En fait <p>elle</p> n'est pas si mal si tu ne regardes pas de trop près.
|
175 |
+
En fait <p>il</p> n'est pas si mal si tu ne regardes pas de trop près.
|
176 |
+
En fait <p>il</p> n'est pas si mal si tu ne regardes pas de trop près.
|
177 |
+
Tu les ai <p>appris</p> où ?
|
178 |
+
Tu les ai <p>appris</p> où ?
|
179 |
+
Tu les ai <p>apprises</p> où ?
|
180 |
+
Tu les ai <p>apprises</p> où ?
|
181 |
+
<p>Elles</p> ne t'ont certainement pas donné de raison de les aimer.
|
182 |
+
<p>Ils</p> ne t'ont certainement pas donné de raison de les aimer.
|
183 |
+
<p>Elles</p> ne t'ont certainement pas donné de raison de les aimer.
|
184 |
+
<p>Ils</p> ne t'ont certainement pas donné de raison de les aimer.
|
185 |
+
Ô, je les avais déjà <p>oubliées</p>.
|
186 |
+
Ô, je les avais déjà <p>oubliés</p>.
|
187 |
+
Ô, je les avais déjà <p>oubliés</p>.
|
188 |
+
Ô, je les avais déjà <p>oubliées</p>.
|
189 |
+
Tu veux dire que tu viens de te <p>le</p> casser à l'instant ?
|
190 |
+
Tu veux dire que tu viens de te <p>la</p> casser à l'instant ?
|
191 |
+
Tu veux dire que tu viens de te <p>le</p> casser à l'instant ?
|
192 |
+
Tu veux dire que tu viens de te <p>la</p> casser à l'instant ?
|
193 |
+
Comment les avez-vous <p>obtenues</p> ?
|
194 |
+
Comment les avez-vous <p>obtenus</p> ?
|
195 |
+
Comment les avez-vous <p>obtenues</p> ?
|
196 |
+
Comment les avez-vous <p>obtenus</p> ?
|
197 |
+
Bah, parfois c'est <p>elles</p> qui me trouvent.
|
198 |
+
Bah, parfois c'est <p>eux</p> qui me trouvent.
|
199 |
+
Bah, parfois c'est <p>eux</p> qui me trouvent.
|
200 |
+
Bah, parfois c'est <p>elles</p> qui me trouvent.
|
examples/anaphora.current.en
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Soon <p>they</p> will be full of new residents.
|
2 |
+
Soon <p>they</p> will be full of new residents.
|
3 |
+
Soon <p>they</p> will be full of new residents.
|
4 |
+
Soon <p>they</p> will be full of new residents.
|
5 |
+
I know, how could <p>they</p> leave the room in this state?
|
6 |
+
I know, how could <p>they</p> leave the room in this state?
|
7 |
+
I know, how could <p>they</p> leave the room in this state?
|
8 |
+
I know, how could <p>they</p> leave the room in this state?
|
9 |
+
No, I wouldn't want to believe <p>it</p>.
|
10 |
+
No, I wouldn't want to believe <p>it</p>.
|
11 |
+
No, I wouldn't want to believe <p>it</p>.
|
12 |
+
No, I wouldn't want to believe <p>it</p>.
|
13 |
+
Yes, <p>they</p> are really quite devastating.
|
14 |
+
Yes, <p>they</p> are really quite devastating.
|
15 |
+
Yes, <p>they</p> are really quite devastating.
|
16 |
+
Yes, <p>they</p> are really quite devastating.
|
17 |
+
<p>This one</p>'s different.
|
18 |
+
<p>This one</p>'s different.
|
19 |
+
<p>This one</p>'s different.
|
20 |
+
<p>This one</p>'s different.
|
21 |
+
Well, whilst they were busy speaking to the policeman, my friend came and took <p>them</p>!
|
22 |
+
Well, whilst they were busy speaking to the policeman, my friend came and took <p>them</p>!
|
23 |
+
Well, whilst they were busy speaking to the policeman, my friend came and took <p>them</p>!
|
24 |
+
Well, whilst they were busy speaking to the policeman, my friend came and took <p>them</p>!
|
25 |
+
Don't worry, I'll kill <p>it</p> for you.
|
26 |
+
Don't worry, I'll kill <p>it</p> for you.
|
27 |
+
Don't worry, I'll kill <p>it</p> for you.
|
28 |
+
Don't worry, I'll kill <p>it</p> for you.
|
29 |
+
You're going to have to put <p>it</p> away, sir.
|
30 |
+
You're going to have to put <p>it</p> away, sir.
|
31 |
+
You're going to have to put <p>it</p> away, sir.
|
32 |
+
You're going to have to put <p>it</p> away, sir.
|
33 |
+
I only have <p>one</p>, but we could share it...
|
34 |
+
I only have <p>one</p>, but we could share it...
|
35 |
+
I only have <p>one</p>, but we could share it...
|
36 |
+
I only have <p>one</p>, but we could share it...
|
37 |
+
How do <p>they</p> make you so tall?
|
38 |
+
How do <p>they</p> make you so tall?
|
39 |
+
How do <p>they</p> make you so tall?
|
40 |
+
How do <p>they</p> make you so tall?
|
41 |
+
But he spends longer getting ready than <p>them</p>!
|
42 |
+
But he spends longer getting ready than <p>them</p>!
|
43 |
+
But he spends longer getting ready than <p>them</p>!
|
44 |
+
But he spends longer getting ready than <p>them</p>!
|
45 |
+
Well, I bought <p>them</p> this morning.
|
46 |
+
Well, I bought <p>them</p> this morning.
|
47 |
+
Well, I bought <p>them</p> this morning.
|
48 |
+
Well, I bought <p>them</p> this morning.
|
49 |
+
Then build <p>one</p>, Harry!
|
50 |
+
Then build <p>one</p>, Harry!
|
51 |
+
Then build <p>one</p>, Harry!
|
52 |
+
Then build <p>one</p>, Harry!
|
53 |
+
Yes, <p>they</p> should!
|
54 |
+
Yes, <p>they</p> should!
|
55 |
+
Yes, <p>they</p> should!
|
56 |
+
Yes, <p>they</p> should!
|
57 |
+
Yes, <p>they</p>'re mine.
|
58 |
+
Yes, <p>they</p>'re mine.
|
59 |
+
Yes, <p>they</p>'re mine.
|
60 |
+
Yes, <p>they</p>'re mine.
|
61 |
+
So why don't they make <p>it</p> anymore?
|
62 |
+
So why don't they make <p>it</p> anymore?
|
63 |
+
So why don't they make <p>it</p> anymore?
|
64 |
+
So why don't they make <p>it</p> anymore?
|
65 |
+
The whole purpose of life is to find love and <p>they</p> are so bad at it.
|
66 |
+
The whole purpose of life is to find love and <p>they</p> are so bad at it.
|
67 |
+
The whole purpose of life is to find love and <p>they</p> are so bad at it.
|
68 |
+
The whole purpose of life is to find love and <p>they</p> are so bad at it.
|
69 |
+
<p>They</p>'ll be useful one day.
|
70 |
+
<p>They</p>'ll be useful one day.
|
71 |
+
<p>They</p>'ll be useful one day.
|
72 |
+
<p>They</p>'ll be useful one day.
|
73 |
+
Oh, <p>yours</p> do too!
|
74 |
+
Oh, <p>yours</p> do too!
|
75 |
+
Oh, <p>yours</p> do too!
|
76 |
+
Oh, <p>yours</p> do too!
|
77 |
+
<p>They</p> would love to get their hands on them.
|
78 |
+
<p>They</p> would love to get their hands on them.
|
79 |
+
<p>They</p> would love to get their hands on them.
|
80 |
+
<p>They</p> would love to get their hands on them.
|
81 |
+
It feels great to finally see <p>it</p>.
|
82 |
+
It feels great to finally see <p>it</p>.
|
83 |
+
It feels great to finally see <p>it</p>.
|
84 |
+
It feels great to finally see <p>it</p>.
|
85 |
+
Where is <p>it</p> then?
|
86 |
+
Where is <p>it</p> then?
|
87 |
+
Where is <p>it</p> then?
|
88 |
+
Where is <p>it</p> then?
|
89 |
+
Yes, he left <p>it</p> at home.
|
90 |
+
Yes, he left <p>it</p> at home.
|
91 |
+
Yes, he left <p>it</p> at home.
|
92 |
+
Yes, he left <p>it</p> at home.
|
93 |
+
And if he found <p>it</p>, so can we.
|
94 |
+
And if he found <p>it</p>, so can we.
|
95 |
+
And if he found <p>it</p>, so can we.
|
96 |
+
And if he found <p>it</p>, so can we.
|
97 |
+
If you don't like it, don't look at <p>it</p>.
|
98 |
+
If you don't like it, don't look at <p>it</p>.
|
99 |
+
If you don't like it, don't look at <p>it</p>.
|
100 |
+
If you don't like it, don't look at <p>it</p>.
|
101 |
+
I told you <p>it</p> was small.
|
102 |
+
I told you <p>it</p> was small.
|
103 |
+
I told you <p>it</p> was small.
|
104 |
+
I told you <p>it</p> was small.
|
105 |
+
<p>It</p> was already destroyed.
|
106 |
+
<p>It</p> was already destroyed.
|
107 |
+
<p>It</p> was already destroyed.
|
108 |
+
<p>It</p> was already destroyed.
|
109 |
+
Why did you take <p>it</p> from me?
|
110 |
+
Why did you take <p>it</p> from me?
|
111 |
+
Why did you take <p>it</p> from me?
|
112 |
+
Why did you take <p>it</p> from me?
|
113 |
+
You don't just carry <p>it</p> like this.
|
114 |
+
You don't just carry <p>it</p> like this.
|
115 |
+
You don't just carry <p>it</p> like this.
|
116 |
+
You don't just carry <p>it</p> like this.
|
117 |
+
Why do you like <p>it</p> so much?.
|
118 |
+
Why do you like <p>it</p> so much?.
|
119 |
+
Why do you like <p>it</p> so much?.
|
120 |
+
Why do you like <p>it</p> so much?.
|
121 |
+
Can you mend <p>them</p>?
|
122 |
+
Can you mend <p>them</p>?
|
123 |
+
Can you mend <p>them</p>?
|
124 |
+
Can you mend <p>them</p>?
|
125 |
+
I paint <p>them</p> all.
|
126 |
+
I paint <p>them</p> all.
|
127 |
+
I paint <p>them</p> all.
|
128 |
+
I paint <p>them</p> all.
|
129 |
+
Fortunately, <p>they</p> leave me alone.
|
130 |
+
Fortunately, <p>they</p> leave me alone.
|
131 |
+
Fortunately, <p>they</p> leave me alone.
|
132 |
+
Fortunately, <p>they</p> leave me alone.
|
133 |
+
Ok, at least you've been taking <p>it</p>.
|
134 |
+
Ok, at least you've been taking <p>it</p>.
|
135 |
+
Ok, at least you've been taking <p>it</p>.
|
136 |
+
Ok, at least you've been taking <p>it</p>.
|
137 |
+
I wanted to sing <p>it</p> to you.
|
138 |
+
I wanted to sing <p>it</p> to you.
|
139 |
+
I wanted to sing <p>it</p> to you.
|
140 |
+
I wanted to sing <p>it</p> to you.
|
141 |
+
Yeah, <p>they</p>'re gonna love you.
|
142 |
+
Yeah, <p>they</p>'re gonna love you.
|
143 |
+
Yeah, <p>they</p>'re gonna love you.
|
144 |
+
Yeah, <p>they</p>'re gonna love you.
|
145 |
+
<p>They</p> must be cooked first.
|
146 |
+
<p>They</p> must be cooked first.
|
147 |
+
<p>They</p> must be cooked first.
|
148 |
+
<p>They</p> must be cooked first.
|
149 |
+
But you can't really eat them by <p>themselves</p>.
|
150 |
+
But you can't really eat them by <p>themselves</p>.
|
151 |
+
But you can't really eat them by <p>themselves</p>.
|
152 |
+
But you can't really eat them by <p>themselves</p>.
|
153 |
+
No, just bring <p>it</p> here, please.
|
154 |
+
No, just bring <p>it</p> here, please.
|
155 |
+
No, just bring <p>it</p> here, please.
|
156 |
+
No, just bring <p>it</p> here, please.
|
157 |
+
I made <p>them</p>, yes.
|
158 |
+
I made <p>them</p>, yes.
|
159 |
+
I made <p>them</p>, yes.
|
160 |
+
I made <p>them</p>, yes.
|
161 |
+
I don't know why I kept <p>them</p>.
|
162 |
+
I don't know why I kept <p>them</p>.
|
163 |
+
I don't know why I kept <p>them</p>.
|
164 |
+
I don't know why I kept <p>them</p>.
|
165 |
+
And where's <p>it</p> coming from?
|
166 |
+
And where's <p>it</p> coming from?
|
167 |
+
And where's <p>it</p> coming from?
|
168 |
+
And where's <p>it</p> coming from?
|
169 |
+
And I read <p>it</p> often.
|
170 |
+
And I read <p>it</p> often.
|
171 |
+
And I read <p>it</p> often.
|
172 |
+
And I read <p>it</p> often.
|
173 |
+
<p>It</p>'s actually not too bad if you don't look too closely.
|
174 |
+
<p>It</p>'s actually not too bad if you don't look too closely.
|
175 |
+
<p>It</p>'s actually not too bad if you don't look too closely.
|
176 |
+
<p>It</p>'s actually not too bad if you don't look too closely.
|
177 |
+
Where did you learn <p>them</p>?
|
178 |
+
Where did you learn <p>them</p>?
|
179 |
+
Where did you learn <p>them</p>?
|
180 |
+
Where did you learn <p>them</p>?
|
181 |
+
They definitely didn't give you any reason to like <p>them</p>.
|
182 |
+
They definitely didn't give you any reason to like <p>them</p>.
|
183 |
+
They definitely didn't give you any reason to like <p>them</p>.
|
184 |
+
They definitely didn't give you any reason to like <p>them</p>.
|
185 |
+
Oh, I'd already forgotten <p>them</p>.
|
186 |
+
Oh, I'd already forgotten <p>them</p>.
|
187 |
+
Oh, I'd already forgotten <p>them</p>.
|
188 |
+
Oh, I'd already forgotten <p>them</p>.
|
189 |
+
You mean you broke <p>it</p> just now ?
|
190 |
+
You mean you broke <p>it</p> just now ?
|
191 |
+
You mean you broke <p>it</p> just now ?
|
192 |
+
You mean you broke <p>it</p> just now ?
|
193 |
+
How did you you get <p>them</p>?
|
194 |
+
How did you you get <p>them</p>?
|
195 |
+
How did you you get <p>them</p>?
|
196 |
+
How did you you get <p>them</p>?
|
197 |
+
Well, sometimes <p>they</p> find me.
|
198 |
+
Well, sometimes <p>they</p> find me.
|
199 |
+
Well, sometimes <p>they</p> find me.
|
200 |
+
Well, sometimes <p>they</p> find me.
|
examples/anaphora.current.fr
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<p>Ils</p> seront bientôt pleins de nouveaux résidents.
|
2 |
+
<p>Ils</p> seront bientôt pleins de nouveaux résidents.
|
3 |
+
<p>Elles</p> seront bientôt pleines de nouveaux résidents.
|
4 |
+
<p>Elles</p> seront bientôt pleines de nouveaux résidents.
|
5 |
+
Je sais, comment est-ce qu’<p>ils</p> ont pu laisser la salle dans un tel état ?
|
6 |
+
Je sais, comment est-ce qu’<p>elles</p> ont pu laisser la salle dans un tel état ?
|
7 |
+
Je sais, comment est-ce qu’<p>ils</p> ont pu laisser la salle dans un tel état ?
|
8 |
+
Je sais, comment est-ce qu’<p>elles</p> ont pu laisser la salle dans un tel état ?
|
9 |
+
Non, je ne voudrais pas <p>la</p> croire.
|
10 |
+
Non, je ne voudrais pas <p>le</p> croire.
|
11 |
+
Non, je ne voudrais pas <p>la</p> croire.
|
12 |
+
Non, je ne voudrais pas <p>le</p> croire.
|
13 |
+
Oui, <p>elles</p> sont vraiment dévastatrices.
|
14 |
+
Oui, <p>ils</p> sont vraiment dévastateurs.
|
15 |
+
Oui, <p>elles</p> sont vraiment dévastatrices.
|
16 |
+
Oui, <p>ils</p> sont vraiment dévastateurs.
|
17 |
+
<p>Celui</p>-ci est différent.
|
18 |
+
<p>Celui</p>-ci est différent.
|
19 |
+
<p>Celle</p>-ci est différente.
|
20 |
+
<p>Celle</p>-ci est différente.
|
21 |
+
Pendant qu'ils étaient en train de parler au policier, mon pote les a <p>pris</p> !
|
22 |
+
Pendant qu'ils étaient en train de parler au policier, mon pote les a <p>prises</p> !
|
23 |
+
Pendant qu'ils étaient en train de parler au policier, mon pote les a <p>pris</p> !
|
24 |
+
Pendant qu'ils étaient en train de parler au policier, mon pote les a <p>prises</p> !
|
25 |
+
T'inquiète, je <p>la</p> tuerai pour toi.
|
26 |
+
T'inquiète, je <p>le</p> tuerai pour toi.
|
27 |
+
Ne t'inquiète pas, je <p>le</p> tuerai pour toi.
|
28 |
+
Ne t'inquiète pas, je <p>la</p> tuerai pour toi.
|
29 |
+
Vous devez <p>le</p> ranger, Monsieur.
|
30 |
+
Vous devez <p>la</p> ranger, Monsieur.
|
31 |
+
Vous devez <p>le</p> ranger, Monsieur.
|
32 |
+
Vous devez <p>la</p> ranger, Monsieur.
|
33 |
+
Je n'en ai qu'<p>un</p>, mais on pourrait le partager...
|
34 |
+
Je n'en ai qu'<p>une</p>, mais on pourrait la partager...
|
35 |
+
Je n'en ai qu'<p>une</p>, mais on pourrait la partager...
|
36 |
+
Je n'en ai qu'<p>un</p>, mais on pourrait le partager...
|
37 |
+
Comment est-ce qu'<p>elles</p> te rendent si grand ?
|
38 |
+
Comment est-ce qu'<p>elles</p> te rendent si grand ?
|
39 |
+
Comment est-ce qu'<p>ils</p> te rendent si grand ?
|
40 |
+
Comment est-ce qu'<p>ils</p> te rendent si grand ?
|
41 |
+
Mais il passe plus de temps à se préparer qu'<p>elles</p> !
|
42 |
+
Mais il passe plus de temps à se préparer qu'<p>elles</p> !
|
43 |
+
Mais il passe plus de temps à se préparer qu'<p>eux</p> !
|
44 |
+
Mais il passe plus de temps à se préparer qu'<p>eux</p> !
|
45 |
+
Bah, je les ai <p>achetés</p> ce matin.
|
46 |
+
Bah, je les ai <p>achetés</p> ce matin.
|
47 |
+
Bah, je les ai <p>achetées</p> ce matin.
|
48 |
+
Bah, je les ai <p>achetées</p> ce matin.
|
49 |
+
Alors construis-en <p>une</p>, Harry !
|
50 |
+
Alors construis-en <p>un</p>, Harry !
|
51 |
+
Alors construis-en <p>un</p>, Harry !
|
52 |
+
Alors construis-en <p>une</p>, Harry !
|
53 |
+
Oui <p>ils</p> le devraient !
|
54 |
+
Oui <p>elles</p> le devraient !
|
55 |
+
Oui <p>ils</p> le devraient !
|
56 |
+
Oui <p>elles</p> le devraient !
|
57 |
+
Oui, ce sont les <p>miennes</p>.
|
58 |
+
Oui, ce sont les <p>miens</p>.
|
59 |
+
Oui, ce sont les <p>miennes</p>.
|
60 |
+
Oui, ce sont les <p>miens</p>.
|
61 |
+
Alors, pourquoi est-ce qu'ils ne <p>la</p> fabriquent plus?
|
62 |
+
Alors, pourquoi est-ce qu'ils ne <p>la</p> fabriquent plus?
|
63 |
+
Alors, pourquoi est-ce qu'ils ne <p>le</p> fabriquent plus?
|
64 |
+
Alors, pourquoi est-ce qu'ils ne <p>le</p> fabriquent plus?
|
65 |
+
Le but même de la vie est de trouver l'amour et <p>ils</p> s'y prennent si mal.
|
66 |
+
Le but même de la vie est de trouver l'amour et <p>ils</p> s'y prennent si mal.
|
67 |
+
Le but même de la vie est de trouver l'amour et <p>elles</p> s'y prennent si mal.
|
68 |
+
Le but même de la vie est de trouver l'amour et <p>elles</p> le font si mal.
|
69 |
+
<p>Ils</p> seront utiles un jour.
|
70 |
+
<p>Elles</p> seront utiles un jour.
|
71 |
+
<p>Elles</p> seront utiles un jour.
|
72 |
+
<p>Ils</p> seront utiles un jour.
|
73 |
+
Ô, les <p>tiens</p> aussi !
|
74 |
+
Ô, les <p>tiens</p> aussi !
|
75 |
+
Ô, les <p>tiennes</p> aussi !
|
76 |
+
Ô, les <p>tiennes</p> aussi !
|
77 |
+
<p>Ils</p> adoreraient les avoir.
|
78 |
+
<p>Ils</p> adoreraient les avoir.
|
79 |
+
<p>Elles</p> adoreraient les avoir.
|
80 |
+
<p>Elles</p> adoreraient les avoir.
|
81 |
+
C'est chouette de <p>la</p> voir enfin.
|
82 |
+
C'est chouette de <p>le</p> voir enfin.
|
83 |
+
C'est chouette de <p>la</p> voir enfin.
|
84 |
+
C'est chouette de <p>le</p> voir enfin.
|
85 |
+
Alors <p>il</p> est où ?
|
86 |
+
Alors <p>elle</p> est où ?
|
87 |
+
Alors <p>elle</p> est où ?
|
88 |
+
Alors <p>il</p> est où ?
|
89 |
+
Oui, il l'a <p>laissé</p> à la maison.
|
90 |
+
Oui, il l'a <p>laissée</p> à la maison.
|
91 |
+
Oui, il l'a <p>laissé</p> à la maison.
|
92 |
+
Oui, il l'a <p>laissée</p> à la maison.
|
93 |
+
Et s'il l'a <p>trouvée</p>, alors, nous aussi, on peut.
|
94 |
+
Et s'il l'a <p>trouvée</p>, alors, nous aussi, on peut.
|
95 |
+
Et s'il l'a <p>trouvé</p>, alors, nous aussi, on peut.
|
96 |
+
Et s'il l'a <p>trouvé</p>, alors, nous aussi, on peut.
|
97 |
+
Si tu ne l'aimes pas, ne <p>la</p> regarde pas.
|
98 |
+
Si tu ne l'aimes pas, ne <p>le</p> regarde pas.
|
99 |
+
Si tu ne l'aimes pas, ne <p>le</p> regarde pas.
|
100 |
+
Si tu ne l'aimes pas, ne <p>la</p> regarde pas.
|
101 |
+
Je t'ai dit qu'<p>elle</p> était petite.
|
102 |
+
Je t'ai dit qu'<p>il</p> était petit.
|
103 |
+
Je t'ai dit qu'<p>elle</p> était petite.
|
104 |
+
Je t'ai dit qu'<p>il</p> était petit.
|
105 |
+
<p>Elle</p> était déjà détruite.
|
106 |
+
<p>Il</p> était déjà détruit.
|
107 |
+
<p>Il</p> était déjà détruit.
|
108 |
+
<p>Elle</p> était déjà détruite.
|
109 |
+
Pourquoi tu me l'as <p>pris</p> ?
|
110 |
+
Pourquoi tu me l'as <p>prise</p> ?
|
111 |
+
Pourquoi tu me l'as <p>prise</p> ?
|
112 |
+
Pourquoi tu me l'as <p>pris</p> ?
|
113 |
+
Tu ne <p>le</p> tiens pas juste comme ça.
|
114 |
+
Tu ne <p>la</p> tiens pas juste comme ça.
|
115 |
+
Tu ne <p>la</p> tiens pas juste comme ça.
|
116 |
+
Tu ne <p>le</p> tiens pas juste comme ça.
|
117 |
+
Pourquoi <p>il</p> te plaît autant ?
|
118 |
+
Pourquoi <p>elle</p> te plaît autant ?
|
119 |
+
Pourquoi <p>elle</p> te plaît autant ?
|
120 |
+
Pourquoi <p>il</p> te plaît autant ?
|
121 |
+
Est-ce que tu peux <p>le</p> réparer ?
|
122 |
+
Est-ce que tu peux <p>le</p> réparer ?
|
123 |
+
Est-ce que tu peux <p>la</p> réparer ?
|
124 |
+
Est-ce que tu peux <p>la</p> réparer ?
|
125 |
+
Je les peins <p>tous</p>.
|
126 |
+
Je les peins <p>toutes</p>.
|
127 |
+
Je les peins <p>tous</p>.
|
128 |
+
Je les peins <p>toutes</p>.
|
129 |
+
Heureusement, <p>ils</p> me laissent tranquille.
|
130 |
+
Heureusement, <p>ils</p> me laissent tranquille.
|
131 |
+
Heureusement, <p>elles</p> me laissent tranquille.
|
132 |
+
Heureusement, <p>elles</p> me laissent tranquille.
|
133 |
+
Au moins vous <p>la</p> prenez.
|
134 |
+
Au moins vous <p>le</p> prenez.
|
135 |
+
Au moins vous <p>le</p> prenez.
|
136 |
+
Au moins vous <p>la</p> prenez.
|
137 |
+
Je voulais te <p>la</p> chanter.
|
138 |
+
Je voulais te <p>le</p> chanter.
|
139 |
+
Je voulais te <p>la</p> chanter.
|
140 |
+
Je voulais te <p>le</p> chanter.
|
141 |
+
Ouais, <p>elles</p> vont t'adorer, toi.
|
142 |
+
Ouais, <p>ils</p> vont t'adorer, toi.
|
143 |
+
Ouais, <p>elles</p> vont t'adorer, toi.
|
144 |
+
Ouais, <p>ils</p> vont t'adorer, toi.
|
145 |
+
<p>Elles</p> doivent d'abord être cuites.
|
146 |
+
<p>Elles</p> doivent d'abord être cuites.
|
147 |
+
<p>Ils</p> doivent d'abord être cuits.
|
148 |
+
<p>Ils</p> doivent d'abord être cuits.
|
149 |
+
Mais tu ne peux pas vraiment les manger <p>toutes</p> seules.
|
150 |
+
Mais tu ne peux pas vraiment les manger <p>toutes</p> seules.
|
151 |
+
Mais tu ne peux pas vraiment les manger <p>tous</p> seuls.
|
152 |
+
Mais tu ne peux pas vraiment les manger <p>tous</p> seuls.
|
153 |
+
Non, amène-<p>la</p> juste ici, s'il te plaît.
|
154 |
+
Non, amène-<p>la</p> juste ici, s'il te plaît.
|
155 |
+
Non, amène-<p>le</p> juste ici, s'il te plaît.
|
156 |
+
Non, amène-<p>le</p> juste ici, s'il te plaît.
|
157 |
+
Je les ai <p>faites</p>, oui.
|
158 |
+
Je les ai <p>faites</p>, oui.
|
159 |
+
Je les ai <p>faits</p>, oui.
|
160 |
+
Je les ai <p>faits</p>, oui.
|
161 |
+
Je ne sais pas pourquoi je les ai <p>gardées</p>.
|
162 |
+
Je ne sais pas pourquoi je les ai <p>gardés</p>.
|
163 |
+
Je ne sais pas pourquoi je les ai <p>gardés</p>.
|
164 |
+
Je ne sais pas pourquoi je les ai <p>gardées</p>.
|
165 |
+
Et <p>elle</p> vient d'où ?
|
166 |
+
Et <p>elle</p> vient d'où ?
|
167 |
+
Et <p>il</p> vient d'où ?
|
168 |
+
Et <p>il</p> vient d'où ?
|
169 |
+
Et je <p>le</p> lis souvent.
|
170 |
+
Et je <p>le</p> lis souvent.
|
171 |
+
Et je <p>la</p> lis souvent.
|
172 |
+
Et je <p>la</p> lis souvent.
|
173 |
+
En fait <p>il</p> n'est pas si mal si tu ne regardes pas de trop près.
|
174 |
+
En fait <p>il</p> n'est pas si mal si tu ne regardes pas de trop près.
|
175 |
+
En fait <p>elle</p> n'est pas si mal si tu ne regardes pas de trop près.
|
176 |
+
En fait <p>elle</p> n'est pas si mal si tu ne regardes pas de trop près.
|
177 |
+
Tu les ai <p>apprises</p> où ?
|
178 |
+
Tu les ai <p>apprises</p> où ?
|
179 |
+
Tu les ai <p>appris</p> où ?
|
180 |
+
Tu les ai <p>appris</p> où ?
|
181 |
+
<p>Ils</p> ne t'ont certainement pas donné de raison de les aimer.
|
182 |
+
<p>Elles</p> ne t'ont certainement pas donné de raison de les aimer.
|
183 |
+
<p>Ils</p> ne t'ont certainement pas donné de raison de les aimer.
|
184 |
+
<p>Elles</p> ne t'ont certainement pas donné de raison de les aimer.
|
185 |
+
Ô, je les avais déjà <p>oubliés</p>.
|
186 |
+
Ô, je les avais déjà <p>oubliées</p>.
|
187 |
+
Ô, je les avais déjà <p>oubliées</p>.
|
188 |
+
Ô, je les avais déjà <p>oubliés</p>.
|
189 |
+
Tu veux dire que tu viens de te <p>la</p> casser à l'instant ?
|
190 |
+
Tu veux dire que tu viens de te <p>le</p> casser à l'instant ?
|
191 |
+
Tu veux dire que tu viens de te <p>la</p> casser à l'instant ?
|
192 |
+
Tu veux dire que tu viens de te <p>le</p> casser à l'instant ?
|
193 |
+
Comment les avez-vous <p>obtenus</p> ?
|
194 |
+
Comment les avez-vous <p>obtenues</p> ?
|
195 |
+
Comment les avez-vous <p>obtenus</p> ?
|
196 |
+
Comment les avez-vous <p>obtenues</p> ?
|
197 |
+
Bah, parfois c'est <p>eux</p> qui me trouvent.
|
198 |
+
Bah, parfois c'est <p>elles</p> qui me trouvent.
|
199 |
+
Bah, parfois c'est <p>elles</p> qui me trouvent.
|
200 |
+
Bah, parfois c'est <p>eux</p> qui me trouvent.
|
examples/anaphora.type
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
m.pl
|
2 |
+
m.pl
|
3 |
+
f.pl
|
4 |
+
f.pl
|
5 |
+
m.pl
|
6 |
+
f.pl
|
7 |
+
m.pl
|
8 |
+
f.pl
|
9 |
+
f.sg
|
10 |
+
m.sg
|
11 |
+
f.sg
|
12 |
+
m.sg
|
13 |
+
f.pl
|
14 |
+
m.pl
|
15 |
+
f.pl
|
16 |
+
m.pl
|
17 |
+
m.sg
|
18 |
+
m.sg
|
19 |
+
f.sg
|
20 |
+
f.sg
|
21 |
+
m.pl
|
22 |
+
f.pl
|
23 |
+
m.pl
|
24 |
+
f.pl
|
25 |
+
f.sg
|
26 |
+
m.sg
|
27 |
+
m.sg
|
28 |
+
f.sg
|
29 |
+
m.sg
|
30 |
+
f.sg
|
31 |
+
m.sg
|
32 |
+
f.sg
|
33 |
+
m.sg
|
34 |
+
f.sg
|
35 |
+
f.sg
|
36 |
+
m.sg
|
37 |
+
f.pl
|
38 |
+
f.pl
|
39 |
+
m.pl
|
40 |
+
m.pl
|
41 |
+
f.pl
|
42 |
+
f.pl
|
43 |
+
m.pl
|
44 |
+
m.pl
|
45 |
+
m.pl
|
46 |
+
m.pl
|
47 |
+
f.pl
|
48 |
+
f.pl
|
49 |
+
f.sg
|
50 |
+
m.sg
|
51 |
+
m.sg
|
52 |
+
f.sg
|
53 |
+
m.pl
|
54 |
+
f.pl
|
55 |
+
m.pl
|
56 |
+
f.pl
|
57 |
+
f.pl
|
58 |
+
m.pl
|
59 |
+
f.pl
|
60 |
+
m.pl
|
61 |
+
f.sg
|
62 |
+
f.sg
|
63 |
+
m.sg
|
64 |
+
m.sg
|
65 |
+
m.pl
|
66 |
+
m.pl
|
67 |
+
f.pl
|
68 |
+
f.pl
|
69 |
+
m.pl
|
70 |
+
f.pl
|
71 |
+
f.pl
|
72 |
+
m.pl
|
73 |
+
m.pl
|
74 |
+
m.pl
|
75 |
+
f.pl
|
76 |
+
f.pl
|
77 |
+
m.pl
|
78 |
+
m.pl
|
79 |
+
f.pl
|
80 |
+
f.pl
|
81 |
+
f.sg
|
82 |
+
m.sg
|
83 |
+
f.sg
|
84 |
+
m.sg
|
85 |
+
m.sg
|
86 |
+
f.sg
|
87 |
+
f.sg
|
88 |
+
m.sg
|
89 |
+
m.sg
|
90 |
+
f.sg
|
91 |
+
m.sg
|
92 |
+
f.sg
|
93 |
+
f.sg
|
94 |
+
f.sg
|
95 |
+
m.sg
|
96 |
+
m.sg
|
97 |
+
f.sg
|
98 |
+
m.sg
|
99 |
+
m.sg
|
100 |
+
f.sg
|
101 |
+
f.sg
|
102 |
+
m.sg
|
103 |
+
f.sg
|
104 |
+
m.sg
|
105 |
+
f.sg
|
106 |
+
m.sg
|
107 |
+
m.sg
|
108 |
+
f.sg
|
109 |
+
m.sg
|
110 |
+
f.sg
|
111 |
+
f.sg
|
112 |
+
m.sg
|
113 |
+
m.sg
|
114 |
+
f.sg
|
115 |
+
f.sg
|
116 |
+
m.sg
|
117 |
+
m.sg
|
118 |
+
f.sg
|
119 |
+
f.sg
|
120 |
+
m.sg
|
121 |
+
m.sg
|
122 |
+
m.sg
|
123 |
+
f.sg
|
124 |
+
f.sg
|
125 |
+
m.pl
|
126 |
+
f.pl
|
127 |
+
m.pl
|
128 |
+
f.pl
|
129 |
+
m.pl
|
130 |
+
m.pl
|
131 |
+
f.pl
|
132 |
+
f.pl
|
133 |
+
f.sg
|
134 |
+
m.sg
|
135 |
+
m.sg
|
136 |
+
f.sg
|
137 |
+
f.sg
|
138 |
+
m.sg
|
139 |
+
f.sg
|
140 |
+
m.sg
|
141 |
+
f.pl
|
142 |
+
m.pl
|
143 |
+
f.pl
|
144 |
+
m.pl
|
145 |
+
f.pl
|
146 |
+
f.pl
|
147 |
+
m.pl
|
148 |
+
m.pl
|
149 |
+
f.pl
|
150 |
+
f.pl
|
151 |
+
m.pl
|
152 |
+
m.pl
|
153 |
+
f.sg
|
154 |
+
f.sg
|
155 |
+
m.sg
|
156 |
+
m.sg
|
157 |
+
f.pl
|
158 |
+
f.pl
|
159 |
+
m.pl
|
160 |
+
m.pl
|
161 |
+
f.pl
|
162 |
+
m.pl
|
163 |
+
m.pl
|
164 |
+
f.pl
|
165 |
+
f.sg
|
166 |
+
f.sg
|
167 |
+
m.sg
|
168 |
+
m.sg
|
169 |
+
m.sg
|
170 |
+
m.sg
|
171 |
+
f.sg
|
172 |
+
f.sg
|
173 |
+
m.sg
|
174 |
+
m.sg
|
175 |
+
f.sg
|
176 |
+
f.sg
|
177 |
+
f.pl
|
178 |
+
f.pl
|
179 |
+
m.pl
|
180 |
+
m.pl
|
181 |
+
m.pl
|
182 |
+
f.pl
|
183 |
+
m.pl
|
184 |
+
f.pl
|
185 |
+
m.pl
|
186 |
+
f.pl
|
187 |
+
f.pl
|
188 |
+
m.pl
|
189 |
+
f.sg
|
190 |
+
m.sg
|
191 |
+
f.sg
|
192 |
+
m.sg
|
193 |
+
m.pl
|
194 |
+
f.pl
|
195 |
+
m.pl
|
196 |
+
f.pl
|
197 |
+
m.pl
|
198 |
+
f.pl
|
199 |
+
f.pl
|
200 |
+
m.pl
|
examples/lexical-choice.context.en
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
What's <hon>crazy<hoff> about me?
|
2 |
+
What's <hon>crazy<hoff> about me?
|
3 |
+
Would you like some <hon>lemonade<hoff>?
|
4 |
+
Would you like some <hon>lemonade<hoff>?
|
5 |
+
Could I sell your <hon>sofa<hoff>?
|
6 |
+
Could I sell your <hon>sofa<hoff>?
|
7 |
+
You're clearly not raising our <hon>kids<hoff> correctly.
|
8 |
+
They're lovely little sweet <hon>cakes<hoff>.
|
9 |
+
Please turn off your <hon>device<hoff>.
|
10 |
+
Please turn off your <hon>device<hoff>.
|
11 |
+
Could it be anything serious, <hon>Doctor<hoff>?
|
12 |
+
Things could start to get dangerous if the <hon>ministers<hoff> find out.
|
13 |
+
So anything new on the <hon>suspects<hoff>?
|
14 |
+
My <hon>lighter<hoff> isn't working...
|
15 |
+
So what happened with the <hon>cheque<hoff> in the end ?
|
16 |
+
So how did he avoid <hon>drowning<hoff>?
|
17 |
+
I really hope it won't <hon>go against me<hoff>.
|
18 |
+
I've always been interested in <hon>music<hoff>.
|
19 |
+
They're always trying to cover their backs, whilst exploiting the <hon>underdogs<hoff>.
|
20 |
+
There's a cricket <hon>match<hoff> going on over there.
|
21 |
+
I'm fed up of bad <hon>candidates<hoff> in these <hon>elections<hoff>.
|
22 |
+
I'm going to <hon>miss the bus<hoff> again.
|
23 |
+
Do you have any <hon>beers<hoff> left?
|
24 |
+
Have you seen <hon>Sam and Bob<hoff> anywhere?
|
25 |
+
Oh no, now you're <hon>mad<hoff> at me.
|
26 |
+
You must be completely <hon>mad<hoff> if you think it's possible.
|
27 |
+
They've been buying <hon>seeds<hoff> off Rob.
|
28 |
+
The new bosses are coming in to discuss <hon>waste disposal<hoff>.
|
29 |
+
How's the <hon>code<hoff> coming along?
|
30 |
+
Did you manage to clear away the last of the <hon>creepy crawlies<hoff> ?
|
31 |
+
Can I help you with the <hon>wrapping<hoff>?
|
32 |
+
Do you think you can <hon>shoot<hoff> it from here?
|
33 |
+
They are living a <hon>life of poverty<hoff>.
|
34 |
+
The <hon>sandwiches<hoff> aren't very good here.
|
35 |
+
The <hon>text<hoff> is just too <hon>small<hoff>.
|
36 |
+
I'll open another <hon>bottle<hoff> but I need to find some more...
|
37 |
+
The <hon>price<hoff> is <hon>30 dollars<hoff>.
|
38 |
+
You mean you've brought <hon>10 pairs of trousers, 6 jumpers<hoff> and...
|
39 |
+
The <hon>prisoners<hoff> were captured on the beach.
|
40 |
+
He always buys expensive <hon>clothes<hoff>.
|
41 |
+
I'm never playing <hon>poker<hoff> with you again.
|
42 |
+
And now I'm applying the <hon>ketchup<hoff>...
|
43 |
+
The new <hon>guy<hoff> is a bit rude.
|
44 |
+
The <hon>room<hoff>'s too small.
|
45 |
+
And the long <hon>screws<hoff>.
|
46 |
+
The <hon>makeup<hoff> looks good.
|
47 |
+
Can you drive this to the <hon>dump<hoff>?
|
48 |
+
You want a plaster cast of his <hon>foot<hoff>?
|
49 |
+
You totally <hon>destroyed<hoff> it!
|
50 |
+
You totally <hon>destroyed<hoff> it!
|
51 |
+
She <hon>hates<hoff> the forest, the beach, the city.
|
52 |
+
She <hon>hates<hoff> the forest, the beach, the city.
|
53 |
+
It's raining <hon>cats and goats<hoff> out there.
|
54 |
+
We could get a pet - I like <hon>cats and goats<hoff>.
|
55 |
+
We should be getting back to the <hon>church<hoff>.
|
56 |
+
We should be getting back to <hon>Parliament<hoff>.
|
57 |
+
This references a <hon>task force<hoff>.
|
58 |
+
This references a <hon>task force<hoff>.
|
59 |
+
Go on, say <hon>yes<hoff>.
|
60 |
+
Go on, say <hon>yes<hoff>.
|
61 |
+
And then the <hon>attack<hoff> took place.
|
62 |
+
And then the <hon>attack<hoff> took place.
|
63 |
+
She comes across so <hon>angry<hoff>.
|
64 |
+
She comes across so <hon>angry<hoff>.
|
65 |
+
Don't approach or I'll <hon>shoot<hoff>.
|
66 |
+
Now lift up your right <hon>leg<hoff>.
|
67 |
+
What's your <hon>name<hoff>?
|
68 |
+
What's your <hon>name<hoff>?
|
69 |
+
Why are you so <hon>happy<hoff> today?
|
70 |
+
That's not <hon>bouncing<hoff> at all.
|
71 |
+
Things started to go <hon>sour<hoff>.
|
72 |
+
The pumpkins started to go <hon>sour<hoff>.
|
73 |
+
I don't trust that <hon>spineless<hoff> idiot.
|
74 |
+
This fabric doesn't seem <hon>rustic<hoff> enough.
|
75 |
+
I don't know how they could have <hon>found out<hoff>!
|
76 |
+
I can hear a <hon>scurrying sound<hoff> behind the cupboard.
|
77 |
+
Are you <hon>struggling to breathe<hoff>?
|
78 |
+
So what makes you think you have the most gold <hon>coins<hoff>?
|
79 |
+
Has he got anyone <hon>defending<hoff> him?
|
80 |
+
Make sure <hon>nobody touches my stuff<hoff>, ok?
|
81 |
+
The weather's starting to get <hon>hot<hoff>.
|
82 |
+
The chicken curry's meant to be <hon>hot<hoff>.
|
83 |
+
Oh shit. The <hon>computer<hoff> screen's not working anything.
|
84 |
+
Hmm, I'm not sure the <hon>dessert<hoff> is ready yet.
|
85 |
+
Wasn't it too <hon>difficult<hoff>?
|
86 |
+
Did you give her a <hon>slice of tart<hoff>?
|
87 |
+
Okay, now you want to turn <hon>right<hoff>.
|
88 |
+
You can't make such a <hon>decision<hoff>.
|
89 |
+
She insulted the mayor when she called her a fat <hon>pig<hoff>.
|
90 |
+
I'm going to market tomorrow to buy a <hon>pig<hoff>.
|
91 |
+
I'm not very sure about the stability of the <hon>roof<hoff>.
|
92 |
+
The <hon>spaceship<hoff> is still hovering.
|
93 |
+
This <hon>lock<hoff>'s a tricky one.
|
94 |
+
Nah, I'm not a big <hon>fan<hoff> of that one.
|
95 |
+
<hon>Evacuate<hoff> immediately.
|
96 |
+
I need you to go and find me a <hon>drill<hoff>.
|
97 |
+
Has he almost finished his <hon>tour<hoff>?
|
98 |
+
Has he finished <hon>putting the table together<hoff> yet?
|
99 |
+
You mean I have to <hon>carry<hoff> it myself?
|
100 |
+
So the office only has one <hon>window<hoff>?
|
101 |
+
Where did you say the <hon>chicken<hoff> was?
|
102 |
+
Where did you say the <hon>pencil<hoff> was?
|
103 |
+
Oh, I do like your... the things holding up your <hon>trousers<hoff>.
|
104 |
+
Oh, what a pretty smile, despite the thing on your <hon>teeth<hoff>.
|
105 |
+
She always manages to find the <hon>crazy<hoff> ones.
|
106 |
+
She needs to be careful with those <hon>nibbles<hoff> - she's <hon>allergic<hoff>, you know.
|
107 |
+
Give the <hon>weapons<hoff> here.
|
108 |
+
Hold this piece of <hon>hair<hoff> and I'll attach the other <hon>strand<hoff> here.
|
109 |
+
But you need good nails to <hon>play the guitar<hoff>.
|
110 |
+
This <hon>soil<hoff> is <hon>rock solid<hoff>.
|
111 |
+
Hey! I was <hon>hungry<hoff> and that was mine!
|
112 |
+
So I <hon>move my piece<hoff> forward four squares.
|
113 |
+
I'll play <hon>two hearts<hoff>.
|
114 |
+
So I hear you own a <hon>bar<hoff>...
|
115 |
+
I know it was here, somewhere behind the <hon>leaves<hoff>.
|
116 |
+
The poor <hon>elephant<hoff> has a couple of injuries unfortunately.
|
117 |
+
The <hon>captain<hoff> said we're <hon>sailing<hoff> to France.
|
118 |
+
They've finished the <hon>main course<hoff> and are asking for <hon>dessert<hoff>.
|
119 |
+
Thank you - the <hon>dinner<hoff> and <hon>service<hoff> was <hon>perfect<hoff>.
|
120 |
+
That's <hon>what I would do<hoff>...
|
121 |
+
Did you manage to <hon>record<hoff> that?
|
122 |
+
Just stick one more piece here to <hon>seal<hoff> it.
|
123 |
+
They're in real danger of getting sent to <hon>jail<hoff> again.
|
124 |
+
They can spray as much <hon>perfume<hoff> as they want.
|
125 |
+
His <hon>name<hoff>'s been <hon>removed<hoff> from the... from the...
|
126 |
+
He's been <hon>struck off<hoff> from the... from the...
|
127 |
+
This just <hon>arrived<hoff>, but I do not know who could have <hon>sent<hoff> it.
|
128 |
+
The <hon>penguins<hoff> have been set free.
|
129 |
+
The <hon>chair<hoff> will join us in five minutes.
|
130 |
+
Do you mind if I move this <hon>chair<hoff> out the way?
|
131 |
+
We've been thinking about it and we'd like to throw a <hon>ball<hoff> this weekend.
|
132 |
+
I'll buy you one thing: either a <hon>ball<hoff> or a yoyo.
|
133 |
+
The <hon>fish tank<hoff>'s spewing water.
|
134 |
+
There's <hon>oil<hoff> everywhere.
|
135 |
+
I can't seem to find a full <hon>pack of cards<hoff>.
|
136 |
+
The <hon>poker<hoff>'s being used to prop up the table.
|
137 |
+
I should probably <hon>leave<hoff> now.
|
138 |
+
I'm going to go find a <hon>seat<hoff> over there.
|
139 |
+
If you don't <hon>train<hoff> harder, we're not going to <hon>win<hoff> the <hon>cup<hoff>.
|
140 |
+
You've gone and broken the <hon>teacup<hoff>!
|
141 |
+
The <hon>verdict<hoff> isn't great.
|
142 |
+
Have you finished the <hon>text<hoff> yet?
|
143 |
+
She really disappointed her <hon>fans<hoff> that evening.
|
144 |
+
It was so <hon>stuffy<hoff> in the meeting <hon>room<hoff>.
|
145 |
+
The <hon>bath<hoff> <hon>water<hoff>'s overflowing!
|
146 |
+
There's an <hon>electrical<hoff> problem.
|
147 |
+
We could use a <hon>brush<hoff> to detangle the <hon>hair<hoff>.
|
148 |
+
We could start with the <hon>paintbrushes<hoff> over there.
|
149 |
+
What other features aside the <hon>airbag<hoff>...
|
150 |
+
What other brass <hon>instruments<hoff> aside the <hon>trumpet<hoff>...
|
151 |
+
Is Rebecca coming on the <hon>plane<hoff> with us?
|
152 |
+
Will Rebecca be coming with us on the <hon>hike<hoff>?
|
153 |
+
Oh no, it's no <hon>secret<hoff> - I know already.
|
154 |
+
What's that <hon>meowing<hoff> sound?
|
155 |
+
Why are they <hon>honking<hoff> at me?
|
156 |
+
It might be on <hon>standby<hoff> but I can't be sure.
|
157 |
+
And what about <hon>tigers<hoff>?
|
158 |
+
And what about <hon>tabbies<hoff>?
|
159 |
+
And what did the <hon>doctor<hoff> tell you?
|
160 |
+
So how did they get on with the new <hon>puppy<hoff>?
|
161 |
+
Have you had any problems with the <hon>alarm<hoff> recently?
|
162 |
+
Do you think the <hon>cream<hoff>'s ok to drink?
|
163 |
+
I can't believe you only <hon>ate one square<hoff>.
|
164 |
+
I can't believe your <hon>restraint<hoff> when it comes to <hon>alcohol<hoff>.
|
165 |
+
The poor vines aren't handling the <hon>drought<hoff> very well.
|
166 |
+
We're going to end up <hon>stinking<hoff> by the end of the weekend.
|
167 |
+
Can I get you some <hon>drinks<hoff>, Sir?
|
168 |
+
Fancy getting <hon>high<hoff> this evening?
|
169 |
+
Oh please hurry up with the <hon>popcorn<hoff>.
|
170 |
+
How are you handling day-to-day life, <hon>hygiene<hoff> and whatnot?
|
171 |
+
The <hon>pizza<hoff>'s in the oven, but there's still some <hon>dough<hoff> left.
|
172 |
+
Here you are - you've <hon>earnt<hoff> it.
|
173 |
+
That's a beautiful <hon>drawing<hoff> you've done.
|
174 |
+
Apparently the <hon>area's improved<hoff> a lot since we were kids.
|
175 |
+
Are we having the <hon>chicken<hoff> tonight?
|
176 |
+
That <hon>hair<hoff>'s still there, you know.
|
177 |
+
I'll really miss not having to tend to my <hon>carrots<hoff>.
|
178 |
+
I don't know about you, but I was disappointed by the third <hon>book<hoff>.
|
179 |
+
She was found amongst broken <hon>branches<hoff>, through relatively unscathed.
|
180 |
+
She was lying in the <hon>conservatory<hoff>, with a couple of bruises but otherwise ok.
|
181 |
+
Wait a second for the <hon>train<hoff> to stop completely.
|
182 |
+
No further <hon>questions<hoff>, your <hon>honour<hoff>.
|
183 |
+
So what do you say to <hon>£50<hoff>?
|
184 |
+
How are your <hon>feet<hoff> holding up?
|
185 |
+
What the <hon>hell<hoff> happened in there? How can he expect us to <hon>trust<hoff> him?
|
186 |
+
What about my <hon>dog<hoff>?
|
187 |
+
We just need to make a <hon>hole<hoff> through here.
|
188 |
+
The <hon>flour<hoff>'s down, the <hon>dough<hoff>'s rolled out.
|
189 |
+
Have you seen the new <hon>guy<hoff> on the first floor?
|
190 |
+
I've never seen anything so spectacularly <hon>yummy<hoff>!
|
191 |
+
I could go for something <hon>tighter<hoff> round the hips...
|
192 |
+
<hon>Tighten<hoff> the cord a little more.
|
193 |
+
Neil's preparing some <hon>pamphlets<hoff>.
|
194 |
+
Neil would have preferred to be at the <hon>steering wheel<hoff> rather than a spectator.
|
195 |
+
But who's ever going to <hon>stand up to<hoff> her?
|
196 |
+
But in such a sorry state, who's going to <hon>look after<hoff> her?
|
197 |
+
You've been so <hon>wonderful<hoff> to me these past couple of months.
|
198 |
+
Try some - it's like a <hon>sugar<hoff> explosion!
|
199 |
+
Unless you want to spend your life <hon>upside-down<hoff>.
|
200 |
+
Do you need anything for the <hon>game<hoff>, son?
|
examples/lexical-choice.context.fr
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Qu'est-ce qu'il y a de <hon>dingue<hoff> chez moi ?
|
2 |
+
Qu'est-ce qu'il y a de <hon>fou<hoff> chez moi ?
|
3 |
+
Un peu de <hon>limonade<hoff>?
|
4 |
+
Un peu de <hon>citron pressé<hoff>?
|
5 |
+
Je peux vendre ton <hon>canapé<hoff> ?
|
6 |
+
Je peux vendre ton <hon>fauteuil<hoff> ?
|
7 |
+
C'est clair que tu n'élèves pas nos <hon>enfants<hoff> correctement.
|
8 |
+
Ce sont de jolis petits <hon>gâteaux<hoff> sucrés.
|
9 |
+
Éteignez votre <hon>appareil<hoff> s'il vous plaît.
|
10 |
+
Éteignez votre <hon>dispositif<hoff> s'il vous plaît.
|
11 |
+
Est-ce que c'est grave, <hon>Docteur<hoff> ?
|
12 |
+
Les choses pourraient devenir dangereuses si les <hon>ministres<hoff> apprenaient ça.
|
13 |
+
Alors quoi de neuf à propos des <hon>suspects<hoff> ?
|
14 |
+
Mon <hon>briquet<hoff> ne marche pas...
|
15 |
+
Que s'est-il passé avec le <hon>chèque<hoff> finalement ?
|
16 |
+
Comment a-t-il réussi à ne pas se <hon>noyer<hoff> ?
|
17 |
+
J'espère vraiment que ça ne jouera pas en ma <hon>défaveur<hoff>.
|
18 |
+
J'ai toujours été intéressé par la <hon>musique<hoff>.
|
19 |
+
Ils essaient toujours de se protéger, tout en exploitant les moins <hon>fortunés<hoff>.
|
20 |
+
Il y a un <hon>match<hoff> de cricket en cours là-bas.
|
21 |
+
J'en ai marre des mauvais <hon>candidats<hoff> à ces élections.
|
22 |
+
Je vais encore <hon>rater<hoff> le bus.
|
23 |
+
Est-ce qu'il vous reste des <hon>bières<hoff> ?
|
24 |
+
Est-ce que vous avez vu <hon>Sam et Bob<hoff> quelque part ?
|
25 |
+
Oh non, maintenant tu es <hon>fâchée<hoff> contre moi.
|
26 |
+
Tu dois être complètement <hon>folle<hoff> si tu penses que c'est possible.
|
27 |
+
Ils achètent des <hon>graines<hoff> à Rob.
|
28 |
+
Les nouveaux patrons viennent pour parler de l'<hon>élimination de déchets<hoff>.
|
29 |
+
Est-ce que le <hon>code<hoff> avance bien ?
|
30 |
+
Tu as réussi à éliminer les dernières petites <hon>bêtes<hoff> ?
|
31 |
+
Est-ce que je peux t'aider pour l'<hon>emballage<hoff> ?
|
32 |
+
Tu penses que tu peux le <hon>tirer<hoff> dessus à partir d'ici ?
|
33 |
+
Ils vivent dans la <hon>pauvreté<hoff>.
|
34 |
+
Les <hon>sandwichs<hoff> ne sont pas très bons ici.
|
35 |
+
Le <hon>texte<hoff> est trop <hon>petit<hoff>.
|
36 |
+
Je vais ouvrir une <hon>bouteille<hoff> de plus mais je dois trouver plus de...
|
37 |
+
Le <hon>prix<hoff> est de 30 dollars.
|
38 |
+
Tu veux dire que tu as amené <hon>10 pantalons, 6 pulls<hoff> et...
|
39 |
+
Les <hon>prisonniers<hoff> ont été capturés sur la plage.
|
40 |
+
Il achète toujours des <hon>vêtement<hoff> chers.
|
41 |
+
Je ne jouerai plus jamais au <hon>poker<hoff> avec toi.
|
42 |
+
Et maintenant je verse le <hon>ketchup<hoff>...
|
43 |
+
Le <hon>nouveau<hoff> est un peu impoli
|
44 |
+
La <hon>pièce<hoff> est trop petite.
|
45 |
+
Et les <hon>vis<hoff> longues.
|
46 |
+
Votre <hon>maquillage<hoff> est très bien.
|
47 |
+
Est-ce que tu peux amener ça à la <hon>déchetterie<hoff> ?
|
48 |
+
Vous voulez un plâtre de son <hon>pied<hoff> ?
|
49 |
+
Tu l'as totalement <hon>détruit<hoff> !
|
50 |
+
Tu l'as totalement <hon>cassé<hoff> !
|
51 |
+
Elle <hon>déteste<hoff> la forêt, la plage, la ville.
|
52 |
+
Elle <hon>hait<hoff> la forêt, la plage, la ville.
|
53 |
+
Il pleut des <hon>hordes<hoff>.
|
54 |
+
On pourrait prendre un animal domestique - J'aime les <hon>chats<hoff> et les <hon>chèvres<hoff>.
|
55 |
+
On devrait bientôt rentrer à l'<hon>église<hoff>.
|
56 |
+
On devrait bientôt rentrer au <hon>Parlement<hoff>.
|
57 |
+
Ceci fait référence à une <hon>unité opérationnelle<hoff>.
|
58 |
+
Ceci fait référence à un <hon>groupe de travail<hoff>.
|
59 |
+
Vas-y, dis <hon>oui<hoff>.
|
60 |
+
Vas-y, dis <hon>OK<hoff>.
|
61 |
+
Et puis l'<hon>attaque<hoff> a eu lieu.
|
62 |
+
Et puis l'<hon>assaut<hoff> a eu lieu.
|
63 |
+
Elle donne l'air tellement <hon>fâchée<hoff>.
|
64 |
+
Elle donne l'air tellement <hon>énervée<hoff>.
|
65 |
+
N'approchez pas ou je <hon>tire<hoff>.
|
66 |
+
Maintenant levez votre <hon>jambe<hoff> droite.
|
67 |
+
Quel est votre <hon>nom<hoff> ?
|
68 |
+
Comment tu t'<hon>appelles<hoff> ?
|
69 |
+
Pourquoi es-tu si <hon>content<hoff> aujourd'hui ?
|
70 |
+
Ça ne <hon>rebondit<hoff> pas du tout.
|
71 |
+
Les choses ont commencé à <hon>mal tourner<hoff>.
|
72 |
+
Les citrouilles ont commencé à devenir <hon>amères<hoff>.
|
73 |
+
Je n'ai pas confiance en cette <hon>chiffe molle<hoff>.
|
74 |
+
Ce tissu n'a pas l'air assez <hon>rustique<hoff>.
|
75 |
+
Je ne sais pas comment ils ont pu <hon>savoir<hoff> !
|
76 |
+
J'entends des <hon>bruits de pattes<hoff> derrière le placard.
|
77 |
+
Est-ce que vous avez du <hon>mal à respirer<hoff> ?
|
78 |
+
Pourquoi est-ce que tu penses que c'est toi qui as le plus de <hon>pièces<hoff> en or ?
|
79 |
+
Est-ce qu'il a quelqu'un pour le <hon>défendre<hoff> ?
|
80 |
+
Fais attention à ce que personne ne <hon>touche à mes affaires<hoff>, d'accord ?
|
81 |
+
Il commence à faire <hon>chaud<hoff>.
|
82 |
+
Le curry au poulet est supposé être <hon>épicé<hoff>.
|
83 |
+
Oh merde. Maintenant l'écran de l'<hon>ordinateur<hoff> ne fonctionne plus.
|
84 |
+
Mmm, je ne suis pas sûre que le <hon>dessert<hoff> soit prêt.
|
85 |
+
Ce n'était pas trop <hon>difficile<hoff> ?
|
86 |
+
Tu lui as donné une <hon>part de tarte<hoff> ?
|
87 |
+
OK, maintenant tu dois tourner à <hon>droite<hoff>.
|
88 |
+
Vous ne pouvez pas prendre une telle <hon>décision<hoff>.
|
89 |
+
Elle a insulté le maire en la traitant de grosse <hon>vache<hoff>.
|
90 |
+
Je vais au marché demain pour acheter un <hon>cochon<hoff>.
|
91 |
+
Je ne suis très sûre que le <hon>toit<hoff> soit très stable.
|
92 |
+
Le <hon>vaisseau spatial<hoff> fait du surplace.
|
93 |
+
Cette <hon>serrure<hoff> est difficile.
|
94 |
+
Non, je ne suis pas grand <hon>fan<hoff> de celle-là.
|
95 |
+
<hon>Evacuez<hoff> immédiatement.
|
96 |
+
J'ai besoin que tu me trouves une <hon>perceuse<hoff>.
|
97 |
+
Est-ce qu'il a bientôt fini sa <hon>tournée<hoff> ?
|
98 |
+
Est-ce qu'il a fini de <hon>monter la table<hoff> ?
|
99 |
+
Vous voulez dire que je dois le <hon>porter<hoff> moi-même ?
|
100 |
+
Le bureau n'a qu'une seule <hon>fenêtre<hoff> ?
|
101 |
+
Elle était où la <hon>poule<hoff> en fait?
|
102 |
+
Il était où le <hon>crayon<hoff> en fait?
|
103 |
+
Ô, j'aime bien tes... les machins qui tiennent ton <hon>pantalon<hoff>.
|
104 |
+
Ô, quel joli sourire, malgré ce truc sur tes <hon>dents<hoff>.
|
105 |
+
Elle arrive toujours à trouver des <hon>dingues<hoff>.
|
106 |
+
Elle doit faire attention avec ses <hon>amuse-gueules<hoff> - elle est <hon>allergique<hoff>, tu sais.
|
107 |
+
Passe-moi les <hon>armes<hoff>.
|
108 |
+
Tiens ces <hon>cheveux<hoff> et je vais attacher l'autre <hon>mèche<hoff> ici.
|
109 |
+
Mais il faut de bons ongles pour <hon>jouer de la guitare<hoff>.
|
110 |
+
Cette <hon>terre<hoff> est dure comme du <hon>béton<hoff>.
|
111 |
+
Hé ! J'avais <hon>faim<hoff> et c'était le mien!
|
112 |
+
Donc je fais <hon>avancer mon pion<hoff> de quatre cases.
|
113 |
+
Je joue <hon>deux cœurs<hoff>.
|
114 |
+
Donc on m'a dit que vous teniez un <hon>bar<hoff>...
|
115 |
+
Je sais qu'il était là, quelque part derrière les <hon>feuilles<hoff>.
|
116 |
+
Le pauvre <hon>éléphant<hoff> a malheureusement quelques blessures.
|
117 |
+
Le <hon>capitaine<hoff> dit qu'on <hon>navigue<hoff> en direction de la France.
|
118 |
+
Ils ont fini le <hon>plat principal<hoff> et ils réclament le <hon>dessert<hoff>.
|
119 |
+
Merci - le <hon>dîner<hoff> et le <hon>service<hoff> était parfait.
|
120 |
+
C'est <hon>ce que je ferais<hoff>...
|
121 |
+
Est-ce que tu as pu <hon>enregister<hoff> ça ?
|
122 |
+
Mets juste un dernier morceau ici pour le <hon>fermer<hoff>
|
123 |
+
Ils courent le risque d'être renvoyé en <hon>prison<hoff>.
|
124 |
+
Ils peuvent répandre du <hon>parfum<hoff> tant qu'ils veulent.
|
125 |
+
Son <hon>nom<hoff> a été <hon>enlevé<hoff> du... du...
|
126 |
+
Il a été <hon>viré<hoff> du... du...
|
127 |
+
Ceci vient d'<hon>arriver<hoff>, mais je ne sais pas qui a pu l'<hon>envoyer<hoff>.
|
128 |
+
Les <hon>manchots<hoff> ont été libérés.
|
129 |
+
Le <hon>président<hoff> nous rejoindra dans cinq minutes.
|
130 |
+
Est-ce que ça vous dérange que je déplace la <hon>chaise<hoff> ?
|
131 |
+
Nous avons réfléchi et nous aimerions bien organiser un <hon>bal<hoff> ce weekend.
|
132 |
+
Je t'acheterai une seule chose : soit un <hon>ballon<hoff> soit un yoyo.
|
133 |
+
L'<hon>aquarium<hoff> perd de l'eau.
|
134 |
+
Il y a de l'<hon>huile<hoff> partout.
|
135 |
+
Je n'arrive pas à trouver un <hon>jeu de cartes<hoff> complet.
|
136 |
+
Le <hon>tisonnier<hoff> est utilisé pour soutenir la table.
|
137 |
+
Je devrais probablement <hon>partir<hoff> maintenant.
|
138 |
+
Je vais aller trouver une <hon>place<hoff> là-bas.
|
139 |
+
Si vous ne vous <hon>entraînez<hoff> pas plus, on ne va pas <hon>gagner<hoff> la <hon>coupe<hoff>.
|
140 |
+
Tu as cassé la <hon>tasse<hoff> !
|
141 |
+
Le <hon>verdict<hoff> n'est pas bon.
|
142 |
+
Est-ce vous avez déjà fini le <hon>texte<hoff> ?
|
143 |
+
Elle a vraiment déçu ses <hon>fans<hoff> ce soir-là.
|
144 |
+
C'était vraiment <hon>étouffant<hoff> dans la <hon>salle<hoff> de réunion.
|
145 |
+
L'<hon>eau<hoff> déborde de la <hon>baignoire<hoff>!
|
146 |
+
Il y a un problème <hon>électrique<hoff>.
|
147 |
+
On pourrait utiliser une <hon>brosse<hoff> pour démêler les <hon>cheveux<hoff>.
|
148 |
+
On pourrait commencer avec les <hon>pinceaux<hoff> là-bas.
|
149 |
+
Quelles autres caractéristiques à part l'<hon>airbag<hoff>...
|
150 |
+
Quels autres instruments à part la <hon>trompette<hoff>...
|
151 |
+
Est-ce que Rebecca vient dans l'<hon>avion<hoff> avec nous ?
|
152 |
+
Est-ce que Rebecca vient faire la <hon>randonnée<hoff> avec nous ?
|
153 |
+
Oh non, ce n'est pas un <hon>secret<hoff> - je le sais déjà.
|
154 |
+
C'est quoi ce <hon>miaulement<hoff> ?
|
155 |
+
Pourquoi ils me <hon>klaxonnent<hoff> ?
|
156 |
+
Il est peut-être en veille, mais je ne suis pas sûr.
|
157 |
+
Et que penses-tu des <hon>tigres<hoff> ?
|
158 |
+
Et que penses-tu des <hon>chats tigrés<hoff> ?
|
159 |
+
Et qu'est-ce que le <hon>médecin<hoff> t'a dit ?
|
160 |
+
Alors comment ça s'est passé avec le nouveau <hon>chiot<hoff>?
|
161 |
+
Est-ce que vous avez eu des problèmes avec l'<hon>alarme<hoff> récemment ?
|
162 |
+
Est-ce que tu penses que la <hon>crème<hoff> est bonne à boire ?
|
163 |
+
Je n'y crois pas que tu aies <hon>mangé un seul carreau<hoff>.
|
164 |
+
Je suis étonnée par ta <hon>modération<hoff> avec l'<hon>alcool<hoff>.
|
165 |
+
Les pauvres vignes ne supportent pas bien la <hon>sécheresse<hoff>.
|
166 |
+
On va finir par <hon>puer<hoff> à la fin du weekend.
|
167 |
+
Est-ce que vous voulez quelque chose à <hon>boire<hoff>, Monsieur ?
|
168 |
+
Ça te dit de se <hon>défoncer<hoff> ce soir?
|
169 |
+
Oh dépêche-toi avec le <hon>popcorn<hoff> s'il te plaît.
|
170 |
+
Comment tu gères le quotidien, l'<hon>hygiène<hoff> et tout ça ?
|
171 |
+
La <hon>pizza<hoff> est dans le four, mais il reste de la <hon>pâte<hoff>.
|
172 |
+
Tiens - tu l'as <hon>mérité<hoff>.
|
173 |
+
C'est un très joli <hon>dessin<hoff> que tu as fait là.
|
174 |
+
Apparemment le <hon>quartier<hoff> s'est beaucoup <hon>amélioré<hoff> depuis qu'on était gosses.
|
175 |
+
Est-ce qu'on mange le <hon>poulet<hoff> ce soir?
|
176 |
+
Ce <hon>poil<hoff> est toujours là, tu sais.
|
177 |
+
Je regretterai ne plus avoir à m'occuper de mes <hon>carottes<hoff>.
|
178 |
+
Je ne sais pas pour toi, mais j'ai été déçue par le troisième <hon>volume<hoff>.
|
179 |
+
On l'a trouvée parmi des <hon>branches<hoff> cassées, mais relativement indemne.
|
180 |
+
Elle était allongée dans la <hon>véranda<hoff>, avec quelques bleus mais rien de plus.
|
181 |
+
Attendez une seconde que le <hon>train<hoff> s'arrête complètement.
|
182 |
+
Je n'ai plus de <hon>questions<hoff>, Madame le <hon>Juge<hoff>.
|
183 |
+
Qu'est-ce que vous en pensez de <hon>50£<hoff> ?
|
184 |
+
Comment vont tes <hon>pieds<hoff> ?
|
185 |
+
Mais qu'est-ce qui vient de se passer ? Comment s'attend-il à ce qu'on lui fasse <hon>confiance<hoff> ?
|
186 |
+
Qu’est-ce qu’il a mon <hon>chien<hoff> ?
|
187 |
+
Nous devons juste faire un <hon>trou<hoff> ici.
|
188 |
+
La <hon>farine<hoff> est mise, la <hon>pâte<hoff> est étalée.
|
189 |
+
Tu as vu le nouveau <hon>mec<hoff> du première étage ?
|
190 |
+
Je n'ai jamais rien vu d'aussi incroyablement <hon>délicieux<hoff> !
|
191 |
+
Je pourrais prendre quelque chose de plus <hon>serré<hoff> aux hanches.
|
192 |
+
<hon>Tends<hoff> un peu plus la corde.
|
193 |
+
Neil prépare quelques <hon>tracts<hoff>.
|
194 |
+
Neil aurait préféré être au <hon>volant<hoff> plutôt que spectateur.
|
195 |
+
Mais qui va lui <hon>tenir tête<hoff> ?
|
196 |
+
Mais dans un tel pitieux état, qui va <hon>s'en occuper<hoff> ?
|
197 |
+
Vous avez été tellement <hon>extraordinaires<hoff> avec moi ces derniers mois.
|
198 |
+
Goûte - c'est comme une explosion de <hon>sucre<hoff> !
|
199 |
+
Sauf si tu veux passer ta vie à l'<hon>envers<hoff>.
|
200 |
+
Est-ce que tu as besoin de quelque chose pour le <hon>match<hoff>, fiston ?
|
examples/lexical-choice.contrast.fr
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Est-ce que ça c'est <p>fou</p> ?
|
2 |
+
Est-ce que ça c'est <p>dingue</p> ?
|
3 |
+
Dan adorait le <p>citron pressé</p>.
|
4 |
+
Dan adorait la <p>limonade</p>.
|
5 |
+
Vendre mon <p>fauteuil</p> ?
|
6 |
+
Vendre mon <p>canapé</p> ?
|
7 |
+
Alors pourquoi tu ne <p>les aimes</p> pas ?
|
8 |
+
Alors pourquoi tu ne <p>t'en occupes</p> pas ?
|
9 |
+
Vous appelez ça un <p>dispositif</p> ?
|
10 |
+
Vous appelez ça un <p>appareil</p> ?
|
11 |
+
Il va falloir se débarrasser de cette <p>taupe</p>.
|
12 |
+
Il va falloir enlever ce <p>grain de beauté</p>.
|
13 |
+
J'ai trouvé une <p>allumette</p> !
|
14 |
+
J'ai trouvé une <p>correspondance</p> !
|
15 |
+
Il a réussi à atteindre la <p>rive</p>.
|
16 |
+
Il a réussi à aller à la <p>banque</p>.
|
17 |
+
Voyons votre <p>enregistrement</p>.
|
18 |
+
Voyons votre <p>dossier</p>.
|
19 |
+
Ce n'est pas du <p>cricket</p>.
|
20 |
+
Ce n'est pas <p>fair-play</p>.
|
21 |
+
Alors, pourquoi est-ce que tu ne <p>cours</p> pas ?
|
22 |
+
Alors, pourquoi est-ce que tu ne te <p>portes</p> pas <p>candidat</p> ?
|
23 |
+
Je suis désolé, ils <p>viennent de sortir en courant</p>.
|
24 |
+
Je suis désolé, il <p>n'y en a plus</p>.
|
25 |
+
Je ne suis pas <p>folle</p>.
|
26 |
+
Je ne suis pas <p>fâchée</p>.
|
27 |
+
Donc tu vois, l'<p>usine</p> ne leur appartient même pas.
|
28 |
+
Donc tu vois, la <p>plante</p> ne leur appartient même pas.
|
29 |
+
Il reste encore quelques <p>insectes</p>.
|
30 |
+
Il reste encore quelques <p>bugs</p>.
|
31 |
+
Passe-moi cet <p>arc</p>.
|
32 |
+
Passe-moi ce <p>ruban</p>.
|
33 |
+
Mais ils sont <p>gratuits</p>.
|
34 |
+
Mais ils sont <p>libres</p>.
|
35 |
+
Tu veux que je te prête mes <p>verres</p> ?
|
36 |
+
Tu veux que je te prête mes <p>lunettes</p> ?
|
37 |
+
25 <p>hauts</p>.
|
38 |
+
25 <p>max</p>.
|
39 |
+
Et <p>de marque</p>.
|
40 |
+
Et <p>marqués au fer</p>.
|
41 |
+
Donne-moi les <p>frites</p> !
|
42 |
+
Donne-moi les <p>jetons</p> !
|
43 |
+
Et <p>sombre</p>.
|
44 |
+
Et <p>stupide</p>.
|
45 |
+
On fait des <p>ongles</p> argentés aussi.
|
46 |
+
On fait des <p>clous</p> argentés aussi.
|
47 |
+
Il faut d'abord remplir la <p>botte</p>.
|
48 |
+
Il faut d'abord remplir le <p>coffre</p>.
|
49 |
+
Je ne dirais pas que je l'ai totalement <p>cassé</p>...
|
50 |
+
Je ne dirais pas que je l'ai totalement <p>détruit</p>...
|
51 |
+
Elle <p>hait</p> tout.
|
52 |
+
Elle <p>déteste</p> tout.
|
53 |
+
Tu veux dire "<p>les chats et les chiens</p>"?
|
54 |
+
Tu veux dire "<p>des cordes</p>"?
|
55 |
+
Le <p>ministre</p> va s'inquiéter.
|
56 |
+
Le <p>pasteur</p> va s'inquiéter.
|
57 |
+
Quel <p>groupe de travail</p> ?
|
58 |
+
Quelle <p>unité opérationnelle</p> ?
|
59 |
+
<p>OK</p>.
|
60 |
+
<p>Oui</p>.
|
61 |
+
Un <p>assaut</p> vraiment affreux.
|
62 |
+
Une <p>attaque</p> vraiment affreuse.
|
63 |
+
Oui elle est vraiment <p>énervée</p>.
|
64 |
+
Oui elle est vraiment <p>fâchée</p>.
|
65 |
+
Baissez vos <p>bras</p>.
|
66 |
+
Baissez vos <p>armes</p>.
|
67 |
+
Comment je m'<p>appelle</p> ?
|
68 |
+
Mon <p>nom</p> ?
|
69 |
+
Ça doit être le <p>ressort</p>...
|
70 |
+
Ça doit être le <p>printemps</p>...
|
71 |
+
Elles ont commencé à vraiment <p>devenir amères</p>.
|
72 |
+
Elles ont commencé à vraiment <p>mal tourner</p>.
|
73 |
+
Je sais. Trop <p>soyeux</p>.
|
74 |
+
Je sais. Trop <p>faible</p>.
|
75 |
+
Il doit y avoir un <p>rat</p> dans le bureau.
|
76 |
+
Il doit y avoir un <p>traître</p> dans le bureau.
|
77 |
+
Mon <p>coffre</p> est assez <p>lourd</p>...
|
78 |
+
J'ai du <p>mal à respirer</p>...
|
79 |
+
Personne ne s'approchera de la <p>valise</p>.
|
80 |
+
Personne n'osera toucher le <p>dossier</p>.
|
81 |
+
Trop <p>épicé</p> pour moi.
|
82 |
+
Trop <p>chaud</p> pour moi.
|
83 |
+
Il est complètement <p>congelé</p>.
|
84 |
+
Il est complètement <p>bloqué</p>.
|
85 |
+
Si, c'était une <p>part de gâteau</p>.
|
86 |
+
Non, c'était un <p>jeu d'enfant</p>.
|
87 |
+
Si, c'est mon <p>droit</p> !
|
88 |
+
Non, c'est à ma <p>droite</p> !
|
89 |
+
Un <p>gros cochon</p> ?
|
90 |
+
De <p>grosse vache</p> ?
|
91 |
+
Le <p>rayon</p> a l'air de bouger.
|
92 |
+
La <p>poutre</p> a l'air de bouger.
|
93 |
+
Alors je te laisse <p>choisir</p>.
|
94 |
+
Alors je te laisse <p>la forcer</p>.
|
95 |
+
Ce n'est pas une <p>perceuse</p> ?
|
96 |
+
Ce n'est pas un <p>exercice</p> ?
|
97 |
+
Il en est au <p>dernier pied</p>.
|
98 |
+
Il en est à la <p>dernière étape</p>.
|
99 |
+
Ne vous inquiétez pas, il est très <p>lumineux</p>.
|
100 |
+
Ne vous inquiétez pas, il est très <p>léger</p>.
|
101 |
+
Là-bas à côté du <p>stylo</p>.
|
102 |
+
Là-bas à côté de l'<p>enclos</p>.
|
103 |
+
C'est un <p>appareil dentaire</p>.
|
104 |
+
Ce sont des <p>bretelles</p>.
|
105 |
+
Je sais. Le dernier était une vraie <p>noix</p>.
|
106 |
+
Je sais. Le dernier était un vrai <p>fou</p>.
|
107 |
+
Fais gaffe de ne pas faire tomber la <p>barrette</p> !
|
108 |
+
Fais gaffe de ne pas faire tomber le <p>chargeur</p> !
|
109 |
+
C'est peut-être plus facile avec une <p>pioche</p>.
|
110 |
+
C'est peut-être plus facile avec un <p>médiator</p>.
|
111 |
+
C'est mon <p>tour</p> maintenant !
|
112 |
+
C'est mon <p>sandwich</p> maintenant !
|
113 |
+
J'ai une <p>boîte de nuit</p>.
|
114 |
+
J'ai un <p>trèfle</p>.
|
115 |
+
Là, sur la <p>trompe</p>.
|
116 |
+
Là, sur le <p>tronc</p>.
|
117 |
+
Il veut quel <p>porto</p> ?
|
118 |
+
Il veut quel <p>port</p> ?
|
119 |
+
Merci pour ton <p>conseil</p>.
|
120 |
+
Merci pour le <p>pourboire</p>.
|
121 |
+
Désolé, on vient de finir le <p>rouleau</p>.
|
122 |
+
Désolé, on était arrivés à la fin de la <p>cassette</p>.
|
123 |
+
Mais ils ne pourront plus <p>ignorer la saleté</p> très longtemps.
|
124 |
+
Mais ils ne pourront plus <p>échapper aux flics</p> très longtemps.
|
125 |
+
Du <p>conseil</p>.
|
126 |
+
Du <p>tableau</p>.
|
127 |
+
Est-ce que vous avez vérifié le <p>phoque</p> ?
|
128 |
+
Est-ce que vous avez vérifié le <p>cachet</p> ?
|
129 |
+
Pourquoi la <p>chaise</p> est-elle là ?
|
130 |
+
Pourquoi le <p>président</p> est-il là ?
|
131 |
+
Un <p>ballon</p> !
|
132 |
+
Un <p>bal</p> !
|
133 |
+
Il doit y avoir un trou dans la <p>citerne</p> quelque part.
|
134 |
+
Il doit y avoir un trou dans l'<p>aquarium</p> quelque part.
|
135 |
+
On va devoir faire sans le <p>tisonnier</p> alors.
|
136 |
+
On va devoir oublier le <p>poker</p> alors.
|
137 |
+
Mais c'est ta <p>place</p> ici.
|
138 |
+
Mais on est <p>chez toi</p> ici.
|
139 |
+
Je n'ai rien à faire de la <p>tasse</p>.
|
140 |
+
Je n'ai rien à faire de la <p>coupe</p>.
|
141 |
+
Quelle est la dernière <p>phrase</p> ?
|
142 |
+
Quel est le <p>jugement</p> final ?
|
143 |
+
Les <p>ventilateurs</p> étaient toujours hors service.
|
144 |
+
Les <p>fans</p> sont allés trop loin.
|
145 |
+
Débranche vite la <p>prise</p> !
|
146 |
+
Enlève vite la <p>bonde</p> !
|
147 |
+
Je pense qu'on ne devrait pas utiliser un <p>pinceau</p>.
|
148 |
+
Je pense qu'on ne devrait pas utiliser une <p>brosse</p>.
|
149 |
+
Il y a le <p>cor</p>.
|
150 |
+
Il y a le <p>klaxon</p>.
|
151 |
+
Elle nous attend dans la <p>cabane</p>.
|
152 |
+
Elle nous attend dans la <p>cabine</p>.
|
153 |
+
Est-ce que quelqu'un a <p>fait sortir le chat du sac</p> ?
|
154 |
+
Est-ce que quelqu'un a <p>vendu la mèche</p> ?
|
155 |
+
Tu ne vois pas la <p>lumière rouge</p> ?
|
156 |
+
Tu ne vois pas le <p>feu rouge</p> ?
|
157 |
+
Oh, ce sont mes <p>chats</p> favoris.
|
158 |
+
Oh, ce sont mes <p>fauves</p> favoris.
|
159 |
+
Ils auraient probablement dû <p>prendre la laisse</p>.
|
160 |
+
Ils auraient probablement dû <p>enlever le plomb</p>.
|
161 |
+
Elle a <p>tourné</p> la semaine dernière...
|
162 |
+
Elle s'est <p>déclenchée</p> la semaine dernière...
|
163 |
+
Tu aurais pu <p>boire le bar</p> entier si tu l'avais voulu.
|
164 |
+
Tu aurais pu <p>manger la barre</p> entière si tu l'avais voulue.
|
165 |
+
Je sais - heureusement qu'il y avait des <p>douches</p> hier.
|
166 |
+
Je sais - heureusement qu'il y a eu des <p>averses</p> hier.
|
167 |
+
Tu as de la <p>coke</p> ?
|
168 |
+
Est-ce que vous avez du <p>coca</p> ?
|
169 |
+
Mon <p>savon</p> me manque.
|
170 |
+
Je suis en train de rater mon <p>soap</p>.
|
171 |
+
Je n'ai jamais vu autant de <p>thune</p> !
|
172 |
+
Je n'ai jamais vu autant de <p>pâte</p> !
|
173 |
+
C'est encore un peu <p>mal famé</p>.
|
174 |
+
C'est encore un <p>brouillon</p>.
|
175 |
+
Je n'ai pas eu le courage de l'<p>épiler</p>.
|
176 |
+
Je n'ai pas eu le courage de le <p>plumer</p>.
|
177 |
+
C'était une <p>intrigue</p> sympa, mais toute bonne chose a une fin.
|
178 |
+
C'était une jolie <p>parcelle</p>, mais toute bonne chose a une fin.
|
179 |
+
L'<p>auvent</p> a dû amortir sa chute.
|
180 |
+
La <p>canopée</p> a dû amortir sa chute.
|
181 |
+
Vous pouvez vous <p>retirer</p> maintenant.
|
182 |
+
Vous pouvez <p>descendre</p> maintenant.
|
183 |
+
C'est un peu plus <p>raide</p> que ce que je pensais.
|
184 |
+
C'est un peu plus <p>cher</p> que ce que je pensais.
|
185 |
+
Il est en train d'<p>aboyer</p>.
|
186 |
+
Il est complètement <p>cinglé</p>.
|
187 |
+
Passe-moi les <p>emporte-pièces</p>.
|
188 |
+
Passe-moi le <p>cutter</p>.
|
189 |
+
Quel <p>plat</p> !
|
190 |
+
Quel <p>beau gosse</p> !
|
191 |
+
C'est déjà assez <p>tendu</p> à mon avis.
|
192 |
+
C'est déjà assez <p>serré</p> à mon avis.
|
193 |
+
Oh, il va être au <p>rallye</p> aussi !
|
194 |
+
Oh, il va être à la <p>manif</p> aussi !
|
195 |
+
Si quelqu'un peut la <p>prendre en charge</p>, c'est bien toi.
|
196 |
+
Si quelqu'un peut l'<p>affronter</p>, c'est bien toi.
|
197 |
+
C'est tellement <p>sucré</p>.
|
198 |
+
C'est tellement <p>adorable</p>.
|
199 |
+
Une <p>batte</p>, par exemple ?
|
200 |
+
Comme une <p>chauve-souris</p> ?
|
examples/lexical-choice.current.en
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Is this <p>crazy</p>?
|
2 |
+
Is this <p>crazy</p>?
|
3 |
+
Dan loved <p>lemonade</p>.
|
4 |
+
Dan loved <p>lemonade</p>.
|
5 |
+
Sell my <p>sofa</p>?
|
6 |
+
Sell my <p>sofa</p>?
|
7 |
+
Why don't you <p>care</p> for them then?
|
8 |
+
Why don't you <p>care</p> for them then?
|
9 |
+
You call that a <p>device</p> ?
|
10 |
+
You call that a <p>device</p> ?
|
11 |
+
We'll have to get rid of that <p>mole</p>.
|
12 |
+
We'll have to get rid of that <p>mole</p>.
|
13 |
+
I found a <p>match</p>!
|
14 |
+
I found a <p>match</p>!
|
15 |
+
He finally made it to the <p>bank</p>.
|
16 |
+
He finally made it to the <p>bank</p>.
|
17 |
+
Let's have a look at your <p>record</p>.
|
18 |
+
Let's have a look at your <p>record</p>.
|
19 |
+
It's not <p>cricket</p>.
|
20 |
+
It's not <p>cricket</p>.
|
21 |
+
Well, why don't you <p>run</p>?
|
22 |
+
Well, why don't you <p>run</p>?
|
23 |
+
I'm sorry, they just <p>ran out</p>.
|
24 |
+
I'm sorry, they just <p>ran out</p>.
|
25 |
+
I am not <p>mad</p>.
|
26 |
+
I am not <p>mad</p>.
|
27 |
+
So you see, they don't even own the <p>plant</p>.
|
28 |
+
So you see, they don't even own the <p>plant</p>.
|
29 |
+
There are still a couple of <p>bugs</p> left.
|
30 |
+
There are still a couple of <p>bugs</p> left.
|
31 |
+
Hand me that <p>bow</p>.
|
32 |
+
Hand me that <p>bow</p>.
|
33 |
+
But they are <p>free</p>.
|
34 |
+
But they are <p>free</p>.
|
35 |
+
Do you want to borrow my <p>glasses</p>?
|
36 |
+
Do you want to borrow my <p>glasses</p>?
|
37 |
+
25 <p>tops</p>.
|
38 |
+
25 <p>tops</p>.
|
39 |
+
And <p>branded</p>.
|
40 |
+
And <p>branded</p>.
|
41 |
+
Just give me the <p>chips</p>!
|
42 |
+
Just give me the <p>chips</p>!
|
43 |
+
And <p>dim</p>.
|
44 |
+
And <p>dim</p>.
|
45 |
+
We do silver <p>nails</p> too.
|
46 |
+
We do silver <p>nails</p> too.
|
47 |
+
First we should fill up the <p>boot</p>.
|
48 |
+
First we should fill up the <p>boot</p>.
|
49 |
+
I wouldn't say I totally <p>destroyed</p> it...
|
50 |
+
I wouldn't say I totally <p>destroyed</p> it...
|
51 |
+
She <p>hates</p> everything.
|
52 |
+
She <p>hates</p> everything.
|
53 |
+
Do you mean "<p>cats and dogs</p>"?
|
54 |
+
Do you mean "<p>cats and dogs</p>"?
|
55 |
+
The <p>minister</p> will be getting worried.
|
56 |
+
The <p>minister</p> will be getting worried.
|
57 |
+
Which <p>task force</p> ?
|
58 |
+
Which <p>task force</p> ?
|
59 |
+
<p>Yes</p>.
|
60 |
+
<p>Yes</p>.
|
61 |
+
A truly terrible <p>attack</p>.
|
62 |
+
A truly terrible <p>attack</p>.
|
63 |
+
Yes, well, she is <p>angry</p>.
|
64 |
+
Yes, well, she is <p>angry</p>.
|
65 |
+
Put down your <p>arms</p>.
|
66 |
+
Put down your <p>arms</p>.
|
67 |
+
My <p>name</p>?
|
68 |
+
My <p>name</p>?
|
69 |
+
It must be the <p>spring</p>.
|
70 |
+
It must be the <p>spring</p>.
|
71 |
+
They started <p>going sour</p> alright.
|
72 |
+
They started <p>going sour</p> alright.
|
73 |
+
I know, too <p>soft</p>.
|
74 |
+
I know, too <p>soft</p>.
|
75 |
+
There must be a <p>rat</p> in the office.
|
76 |
+
There must be a <p>rat</p> in the office.
|
77 |
+
My <p>chest</p> is quite <p>heavy</p>...
|
78 |
+
My <p>chest</p> is quite <p>heavy</p>...
|
79 |
+
Nobody will go anywhere near the <p>case</p>.
|
80 |
+
Nobody will go anywhere near the <p>case</p>.
|
81 |
+
Too <p>hot</p> for me.
|
82 |
+
Too <p>hot</p> for me.
|
83 |
+
It's completely <p>frozen</p>.
|
84 |
+
It's completely <p>frozen</p>.
|
85 |
+
No, it was a <p>piece of cake</p>.
|
86 |
+
No, it was a <p>piece of cake</p>.
|
87 |
+
No, it's my <p>right</p>!
|
88 |
+
No, it's my <p>right</p>!
|
89 |
+
A <p>fat pig</p>?
|
90 |
+
A <p>fat pig</p>?
|
91 |
+
The <p>beam</p> seems to be moving.
|
92 |
+
The <p>beam</p> seems to be moving.
|
93 |
+
I'll let you <p>pick it</p> then.
|
94 |
+
I'll let you <p>pick it</p> then.
|
95 |
+
Is this not a <p>drill</p>?
|
96 |
+
Is this not a <p>drill</p>?
|
97 |
+
He's on the <p>last leg</p>.
|
98 |
+
He's on the <p>last leg</p>.
|
99 |
+
Don't worry, it's very <p>light</p>.
|
100 |
+
Don't worry, it's very <p>light</p>.
|
101 |
+
Over there by the <p>pen</p>.
|
102 |
+
Over there by the <p>pen</p>.
|
103 |
+
They're <p>braces</p>.
|
104 |
+
They're <p>braces</p>.
|
105 |
+
I know. The last one was a <p>real nut</p>.
|
106 |
+
I know. The last one was a <p>real nut</p>.
|
107 |
+
Be careful not to drop the <p>clip</p>!
|
108 |
+
Be careful not to drop the <p>clip</p>!
|
109 |
+
It might be easier with a <p>pick</p>.
|
110 |
+
It might be easier with a <p>pick</p>.
|
111 |
+
It's my <p>roll</p> now!
|
112 |
+
It's my <p>roll</p> now!
|
113 |
+
I have a <p>club</p>.
|
114 |
+
I have a <p>club</p>.
|
115 |
+
There, on the <p>trunk</p>.
|
116 |
+
There, on the <p>trunk</p>.
|
117 |
+
Which <p>port</p> does he want?
|
118 |
+
Which <p>port</p> does he want?
|
119 |
+
Thank you for the <p>tip</p>.
|
120 |
+
Thank you for the <p>tip</p>.
|
121 |
+
Sorry, the <p>tape</p>'s just run out.
|
122 |
+
Sorry, the <p>tape</p>'s just run out.
|
123 |
+
But they won't be able to avoid the <p>filth</p> for much longer.
|
124 |
+
But they won't be able to avoid the <p>filth</p> for much longer.
|
125 |
+
From the <p>board</p>.
|
126 |
+
From the <p>board</p>.
|
127 |
+
Have you checked the <p>seal</p>?
|
128 |
+
Have you checked the <p>seal</p>?
|
129 |
+
Why is the <p>chair</p> here?
|
130 |
+
Why is the <p>chair</p> here?
|
131 |
+
A <p>ball</p>!
|
132 |
+
A <p>ball</p>!
|
133 |
+
There must be a hole in the <p>tank</p> somewhere.
|
134 |
+
There must be a hole in the <p>tank</p> somewhere.
|
135 |
+
We're going to have to do without the <p>poker</p> then.
|
136 |
+
We're going to have to do without the <p>poker</p> then.
|
137 |
+
But this is your <p>place</p>.
|
138 |
+
But this is your <p>place</p>.
|
139 |
+
I don't give a damn about the <p>cup</p>.
|
140 |
+
I don't give a damn about the <p>cup</p>.
|
141 |
+
What is the final <p>sentence</p>?
|
142 |
+
What is the final <p>sentence</p>?
|
143 |
+
The <p>fans</p> were still out of order.
|
144 |
+
The <p>fans</p> were still out of order.
|
145 |
+
Pull out the <p>plug</p> quick!
|
146 |
+
Pull out the <p>plug</p> quick!
|
147 |
+
I don't think we should use a <p>brush</p>.
|
148 |
+
I don't think we should use a <p>brush</p>.
|
149 |
+
There's the <p>horn</p>.
|
150 |
+
There's the <p>horn</p>.
|
151 |
+
She's waiting for us in the <p>cabin</p>.
|
152 |
+
She's waiting for us in the <p>cabin</p>.
|
153 |
+
Has somebody <p>let the cat out of the bag</p>?
|
154 |
+
Has somebody <p>let the cat out of the bag</p>?
|
155 |
+
Can you not see the <p>red light</p>?
|
156 |
+
Can you not see the <p>red light</p>?
|
157 |
+
Oh they're my favourite <p>cats</p>.
|
158 |
+
Oh they're my favourite <p>cats</p>.
|
159 |
+
They probably should have <p>taken the lead out</p>.
|
160 |
+
They probably should have <p>taken the lead out</p>.
|
161 |
+
It <p>went off</p> last week...
|
162 |
+
It <p>went off</p> last week...
|
163 |
+
You could have had the whole <p>bar</p> if you'd wanted to.
|
164 |
+
You could have had the whole <p>bar</p> if you'd wanted to.
|
165 |
+
I know - good thing there were <p>showers</p> yesterday.
|
166 |
+
I know - good thing there were <p>showers</p> yesterday.
|
167 |
+
Have you got any <p>coke</p>?
|
168 |
+
Have you got any <p>coke</p>?
|
169 |
+
I'm missing my <p>soap</p>.
|
170 |
+
I'm missing my <p>soap</p>.
|
171 |
+
I've never seen so much <p>dough</p>!
|
172 |
+
I've never seen so much <p>dough</p>!
|
173 |
+
It's still quite <p>rough</p>.
|
174 |
+
It's still quite <p>rough</p>.
|
175 |
+
I couldn't bring myself to <p>pluck</p> it.
|
176 |
+
I couldn't bring myself to <p>pluck</p> it.
|
177 |
+
It was a nice <p>plot</p>, but nothing lasts forever.
|
178 |
+
It was a nice <p>plot</p>, but nothing lasts forever.
|
179 |
+
The <p>canopy</p> must have broken her fall.
|
180 |
+
The <p>canopy</p> must have broken her fall.
|
181 |
+
You can <p>step down</p> now.
|
182 |
+
You can <p>step down</p> now.
|
183 |
+
It's a little <p>steeper</p> than I was expecting.
|
184 |
+
It's a little <p>steeper</p> than I was expecting.
|
185 |
+
He's <p>barking</p> !
|
186 |
+
He's <p>barking</p> !
|
187 |
+
Pass me the <p>cutters</p>.
|
188 |
+
Pass me the <p>cutters</p>.
|
189 |
+
What a <p>dish</p>!
|
190 |
+
What a <p>dish</p>!
|
191 |
+
It's <p>tight</p> enough if you ask me.
|
192 |
+
It's <p>tight</p> enough if you ask me.
|
193 |
+
Oh he'll be at the <p>rally</p> too!
|
194 |
+
Oh he'll be at the <p>rally</p> too!
|
195 |
+
If anyone can <p>take her on</p>, it's you.
|
196 |
+
If anyone can <p>take her on</p>, it's you.
|
197 |
+
That is so <p>sweet</p>!
|
198 |
+
That is so <p>sweet</p>!
|
199 |
+
Like a <p>bat</p>?
|
200 |
+
Like a <p>bat</p>?
|
examples/lexical-choice.current.fr
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Est-ce que ça c'est <p>dingue</p> ?
|
2 |
+
Est-ce que ça c'est <p>fou</p> ?
|
3 |
+
Dan adorait la <p>limonade</p>.
|
4 |
+
Dan adorait le <p>citron pressé</p>.
|
5 |
+
Vendre mon <p>canapé</p> ?
|
6 |
+
Vendre mon <p>fauteuil</p> ?
|
7 |
+
Alors pourquoi tu ne <p>t'en occupes</p> pas ?
|
8 |
+
Alors pourquoi tu ne <p>les aimes</p> pas ?
|
9 |
+
Vous appelez ça un <p>appareil</p> ?
|
10 |
+
Vous appelez ça un <p>dispositif</p> ?
|
11 |
+
Il va falloir enlever ce <p>grain de beauté</p>.
|
12 |
+
Il va falloir se débarrasser de cette <p>taupe</p>.
|
13 |
+
J'ai trouvé une <p>correspondance</p> !
|
14 |
+
J'ai trouvé une <p>allumette</p> !
|
15 |
+
Il a réussi à aller à la <p>banque</p>.
|
16 |
+
Il a réussi à atteindre la <p>rive</p>.
|
17 |
+
Voyons votre <p>dossier</p>.
|
18 |
+
Voyons votre <p>enregistrement</p>.
|
19 |
+
Ce n'est pas <p>fair-play</p>.
|
20 |
+
Ce n'est pas du <p>cricket</p>.
|
21 |
+
Alors, pourquoi est-ce que tu ne te <p>portes</p> pas <p>candidat</p> ?
|
22 |
+
Alors, pourquoi est-ce que tu ne <p>cours</p> pas ?
|
23 |
+
Je suis désolé, il <p>n'y en a plus</p>.
|
24 |
+
Je suis désolé, ils <p>viennent de sortir en courant</p>.
|
25 |
+
Je ne suis pas <p>fâchée</p>.
|
26 |
+
Je ne suis pas <p>folle</p>.
|
27 |
+
Donc tu vois, la <p>plante</p> ne leur appartient même pas.
|
28 |
+
Donc tu vois, l'<p>usine</p> ne leur appartient même pas.
|
29 |
+
Il reste encore quelques <p>bugs</p>.
|
30 |
+
Il reste encore quelques <p>insectes</p>.
|
31 |
+
Passe-moi ce <p>ruban</p>.
|
32 |
+
Passe-moi cet <p>arc</p>.
|
33 |
+
Mais ils sont <p>libres</p>.
|
34 |
+
Mais ils sont <p>gratuits</p>.
|
35 |
+
Tu veux que je te prête mes <p>lunettes</p> ?
|
36 |
+
Tu veux que je te prête mes <p>verres</p> ?
|
37 |
+
25 <p>max</p>.
|
38 |
+
25 <p>hauts</p>.
|
39 |
+
Et <p>marqués au fer</p>.
|
40 |
+
Et <p>de marque</p>.
|
41 |
+
Donne-moi les <p>jetons</p> !
|
42 |
+
Donne-moi les <p>frites</p> !
|
43 |
+
Et <p>stupide</p>.
|
44 |
+
Et <p>sombre</p>.
|
45 |
+
On fait des <p>clous</p> argentés aussi.
|
46 |
+
On fait des <p>ongles</p> argentés aussi.
|
47 |
+
Il faut d'abord remplir le <p>coffre</p>.
|
48 |
+
Il faut d'abord remplir la <p>botte</p>.
|
49 |
+
Je ne dirais pas que je l'ai totalement <p>détruit</p>...
|
50 |
+
Je ne dirais pas que je l'ai totalement <p>cassé</p>...
|
51 |
+
Elle <p>déteste</p> tout.
|
52 |
+
Elle <p>hait</p> tout.
|
53 |
+
Tu veux dire "<p>des cordes</p>"?
|
54 |
+
Tu veux dire "<p>les chats et les chiens</p>"?
|
55 |
+
Le <p>pasteur</p> va s'inquiéter.
|
56 |
+
Le <p>ministre</p> va s'inquiéter.
|
57 |
+
Quelle <p>unité opérationnelle</p> ?
|
58 |
+
Quel <p>groupe de travail</p> ?
|
59 |
+
<p>Oui</p>.
|
60 |
+
<p>OK</p>.
|
61 |
+
Une <p>attaque</p> vraiment affreuse.
|
62 |
+
Un <p>assaut</p> vraiment affreux.
|
63 |
+
Oui elle est vraiment <p>fâchée</p>.
|
64 |
+
Oui elle est vraiment <p>énervée</p>.
|
65 |
+
Baissez vos <p>armes</p>.
|
66 |
+
Baissez vos <p>bras</p>.
|
67 |
+
Mon <p>nom</p> ?
|
68 |
+
Comment je m'<p>appelle</p> ?
|
69 |
+
Ça doit être le <p>printemps</p>...
|
70 |
+
Ça doit être le <p>ressort</p>...
|
71 |
+
Elles ont commencé à vraiment <p>mal tourner</p>.
|
72 |
+
Elles ont commencé à vraiment <p>devenir amères</p>.
|
73 |
+
Je sais. Trop <p>faible</p>.
|
74 |
+
Je sais. Trop <p>soyeux</p>.
|
75 |
+
Il doit y avoir un <p>traître</p> dans le bureau.
|
76 |
+
Il doit y avoir un <p>rat</p> dans le bureau.
|
77 |
+
J'ai du <p>mal à respirer</p>...
|
78 |
+
Mon <p>coffre</p> est assez <p>lourd</p>...
|
79 |
+
Personne n'osera toucher le <p>dossier</p>.
|
80 |
+
Personne ne s'approchera de la <p>valise</p>.
|
81 |
+
Trop <p>chaud</p> pour moi.
|
82 |
+
Trop <p>épicé</p> pour moi.
|
83 |
+
Il est complètement <p>bloqué</p>.
|
84 |
+
Il est complètement <p>congelé</p>.
|
85 |
+
Non, c'était un <p>jeu d'enfant</p>.
|
86 |
+
Si, c'était une <p>part de gâteau</p>.
|
87 |
+
Non, c'est à ma <p>droite</p> !
|
88 |
+
Si, c'est mon <p>droit</p> !
|
89 |
+
De <p>grosse vache</p> ?
|
90 |
+
Un <p>gros cochon</p> ?
|
91 |
+
La <p>poutre</p> a l'air de bouger.
|
92 |
+
Le <p>rayon</p> a l'air de bouger.
|
93 |
+
Alors je te laisse <p>la forcer</p>.
|
94 |
+
Alors je te laisse <p>choisir</p>.
|
95 |
+
Ce n'est pas un <p>exercice</p> ?
|
96 |
+
Ce n'est pas une <p>perceuse</p> ?
|
97 |
+
Il en est à la <p>dernière étape</p>.
|
98 |
+
Il en est au <p>dernier pied</p>.
|
99 |
+
Ne vous inquiétez pas, il est très <p>léger</p>.
|
100 |
+
Ne vous inquiétez pas, il est très <p>lumineux</p>.
|
101 |
+
Là-bas à côté de l'<p>enclos</p>.
|
102 |
+
Là-bas à côté du <p>stylo</p>.
|
103 |
+
Ce sont des <p>bretelles</p>.
|
104 |
+
C'est un <p>appareil dentaire</p>.
|
105 |
+
Je sais. Le dernier était un vrai <p>fou</p>.
|
106 |
+
Je sais. Le dernier était une vraie <p>noix</p>.
|
107 |
+
Fais gaffe de ne pas faire tomber le <p>chargeur</p> !
|
108 |
+
Fais gaffe de ne pas faire tomber la <p>barrette</p> !
|
109 |
+
C'est peut-être plus facile avec un <p>médiator</p>.
|
110 |
+
C'est peut-être plus facile avec une <p>pioche</p>.
|
111 |
+
C'est mon <p>sandwich</p> maintenant !
|
112 |
+
C'est mon <p>tour</p> maintenant !
|
113 |
+
J'ai un <p>trèfle</p>.
|
114 |
+
J'ai une <p>boîte de nuit</p>.
|
115 |
+
Là, sur le <p>tronc</p>.
|
116 |
+
Là, sur la <p>trompe</p>.
|
117 |
+
Il veut quel <p>port</p> ?
|
118 |
+
Il veut quel <p>porto</p> ?
|
119 |
+
Merci pour le <p>pourboire</p>.
|
120 |
+
Merci pour ton <p>conseil</p>.
|
121 |
+
Désolé, on était arrivés à la fin de la <p>cassette</p>.
|
122 |
+
Désolé, on vient de finir le <p>rouleau</p>.
|
123 |
+
Mais ils ne pourront plus <p>échapper aux flics</p> très longtemps.
|
124 |
+
Mais ils ne pourront plus <p>ignorer la saleté</p> très longtemps.
|
125 |
+
Du <p>tableau</p>.
|
126 |
+
Du <p>conseil</p>.
|
127 |
+
Est-ce que vous avez vérifié le <p>cachet</p> ?
|
128 |
+
Est-ce que vous avez vérifié le <p>phoque</p> ?
|
129 |
+
Pourquoi le <p>président</p> est-il là ?
|
130 |
+
Pourquoi la <p>chaise</p> est-elle là ?
|
131 |
+
Un <p>bal</p> !
|
132 |
+
Un <p>ballon</p> !
|
133 |
+
Il doit y avoir un trou dans l'<p>aquarium</p> quelque part.
|
134 |
+
Il doit y avoir un trou dans la <p>citerne</p> quelque part.
|
135 |
+
On va devoir oublier le <p>poker</p> alors.
|
136 |
+
On va devoir faire sans le <p>tisonnier</p> alors.
|
137 |
+
Mais on est <p>chez toi</p> ici.
|
138 |
+
Mais c'est ta <p>place</p> ici.
|
139 |
+
Je n'ai rien à faire de la <p>coupe</p>.
|
140 |
+
Je n'ai rien à faire de la <p>tasse</p>.
|
141 |
+
Quel est le <p>jugement</p> final ?
|
142 |
+
Quelle est la dernière <p>phrase</p> ?
|
143 |
+
Les <p>fans</p> sont allés trop loin.
|
144 |
+
Les <p>ventilateurs</p> étaient toujours hors service.
|
145 |
+
Enlève vite la <p>bonde</p> !
|
146 |
+
Débranche vite la <p>prise</p> !
|
147 |
+
Je pense qu'on ne devrait pas utiliser une <p>brosse</p>.
|
148 |
+
Je pense qu'on ne devrait pas utiliser un <p>pinceau</p>.
|
149 |
+
Il y a le <p>klaxon</p>.
|
150 |
+
Il y a le <p>cor</p>.
|
151 |
+
Elle nous attend dans la <p>cabine</p>.
|
152 |
+
Elle nous attend dans la <p>cabane</p>.
|
153 |
+
Est-ce que quelqu'un a <p>vendu la mèche</p> ?
|
154 |
+
Est-ce que quelqu'un a <p>fait sortir le chat du sac</p> ?
|
155 |
+
Tu ne vois pas le <p>feu rouge</p> ?
|
156 |
+
Tu ne vois pas la <p>lumière rouge</p> ?
|
157 |
+
Oh, ce sont mes <p>fauves</p> favoris.
|
158 |
+
Oh, ce sont mes <p>chats</p> favoris.
|
159 |
+
Ils auraient probablement dû <p>enlever le plomb</p>.
|
160 |
+
Ils auraient probablement dû <p>prendre la laisse</p>.
|
161 |
+
Elle s'est <p>déclenchée</p> la semaine dernière...
|
162 |
+
Elle a <p>tourné</p> la semaine dernière...
|
163 |
+
Tu aurais pu <p>manger la barre</p> entière si tu l'avais voulue.
|
164 |
+
Tu aurais pu <p>boire le bar</p> entier si tu l'avais voulu.
|
165 |
+
Je sais - heureusement qu'il y a eu des <p>averses</p> hier.
|
166 |
+
Je sais - heureusement qu'il y avait des <p>douches</p> hier.
|
167 |
+
Est-ce que vous avez du <p>coca</p> ?
|
168 |
+
Tu as de la <p>coke</p> ?
|
169 |
+
Je suis en train de rater mon <p>soap</p>.
|
170 |
+
Mon <p>savon</p> me manque.
|
171 |
+
Je n'ai jamais vu autant de <p>pâte</p> !
|
172 |
+
Je n'ai jamais vu autant de <p>thune</p> !
|
173 |
+
C'est encore un <p>brouillon</p>.
|
174 |
+
C'est encore un peu <p>mal famé</p>.
|
175 |
+
Je n'ai pas eu le courage de le <p>plumer</p>.
|
176 |
+
Je n'ai pas eu le courage de l'<p>épiler</p>.
|
177 |
+
C'était une jolie <p>parcelle</p>, mais toute bonne chose a une fin.
|
178 |
+
C'était une <p>intrigue</p> sympa, mais toute bonne chose a une fin.
|
179 |
+
La <p>canopée</p> a dû amortir sa chute.
|
180 |
+
L'<p>auvent</p> a dû amortir sa chute.
|
181 |
+
Vous pouvez <p>descendre</p> maintenant.
|
182 |
+
Vous pouvez vous <p>retirer</p> maintenant.
|
183 |
+
C'est un peu plus <p>cher</p> que ce que je pensais.
|
184 |
+
C'est un peu plus <p>raide</p> que ce que je pensais.
|
185 |
+
Il est complètement <p>cinglé</p>.
|
186 |
+
Il est en train d'<p>aboyer</p>.
|
187 |
+
Passe-moi le <p>cutter</p>.
|
188 |
+
Passe-moi les <p>emporte-pièces</p>.
|
189 |
+
Quel <p>beau gosse</p> !
|
190 |
+
Quel <p>plat</p> !
|
191 |
+
C'est déjà assez <p>serré</p> à mon avis.
|
192 |
+
C'est déjà assez <p>tendu</p> à mon avis.
|
193 |
+
Oh, il va être à la <p>manif</p> aussi !
|
194 |
+
Oh, il va être au <p>rallye</p> aussi !
|
195 |
+
Si quelqu'un peut l'<p>affronter</p>, c'est bien toi.
|
196 |
+
Si quelqu'un peut la <p>prendre en charge</p>, c'est bien toi.
|
197 |
+
C'est tellement <p>adorable</p>.
|
198 |
+
C'est tellement <p>sucré</p>.
|
199 |
+
Comme une <p>chauve-souris</p> ?
|
200 |
+
Une <p>batte</p>, par exemple ?
|
examples/lexical-choice.type
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
repet
|
2 |
+
repet
|
3 |
+
repet
|
4 |
+
repet
|
5 |
+
repet
|
6 |
+
repet
|
7 |
+
disambig
|
8 |
+
disambig
|
9 |
+
repet
|
10 |
+
repet
|
11 |
+
disambig
|
12 |
+
disambig
|
13 |
+
disambig
|
14 |
+
disambig
|
15 |
+
disambig
|
16 |
+
disambig
|
17 |
+
disambig
|
18 |
+
disambig
|
19 |
+
disambig
|
20 |
+
disambig
|
21 |
+
disambig
|
22 |
+
disambig
|
23 |
+
disambig
|
24 |
+
disambig
|
25 |
+
repet, disambig
|
26 |
+
repet, disambig
|
27 |
+
disambig
|
28 |
+
disambig
|
29 |
+
disambig
|
30 |
+
disambig
|
31 |
+
disambig
|
32 |
+
disambig
|
33 |
+
disambig
|
34 |
+
disambig
|
35 |
+
disambig
|
36 |
+
disambig
|
37 |
+
disambig
|
38 |
+
disambig
|
39 |
+
disambig
|
40 |
+
disambig
|
41 |
+
disambig
|
42 |
+
disambig
|
43 |
+
disambig
|
44 |
+
disambig
|
45 |
+
disambig
|
46 |
+
disambig
|
47 |
+
disambig
|
48 |
+
disambig
|
49 |
+
repet
|
50 |
+
repet
|
51 |
+
repet
|
52 |
+
repet
|
53 |
+
disambig
|
54 |
+
disambig
|
55 |
+
disambig
|
56 |
+
disambig
|
57 |
+
repet
|
58 |
+
repet
|
59 |
+
repet
|
60 |
+
repet
|
61 |
+
repet
|
62 |
+
repet
|
63 |
+
repet
|
64 |
+
repet
|
65 |
+
disambig
|
66 |
+
disambig
|
67 |
+
repet
|
68 |
+
repet
|
69 |
+
disambig
|
70 |
+
disambig
|
71 |
+
repet, disambig
|
72 |
+
repet, disambig
|
73 |
+
disambig
|
74 |
+
disambig
|
75 |
+
disambig
|
76 |
+
disambig
|
77 |
+
disambig
|
78 |
+
disambig
|
79 |
+
disambig
|
80 |
+
disambig
|
81 |
+
disambig
|
82 |
+
disambig
|
83 |
+
disambig
|
84 |
+
disambig
|
85 |
+
disambig
|
86 |
+
disambig
|
87 |
+
disambig
|
88 |
+
disambig
|
89 |
+
repet, disambig
|
90 |
+
repet, disambig
|
91 |
+
disambig
|
92 |
+
disambig
|
93 |
+
disambig
|
94 |
+
disambig
|
95 |
+
disambig
|
96 |
+
disambig
|
97 |
+
disambig
|
98 |
+
disambig
|
99 |
+
disambig
|
100 |
+
disambig
|
101 |
+
disambig
|
102 |
+
disambig
|
103 |
+
disambig
|
104 |
+
disambig
|
105 |
+
disambig
|
106 |
+
disambig
|
107 |
+
disambig
|
108 |
+
disambig
|
109 |
+
disambig
|
110 |
+
disambig
|
111 |
+
disambig
|
112 |
+
disambig
|
113 |
+
disambig
|
114 |
+
disambig
|
115 |
+
disambig
|
116 |
+
disambig
|
117 |
+
disambig
|
118 |
+
disambig
|
119 |
+
disambig
|
120 |
+
disambig
|
121 |
+
disambig
|
122 |
+
disambig
|
123 |
+
disambig
|
124 |
+
disambig
|
125 |
+
disambig
|
126 |
+
disambig
|
127 |
+
disambig
|
128 |
+
disambig
|
129 |
+
disambig
|
130 |
+
disambig
|
131 |
+
disambig
|
132 |
+
disambig
|
133 |
+
disambig
|
134 |
+
disambig
|
135 |
+
disambig
|
136 |
+
disambig
|
137 |
+
disambig
|
138 |
+
disambig
|
139 |
+
disambig
|
140 |
+
disambig
|
141 |
+
disambig
|
142 |
+
disambig
|
143 |
+
disambig
|
144 |
+
disambig
|
145 |
+
disambig
|
146 |
+
disambig
|
147 |
+
disambig
|
148 |
+
disambig
|
149 |
+
disambig
|
150 |
+
disambig
|
151 |
+
disambig
|
152 |
+
disambig
|
153 |
+
disambig
|
154 |
+
disambig
|
155 |
+
disambig
|
156 |
+
disambig
|
157 |
+
disambig
|
158 |
+
disambig
|
159 |
+
disambig
|
160 |
+
disambig
|
161 |
+
disambig
|
162 |
+
disambig
|
163 |
+
disambig
|
164 |
+
disambig
|
165 |
+
disambig
|
166 |
+
disambig
|
167 |
+
disambig
|
168 |
+
disambig
|
169 |
+
disambig
|
170 |
+
disambig
|
171 |
+
disambig
|
172 |
+
disambig
|
173 |
+
disambig
|
174 |
+
disambig
|
175 |
+
disambig
|
176 |
+
disambig
|
177 |
+
disambig
|
178 |
+
disambig
|
179 |
+
disambig
|
180 |
+
disambig
|
181 |
+
disambig
|
182 |
+
disambig
|
183 |
+
disambig
|
184 |
+
disambig
|
185 |
+
disambig
|
186 |
+
disambig
|
187 |
+
disambig
|
188 |
+
disambig
|
189 |
+
disambig
|
190 |
+
disambig
|
191 |
+
disambig
|
192 |
+
disambig
|
193 |
+
disambig
|
194 |
+
disambig
|
195 |
+
disambig
|
196 |
+
disambig
|
197 |
+
disambig
|
198 |
+
disambig
|
199 |
+
disambig
|
200 |
+
disambig
|