- Franz Müntefering saw that and that is why he has voted with his feet.
- Franz Müntefering insåg det och det var därför han röstade med fötterna.
- We would like to thank you for voting with us on the closure of tax havens and on solidarity with the Member States.
- Vi vill tacka er för att ni röstade med oss om att ta itu med skatteparadisen och om solidariteten med medlemsstaterna.
- I supported the Lannoye report and voted for it in the Committee on the Environment, together with the amendments which I tabled, despite the odd disagreement over certain paragraphs in the text.
- Jag stödde Lannoye-betänkandet så som det röstades fram i Miljöutskottet med vissa förändringar som jag undertecknade, trots vissa punktmässiga meningsskiljaktligheter i vissa stycken
- Although a directive will soon see the light of day, I voted with the other Members for a resolution which sets out the direction to be taken by Parliament on this issue.
- Trots att ett direktiv snart kommer att läggas fram röstade jag tillsammans med de övriga ledamöterna för en resolution som innebär att parlamentet anger inriktningen för denna fråga.
- We voted with cross-party support to ban funding of research resulting in the destruction of human embryos, any kind of cloning, the use of surplus embryos and germline intervention.
- Vi röstade med partiöverskridande stöd för att förbjuda finansiering av forskning som resulterar i destruering av mänskliga embryon, alla typer av kloning, användning av så kallade övertaliga embryon och ingrepp i mänskligt genmaterial.
- Mr President, I voted with determination against the resolution on Iraq - which was adopted with the votes of a red-green coalition - on behalf of that young Europe of free peoples that certainly do not identify with the old, compromise politics and false, hypocritical pacifism where eyes are closed to the dreadful risk to European security posed by Saddam’s regime, which threatens us with a true clash of cultures.
- Jag röstade med övertygelse emot resolutionen om Irak, som antogs av en röd-grön koalition.
- It is incredible that our colleagues on the left accuse the Lega Nord, in our country, of lacking a sense of Italian identity and provoke us by saying that our ministers should sing ’Fratelli d’Italia’, then in this House, in Strasbourg, when we are discussing the rights of our Italian and Venetian compatriots - persecuted even now and deprived of their fundamental rights - they vote with the heirs of the Titoist persecutors and perpetrators of the Foibe massacres.
- Det är otroligt att våra kolleger på vänsterkanten anklagar Lega Nord, i vårt land, för att sakna känsla för italiensk identitet och provocerar oss genom att säga att våra ministrar ska sjunga ”Fratelli d’Italia”, och sedan i den här kammaren, i Strasbourg, när vi diskuterar rättigheterna för våra italienska och venetianska landsmän - som fortfarande förföljs och berövas sina grundläggande rättigheter - röstade med ättlingarna till Titoanhängarna, förföljarna och förövarna av Foibemassakrerna.
show query
SET search_path TO f9miniensv;
WITH
list AS (SELECT
t11.token_id AS t11,
t12.token_id AS t12,
t21.token_id AS t21,
t22.token_id AS t22,
r1.dep_id AS dep1,
r2.dep_id AS dep2
FROM
deprel r1
JOIN depstr s1 ON s1.dep_id = r1.dep_id
JOIN word_align a1 ON a1.wsource = r1.head AND a1.wsource < a1.wtarget
JOIN word_align a2 ON a2.wsource = r1.dependent
JOIN deprel r2 ON r2.head = a1.wtarget AND r2.dependent = a2.wtarget
JOIN depstr s2 ON s2.dep_id = r2.dep_id
JOIN token t11 ON t11.token_id = r1.head
JOIN token t21 ON t21.token_id = r2.head
JOIN token t12 ON t12.token_id = r1.dependent
JOIN token t22 ON t22.token_id = r2.dependent
WHERE
s1.val = 'prep' AND
t11.ctag = 'VERB' AND
t21.ctag = 'VERB' AND
t12.ctag = 'ADP' AND
t22.ctag = 'ADP' AND
t11.lemma_id = 33319 AND
t12.lemma_id = 12425 AND
t21.lemma_id = 54528 AND
t22.lemma_id = 57357),
stats AS (SELECT
sentence_id,
count(DISTINCT token_id) AS c,
count(*) AS c_aligned,
count(DISTINCT wtarget) AS c_target
FROM
token
LEFT JOIN word_align ON wsource = token_id
WHERE
sentence_id IN (
SELECT sentence_id
FROM
list
JOIN token ON token_id IN(t11, t21)
)
GROUP BY sentence_id),
numbered AS (SELECT row_number() OVER () AS i, *
FROM
list),
sentences AS (SELECT *, .2 * (1 / (1 + exp(max(c) OVER (PARTITION BY i) - min(c) OVER (PARTITION BY i)))) +
.8 * (1 / log(avg(c) OVER (PARTITION BY i))) AS w
FROM
(
SELECT i, 1 AS n, sentence_id, ARRAY[t11,t12] AS tokens
FROM
numbered
JOIN token ON token_id = t11
UNION SELECT i, 2 AS n, sentence_id, ARRAY[t21,t22] AS tokens
FROM
numbered
JOIN token ON token_id = t21
) x
JOIN stats USING (sentence_id)
ORDER BY i, n)
SELECT
i,
n,
w,
c,
c_aligned,
c_target,
sentence_id,
string_agg(CASE WHEN lpad THEN ' ' ELSE '' END || '<span class="token' ||
CASE WHEN ARRAY[token_id] <@ tokens THEN ' hl' ELSE '' END || '">' || val || '</span>',
'' ORDER BY token_id ASC) AS s
FROM
sentences
JOIN token USING (sentence_id)
JOIN typestr USING (type_id)
GROUP BY i, n, w, c, c_aligned, c_target, sentence_id
ORDER BY w DESC, i, n;
;