From 2b238094993e8348bafddf30bcb88ee0bf9ed899 Mon Sep 17 00:00:00 2001 From: thadh Date: Sun, 9 Sep 2012 20:40:36 -0700 Subject: [PATCH] First decent implementation of HtmlEntry attached to TokenRow. --- .../engine/DictionaryBuilderMain.java | 5 + .../dictionary/engine/DictionaryTest.java | 13 + .../dictionary/engine/IndexBuilder.java | 42 +- .../dictionary/engine/IndexedEntry.java | 9 +- .../wiktionary/WholeSectionToHtmlParser.java | 23 +- .../wiktionary.WholeSection.DE.quickdic.text | 713 +++------- .../wiktionary.WholeSection.EN.quickdic.text | 1227 +++-------------- .../wiktionary.WholeSection.IT.quickdic.text | 540 +++----- todo.txt | 54 +- 9 files changed, 744 insertions(+), 1882 deletions(-) diff --git a/src/com/hughes/android/dictionary/engine/DictionaryBuilderMain.java b/src/com/hughes/android/dictionary/engine/DictionaryBuilderMain.java index cbf4dc3..584752f 100644 --- a/src/com/hughes/android/dictionary/engine/DictionaryBuilderMain.java +++ b/src/com/hughes/android/dictionary/engine/DictionaryBuilderMain.java @@ -184,6 +184,7 @@ public class DictionaryBuilderMain extends TestCase { {"DE", "IT" }, {"DE", "JA" }, {"DE", "LA" }, // Latin + {"DE", "NL" }, // Dutch {"DE", "PL" }, // Polish {"DE", "RU" }, {"DE", "SV" }, // Swedish @@ -241,6 +242,10 @@ public class DictionaryBuilderMain extends TestCase { {"PL", "ES" }, // Polish {"TR", "EL" }, // Turkish, Greek + + {"FA", "HY" }, // Persian, Armenian, by request. + {"FA", "SV" }, // Persian, Swedish, by request. + }; allPairs.addAll(Arrays.asList(nonEnPairs)); diff --git a/src/com/hughes/android/dictionary/engine/DictionaryTest.java b/src/com/hughes/android/dictionary/engine/DictionaryTest.java index 5dab1de..0eebd43 100644 --- a/src/com/hughes/android/dictionary/engine/DictionaryTest.java +++ b/src/com/hughes/android/dictionary/engine/DictionaryTest.java @@ -307,5 +307,18 @@ public class DictionaryTest extends TestCase { raf.close(); } + public void testNorwegiani() throws IOException { + final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "EN-NL_enwiktionary.quickdic", "r"); + final Dictionary dict = new Dictionary(raf); + final Index nlIndex = dict.indices.get(1); + + IndexEntry entry = nlIndex.findInsertionPoint("Xhosa", new AtomicBoolean(false)); + assertEquals("Xhosa", entry.token); + + entry = nlIndex.findInsertionPoint("Zyne", new AtomicBoolean(false)); + assertEquals("Zyne", entry.token); + + raf.close(); + } } diff --git a/src/com/hughes/android/dictionary/engine/IndexBuilder.java b/src/com/hughes/android/dictionary/engine/IndexBuilder.java index a8d225a..9fe234b 100644 --- a/src/com/hughes/android/dictionary/engine/IndexBuilder.java +++ b/src/com/hughes/android/dictionary/engine/IndexBuilder.java @@ -53,31 +53,32 @@ public class IndexBuilder { final int startRow = rows.size(); TokenRow tokenRow = null; + if (!tokenData.htmlEntries.isEmpty()) { + tokenRow = new TokenRow(indexIndex, rows.size(), index, /* hasMainEntry */ true); + rows.add(tokenRow); + } + +// System.out.println("Added TokenRow: " + rows.get(rows.size() - 1)); int numRows = 0; // off by one--doesn't count the token row! // System.out.println("TOKEN: " + tokenData.token); for (final Map.Entry> typeToIndexedEntries : tokenData.typeToEntries.entrySet()) { for (final IndexedEntry indexedEntry : typeToIndexedEntries.getValue()) { - if (!indexedEntry.isValid) { continue; } if (tokenRow == null) { -// System.out.println("Added TokenRow: " + rows.get(rows.size() - 1)); - tokenRow = new TokenRow(indexIndex, rows.size(), index, tokenData.hasMainEntry); - rows.add(tokenRow); - if (tokenRow.hasMainEntry) { - index.mainTokenCount++; - } + tokenRow = new TokenRow(indexIndex, rows.size(), index, tokenData.hasMainEntry); + rows.add(tokenRow); } - if (indexedEntry.index() == -1) { - indexedEntry.addToDictionary(dictionaryBuilder.dictionary); - assert indexedEntry.index() >= 0; + if (indexedEntry.entry.index() == -1) { + indexedEntry.entry.addToDictionary(dictionaryBuilder.dictionary); + assert indexedEntry.entry.index() >= 0; } if (tokenIndexedEntries.add(indexedEntry)) { - rows.add(indexedEntry.entry.CreateRow(indexedEntry.index(), rows.size(), index)); + rows.add(indexedEntry.entry.CreateRow(rows.size(), index)); ++indexedEntry.entry.entrySource.numEntries; ++numRows; @@ -87,8 +88,17 @@ public class IndexBuilder { } } } - index.sortedIndexEntries.add(new Index.IndexEntry(tokenData.token, index - .normalizer().transliterate(tokenData.token), startRow, numRows)); + + if (tokenRow != null) { + if (tokenRow.hasMainEntry) { + index.mainTokenCount++; + } + + final Index.IndexEntry indexEntry = new Index.IndexEntry(index, tokenData.token, index + .normalizer().transliterate(tokenData.token), startRow, numRows); + indexEntry.htmlEntries.addAll(tokenData.htmlEntries); + index.sortedIndexEntries.add(indexEntry); + } } final List entriesSortedByNumRows = new ArrayList(index.sortedIndexEntries); @@ -103,12 +113,14 @@ public class IndexBuilder { } } - static class TokenData { + public static class TokenData { final String token; final Map> typeToEntries = new EnumMap>(EntryTypeName.class); boolean hasMainEntry = false; + public List htmlEntries = new ArrayList(); + TokenData(final String token) { assert token.equals(token.trim()); assert token.length() > 0; @@ -116,7 +128,7 @@ public class IndexBuilder { } } - private TokenData getOrCreateTokenData(final String token) { + public TokenData getOrCreateTokenData(final String token) { TokenData tokenData = tokenToData.get(token); if (tokenData == null) { tokenData = new TokenData(token); diff --git a/src/com/hughes/android/dictionary/engine/IndexedEntry.java b/src/com/hughes/android/dictionary/engine/IndexedEntry.java index 3c0b168..faf11fd 100644 --- a/src/com/hughes/android/dictionary/engine/IndexedEntry.java +++ b/src/com/hughes/android/dictionary/engine/IndexedEntry.java @@ -14,19 +14,12 @@ package com.hughes.android.dictionary.engine; -import com.hughes.util.IndexedObject; -public class IndexedEntry extends IndexedObject { +public class IndexedEntry { AbstractEntry entry; public boolean isValid = false; public IndexedEntry(final AbstractEntry entry) { - super(-1); this.entry = entry; } - - public void addToDictionary(Dictionary dictionary) { - assert index == -1; - index = entry.addToDictionary(dictionary); - } } \ No newline at end of file diff --git a/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java b/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java index f38b550..87950c6 100644 --- a/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java +++ b/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java @@ -1,18 +1,18 @@ package com.hughes.android.dictionary.parser.wiktionary; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.regex.Pattern; - -import org.apache.commons.lang3.StringEscapeUtils; - -import com.hughes.android.dictionary.engine.EntryTypeName; import com.hughes.android.dictionary.engine.HtmlEntry; import com.hughes.android.dictionary.engine.IndexBuilder; +import com.hughes.android.dictionary.engine.IndexBuilder.TokenData; import com.hughes.android.dictionary.engine.IndexedEntry; import com.hughes.android.dictionary.parser.WikiTokenizer; +import org.apache.commons.lang3.StringEscapeUtils; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.regex.Pattern; + public class WholeSectionToHtmlParser extends AbstractWiktionaryParser { public static final String NAME = "WholeSectionToHtmlParser"; @@ -36,7 +36,12 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser { htmlEntry.html = callback.builder.toString(); indexedEntry.isValid = true; - titleIndexBuilder.addEntryWithString(indexedEntry, title, EntryTypeName.WIKTIONARY_TITLE_MULTI_DETAIL); + + final TokenData tokenData = titleIndexBuilder.getOrCreateTokenData(title); + + htmlEntry.addToDictionary(titleIndexBuilder.index.dict); + tokenData.htmlEntries.add(htmlEntry); + //titleIndexBuilder.addEntryWithString(indexedEntry, title, EntryTypeName.WIKTIONARY_TITLE_MULTI_DETAIL); } @Override diff --git a/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text b/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text index 819fbf6..584c231 100644 --- a/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text +++ b/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text @@ -1,10 +1,9 @@ dictInfo=SomeWikiDataWholeSection -EntrySource: wiktionary.WholeSection.DE.quickdic 108 +EntrySource: wiktionary.WholeSection.DE.quickdic 0 Index: DE DE->EN ***A*** -A: - +HtmlEntry: A <<<

Pronunciation

  • {{IPA|/ʔaː/|lang=de}}
  • {{audio|De-A.OGG|Audio}}
  • @@ -26,10 +25,36 @@ A:
----- +---->>> ***ab*** -ab-: +HtmlEntry: ab <<< +

Etymology

+From {{etyl|goh|de}} {{term|ab|lang=goh}}, from {{proto|Germanic|ab|lang=de}}. +

Pronunciation

+
  • {{IPA|/ap/|lang=de}}
  • +
+

Preposition

+{{head|de|preposition}} +
  1. Beginning at that time or location; from.
  2. +
    • ab heute verfügbar (available from today on)
    • +
    +
+ +

Derived terms

+
  • ab und zu
  • +
+Category:2000 German basic words---->>> +HtmlEntry: ab <<< +

Etymology

+From {{proto|Germanic|ab|lang=goh}}. +

Preposition

+{goh-prep} +
  1. of
  2. +
+---->>> +***ab-*** +HtmlEntry: ab- <<<

Pronunciation

  • {{IPA|[ʔap]|lang=de}}
@@ -96,38 +121,9 @@ ab-:

See also

  • ab
----- -ab: - -

Etymology

-From {{etyl|goh|de}} {{term|ab|lang=goh}}, from {{proto|Germanic|ab|lang=de}}. -

Pronunciation

-
  • {{IPA|/ap/|lang=de}}
  • -
- -

Preposition

-{{head|de|preposition}} -
  1. Beginning at that time or location; from.
  2. -
    • ab heute verfügbar (available from today on)
    • -
    -
- -

Derived terms

-
  • ab und zu
  • -
-Category:2000 German basic words---- -ab: - -

Etymology

-From {{proto|Germanic|ab|lang=goh}}. -

Preposition

-{goh-prep} -
  1. of
  2. -
----- +---->>> ***aberrant*** -aberrant: - +HtmlEntry: aberrant <<<

Pronunciation

  • {{audio|De-aberrant.ogg|Audio}}
@@ -136,10 +132,9 @@ aberrant: {{de-adj|aberranter|aberrantesten}}
  1. aberrant
----- +---->>> ***abnormal*** -abnormal: - +HtmlEntry: abnormal <<<

Pronunciation

  • {{audio|De-abnormal.ogg|Audio}}
@@ -148,10 +143,9 @@ abnormal: {{de-adj|comparative=abnormaler|superlative=abnormalsten}}
  1. {{l|en|abnormal}}
-am:abnormalar:abnormalbe:abnormalcy:abnormalde:abnormalet:abnormalel:abnormales:abnormalfa:abnormalfr:abnormalgl:abnormalko:abnormalhi:abnormalio:abnormalid:abnormalit:abnormalkn:abnormalku:abnormalhu:abnormalml:abnormalms:abnormalmy:abnormalnl:abnormalja:abnormalno:abnormalps:abnormalpl:abnormalpt:abnormalru:abnormalsimple:abnormalfi:abnormalsv:abnormalta:abnormalte:abnormalth:abnormalchr:abnormaltr:abnormaluk:abnormalvi:abnormalvo:abnormalzh:abnormal +am:abnormalar:abnormalbe:abnormalcy:abnormalde:abnormalet:abnormalel:abnormales:abnormalfa:abnormalfr:abnormalgl:abnormalko:abnormalhi:abnormalio:abnormalid:abnormalit:abnormalkn:abnormalku:abnormalhu:abnormalml:abnormalms:abnormalmy:abnormalnl:abnormalja:abnormalno:abnormalps:abnormalpl:abnormalpt:abnormalru:abnormalsimple:abnormalfi:abnormalsv:abnormalta:abnormalte:abnormalth:abnormalchr:abnormaltr:abnormaluk:abnormalvi:abnormalvo:abnormalzh:abnormal>>> ***abstinent*** -abstinent: - +HtmlEntry: abstinent <<<

Adjective

{{de-adj|comparative=abstinenter|superlative=abstinentesten}}
  1. abstinent
  2. @@ -161,10 +155,9 @@ abstinent:
    • Abstinenz
    • Abstinenzler
    ----- +---->>> ***Afghanistan*** -Afghanistan: -{{wikipedia|lang=de}} +HtmlEntry: Afghanistan <<<{{wikipedia|lang=de}}

    Pronunciation

    • {{audio|De-Afghanistan.ogg|audio}}
    @@ -177,10 +170,9 @@ Afghanistan:

    Derived terms

    • Afghane, Afghani, Afghanin, afghanisch
    -Category:German proper nounsCategory:de:Countries---- +Category:German proper nounsCategory:de:Countries---->>> ***also*** -also: - +HtmlEntry: also <<<

    Pronunciation

    • {{audio|De-also.ogg|Audio}}
    @@ -195,10 +187,9 @@ also:
    1. so
    2. thus
    -Category:2000 German basic wordsCategory:German adverbsCategory:German interjections---- +Category:2000 German basic wordsCategory:German adverbsCategory:German interjections---->>> ***Andorra*** -Andorra: -{{wikipedia|lang=de}} +HtmlEntry: Andorra <<<{{wikipedia|lang=de}}

    Pronunciation

    • {{audio|De-Andorra.ogg|Audio}}
    @@ -212,10 +203,9 @@ Andorra:
    • Andorraner / Andorranerin
    • andorranisch
    -Category:de:Countries---- +Category:de:Countries---->>> ***Angola*** -Angola: - +HtmlEntry: Angola <<<

    Pronunciation

    • {{audio|De-Angola.ogg|Audio}}
    @@ -224,10 +214,9 @@ Angola: {{head|de|proper noun}}
    1. {{l|en|Angola}}
    -Category:de:Countries---- -===Appendix=== -Appendix:Proto-Germanic/frijaz: - +Category:de:Countries---->>> +***Appendix:Proto-Germanic/frijaz*** +HtmlEntry: Appendix:Proto-Germanic/frijaz <<<

    Etymology

    From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond of|lang=gem-pro}}. The original meaning was probably something like from the own clan, from which a meaning being a free man, not a serf developed.

    Pronunciation

    @@ -271,12 +260,11 @@ From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond
  3. Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}
  4. - -Appendix:Swadesh lists: -The words from Swadesh's original 100-word list are designated by an asterisk (*). In the composite list on this page, there are actually 207 words, since seven of the words in the 100-word list (breast, fingernail, full, horn, knee, moon, round) were not in the original 200-word list. {| align=center class="wikitable sortable"| i=No | No! c=en | English! c=fr | French! c=de | German! c=it | Italian! c=es | Spanish! c=nl | Dutch! c=sw | Swedish! c=la | Latin|- | i=No | 1| c=en | I *| c=fr | je| c=de | ich| c=it | io| c=es | yo| c=nl | ik| c=sw | jag| c=la | ego|- | i=No | 2| c=en | you sing., thou| c=fr | tu, vous (formal)| c=de | du, Sie (formal)| c=it | tu, Lei (formal)| c=es | tú, usted (formal)| c=nl | jij, je, U (formal)| c=sw | du| c=la | tu|- | i=No | 3| c=en | he| c=fr | il| c=de | er| c=it | lui, egli| c=es | él| c=nl | hij| c=sw | han| c=la | is, ea|- | i=No | 4| c=en | we *| c=fr | nous| c=de | wir| c=it | noi| c=es | nosotros| c=nl | wij, we| c=sw | vi| c=la | nos|- | i=No | 5| c=en | you pl.| c=fr | vous| c=de | ihr, Sie (formal)| c=it | voi| c=es | vosotros, ustedes (formal)| c=nl | jullie| c=sw | ni| c=la | vos|- | i=No | 6| c=en | they| c=fr | ils, elles| c=de | sie| c=it | loro, essi| c=es | ellos, ellas| c=nl | zij, ze| c=sw | de| c=la | ii, eae|- | i=No | 7| c=en | this *| c=fr | ceci| c=de | dieses| c=it | questo| c=es | este| c=nl | deze, dit| c=sw | det här| c=la | hic, is|- | i=No | 8| c=en | that *| c=fr | cela| c=de | jenes, das| c=it | quello| c=es | ese, aquel| c=nl | die, dat| c=sw | det där| c=la | ille|- | i=No | 9| c=en | here| c=fr | ici| c=de | hier| c=it | qui, qua| c=es | aquí, acá| c=nl | hier| c=sw | här| c=la | hic|- | i=No | 10| c=en | there| c=fr | là| c=de | dort| c=it | là| c=es | ahí, allí, allá| c=nl | daar| c=sw | där| c=la | ibi|- | i=No | 11| c=en | who *| c=fr | qui| c=de | wer| c=it | chi| c=es | quien| c=nl | wie| c=sw | vem| c=la | quis|- | i=No | 12| c=en | what *| c=fr | quoi| c=de | was| c=it | che| c=es | que| c=nl | wat| c=sw | vad| c=la | quid|- | i=No | 13| c=en | where| c=fr | où| c=de | wo| c=it | dove| c=es | donde| c=nl | waar| c=sw | var| c=la | ubi|- | i=No | 14| c=en | when| c=fr | quand| c=de | wann| c=it | quando| c=es | cuando| c=nl | wanneer| c=sw | när| c=la | quando|- | i=No | 15| c=en | how| c=fr | comment| c=de | wie| c=it | come| c=es | como| c=nl | hoe| c=sw | hur| c=la | quam, quomodo|- | i=No | 16| c=en | not *| c=fr | ne...pas| c=de | nicht| c=it | non| c=es | no| c=nl | niet| c=sw | inte, ej| c=la | non|- | i=No | 17| c=en | all *| c=fr | tout| c=de | alle| c=it | tutto| c=es | todo| c=nl | al, alle| c=sw | alla| c=la | omnis|- | i=No | 18| c=en | many *| c=fr | plusieurs| c=de | viele| c=it | molti| c=es | muchos| c=nl | veel| c=sw | många| c=la | multi|- | i=No | 19| c=en | some| c=fr | quelques| c=de | einige| c=it | alcuni| c=es | algunos, unos| c=nl | enkele, sommige| c=sw | några, vissa| c=la | aliqui, aliquot|- | i=No | 20| c=en | few| c=fr | peu| c=de | wenige| c=it | pochi| c=es | poco| c=nl | weinig| c=sw | få| c=la | pauci|- | i=No | 21| c=en | other| c=fr | autre| c=de | andere| c=it | altro| c=es | otro| c=nl | ander| c=sw | annan| c=la | alter, alius|- | i=No | 22| c=en | one *| c=fr | un| c=de | eins| c=it | uno| c=es | uno| c=nl | een| c=sw | ett| c=la | unus|- | i=No | 23| c=en | two *| c=fr | deux| c=de | zwei| c=it | due| c=es | dos| c=nl | twee| c=sw | två| c=la | duo|- | i=No | 24| c=en | three| c=fr | trois| c=de | drei| c=it | tre| c=es | tres| c=nl | drie| c=sw | tre| c=la | tres|- | i=No | 25| c=en | four| c=fr | quatre| c=de | vier| c=it | quattro| c=es | cuatro| c=nl | vier| c=sw | fyra| c=la | quattuor|- | i=No | 26| c=en | five| c=fr | cinq| c=de | fünf| c=it | cinque| c=es | cinco| c=nl | vijf| c=sw | fem| c=la | quinque|- | i=No | 27| c=en | big *| c=fr | grand| c=de | groß| c=it | grande| c=es | grande| c=nl | groot| c=sw | stor| c=la | magnus, grandis|- | i=No | 28| c=en | long *| c=fr | long| c=de | lang| c=it | lungo| c=es | largo| c=nl | lang| c=sw | lång| c=la | longus|- | i=No | 29| c=en | wide| c=fr | large| c=de | breit, weit| c=it | largo| c=es | ancho| c=nl | breed, wijd| c=sw | bred, vid| c=la | latus|- | i=No | 30| c=en | thick| c=fr | épais| c=de | dick| c=it | spesso| c=es | grueso| c=nl | dik| c=sw | tjock| c=la | creber|- | i=No | 31| c=en | heavy| c=fr | lourd| c=de | schwer| c=it | pesante| c=es | pesado| c=nl | zwaar| c=sw | tung| c=la | gravis|- | i=No | 32| c=en | small *| c=fr | petit| c=de | klein| c=it | piccolo| c=es | pequeño| c=nl | smal| c=sw | liten| c=la | parvus|- | i=No | 33| c=en | short| c=fr | court| c=de | kurz| c=it | corto| c=es | corto| c=nl | kort| c=sw | kort| c=la | brevis|- | i=No | 34| c=en | narrow| c=fr | étroit| c=de | eng| c=it | stretto| c=es | estrecho, angosto| c=nl | klein| c=sw | trång| c=la | angustus|- | i=No | 35| c=en | thin| c=fr | mince| c=de | dünn| c=it | sottile| c=es | delgado, flaco| c=nl | dun| c=sw | tunn| c=la | macer|- | i=No | 36| c=en | woman *| c=fr | femme| c=de | Frau| c=it | donna| c=es | mujer| c=nl | vrouw| c=sw | kvinna| c=la | femina|- | i=No | 37| c=en | man (adult male)| c=fr | homme| c=de | Mann| c=it | uomo| c=es | hombre| c=nl | man| c=sw | man| c=la | vir|- | i=No | 38| c=en | man * (human being)| c=fr | homme| c=de | Mensch| c=it | uomo| c=es | hombre| c=nl | mens| c=sw | människa| c=la | homo|- | i=No | 39| c=en | kid| c=fr | enfant| c=de | Kind| c=it | bambino| c=es | niño| c=nl | kind| c=sw | barn| c=la | puer|- | i=No | 40| c=en | wife| c=fr | femme, épouse| c=de | Frau, Ehefrau| c=it | moglie| c=es | esposa, mujer| c=nl | vrouw, echtgenote| c=sw | hustru, maka, fru| c=la | uxor, mulier|- | i=No | 41| c=en | husband| c=fr | mari, époux| c=de | Mann, Ehemann| c=it | marito| c=es | esposo, marido| c=nl | man, echtgenoot| c=sw | man, make| c=la | maritus|- | i=No | 42| c=en | mother| c=fr | mère| c=de | Mutter| c=it | madre| c=es | madre| c=nl | moeder| c=sw | mamma, mor| c=la | mater|- | i=No | 43| c=en | father| c=fr | père| c=de | Vater| c=it | padre| c=es | padre| c=nl | vader| c=sw | pappa, far| c=la | pater|- | i=No | 44| c=en | animal| c=fr | animal| c=de | Tier| c=it | animale| c=es | animal| c=nl | dier| c=sw | djur| c=la | animal|- | i=No | 45| c=en | fish *| c=fr | poisson| c=de | Fisch| c=it | pesce| c=es | pez, pescado| c=nl | vis| c=sw | fisk| c=la | piscis|- | i=No | 46| c=en | bird *| c=fr | oiseau| c=de | Vogel| c=it | uccello| c=es | ave, pájaro| c=nl | vogel| c=sw | fågel| c=la | avis|- | i=No | 47| c=en | hound *| c=fr | chien| c=de | Hund| c=it | cane| c=es | perro| c=nl | hond| c=sw | hund| c=la | canis|- | i=No | 48| c=en | louse *| c=fr | pou| c=de | Laus| c=it | pidocchio| c=es | piojo| c=nl | luis| c=sw | lus| c=la | pedis|- | i=No | 49| c=en | snake| c=fr | serpent| c=de | Schlange| c=it | serpente| c=es | serpiente, culebra| c=nl | slang| c=sw | orm| c=la | serpens|- | i=No | 50| c=en | worm| c=fr | ver| c=de | Wurm| c=it | verme| c=es | gusano| c=nl | worm| c=sw | mask| c=la | vermis|- | i=No | 51| c=en | beam *| c=fr | arbre| c=de | Baum| c=it | albero| c=es | árbol| c=nl | boom| c=sw | träd| c=la | arbor|- | i=No | 52| c=en | forest| c=fr | forêt| c=de | Wald| c=it | foresta| c=es | bosque| c=nl | woud| c=sw | skog| c=la | silva|- | i=No | 53| c=en | stick| c=fr | bâton| c=de | Stock| c=it | bastone| c=es | palo| c=nl | stok| c=sw | pinne| c=la | fustis|- | i=No | 54| c=en | fruit| c=fr | fruit| c=de | Frucht| c=it | frutta| c=es | fruta| c=nl | fruit, vrucht| c=sw | frukt| c=la | fructus|- | i=No | 55| c=en | seed *| c=fr | graine| c=de | Samen| c=it | seme| c=es | semilla| c=nl | zaad| c=sw | frö| c=la | semen|- | i=No | 56| c=en | leaf *| c=fr | feuille| c=de | Blatt| c=it | foglia| c=es | hoja| c=nl | blad| c=sw | löv, blad| c=la | folium|- | i=No | 57| c=en | root *| c=fr | racine| c=de | Wurzel| c=it | radice| c=es | raíz| c=nl | root| c=sw | rot| c=la | radix|- | i=No | 58| c=en | bark * (from tree)| c=fr | écorce| c=de | Rinde| c=it | corteccia| c=es | corteza| c=nl | bark| c=sw | bark| c=la | cortex|- | i=No | 59| c=en | flower| c=fr | fleur| c=de | Blume| c=it | fiore| c=es | flor| c=nl | bloem| c=sw | blomma| c=la | flos|- | i=No | 60| c=en | grass| c=fr | herbe| c=de | Gras| c=it | erba| c=es | hierba, pasto| c=nl | gras| c=sw | gräs| c=la | herba|- | i=No | 61| c=en | rope| c=fr | corde| c=de | Seil| c=it | corda| c=es | cuerda| c=nl | reep, koord| c=sw | rep| c=la | funis|- | i=No | 62| c=en | skin *| c=fr | peau| c=de | Haut| c=it | pelle| c=es | piel| c=nl | huid| c=sw | hud| c=la | cutis|- | i=No | 63| c=en | meat| c=fr | viande| c=de | Fleisch| c=it | carne| c=es | carne| c=nl | vlees| c=sw | kött| c=la | caro|- | i=No | 64| c=en | blood *| c=fr | sang| c=de | Blut| c=it | sangue| c=es | sangre| c=nl | bloed| c=sw | blod| c=la | sanguis|- | i=No | 65| c=en | bone *| c=fr | os| c=de | Knochen| c=it | osso| c=es | hueso| c=nl | been, bot| c=sw | ben| c=la | os|- | i=No | 66| c=en | fat * (n.)| c=fr | graisse| c=de | Fett| c=it | grasso| c=es | grasa| c=nl | vet| c=sw | fett| c=la | adeps|- | i=No | 67| c=en | egg *| c=fr | œuf| c=de | Ei| c=it | uovo| c=es | huevo| c=nl | ei| c=sw | ägg| c=la | ovum|- | i=No | 68| c=en | horn *| c=fr | corne| c=de | Horn| c=it | corno| c=es | cuerno| c=nl | horn| c=sw | horn| c=la | cornu|- | i=No | 69| c=en | tail *| c=fr | queue| c=de | Schwanz| c=it | coda| c=es | cola| c=nl | staart| c=sw | svans| c=la | cauda|- | i=No | 70| c=en | feather *| c=fr | plume| c=de | Feder| c=it | piuma| c=es | pluma| c=nl | veder| c=sw | fjäder| c=la | penna|- | i=No | 71| c=en | hair *| c=fr | cheveu| c=de | Haar| c=it | capelli| c=es | cabello, pelo| c=nl | haar| c=sw | hår| c=la | capillus, coma, crinis|- | i=No | 72| c=en | head *| c=fr | tête| c=de | Kopf, Haupt| c=it | testa| c=es | cabeza| c=nl | hoofd, kop| c=sw | huvud| c=la | caput|- | i=No | 73| c=en | ear *| c=fr | oreille| c=de | Ohr| c=it | orecchio| c=es | oreja| c=nl | aar| c=sw | öra| c=la | auris|- | i=No | 74| c=en | eye *| c=fr | œil| c=de | Auge| c=it | occhio| c=es | ojo| c=nl | oog| c=sw | öga| c=la | oculus|- | i=No | 75| c=en | nose *| c=fr | nez| c=de | Nase| c=it | naso| c=es | nariz| c=nl | neus| c=sw | näsa| c=la | nasus|- | i=No | 76| c=en | mouth *| c=fr | bouche| c=de | Mund| c=it | bocca| c=es | boca| c=nl | mond| c=sw | mun| c=la | os|- | i=No | 77| c=en | tooth *| c=fr | dent| c=de | Zahn| c=it | dente| c=es | diente| c=nl | tand| c=sw | tand| c=la | dens|- | i=No | 78| c=en | tongue *| c=fr | langue| c=de | Zunge| c=it | lingua| c=es | lengua| c=nl | tong| c=sw | tunga| c=la | lingua|- | i=No | 79| c=en | fingernail| c=fr | ongle| c=de | Fingernagel| c=it | unghia| c=es | uña| c=nl | vingernagel| c=sw | nagel| c=la | unguis|- | i=No | 80| c=en | foot *| c=fr | pied| c=de | Fuß| c=it | piede| c=es | pie| c=nl | voet| c=sw | fot| c=la | pes|- | i=No | 81| c=en | leg| c=fr | jambe| c=de | Bein| c=it | gamba| c=es | pierna| c=nl | been| c=sw | ben| c=la | crus|- | i=No | 82| c=en | knee *| c=fr | genou| c=de | Knie| c=it | ginocchio| c=es | rodilla| c=nl | knie| c=sw | knä| c=la | genu|- | i=No | 83| c=en | hand *| c=fr | main| c=de | Hand| c=it | mano| c=es | mano| c=nl | hand| c=sw | hand| c=la | manus|- | i=No | 84| c=en | wing| c=fr | aile| c=de | Flügel| c=it | ala| c=es | ala| c=nl | vleugel| c=sw | vinge| c=la | ala|- | i=No | 85| c=en | belly *| c=fr | ventre| c=de | Bauch| c=it | pancia| c=es | barriga, vientre, panza| c=nl | buik| c=sw | mage| c=la | venter|- | i=No | 86| c=en | guts| c=fr | entrailles| c=de | Eingeweide, Innereien| c=it | intestino| c=es | entrañas, tripas| c=nl | ingewanden| c=sw | inälvor| c=la | intestina|- | i=No | 87| c=en | neck *| c=fr | cou| c=de | Hals| c=it | collo| c=es | cuello| c=nl | nek| c=sw | hals, nacke| c=la | collum, cervix|- | i=No | 88| c=en | back| c=fr | dos| c=de | Rücken| c=it | schiena| c=es | espalda| c=nl | rug| c=sw | rygg| c=la | tergum|- | i=No | 89| c=en | breast *| c=fr | sein, poitrine| c=de | Brust| c=it | petto| c=es | pecho, seno| c=nl | borst| c=sw | bröst| c=la | pectus, mamma|- | i=No | 90| c=en | heart *| c=fr | cœur| c=de | Herz| c=it | cuore| c=es | corazón| c=nl | hart| c=sw | hjärta| c=la | cor|- | i=No | 91| c=en | liver *| c=fr | foie| c=de | Leber| c=it | fegato| c=es | hígado| c=nl | lever| c=sw | lever| c=la | iecur|- | i=No | 92| c=en | drink *| c=fr | boire| c=de | trinken| c=it | bere| c=es | beber, tomar| c=nl | drinken| c=sw | dricka| c=la | bibere|- | i=No | 93| c=en | eat *| c=fr | manger| c=de | essen| c=it | mangiare| c=es | comer| c=nl | eten| c=sw | äta| c=la | edere|- | i=No | 94| c=en | bite *| c=fr | mordre| c=de | beißen| c=it | mordere| c=es | morder| c=nl | bijten| c=sw | bita| c=la | mordere|- | i=No | 95| c=en | suck| c=fr | sucer| c=de | saugen| c=it | succhiare| c=es | chupar| c=nl | zuigen| c=sw | suga| c=la | sugere|- | i=No | 96| c=en | spit| c=fr | cracher| c=de | spucken| c=it | sputare| c=es | escupir| c=nl | spugen| c=sw | spotta| c=la | sputare|- | i=No | 97| c=en | vomit| c=fr | vomir| c=de | erbrechen| c=it | vomitare| c=es | vomitar| c=nl | braken, overgeven| c=sw | kräkas, spy| c=la | vomere|- | i=No | 98| c=en | blow| c=fr | souffler| c=de | blasen| c=it | soffiare| c=es | soplar| c=nl | blazen| c=sw | blåsa| c=la | flare|- | i=No | 99| c=en | breathe| c=fr | respirer| c=de | atmen| c=it | respirare| c=es | respirar| c=nl | ademen| c=sw | andas| c=la | spirare|- | i=No | 100| c=en | laugh| c=fr | rire| c=de | lachen| c=it | ridere| c=es | reír| c=nl | lachen| c=sw | skratta| c=la | ridere|- | i=No | 101| c=en | see *| c=fr | voir| c=de | sehen| c=it | vedere| c=es | ver| c=nl | zien| c=sw | se| c=la | videre|- | i=No | 102| c=en | hear *| c=fr | entendre| c=de | hören| c=it | udire, sentire| c=es | oír| c=nl | horen| c=sw | höra| c=la | audire|- | i=No | 103| c=en | know * (a fact)| c=fr | savoir| c=de | wissen| c=it | sapere| c=es | saber| c=nl | kennen| c=sw | veta| c=la | scire|- | i=No | 104| c=en | think| c=fr | penser| c=de | denken| c=it | pensare| c=es | pensar| c=nl | denken| c=sw | tänka| c=la | putare|- | i=No | 105| c=en | smell| c=fr | sentir| c=de | riechen| c=it | odorare, annusare| c=es | oler| c=nl | smelten| c=sw | lukta| c=la | olere|- | i=No | 106| c=en | fear| c=fr | craindre, avoir peur| c=de | fürchten| c=it | temere| c=es | temer| c=nl | vrezen, angst| c=sw | frukta, rädas| c=la | timere|- | i=No | 107| c=en | sleep *| c=fr | dormir| c=de | schlafen| c=it | dormire| c=es | dormir| c=nl | slapen| c=sw | sova| c=la | dormire|- | i=No | 108| c=en | live| c=fr | vivre| c=de | leben| c=it | vivere| c=es | vivir| c=nl | leven| c=sw | leva| c=la | vivere|- | i=No | 109| c=en | die *| c=fr | mourir| c=de | sterben| c=it | morire| c=es | morir| c=nl | doden| c=sw | dö| c=la | mori|- | i=No | 110| c=en | kill *| c=fr | tuer| c=de | töten| c=it | uccidere| c=es | matar| c=nl | doden| c=sw | döda| c=la | necare|- | i=No | 111| c=en | fight| c=fr | se battre| c=de | kämpfen| c=it | combattere| c=es | pelear| c=nl | vechten| c=sw | strida| c=la | pugnare|- | i=No | 112| c=en | hunt| c=fr | chasser| c=de | jagen| c=it | cacciare| c=es | cazar| c=nl | jagen| c=sw | jaga| c=la | venari|- | i=No | 113| c=en | hit| c=fr | frapper| c=de | schlagen| c=it | colpire| c=es | golpear| c=nl | slaan| c=sw | slå| c=la | pellere|- | i=No | 114| c=en | cut| c=fr | couper| c=de | schneiden| c=it | tagliare| c=es | cortar| c=nl | snijden| c=sw | skära| c=la | secare|- | i=No | 115| c=en | split| c=fr | fendre| c=de | spalten| c=it | dividere, separare| c=es | partir| c=nl | splijten| c=sw | dela, klyva| c=la | scindere, partiri|- | i=No | 116| c=en | stab| c=fr | poignarder| c=de | stechen| c=it | pugnalare| c=es | apuñalar| c=nl | steken| c=sw | sticka| c=la | traicere|- | i=No | 117| c=en | scratch| c=fr | gratter| c=de | kratzen| c=it | graffiare| c=es | arañar, rascar| c=nl | krabben| c=sw | klia| c=la | radere|- | i=No | 118| c=en | dig| c=fr | creuser| c=de | graben| c=it | scavare| c=es | cavar| c=nl | delven| c=sw | gräva| c=la | fodere|- | i=No | 119| c=en | swim *| c=fr | nager| c=de | schwimmen| c=it | nuotare| c=es | nadar| c=nl | zwemmen| c=sw | simma| c=la | natare|- | i=No | 120| c=en | fly * (v.)| c=fr | voler| c=de | fliegen| c=it | volare| c=es | volar| c=nl | vliegen| c=sw | flyga| c=la | volare|- | i=No | 121| c=en | walk *| c=fr | marcher| c=de | gehen| c=it | camminare| c=es | caminar| c=nl | lopen, wandelen| c=sw | gå| c=la | gradi|- | i=No | 122| c=en | come *| c=fr | venir| c=de | kommen| c=it | venire| c=es | venir| c=nl | komen| c=sw | komma| c=la | venire|- | i=No | 123| c=en | lie *| c=fr | s'étendre| c=de | liegen| c=it | distendersi| c=es | echarse, acostarse, tenderse| c=nl | liegen| c=sw | ligga| c=la | iacere|- | i=No | 124| c=en | sit *| c=fr | s'asseoir| c=de | setzen| c=it | sedere| c=es | sentarse| c=nl | zitten| c=sw | sitta| c=la | sedere|- | i=No | 125| c=en | stand *| c=fr | se lever| c=de | stehen| c=it | stare in piedi| c=es | estar de pie| c=nl | staan| c=sw | stå| c=la | stare|- | i=No | 126| c=en | turn| c=fr | tourner| c=de | drehen| c=it | girare| c=es | voltear| c=nl | draaien| c=sw | svänga| c=la | vertere|- | i=No | 127| c=en | fall| c=fr | tomber| c=de | fallen| c=it | cadere| c=es | caer| c=nl | vallen| c=sw | falla| c=la | cadere|- | i=No | 128| c=en | give *| c=fr | donner| c=de | geben| c=it | dare| c=es | dar| c=nl | geven| c=sw | ge| c=la | dare|- | i=No | 129| c=en | hold| c=fr | tenir| c=de | halten| c=it | tenere| c=es | sostener| c=nl | houden| c=sw | hålla| c=la | tenere|- | i=No | 130| c=en | squeeze| c=fr | serrer| c=de | quetschen| c=it | spremere| c=es | apretar| c=nl | knijpen| c=sw | klämma| c=la | premere|- | i=No | 131| c=en | rub| c=fr | frotter| c=de | reiben| c=it | strofinare| c=es | frotar, restregar| c=nl | wrijven| c=sw | gnida| c=la | fricare|- | i=No | 132| c=en | wash| c=fr | laver| c=de | waschen| c=it | lavare| c=es | lavar| c=nl | wassen| c=sw | tvätta| c=la | lavare|- | i=No | 133| c=en | wipe| c=fr | essuyer| c=de | wischen| c=it | asciugare| c=es | limpiar| c=nl | vegen| c=sw | rensa| c=la | tergere|- | i=No | 134| c=en | pull| c=fr | tirer| c=de | ziehen| c=it | tirare| c=es | tirar| c=nl | trekken| c=sw | dra| c=la | trahere|- | i=No | 135| c=en | push| c=fr | pousser| c=de | drücken| c=it | spingere| c=es | empujar| c=nl | duwen| c=sw | trycka| c=la | pellere, urgere|- | i=No | 136| c=en | throw| c=fr | jeter| c=de | werfen| c=it | tirare| c=es | tirar| c=nl | werpen, gooien| c=sw | kasta| c=la | iacere|- | i=No | 137| c=en | tie| c=fr | lier| c=de | binden| c=it | legare| c=es | atar| c=nl | binden| c=sw | knyta, binda| c=la | stringere, ligare|- | i=No | 138| c=en | sew| c=fr | coudre| c=de | nähen| c=it | cucire| c=es | coser| c=nl | naaien| c=sw | sy| c=la | suere|- | i=No | 139| c=en | count| c=fr | compter| c=de | zählen| c=it | contare| c=es | contar| c=nl | tellen| c=sw | räkna| c=la | numerare|- | i=No | 140| c=en | say *| c=fr | dire| c=de | sagen| c=it | dire| c=es | decir| c=nl | zeggen| c=sw | säga| c=la | dicere|- | i=No | 141| c=en | sing| c=fr | chanter| c=de | singen| c=it | cantare| c=es | cantar| c=nl | zingen| c=sw | sjunga| c=la | canere|- | i=No | 142| c=en | play| c=fr | jouer| c=de | spielen| c=it | giocare| c=es | jugar| c=nl | spelen| c=sw | leka, spela| c=la | ludere|- | i=No | 143| c=en | float| c=fr | flotter| c=de | schweben| c=it | galleggiare| c=es | flotar| c=nl | zweven| c=sw | flyta| c=la | fluctuare|- | i=No | 144| c=en | flow| c=fr | couler| c=de | fließen| c=it | fluire| c=es | fluir| c=nl | vloeien| c=sw | rinna| c=la | fluere|- | i=No | 145| c=en | freeze| c=fr | geler| c=de | frieren| c=it | gelare| c=es | helar| c=nl | vriezen| c=sw | frysa| c=la | gelare|- | i=No | 146| c=en | swell| c=fr | gonfler| c=de | schwellen| c=it | gonfiare| c=es | hincharse| c=nl | zwellen| c=sw | svälla| c=la | inflare|- | i=No | 147| c=en | sun *| c=fr | soleil| c=de | Sonne| c=it | sole| c=es | sol| c=nl | zon| c=sw | sol| c=la | sol|- | i=No | 148| c=en | moon *| c=fr | lune| c=de | Mond| c=it | luna| c=es | luna| c=nl | maan| c=sw | måne| c=la | luna|- | i=No | 149| c=en | star *| c=fr | étoile| c=de | Stern| c=it | stella| c=es | estrella| c=nl | ster| c=sw | stjärna| c=la | stella|- | i=No | 150| c=en | water *| c=fr | eau| c=de | Wasser| c=it | acqua| c=es | agua| c=nl | water| c=sw | vatten| c=la | aqua|- | i=No | 151| c=en | rain *| c=fr | pluie| c=de | Regen| c=it | pioggia| c=es | lluvia| c=nl | regen| c=sw | regn| c=la | pluvia|- | i=No | 152| c=en | river| c=fr | rivière| c=de | Fluß| c=it | fiume| c=es | río| c=nl | rivier| c=sw | flod| c=la | fluvius|- | i=No | 153| c=en | lake| c=fr | lac| c=de | See| c=it | lago| c=es | lago| c=nl | lak| c=sw | sjö| c=la | lacus|- | i=No | 154| c=en | sea| c=fr | mer| c=de | Meer, See| c=it | mare| c=es | mar| c=nl | zee| c=sw | hav| c=la | mare|- | i=No | 155| c=en | salt| c=fr | sel| c=de | Salz| c=it | sale| c=es | sal| c=nl | zout| c=sw | salt| c=la | sal|- | i=No | 156| c=en | stone *| c=fr | pierre| c=de | Stein| c=it | pietra| c=es | piedra| c=nl | steen| c=sw | sten| c=la | lapis, petra|- | i=No | 157| c=en | sand *| c=fr | sable| c=de | Sand| c=it | sabbia| c=es | arena| c=nl | zand| c=sw | sand| c=la | arena|- | i=No | 158| c=en | dust| c=fr | poussière| c=de | Staub| c=it | polvere| c=es | polvo| c=nl | stof| c=sw | damm| c=la | pulvis|- | i=No | 159| c=en | earth *| c=fr | terre| c=de | Erde| c=it | terra| c=es | tierra| c=nl | aarde| c=sw | jord| c=la | terra|- | i=No | 160| c=en | cloud *| c=fr | nuage| c=de | Wolke| c=it | nuvola| c=es | nube| c=nl | wolk| c=sw | moln| c=la | nimbus, nubes|- | i=No | 161| c=en | fog| c=fr | brouillard| c=de | Nebel| c=it | nebbia| c=es | niebla| c=nl | mist, nevel| c=sw | dimma| c=la | caligo, nebula|- | i=No | 162| c=en | sky| c=fr | ciel| c=de | Himmel| c=it | cielo| c=es | cielo| c=nl | lucht| c=sw | himmel| c=la | caelum|- | i=No | 163| c=en | wind| c=fr | vent| c=de | Wind| c=it | vento| c=es | viento| c=nl | wind| c=sw | vind| c=la | ventus|- | i=No | 164| c=en | snow| c=fr | neige| c=de | Schnee| c=it | neve| c=es | nieve| c=nl | sneeuw| c=sw | snö| c=la | nix|- | i=No | 165| c=en | ice| c=fr | glace| c=de | Eis| c=it | ghiaccio| c=es | hielo| c=nl | ijs| c=sw | is| c=la | glacies|- | i=No | 166| c=en | smoke *| c=fr | fumée| c=de | Rauch| c=it | fumo| c=es | humo| c=nl | rook| c=sw | rök| c=la | fumus|- | i=No | 167| c=en | fire *| c=fr | feu| c=de | Feuer| c=it | fuoco| c=es | fuego| c=nl | vuur| c=sw | eld| c=la | ignis|- | i=No | 168| c=en | ashes *| c=fr | cendres| c=de | Asche| c=it | ceneri| c=es | cenizas| c=nl | as| c=sw | aska| c=la | cineres|- | i=No | 169| c=en | burn *| c=fr | brûler| c=de | brennen| c=it | bruciare| c=es | quemar| c=nl | branden| c=sw | brinna| c=la | ardere|- | i=No | 170| c=en | road *| c=fr | route| c=de | Straße| c=it | strada| c=es | camino| c=nl | weg| c=sw | väg| c=la | via|- | i=No | 171| c=en | mountain *| c=fr | montagne| c=de | Berg| c=it | montagna| c=es | montaña| c=nl | berg| c=sw | berg| c=la | mons|- | i=No | 172| c=en | red *| c=fr | rouge| c=de | rot| c=it | rosso| c=es | rojo| c=nl | rode| c=sw | röd| c=la | ruber|- | i=No | 173| c=en | green *| c=fr | vert| c=de | grün| c=it | verde| c=es | verde| c=nl | groen| c=sw | grön| c=la | viridis|- | i=No | 174| c=en | yellow *| c=fr | jaune| c=de | gelb| c=it | giallo| c=es | amarillo| c=nl | geel| c=sw | gul| c=la | flavus|- | i=No | 175| c=en | white *| c=fr | blanc| c=de | weiß| c=it | bianco| c=es | blanco| c=nl | witte| c=sw | vit| c=la | albus, candidus|- | i=No | 176| c=en | black *| c=fr | noir| c=de | schwarz| c=it | nero| c=es | negro| c=nl | zwart| c=sw | svart| c=la | niger, ater, fuscus|- | i=No | 177| c=en | night *| c=fr | nuit| c=de | Nacht| c=it | notte| c=es | noche| c=nl | nacht| c=sw | natt| c=la | nox|- | i=No | 178| c=en | day| c=fr | jour| c=de | Tag| c=it | giorno| c=es | día| c=nl | dag| c=sw | dag| c=la | dies|- | i=No | 179| c=en | year| c=fr | an, année| c=de | Jahr| c=it | anno| c=es | año| c=nl | jaar| c=sw | år| c=la | annus|- | i=No | 180| c=en | warm *| c=fr | chaud| c=de | warm| c=it | caldo| c=es | cálido, tibio| c=nl | warm| c=sw | varm| c=la | calidus|- | i=No | 181| c=en | cold *| c=fr | froid| c=de | kalt| c=it | freddo| c=es | frío| c=nl | koud| c=sw | kall| c=la | frigidus|- | i=No | 182| c=en | full *| c=fr | plein| c=de | volle| c=it | pieno| c=es | lleno| c=nl | volle| c=sw | full| c=la | plenus|- | i=No | 183| c=en | new *| c=fr | nouveau| c=de | neu| c=it | nuovo| c=es | nuevo| c=nl | nieuw| c=sw | ny| c=la | novus|- | i=No | 184| c=en | old| c=fr | vieux| c=de | alt| c=it | vecchio| c=es | viejo| c=nl | oud| c=sw | gammal| c=la | vetus|- | i=No | 185| c=en | good *| c=fr | bon| c=de | gut| c=it | buono| c=es | bueno| c=nl | goed| c=sw | bra| c=la | bonus|- | i=No | 186| c=en | bad| c=fr | mauvais| c=de | schlecht| c=it | cattivo| c=es | malo<br>| c=nl | slecht| c=sw | dålig| c=la | malus|- | i=No | 187| c=en | rotten| c=fr | pourri| c=de | verrottet| c=it | marcio| c=es | podrido| c=nl | rotten| c=sw | rutten| c=la | puter, putridus|- | i=No | 188| c=en | dirty| c=fr | sale| c=de | schmutzig| c=it | sporco| c=es | sucio| c=nl | vies| c=sw | smutsig| c=la | sordidus|- | i=No | 189| c=en | straight| c=fr | droit| c=de | gerade| c=it | diritto| c=es | recto| c=nl | recht| c=sw | rak| c=la | rectus|- | i=No | 190| c=en | round *| c=fr | rond| c=de | rund| c=it | rotondo| c=es | redondo| c=nl | rond| c=sw | rund| c=la | rotundus|- | i=No | 191| c=en | sharp| c=fr | tranchant, pointu, aigu| c=de | scharf| c=it | aguzzo, affilato| c=es | afilado| c=nl | scherp| c=sw | vass| c=la | acer|- | i=No | 192| c=en | dull| c=fr | émoussé| c=de | stumpf| c=it | noioso| c=es | desafilado| c=nl | stomp, bot| c=sw | slö| c=la | hebes|- | i=No | 193| c=en | smooth| c=fr | lisse| c=de | glatt| c=it | liscio| c=es | suave, liso| c=nl | glad| c=sw | len, slät| c=la | levis|- | i=No | 194| c=en | wet| c=fr | mouillé| c=de | nass, feucht| c=it | bagnato| c=es | mojado| c=nl | nat| c=sw | våt, blöt| c=la | umidus|- | i=No | 195| c=en | dry *| c=fr | sec| c=de | trocken| c=it | asciutto, secco| c=es | seco| c=nl | droog| c=sw | torr| c=la | siccus|- | i=No | 196| c=en | correct| c=fr | juste, correct| c=de | richtig| c=it | corretto| c=es | correcto| c=nl | richting, correct| c=sw | rätt, riktig| c=la | rectus|- | i=No | 197| c=en | near| c=fr | proche| c=de | nah,<br>nahe| c=it | vicino| c=es | cerca| c=nl | naar| c=sw | nära| c=la | propinquus|- | i=No | 198| c=en | far| c=fr | loin| c=de | weit, fern| c=it | lontano| c=es | lejos| c=nl | ver| c=sw | långt bort, fjärran| c=la | longinquus|- | i=No | 199| c=en | right| c=fr | à droite| c=de | rechts| c=it | destra| c=es | derecha| c=nl | rechts| c=sw | höger| c=la | dexter|- | i=No | 200| c=en | left| c=fr | à gauche| c=de | links| c=it | sinistra| c=es | izquierda| c=nl | links| c=sw | vänster| c=la | sinister|- | i=No | 201| c=en | at| c=fr | à| c=de | bei, an| c=it | a| c=es | a, en, ante| c=nl | aan, te, bij| c=sw | hos, vid| c=la | ad|- | i=No | 202| c=en | in| c=fr | dans| c=de | in| c=it | in| c=es | en| c=nl | in| c=sw | i| c=la | in|- | i=No | 203| c=en | with| c=fr | avec| c=de | mit| c=it | con| c=es | con| c=nl | met| c=sw | med| c=la | cum|- | i=No | 204| c=en | and| c=fr | et| c=de | und| c=it | e| c=es | y| c=nl | en| c=sw | och| c=la | et|- | i=No | 205| c=en | if| c=fr | si| c=de | wenn, falls, ob| c=it | se| c=es | si| c=nl | als, indien| c=sw | om| c=la | si|- | i=No | 206| c=en | because| c=fr | parce que| c=de | weil| c=it | perché| c=es | porque| c=nl | omdat| c=sw | eftersom, ty| c=la | quia, quoniam|- | i=No | 207| c=en | name *| c=fr | nom| c=de | Name| c=it | nome| c=es | nombre| c=nl | naam| c=sw | namn| c=la | nomen|} +>>> +***Appendix:Swadesh lists*** +HtmlEntry: Appendix:Swadesh lists <<breast, fingernail, full, horn, knee, moon, round) were not in the original 200-word list. {| align=center class="wikitable sortable"| i=No | No! c=en | English! c=fr | French! c=de | German! c=it | Italian! c=es | Spanish! c=nl | Dutch! c=sw | Swedish! c=la | Latin|- | i=No | 1| c=en | I *| c=fr | je| c=de | ich| c=it | io| c=es | yo| c=nl | ik| c=sw | jag| c=la | ego|- | i=No | 2| c=en | you sing., thou| c=fr | tu, vous (formal)| c=de | du, Sie (formal)| c=it | tu, Lei (formal)| c=es | tú, usted (formal)| c=nl | jij, je, U (formal)| c=sw | du| c=la | tu|- | i=No | 3| c=en | he| c=fr | il| c=de | er| c=it | lui, egli| c=es | él| c=nl | hij| c=sw | han| c=la | is, ea|- | i=No | 4| c=en | we *| c=fr | nous| c=de | wir| c=it | noi| c=es | nosotros| c=nl | wij, we| c=sw | vi| c=la | nos|- | i=No | 5| c=en | you pl.| c=fr | vous| c=de | ihr, Sie (formal)| c=it | voi| c=es | vosotros, ustedes (formal)| c=nl | jullie| c=sw | ni| c=la | vos|- | i=No | 6| c=en | they| c=fr | ils, elles| c=de | sie| c=it | loro, essi| c=es | ellos, ellas| c=nl | zij, ze| c=sw | de| c=la | ii, eae|- | i=No | 7| c=en | this *| c=fr | ceci| c=de | dieses| c=it | questo| c=es | este| c=nl | deze, dit| c=sw | det här| c=la | hic, is|- | i=No | 8| c=en | that *| c=fr | cela| c=de | jenes, das| c=it | quello| c=es | ese, aquel| c=nl | die, dat| c=sw | det där| c=la | ille|- | i=No | 9| c=en | here| c=fr | ici| c=de | hier| c=it | qui, qua| c=es | aquí, acá| c=nl | hier| c=sw | här| c=la | hic|- | i=No | 10| c=en | there| c=fr | là| c=de | dort| c=it | là| c=es | ahí, allí, allá| c=nl | daar| c=sw | där| c=la | ibi|- | i=No | 11| c=en | who *| c=fr | qui| c=de | wer| c=it | chi| c=es | quien| c=nl | wie| c=sw | vem| c=la | quis|- | i=No | 12| c=en | what *| c=fr | quoi| c=de | was| c=it | che| c=es | que| c=nl | wat| c=sw | vad| c=la | quid|- | i=No | 13| c=en | where| c=fr | où| c=de | wo| c=it | dove| c=es | donde| c=nl | waar| c=sw | var| c=la | ubi|- | i=No | 14| c=en | when| c=fr | quand| c=de | wann| c=it | quando| c=es | cuando| c=nl | wanneer| c=sw | när| c=la | quando|- | i=No | 15| c=en | how| c=fr | comment| c=de | wie| c=it | come| c=es | como| c=nl | hoe| c=sw | hur| c=la | quam, quomodo|- | i=No | 16| c=en | not *| c=fr | ne...pas| c=de | nicht| c=it | non| c=es | no| c=nl | niet| c=sw | inte, ej| c=la | non|- | i=No | 17| c=en | all *| c=fr | tout| c=de | alle| c=it | tutto| c=es | todo| c=nl | al, alle| c=sw | alla| c=la | omnis|- | i=No | 18| c=en | many *| c=fr | plusieurs| c=de | viele| c=it | molti| c=es | muchos| c=nl | veel| c=sw | många| c=la | multi|- | i=No | 19| c=en | some| c=fr | quelques| c=de | einige| c=it | alcuni| c=es | algunos, unos| c=nl | enkele, sommige| c=sw | några, vissa| c=la | aliqui, aliquot|- | i=No | 20| c=en | few| c=fr | peu| c=de | wenige| c=it | pochi| c=es | poco| c=nl | weinig| c=sw | få| c=la | pauci|- | i=No | 21| c=en | other| c=fr | autre| c=de | andere| c=it | altro| c=es | otro| c=nl | ander| c=sw | annan| c=la | alter, alius|- | i=No | 22| c=en | one *| c=fr | un| c=de | eins| c=it | uno| c=es | uno| c=nl | een| c=sw | ett| c=la | unus|- | i=No | 23| c=en | two *| c=fr | deux| c=de | zwei| c=it | due| c=es | dos| c=nl | twee| c=sw | två| c=la | duo|- | i=No | 24| c=en | three| c=fr | trois| c=de | drei| c=it | tre| c=es | tres| c=nl | drie| c=sw | tre| c=la | tres|- | i=No | 25| c=en | four| c=fr | quatre| c=de | vier| c=it | quattro| c=es | cuatro| c=nl | vier| c=sw | fyra| c=la | quattuor|- | i=No | 26| c=en | five| c=fr | cinq| c=de | fünf| c=it | cinque| c=es | cinco| c=nl | vijf| c=sw | fem| c=la | quinque|- | i=No | 27| c=en | big *| c=fr | grand| c=de | groß| c=it | grande| c=es | grande| c=nl | groot| c=sw | stor| c=la | magnus, grandis|- | i=No | 28| c=en | long *| c=fr | long| c=de | lang| c=it | lungo| c=es | largo| c=nl | lang| c=sw | lång| c=la | longus|- | i=No | 29| c=en | wide| c=fr | large| c=de | breit, weit| c=it | largo| c=es | ancho| c=nl | breed, wijd| c=sw | bred, vid| c=la | latus|- | i=No | 30| c=en | thick| c=fr | épais| c=de | dick| c=it | spesso| c=es | grueso| c=nl | dik| c=sw | tjock| c=la | creber|- | i=No | 31| c=en | heavy| c=fr | lourd| c=de | schwer| c=it | pesante| c=es | pesado| c=nl | zwaar| c=sw | tung| c=la | gravis|- | i=No | 32| c=en | small *| c=fr | petit| c=de | klein| c=it | piccolo| c=es | pequeño| c=nl | smal| c=sw | liten| c=la | parvus|- | i=No | 33| c=en | short| c=fr | court| c=de | kurz| c=it | corto| c=es | corto| c=nl | kort| c=sw | kort| c=la | brevis|- | i=No | 34| c=en | narrow| c=fr | étroit| c=de | eng| c=it | stretto| c=es | estrecho, angosto| c=nl | klein| c=sw | trång| c=la | angustus|- | i=No | 35| c=en | thin| c=fr | mince| c=de | dünn| c=it | sottile| c=es | delgado, flaco| c=nl | dun| c=sw | tunn| c=la | macer|- | i=No | 36| c=en | woman *| c=fr | femme| c=de | Frau| c=it | donna| c=es | mujer| c=nl | vrouw| c=sw | kvinna| c=la | femina|- | i=No | 37| c=en | man (adult male)| c=fr | homme| c=de | Mann| c=it | uomo| c=es | hombre| c=nl | man| c=sw | man| c=la | vir|- | i=No | 38| c=en | man * (human being)| c=fr | homme| c=de | Mensch| c=it | uomo| c=es | hombre| c=nl | mens| c=sw | människa| c=la | homo|- | i=No | 39| c=en | kid| c=fr | enfant| c=de | Kind| c=it | bambino| c=es | niño| c=nl | kind| c=sw | barn| c=la | puer|- | i=No | 40| c=en | wife| c=fr | femme, épouse| c=de | Frau, Ehefrau| c=it | moglie| c=es | esposa, mujer| c=nl | vrouw, echtgenote| c=sw | hustru, maka, fru| c=la | uxor, mulier|- | i=No | 41| c=en | husband| c=fr | mari, époux| c=de | Mann, Ehemann| c=it | marito| c=es | esposo, marido| c=nl | man, echtgenoot| c=sw | man, make| c=la | maritus|- | i=No | 42| c=en | mother| c=fr | mère| c=de | Mutter| c=it | madre| c=es | madre| c=nl | moeder| c=sw | mamma, mor| c=la | mater|- | i=No | 43| c=en | father| c=fr | père| c=de | Vater| c=it | padre| c=es | padre| c=nl | vader| c=sw | pappa, far| c=la | pater|- | i=No | 44| c=en | animal| c=fr | animal| c=de | Tier| c=it | animale| c=es | animal| c=nl | dier| c=sw | djur| c=la | animal|- | i=No | 45| c=en | fish *| c=fr | poisson| c=de | Fisch| c=it | pesce| c=es | pez, pescado| c=nl | vis| c=sw | fisk| c=la | piscis|- | i=No | 46| c=en | bird *| c=fr | oiseau| c=de | Vogel| c=it | uccello| c=es | ave, pájaro| c=nl | vogel| c=sw | fågel| c=la | avis|- | i=No | 47| c=en | hound *| c=fr | chien| c=de | Hund| c=it | cane| c=es | perro| c=nl | hond| c=sw | hund| c=la | canis|- | i=No | 48| c=en | louse *| c=fr | pou| c=de | Laus| c=it | pidocchio| c=es | piojo| c=nl | luis| c=sw | lus| c=la | pedis|- | i=No | 49| c=en | snake| c=fr | serpent| c=de | Schlange| c=it | serpente| c=es | serpiente, culebra| c=nl | slang| c=sw | orm| c=la | serpens|- | i=No | 50| c=en | worm| c=fr | ver| c=de | Wurm| c=it | verme| c=es | gusano| c=nl | worm| c=sw | mask| c=la | vermis|- | i=No | 51| c=en | beam *| c=fr | arbre| c=de | Baum| c=it | albero| c=es | árbol| c=nl | boom| c=sw | träd| c=la | arbor|- | i=No | 52| c=en | forest| c=fr | forêt| c=de | Wald| c=it | foresta| c=es | bosque| c=nl | woud| c=sw | skog| c=la | silva|- | i=No | 53| c=en | stick| c=fr | bâton| c=de | Stock| c=it | bastone| c=es | palo| c=nl | stok| c=sw | pinne| c=la | fustis|- | i=No | 54| c=en | fruit| c=fr | fruit| c=de | Frucht| c=it | frutta| c=es | fruta| c=nl | fruit, vrucht| c=sw | frukt| c=la | fructus|- | i=No | 55| c=en | seed *| c=fr | graine| c=de | Samen| c=it | seme| c=es | semilla| c=nl | zaad| c=sw | frö| c=la | semen|- | i=No | 56| c=en | leaf *| c=fr | feuille| c=de | Blatt| c=it | foglia| c=es | hoja| c=nl | blad| c=sw | löv, blad| c=la | folium|- | i=No | 57| c=en | root *| c=fr | racine| c=de | Wurzel| c=it | radice| c=es | raíz| c=nl | root| c=sw | rot| c=la | radix|- | i=No | 58| c=en | bark * (from tree)| c=fr | écorce| c=de | Rinde| c=it | corteccia| c=es | corteza| c=nl | bark| c=sw | bark| c=la | cortex|- | i=No | 59| c=en | flower| c=fr | fleur| c=de | Blume| c=it | fiore| c=es | flor| c=nl | bloem| c=sw | blomma| c=la | flos|- | i=No | 60| c=en | grass| c=fr | herbe| c=de | Gras| c=it | erba| c=es | hierba, pasto| c=nl | gras| c=sw | gräs| c=la | herba|- | i=No | 61| c=en | rope| c=fr | corde| c=de | Seil| c=it | corda| c=es | cuerda| c=nl | reep, koord| c=sw | rep| c=la | funis|- | i=No | 62| c=en | skin *| c=fr | peau| c=de | Haut| c=it | pelle| c=es | piel| c=nl | huid| c=sw | hud| c=la | cutis|- | i=No | 63| c=en | meat| c=fr | viande| c=de | Fleisch| c=it | carne| c=es | carne| c=nl | vlees| c=sw | kött| c=la | caro|- | i=No | 64| c=en | blood *| c=fr | sang| c=de | Blut| c=it | sangue| c=es | sangre| c=nl | bloed| c=sw | blod| c=la | sanguis|- | i=No | 65| c=en | bone *| c=fr | os| c=de | Knochen| c=it | osso| c=es | hueso| c=nl | been, bot| c=sw | ben| c=la | os|- | i=No | 66| c=en | fat * (n.)| c=fr | graisse| c=de | Fett| c=it | grasso| c=es | grasa| c=nl | vet| c=sw | fett| c=la | adeps|- | i=No | 67| c=en | egg *| c=fr | œuf| c=de | Ei| c=it | uovo| c=es | huevo| c=nl | ei| c=sw | ägg| c=la | ovum|- | i=No | 68| c=en | horn *| c=fr | corne| c=de | Horn| c=it | corno| c=es | cuerno| c=nl | horn| c=sw | horn| c=la | cornu|- | i=No | 69| c=en | tail *| c=fr | queue| c=de | Schwanz| c=it | coda| c=es | cola| c=nl | staart| c=sw | svans| c=la | cauda|- | i=No | 70| c=en | feather *| c=fr | plume| c=de | Feder| c=it | piuma| c=es | pluma| c=nl | veder| c=sw | fjäder| c=la | penna|- | i=No | 71| c=en | hair *| c=fr | cheveu| c=de | Haar| c=it | capelli| c=es | cabello, pelo| c=nl | haar| c=sw | hår| c=la | capillus, coma, crinis|- | i=No | 72| c=en | head *| c=fr | tête| c=de | Kopf, Haupt| c=it | testa| c=es | cabeza| c=nl | hoofd, kop| c=sw | huvud| c=la | caput|- | i=No | 73| c=en | ear *| c=fr | oreille| c=de | Ohr| c=it | orecchio| c=es | oreja| c=nl | aar| c=sw | öra| c=la | auris|- | i=No | 74| c=en | eye *| c=fr | œil| c=de | Auge| c=it | occhio| c=es | ojo| c=nl | oog| c=sw | öga| c=la | oculus|- | i=No | 75| c=en | nose *| c=fr | nez| c=de | Nase| c=it | naso| c=es | nariz| c=nl | neus| c=sw | näsa| c=la | nasus|- | i=No | 76| c=en | mouth *| c=fr | bouche| c=de | Mund| c=it | bocca| c=es | boca| c=nl | mond| c=sw | mun| c=la | os|- | i=No | 77| c=en | tooth *| c=fr | dent| c=de | Zahn| c=it | dente| c=es | diente| c=nl | tand| c=sw | tand| c=la | dens|- | i=No | 78| c=en | tongue *| c=fr | langue| c=de | Zunge| c=it | lingua| c=es | lengua| c=nl | tong| c=sw | tunga| c=la | lingua|- | i=No | 79| c=en | fingernail| c=fr | ongle| c=de | Fingernagel| c=it | unghia| c=es | uña| c=nl | vingernagel| c=sw | nagel| c=la | unguis|- | i=No | 80| c=en | foot *| c=fr | pied| c=de | Fuß| c=it | piede| c=es | pie| c=nl | voet| c=sw | fot| c=la | pes|- | i=No | 81| c=en | leg| c=fr | jambe| c=de | Bein| c=it | gamba| c=es | pierna| c=nl | been| c=sw | ben| c=la | crus|- | i=No | 82| c=en | knee *| c=fr | genou| c=de | Knie| c=it | ginocchio| c=es | rodilla| c=nl | knie| c=sw | knä| c=la | genu|- | i=No | 83| c=en | hand *| c=fr | main| c=de | Hand| c=it | mano| c=es | mano| c=nl | hand| c=sw | hand| c=la | manus|- | i=No | 84| c=en | wing| c=fr | aile| c=de | Flügel| c=it | ala| c=es | ala| c=nl | vleugel| c=sw | vinge| c=la | ala|- | i=No | 85| c=en | belly *| c=fr | ventre| c=de | Bauch| c=it | pancia| c=es | barriga, vientre, panza| c=nl | buik| c=sw | mage| c=la | venter|- | i=No | 86| c=en | guts| c=fr | entrailles| c=de | Eingeweide, Innereien| c=it | intestino| c=es | entrañas, tripas| c=nl | ingewanden| c=sw | inälvor| c=la | intestina|- | i=No | 87| c=en | neck *| c=fr | cou| c=de | Hals| c=it | collo| c=es | cuello| c=nl | nek| c=sw | hals, nacke| c=la | collum, cervix|- | i=No | 88| c=en | back| c=fr | dos| c=de | Rücken| c=it | schiena| c=es | espalda| c=nl | rug| c=sw | rygg| c=la | tergum|- | i=No | 89| c=en | breast *| c=fr | sein, poitrine| c=de | Brust| c=it | petto| c=es | pecho, seno| c=nl | borst| c=sw | bröst| c=la | pectus, mamma|- | i=No | 90| c=en | heart *| c=fr | cœur| c=de | Herz| c=it | cuore| c=es | corazón| c=nl | hart| c=sw | hjärta| c=la | cor|- | i=No | 91| c=en | liver *| c=fr | foie| c=de | Leber| c=it | fegato| c=es | hígado| c=nl | lever| c=sw | lever| c=la | iecur|- | i=No | 92| c=en | drink *| c=fr | boire| c=de | trinken| c=it | bere| c=es | beber, tomar| c=nl | drinken| c=sw | dricka| c=la | bibere|- | i=No | 93| c=en | eat *| c=fr | manger| c=de | essen| c=it | mangiare| c=es | comer| c=nl | eten| c=sw | äta| c=la | edere|- | i=No | 94| c=en | bite *| c=fr | mordre| c=de | beißen| c=it | mordere| c=es | morder| c=nl | bijten| c=sw | bita| c=la | mordere|- | i=No | 95| c=en | suck| c=fr | sucer| c=de | saugen| c=it | succhiare| c=es | chupar| c=nl | zuigen| c=sw | suga| c=la | sugere|- | i=No | 96| c=en | spit| c=fr | cracher| c=de | spucken| c=it | sputare| c=es | escupir| c=nl | spugen| c=sw | spotta| c=la | sputare|- | i=No | 97| c=en | vomit| c=fr | vomir| c=de | erbrechen| c=it | vomitare| c=es | vomitar| c=nl | braken, overgeven| c=sw | kräkas, spy| c=la | vomere|- | i=No | 98| c=en | blow| c=fr | souffler| c=de | blasen| c=it | soffiare| c=es | soplar| c=nl | blazen| c=sw | blåsa| c=la | flare|- | i=No | 99| c=en | breathe| c=fr | respirer| c=de | atmen| c=it | respirare| c=es | respirar| c=nl | ademen| c=sw | andas| c=la | spirare|- | i=No | 100| c=en | laugh| c=fr | rire| c=de | lachen| c=it | ridere| c=es | reír| c=nl | lachen| c=sw | skratta| c=la | ridere|- | i=No | 101| c=en | see *| c=fr | voir| c=de | sehen| c=it | vedere| c=es | ver| c=nl | zien| c=sw | se| c=la | videre|- | i=No | 102| c=en | hear *| c=fr | entendre| c=de | hören| c=it | udire, sentire| c=es | oír| c=nl | horen| c=sw | höra| c=la | audire|- | i=No | 103| c=en | know * (a fact)| c=fr | savoir| c=de | wissen| c=it | sapere| c=es | saber| c=nl | kennen| c=sw | veta| c=la | scire|- | i=No | 104| c=en | think| c=fr | penser| c=de | denken| c=it | pensare| c=es | pensar| c=nl | denken| c=sw | tänka| c=la | putare|- | i=No | 105| c=en | smell| c=fr | sentir| c=de | riechen| c=it | odorare, annusare| c=es | oler| c=nl | smelten| c=sw | lukta| c=la | olere|- | i=No | 106| c=en | fear| c=fr | craindre, avoir peur| c=de | fürchten| c=it | temere| c=es | temer| c=nl | vrezen, angst| c=sw | frukta, rädas| c=la | timere|- | i=No | 107| c=en | sleep *| c=fr | dormir| c=de | schlafen| c=it | dormire| c=es | dormir| c=nl | slapen| c=sw | sova| c=la | dormire|- | i=No | 108| c=en | live| c=fr | vivre| c=de | leben| c=it | vivere| c=es | vivir| c=nl | leven| c=sw | leva| c=la | vivere|- | i=No | 109| c=en | die *| c=fr | mourir| c=de | sterben| c=it | morire| c=es | morir| c=nl | doden| c=sw | dö| c=la | mori|- | i=No | 110| c=en | kill *| c=fr | tuer| c=de | töten| c=it | uccidere| c=es | matar| c=nl | doden| c=sw | döda| c=la | necare|- | i=No | 111| c=en | fight| c=fr | se battre| c=de | kämpfen| c=it | combattere| c=es | pelear| c=nl | vechten| c=sw | strida| c=la | pugnare|- | i=No | 112| c=en | hunt| c=fr | chasser| c=de | jagen| c=it | cacciare| c=es | cazar| c=nl | jagen| c=sw | jaga| c=la | venari|- | i=No | 113| c=en | hit| c=fr | frapper| c=de | schlagen| c=it | colpire| c=es | golpear| c=nl | slaan| c=sw | slå| c=la | pellere|- | i=No | 114| c=en | cut| c=fr | couper| c=de | schneiden| c=it | tagliare| c=es | cortar| c=nl | snijden| c=sw | skära| c=la | secare|- | i=No | 115| c=en | split| c=fr | fendre| c=de | spalten| c=it | dividere, separare| c=es | partir| c=nl | splijten| c=sw | dela, klyva| c=la | scindere, partiri|- | i=No | 116| c=en | stab| c=fr | poignarder| c=de | stechen| c=it | pugnalare| c=es | apuñalar| c=nl | steken| c=sw | sticka| c=la | traicere|- | i=No | 117| c=en | scratch| c=fr | gratter| c=de | kratzen| c=it | graffiare| c=es | arañar, rascar| c=nl | krabben| c=sw | klia| c=la | radere|- | i=No | 118| c=en | dig| c=fr | creuser| c=de | graben| c=it | scavare| c=es | cavar| c=nl | delven| c=sw | gräva| c=la | fodere|- | i=No | 119| c=en | swim *| c=fr | nager| c=de | schwimmen| c=it | nuotare| c=es | nadar| c=nl | zwemmen| c=sw | simma| c=la | natare|- | i=No | 120| c=en | fly * (v.)| c=fr | voler| c=de | fliegen| c=it | volare| c=es | volar| c=nl | vliegen| c=sw | flyga| c=la | volare|- | i=No | 121| c=en | walk *| c=fr | marcher| c=de | gehen| c=it | camminare| c=es | caminar| c=nl | lopen, wandelen| c=sw | gå| c=la | gradi|- | i=No | 122| c=en | come *| c=fr | venir| c=de | kommen| c=it | venire| c=es | venir| c=nl | komen| c=sw | komma| c=la | venire|- | i=No | 123| c=en | lie *| c=fr | s'étendre| c=de | liegen| c=it | distendersi| c=es | echarse, acostarse, tenderse| c=nl | liegen| c=sw | ligga| c=la | iacere|- | i=No | 124| c=en | sit *| c=fr | s'asseoir| c=de | setzen| c=it | sedere| c=es | sentarse| c=nl | zitten| c=sw | sitta| c=la | sedere|- | i=No | 125| c=en | stand *| c=fr | se lever| c=de | stehen| c=it | stare in piedi| c=es | estar de pie| c=nl | staan| c=sw | stå| c=la | stare|- | i=No | 126| c=en | turn| c=fr | tourner| c=de | drehen| c=it | girare| c=es | voltear| c=nl | draaien| c=sw | svänga| c=la | vertere|- | i=No | 127| c=en | fall| c=fr | tomber| c=de | fallen| c=it | cadere| c=es | caer| c=nl | vallen| c=sw | falla| c=la | cadere|- | i=No | 128| c=en | give *| c=fr | donner| c=de | geben| c=it | dare| c=es | dar| c=nl | geven| c=sw | ge| c=la | dare|- | i=No | 129| c=en | hold| c=fr | tenir| c=de | halten| c=it | tenere| c=es | sostener| c=nl | houden| c=sw | hålla| c=la | tenere|- | i=No | 130| c=en | squeeze| c=fr | serrer| c=de | quetschen| c=it | spremere| c=es | apretar| c=nl | knijpen| c=sw | klämma| c=la | premere|- | i=No | 131| c=en | rub| c=fr | frotter| c=de | reiben| c=it | strofinare| c=es | frotar, restregar| c=nl | wrijven| c=sw | gnida| c=la | fricare|- | i=No | 132| c=en | wash| c=fr | laver| c=de | waschen| c=it | lavare| c=es | lavar| c=nl | wassen| c=sw | tvätta| c=la | lavare|- | i=No | 133| c=en | wipe| c=fr | essuyer| c=de | wischen| c=it | asciugare| c=es | limpiar| c=nl | vegen| c=sw | rensa| c=la | tergere|- | i=No | 134| c=en | pull| c=fr | tirer| c=de | ziehen| c=it | tirare| c=es | tirar| c=nl | trekken| c=sw | dra| c=la | trahere|- | i=No | 135| c=en | push| c=fr | pousser| c=de | drücken| c=it | spingere| c=es | empujar| c=nl | duwen| c=sw | trycka| c=la | pellere, urgere|- | i=No | 136| c=en | throw| c=fr | jeter| c=de | werfen| c=it | tirare| c=es | tirar| c=nl | werpen, gooien| c=sw | kasta| c=la | iacere|- | i=No | 137| c=en | tie| c=fr | lier| c=de | binden| c=it | legare| c=es | atar| c=nl | binden| c=sw | knyta, binda| c=la | stringere, ligare|- | i=No | 138| c=en | sew| c=fr | coudre| c=de | nähen| c=it | cucire| c=es | coser| c=nl | naaien| c=sw | sy| c=la | suere|- | i=No | 139| c=en | count| c=fr | compter| c=de | zählen| c=it | contare| c=es | contar| c=nl | tellen| c=sw | räkna| c=la | numerare|- | i=No | 140| c=en | say *| c=fr | dire| c=de | sagen| c=it | dire| c=es | decir| c=nl | zeggen| c=sw | säga| c=la | dicere|- | i=No | 141| c=en | sing| c=fr | chanter| c=de | singen| c=it | cantare| c=es | cantar| c=nl | zingen| c=sw | sjunga| c=la | canere|- | i=No | 142| c=en | play| c=fr | jouer| c=de | spielen| c=it | giocare| c=es | jugar| c=nl | spelen| c=sw | leka, spela| c=la | ludere|- | i=No | 143| c=en | float| c=fr | flotter| c=de | schweben| c=it | galleggiare| c=es | flotar| c=nl | zweven| c=sw | flyta| c=la | fluctuare|- | i=No | 144| c=en | flow| c=fr | couler| c=de | fließen| c=it | fluire| c=es | fluir| c=nl | vloeien| c=sw | rinna| c=la | fluere|- | i=No | 145| c=en | freeze| c=fr | geler| c=de | frieren| c=it | gelare| c=es | helar| c=nl | vriezen| c=sw | frysa| c=la | gelare|- | i=No | 146| c=en | swell| c=fr | gonfler| c=de | schwellen| c=it | gonfiare| c=es | hincharse| c=nl | zwellen| c=sw | svälla| c=la | inflare|- | i=No | 147| c=en | sun *| c=fr | soleil| c=de | Sonne| c=it | sole| c=es | sol| c=nl | zon| c=sw | sol| c=la | sol|- | i=No | 148| c=en | moon *| c=fr | lune| c=de | Mond| c=it | luna| c=es | luna| c=nl | maan| c=sw | måne| c=la | luna|- | i=No | 149| c=en | star *| c=fr | étoile| c=de | Stern| c=it | stella| c=es | estrella| c=nl | ster| c=sw | stjärna| c=la | stella|- | i=No | 150| c=en | water *| c=fr | eau| c=de | Wasser| c=it | acqua| c=es | agua| c=nl | water| c=sw | vatten| c=la | aqua|- | i=No | 151| c=en | rain *| c=fr | pluie| c=de | Regen| c=it | pioggia| c=es | lluvia| c=nl | regen| c=sw | regn| c=la | pluvia|- | i=No | 152| c=en | river| c=fr | rivière| c=de | Fluß| c=it | fiume| c=es | río| c=nl | rivier| c=sw | flod| c=la | fluvius|- | i=No | 153| c=en | lake| c=fr | lac| c=de | See| c=it | lago| c=es | lago| c=nl | lak| c=sw | sjö| c=la | lacus|- | i=No | 154| c=en | sea| c=fr | mer| c=de | Meer, See| c=it | mare| c=es | mar| c=nl | zee| c=sw | hav| c=la | mare|- | i=No | 155| c=en | salt| c=fr | sel| c=de | Salz| c=it | sale| c=es | sal| c=nl | zout| c=sw | salt| c=la | sal|- | i=No | 156| c=en | stone *| c=fr | pierre| c=de | Stein| c=it | pietra| c=es | piedra| c=nl | steen| c=sw | sten| c=la | lapis, petra|- | i=No | 157| c=en | sand *| c=fr | sable| c=de | Sand| c=it | sabbia| c=es | arena| c=nl | zand| c=sw | sand| c=la | arena|- | i=No | 158| c=en | dust| c=fr | poussière| c=de | Staub| c=it | polvere| c=es | polvo| c=nl | stof| c=sw | damm| c=la | pulvis|- | i=No | 159| c=en | earth *| c=fr | terre| c=de | Erde| c=it | terra| c=es | tierra| c=nl | aarde| c=sw | jord| c=la | terra|- | i=No | 160| c=en | cloud *| c=fr | nuage| c=de | Wolke| c=it | nuvola| c=es | nube| c=nl | wolk| c=sw | moln| c=la | nimbus, nubes|- | i=No | 161| c=en | fog| c=fr | brouillard| c=de | Nebel| c=it | nebbia| c=es | niebla| c=nl | mist, nevel| c=sw | dimma| c=la | caligo, nebula|- | i=No | 162| c=en | sky| c=fr | ciel| c=de | Himmel| c=it | cielo| c=es | cielo| c=nl | lucht| c=sw | himmel| c=la | caelum|- | i=No | 163| c=en | wind| c=fr | vent| c=de | Wind| c=it | vento| c=es | viento| c=nl | wind| c=sw | vind| c=la | ventus|- | i=No | 164| c=en | snow| c=fr | neige| c=de | Schnee| c=it | neve| c=es | nieve| c=nl | sneeuw| c=sw | snö| c=la | nix|- | i=No | 165| c=en | ice| c=fr | glace| c=de | Eis| c=it | ghiaccio| c=es | hielo| c=nl | ijs| c=sw | is| c=la | glacies|- | i=No | 166| c=en | smoke *| c=fr | fumée| c=de | Rauch| c=it | fumo| c=es | humo| c=nl | rook| c=sw | rök| c=la | fumus|- | i=No | 167| c=en | fire *| c=fr | feu| c=de | Feuer| c=it | fuoco| c=es | fuego| c=nl | vuur| c=sw | eld| c=la | ignis|- | i=No | 168| c=en | ashes *| c=fr | cendres| c=de | Asche| c=it | ceneri| c=es | cenizas| c=nl | as| c=sw | aska| c=la | cineres|- | i=No | 169| c=en | burn *| c=fr | brûler| c=de | brennen| c=it | bruciare| c=es | quemar| c=nl | branden| c=sw | brinna| c=la | ardere|- | i=No | 170| c=en | road *| c=fr | route| c=de | Straße| c=it | strada| c=es | camino| c=nl | weg| c=sw | väg| c=la | via|- | i=No | 171| c=en | mountain *| c=fr | montagne| c=de | Berg| c=it | montagna| c=es | montaña| c=nl | berg| c=sw | berg| c=la | mons|- | i=No | 172| c=en | red *| c=fr | rouge| c=de | rot| c=it | rosso| c=es | rojo| c=nl | rode| c=sw | röd| c=la | ruber|- | i=No | 173| c=en | green *| c=fr | vert| c=de | grün| c=it | verde| c=es | verde| c=nl | groen| c=sw | grön| c=la | viridis|- | i=No | 174| c=en | yellow *| c=fr | jaune| c=de | gelb| c=it | giallo| c=es | amarillo| c=nl | geel| c=sw | gul| c=la | flavus|- | i=No | 175| c=en | white *| c=fr | blanc| c=de | weiß| c=it | bianco| c=es | blanco| c=nl | witte| c=sw | vit| c=la | albus, candidus|- | i=No | 176| c=en | black *| c=fr | noir| c=de | schwarz| c=it | nero| c=es | negro| c=nl | zwart| c=sw | svart| c=la | niger, ater, fuscus|- | i=No | 177| c=en | night *| c=fr | nuit| c=de | Nacht| c=it | notte| c=es | noche| c=nl | nacht| c=sw | natt| c=la | nox|- | i=No | 178| c=en | day| c=fr | jour| c=de | Tag| c=it | giorno| c=es | día| c=nl | dag| c=sw | dag| c=la | dies|- | i=No | 179| c=en | year| c=fr | an, année| c=de | Jahr| c=it | anno| c=es | año| c=nl | jaar| c=sw | år| c=la | annus|- | i=No | 180| c=en | warm *| c=fr | chaud| c=de | warm| c=it | caldo| c=es | cálido, tibio| c=nl | warm| c=sw | varm| c=la | calidus|- | i=No | 181| c=en | cold *| c=fr | froid| c=de | kalt| c=it | freddo| c=es | frío| c=nl | koud| c=sw | kall| c=la | frigidus|- | i=No | 182| c=en | full *| c=fr | plein| c=de | volle| c=it | pieno| c=es | lleno| c=nl | volle| c=sw | full| c=la | plenus|- | i=No | 183| c=en | new *| c=fr | nouveau| c=de | neu| c=it | nuovo| c=es | nuevo| c=nl | nieuw| c=sw | ny| c=la | novus|- | i=No | 184| c=en | old| c=fr | vieux| c=de | alt| c=it | vecchio| c=es | viejo| c=nl | oud| c=sw | gammal| c=la | vetus|- | i=No | 185| c=en | good *| c=fr | bon| c=de | gut| c=it | buono| c=es | bueno| c=nl | goed| c=sw | bra| c=la | bonus|- | i=No | 186| c=en | bad| c=fr | mauvais| c=de | schlecht| c=it | cattivo| c=es | malo<br>| c=nl | slecht| c=sw | dålig| c=la | malus|- | i=No | 187| c=en | rotten| c=fr | pourri| c=de | verrottet| c=it | marcio| c=es | podrido| c=nl | rotten| c=sw | rutten| c=la | puter, putridus|- | i=No | 188| c=en | dirty| c=fr | sale| c=de | schmutzig| c=it | sporco| c=es | sucio| c=nl | vies| c=sw | smutsig| c=la | sordidus|- | i=No | 189| c=en | straight| c=fr | droit| c=de | gerade| c=it | diritto| c=es | recto| c=nl | recht| c=sw | rak| c=la | rectus|- | i=No | 190| c=en | round *| c=fr | rond| c=de | rund| c=it | rotondo| c=es | redondo| c=nl | rond| c=sw | rund| c=la | rotundus|- | i=No | 191| c=en | sharp| c=fr | tranchant, pointu, aigu| c=de | scharf| c=it | aguzzo, affilato| c=es | afilado| c=nl | scherp| c=sw | vass| c=la | acer|- | i=No | 192| c=en | dull| c=fr | émoussé| c=de | stumpf| c=it | noioso| c=es | desafilado| c=nl | stomp, bot| c=sw | slö| c=la | hebes|- | i=No | 193| c=en | smooth| c=fr | lisse| c=de | glatt| c=it | liscio| c=es | suave, liso| c=nl | glad| c=sw | len, slät| c=la | levis|- | i=No | 194| c=en | wet| c=fr | mouillé| c=de | nass, feucht| c=it | bagnato| c=es | mojado| c=nl | nat| c=sw | våt, blöt| c=la | umidus|- | i=No | 195| c=en | dry *| c=fr | sec| c=de | trocken| c=it | asciutto, secco| c=es | seco| c=nl | droog| c=sw | torr| c=la | siccus|- | i=No | 196| c=en | correct| c=fr | juste, correct| c=de | richtig| c=it | corretto| c=es | correcto| c=nl | richting, correct| c=sw | rätt, riktig| c=la | rectus|- | i=No | 197| c=en | near| c=fr | proche| c=de | nah,<br>nahe| c=it | vicino| c=es | cerca| c=nl | naar| c=sw | nära| c=la | propinquus|- | i=No | 198| c=en | far| c=fr | loin| c=de | weit, fern| c=it | lontano| c=es | lejos| c=nl | ver| c=sw | långt bort, fjärran| c=la | longinquus|- | i=No | 199| c=en | right| c=fr | à droite| c=de | rechts| c=it | destra| c=es | derecha| c=nl | rechts| c=sw | höger| c=la | dexter|- | i=No | 200| c=en | left| c=fr | à gauche| c=de | links| c=it | sinistra| c=es | izquierda| c=nl | links| c=sw | vänster| c=la | sinister|- | i=No | 201| c=en | at| c=fr | à| c=de | bei, an| c=it | a| c=es | a, en, ante| c=nl | aan, te, bij| c=sw | hos, vid| c=la | ad|- | i=No | 202| c=en | in| c=fr | dans| c=de | in| c=it | in| c=es | en| c=nl | in| c=sw | i| c=la | in|- | i=No | 203| c=en | with| c=fr | avec| c=de | mit| c=it | con| c=es | con| c=nl | met| c=sw | med| c=la | cum|- | i=No | 204| c=en | and| c=fr | et| c=de | und| c=it | e| c=es | y| c=nl | en| c=sw | och| c=la | et|- | i=No | 205| c=en | if| c=fr | si| c=de | wenn, falls, ob| c=it | se| c=es | si| c=nl | als, indien| c=sw | om| c=la | si|- | i=No | 206| c=en | because| c=fr | parce que| c=de | weil| c=it | perché| c=es | porque| c=nl | omdat| c=sw | eftersom, ty| c=la | quia, quoniam|- | i=No | 207| c=en | name *| c=fr | nom| c=de | Name| c=it | nome| c=es | nombre| c=nl | naam| c=sw | namn| c=la | nomen|}>>> ***April*** -April: - +HtmlEntry: April <<<

    Pronunciation

    • {{audio|De-April.ogg|audio}}
    @@ -285,18 +273,16 @@ April: {{head|de|noun|g=m}}
    1. {{l|en|April}}
    -Category:2000 German basic wordsCategory:de:Months---- +Category:2000 German basic wordsCategory:de:Months---->>> ***Bahamas*** -Bahamas: - +HtmlEntry: Bahamas <<<

    Proper noun

    {de-proper noun} {p}
    1. {{l|en|Bahamas}}
    -Category:de:Countries---- +Category:de:Countries---->>> ***Bahrain*** -Bahrain: - +HtmlEntry: Bahrain <<<

    Proper noun

    {{head|de|proper noun}}
    1. {{l|en|Bahrain}}
    2. @@ -306,18 +292,16 @@ Bahrain:
      • {{l|de|Bahrainer}}
      • {{l|de|Bahrainerin}}
      -Category:de:Countries---- +Category:de:Countries---->>> ***Bangladesh*** -Bangladesh: - +HtmlEntry: Bangladesh <<<

      Proper noun

      {{head|de|proper noun}} no gender
      1. {{alternative spelling of|Bangladesch|lang=de}}
      -Category:de:Countries---- +Category:de:Countries---->>> ***Belize*** -Belize: -{{wikipedia|lang=de}} +HtmlEntry: Belize <<<{{wikipedia|lang=de}}

      Proper noun

      {{head|de|proper noun|g=n}}
      1. {{l|en|Belize}}
      2. @@ -328,10 +312,9 @@ Belize:
      3. {{l|de|Belizerin}}
      4. {{l|de|belizisch}}
      5. -Category:de:Countries---- +Category:de:Countries---->>> ***Bhutan*** -Bhutan: -{{wikipedia|lang=de}} +HtmlEntry: Bhutan <<<{{wikipedia|lang=de}}

        Pronunciation

        • {{IPA|/buˈtaːn/|lang=de}}
        • {{homophones|Butan|lang=de}}
        • @@ -347,43 +330,38 @@ Bhutan:
        • {{l|de|Bhutaner}}
        • {{l|de|Bhutanerin}}
        -Category:de:Countries---- +Category:de:Countries---->>> ***blood*** -blood: - +HtmlEntry: blood <<<

        Noun

        {{nds-noun|n}}
        1. {{form of|uncapitalized form|Blood|lang=nds|nodot=1}} : {{alternative spelling of|Bloot|lang=nds|nocap=1}}
        ----- +---->>> ***bot*** -bot: - +HtmlEntry: bot <<<

        Verb

        {{head|de|verb form}}
        1. {{form of|First-person singular preterite|bieten|lang=de}}
        2. {{form of|Third-person singular preterite|bieten|lang=de}}
        ----- +---->>> ***Burundi*** -Burundi: -{{wikipedia|lang=de}} +HtmlEntry: Burundi <<<{{wikipedia|lang=de}}

        Proper noun

        {{head|de|proper noun|g=n}}
        1. {{l|en|Burundi}}
        -Category:de:Countries---- +Category:de:Countries---->>> ***Chile*** -Chile: - +HtmlEntry: Chile <<<

        Proper noun

        {{head|de|proper noun|g=n}}
        1. Chile
        -Category:de:Countries---- +Category:de:Countries---->>> ***China*** -China: -{{wikipedia|lang=de}} +HtmlEntry: China <<<{{wikipedia|lang=de}}

        Pronunciation

        • {{audio|De-China.ogg|audio}}
        • {{IPA|[ˈçiːnaː]|lang=de}}, colloquially: {{IPAchar|[ˈʃiːnaː]}}
        • @@ -395,10 +373,9 @@ China: {{head|de|proper noun|g=n}}
          1. {{l|en|China}} {{gloss|country}}
          -Category:de:Countries---- +Category:de:Countries---->>> ***dat*** -dat: - +HtmlEntry: dat <<<

          Etymology

          From {{etyl|osx|nds}} {{term|that|lang=osx}}.

          Pronunciation

          @@ -448,10 +425,9 @@ From {{etyl|osx|nds}} {{term|that|lang=osx}}.

          Synonyms

          • wat
          ----- +---->>> ***de*** -de: - +HtmlEntry: de <<<

          Etymology

          From {{etyl|osx|nds}}.

          Pronunciation

          @@ -508,10 +484,9 @@ From {{etyl|osx|nds}}.

          Usage notes

          • The use as a relative pronoun might not be present in all dialects.
          ----- +---->>> ***Dezember*** -Dezember: - +HtmlEntry: Dezember <<<

          Pronunciation

          • {{IPA|[deˈtsɛmbɐ]|lang=de}}, {{X-SAMPA|[de"tsEmb6]}}
          • {{hyphenation|De-zem-ber}}
          • @@ -522,10 +497,9 @@ Dezember: {{head|de|noun}}
            1. December
            -Category:de:Months---- +Category:de:Months---->>> ***dick*** -dick: - +HtmlEntry: dick <<<

            Etymology

            From {{etyl|goh|de}} {{term|dicchi|lang=goh}} akin to {{etyl|osx|-}} {{term|thikki|lang=osx}}

            Pronunciation

            @@ -544,10 +518,9 @@ From {{etyl|goh|de}} {{term|dicchi|lang=goh}} akin to {{etyl|osx|-}} {{term|thik

            Derived terms

            • dicklich
            -ar:dickcs:dickde:dicket:dickel:dickes:dickeu:dickfa:dickfr:dickko:dickhr:dickio:dickit:dickku:dickhu:dickmg:dicknl:dickja:dickpl:dickpt:dicksimple:dickfi:dicksv:dicktl:dicktr:dickvi:dickzh:dick +ar:dickcs:dickde:dicket:dickel:dickes:dickeu:dickfa:dickfr:dickko:dickhr:dickio:dickit:dickku:dickhu:dickmg:dicknl:dickja:dickpl:dickpt:dicksimple:dickfi:dicksv:dicktl:dicktr:dickvi:dickzh:dick>>> ***die*** -die: - +HtmlEntry: die <<<

            Pronunciation

            • {{IPA|/diː/|lang=de}}
            • {{audio|De-die.ogg|audio}}
            • @@ -585,20 +558,18 @@ The definite article {{term|die}} is the form of {{term|der|the|lang=de}} used w

              Usage notes

              In a subordinate clause, {{term|die}} indicates a person or thing referenced in the main clause. It is used with plural or feminine singular antecedents.

              Declension

              -{de-decl-relative pronoun}---- +{de-decl-relative pronoun}---->>> ***dies*** -dies: - +HtmlEntry: dies <<<

              Etymology

              A shortening of dieses

              Pronoun

              dies
              1. this
              -Category:German pronouns---- +Category:German pronouns---->>> ***digital*** -digital: - +HtmlEntry: digital <<<

              Pronunciation

              • {{audio|De-at-digital.ogg|Audio (Austria)}}
              @@ -608,10 +579,9 @@ digital:
              1. {{computing|lang=de}} digital
              2. {{medicine|lang=de}} digital
              ----- +---->>> ***Ecuador*** -Ecuador: -{{wikipedia|lang=de}} +HtmlEntry: Ecuador <<<{{wikipedia|lang=de}}

              Pronunciation

              • {{rhymes|oːɐ̯|lang=de}}
              @@ -626,10 +596,9 @@ Ecuador:
            • Ecuadorianerin
            • ecuadorianisch
            -Category:German proper nounsCategory:de:Countries---- +Category:German proper nounsCategory:de:Countries---->>> ***een*** -een: - +HtmlEntry: een <<<

            Alternative forms

            • {{qualifier|in other dialects, including Low Prussian}} {{l|nds|en}}
            • {{qualifier|in some dialects}} {{l|nds|ein}}
            • @@ -650,10 +619,9 @@ een: {{head|nds|cardinal number}}
              1. {{context|in some dialects|lang=nds}} {{context|in some dialects|lang=nds}} {{alternative spelling of|en|lang=nds|nodot=1}} : one (1)
              ----- +---->>> ***en*** -en: - +HtmlEntry: en <<<

              Etymology

              Cognate to {{etyl|de|-}} ein, {{etyl|en|-}} an.

              Pronunciation

              @@ -680,10 +648,9 @@ Cognate to {{etyl|de|-}} ein, {{etyl|en|-}} an. {{head|nds|cardinal number}}
              1. {{context|in some dialects, including|_|Low Prussian|lang=nds}} one (1)
              ----- +---->>> ***Esperanto*** -Esperanto: - +HtmlEntry: Esperanto <<<

              Pronunciation

              • {{audio|De-Esperanto.ogg|audio}}
              @@ -692,32 +659,23 @@ Esperanto: {{head|de|noun|g=n}}
              1. Esperanto
              -Category:de:Languages---- +Category:de:Languages---->>> ***Fabian*** -Fabian: - +HtmlEntry: Fabian <<<

              Proper noun

              {{head|de|proper noun}}
              1. {{given name|male|lang=de}}
              ----- +---->>> ***Fanny*** -Fanny: - +HtmlEntry: Fanny <<<

              Proper noun

              {{head|de|proper noun}}
              1. {{given name|female|lang=de}} borrowed from English.
              ----- -===for=== -Wiktionary:Resources for translators: -
              • [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
              • -
              • [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
              • -
              - +---->>> ***frei*** -frei: - +HtmlEntry: frei <<<

              Etymology

              {{etyl|goh|de}} {{term|fri|frī|lang=goh}}

              Pronunciation

              @@ -753,57 +711,9 @@ frei:
            • freimütig
            • Freizeit
            ----- -===frijaz=== -Appendix:Proto-Germanic/frijaz: - -

            Etymology

            -From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond of|lang=gem-pro}}. The original meaning was probably something like from the own clan, from which a meaning being a free man, not a serf developed. -

            Pronunciation

            -
            • {{IPA|/ˈɸri.jɑz/|lang=gem-pro}}
            • -
            - -

            Adjective

            -{gem-adj} -
            1. free
            2. -
            - -

            Declension

            -{{gem-decl-adj-a|frij}} -

            Related terms

            -
            • {{lx|gem-pro|frijōnan|frijōną}}
            • -
            - -

            Descendants

            -
            • Old English: {{l|ang|freo|frēo}}
            • -
              • English: {{l|en|free}}
              • -
              -
            • Old Frisian: {{l|ofs|fri|frÄ«}}
            • -
              • West Frisian: {{l|fy|frij}}
              • -
              -
            • Old Saxon: {{l|osx|fri|frÄ«}}
            • -
              • Middle Low German: {{l|gml|vri}}
              • -
                • Norwegian: {{l|no|fri}}
                • -
                • Swedish: {{l|sv|fri}}
                • -
                • Danish: {{l|da|fri}}
                • -
                -
              -
            • Old Dutch: *frÄ«
            • -
              • Middle Dutch: {{l|dum|vri}}
              • -
                • Dutch: {{l|nl|vrij}}
                • -
                  • Afrikaans: {{l|af|vry}}
                  • -
                  -
                -
              -
            • Old High German: {{l|goh|fri|frÄ«}}
            • -
              • German: {{l|de|frei}}
              • -
              -
            • Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}
            • -
            - +---->>> ***Gambia*** -Gambia: -{{wikipedia|lang=de}} +HtmlEntry: Gambia <<<{{wikipedia|lang=de}}

            Proper noun

            {{head|de|proper noun|g=n}}
            1. {{l|en|Gambia}}
            2. @@ -815,57 +725,9 @@ Gambia:
            3. gambisch
            4. Senegambia
          -Category:de:Countries---- -===Germanic=== -Appendix:Proto-Germanic/frijaz: - -

          Etymology

          -From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond of|lang=gem-pro}}. The original meaning was probably something like from the own clan, from which a meaning being a free man, not a serf developed. -

          Pronunciation

          -
          • {{IPA|/ˈɸri.jɑz/|lang=gem-pro}}
          • -
          - -

          Adjective

          -{gem-adj} -
          1. free
          2. -
          - -

          Declension

          -{{gem-decl-adj-a|frij}} -

          Related terms

          -
          • {{lx|gem-pro|frijōnan|frijōną}}
          • -
          - -

          Descendants

          -
          • Old English: {{l|ang|freo|frēo}}
          • -
            • English: {{l|en|free}}
            • -
            -
          • Old Frisian: {{l|ofs|fri|frÄ«}}
          • -
            • West Frisian: {{l|fy|frij}}
            • -
            -
          • Old Saxon: {{l|osx|fri|frÄ«}}
          • -
            • Middle Low German: {{l|gml|vri}}
            • -
              • Norwegian: {{l|no|fri}}
              • -
              • Swedish: {{l|sv|fri}}
              • -
              • Danish: {{l|da|fri}}
              • -
              -
            -
          • Old Dutch: *frÄ«
          • -
            • Middle Dutch: {{l|dum|vri}}
            • -
              • Dutch: {{l|nl|vrij}}
              • -
                • Afrikaans: {{l|af|vry}}
                • -
                -
              -
            -
          • Old High German: {{l|goh|fri|frÄ«}}
          • -
            • German: {{l|de|frei}}
            • -
            -
          • Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}
          • -
          - +Category:de:Countries---->>> ***Ghana*** -Ghana: -{{wikipedia|lang=de}} +HtmlEntry: Ghana <<<{{wikipedia|lang=de}}

          Pronunciation

          • {{IPA|/ˈgaːna/|lang=de}}
          @@ -882,10 +744,9 @@ Ghana:
        • Ghanese
        • Ghanesin
        -Category:de:Countries---- +Category:de:Countries---->>> ***global*** -global: - +HtmlEntry: global <<<

        Adjective

        {{de-adj|-}}
        1. global {{gloss|worldwide}}
        2. @@ -898,10 +759,9 @@ global:

          Antonyms

          • {{sense|worldwide}} lokal, regional
          ----- +---->>> ***google*** -google: - +HtmlEntry: google <<<

          Verb

          google
          1. {{de-verb form of|googeln|1|s|g}}
          2. @@ -909,18 +769,16 @@ google:
          3. {{de-verb form of|googeln|1|s|k1}}
          4. {{de-verb form of|googeln|3|s|k1}}
          ----- +---->>> ***gratis*** -gratis: - +HtmlEntry: gratis <<<

          Adverb

          gratis
          1. free, without charge
          -Category:German adverbs---- +Category:German adverbs---->>> ***Guatemala*** -Guatemala: - +HtmlEntry: Guatemala <<<

          Proper noun

          {{head|de|proper noun|g=n}}
          1. {{l|en|Guatemala}}
          2. @@ -931,10 +789,9 @@ Guatemala:
          3. {{l|de|Guatemaltekin}}
          4. {{l|de|guatemaltekisch}}
          5. -Category:de:Countries---- +Category:de:Countries---->>> ***Guyana*** -Guyana: -{{wikipedia|lang=de}} +HtmlEntry: Guyana <<<{{wikipedia|lang=de}}

            Proper noun

            Guyana {n}
            1. Guyana
            2. @@ -946,10 +803,9 @@ Guyana:
            3. Guyanerin
            4. guyanisch
            5. -Category:German proper nounsCategory:de:Countries---- +Category:German proper nounsCategory:de:Countries---->>> ***Haiti*** -Haiti: -{{wikipedia|lang=de}} +HtmlEntry: Haiti <<<{{wikipedia|lang=de}}

              Pronunciation

              • {{IPA|/haˈiːti/|lang=de}}
              @@ -964,10 +820,9 @@ Haiti:
            6. {{l|de|Haitianerin}}
            7. {{l|de|haitianisch}}
            8. -Category:de:Countries---- +Category:de:Countries---->>> ***Haus*** -Haus: - +HtmlEntry: Haus <<<

              Etymology

              From {{etyl|goh|de}} {{term|hus|hūs|lang=goh}}, from {{proto|Germanic|hūsan|lang=de}}. Cognate with Dutch huis, English house.

              Pronunciation

              @@ -989,10 +844,9 @@ From {{etyl|goh|de}} {{term|hus|hūs|lang=goh}}, from {{proto|Germanic|hūsan|la
            9. Herrenhaus
            10. Haushalt
            11. ----- +---->>> ***hell*** -hell: - +HtmlEntry: hell <<<

              Pronunciation

              • {{IPA|/hɛl/|lang=de}}
              • {{audio|De-hell.ogg|audio (Germany)}}
              • @@ -1003,10 +857,9 @@ hell: {{head|de|adjective|comparative|heller|superlative|am hellsten}}
                1. clear, bright, light
                ----- +---->>> ***Honduras*** -Honduras: -{{wikipedia|lang=de}} +HtmlEntry: Honduras <<<{{wikipedia|lang=de}}

                Proper noun

                Honduras {n}
                1. Honduras
                2. @@ -1018,10 +871,9 @@ Honduras:
                3. Honduranerin
                4. honduranisch
              -Category:German proper nounsCategory:de:Countries---- +Category:German proper nounsCategory:de:Countries---->>> ***ik*** -ik: - +HtmlEntry: ik <<<

              Alternative forms

              • {{qualifier|Low Prussian}} öck, eck
              @@ -1044,10 +896,9 @@ From {{etyl|osx|nds}} {{term|ik|lang=osx}}, from {{proto|Germanic|ek|lang=nds}},

              Related terms

              • mien (possessive: my, mine); mi (dative (also generally used in place of the accusative): me); wi (plural: we)
              ----- +---->>> ***in*** -in: - +HtmlEntry: in <<<

              Pronunciation

              • {{IPA|/ʔɪn/|lang=de}}
              • {{audio|DE-in.OGG|audio}}
              • @@ -1080,26 +931,23 @@ From {{etyl|en|de}} {{term|in|lang=en}}. {{de-adj|-}}
                1. in, popular
                ----- -in: - +---->>> +HtmlEntry: in <<<

                Etymology

                From {{proto|Germanic|in|lang=goh}}, whence also Old English in, Old Norse í

                Preposition

                {{head|goh|preposition}}
                1. in
                ----- -in: - +---->>> +HtmlEntry: in <<<

                Preposition

                {{head|pdc|preposition}}
                1. in
                ----- +---->>> ***Iran*** -Iran: - +HtmlEntry: Iran <<<

                Pronunciation

                • {{rhymes|aːn|lang=de}}
                @@ -1116,20 +964,18 @@ The article (der) is often used with the name of the country, thus one
              • Persien
              • Persisch
              -Category:de:Countries---- +Category:de:Countries---->>> ***is*** -is: - +HtmlEntry: is <<<

              Etymology

              From {{proto|Germanic|Ä«san|lang=goh}}

              Noun

              Ä«s
              1. ice
              -Category:Old High German nouns---- +Category:Old High German nouns---->>> ***Israel*** -Israel: - +HtmlEntry: Israel <<<

              Pronunciation

              • {{audio|De-Israel.ogg|Audio}}
              @@ -1146,10 +992,9 @@ Israel:
            12. Israelitin
            13. Israeli
            14. -Category:de:Countries---- +Category:de:Countries---->>> ***Japan*** -Japan: - +HtmlEntry: Japan <<<

              Pronunciation

              • {{IPA|/ˈjaːpaːn/|lang=de}}
              • {{audio|De-Japan.ogg|audio}}
              • @@ -1166,10 +1011,9 @@ Japan:
              • Japanisch
              • japanisch
              -Category:de:CountriesCategory:de:Exonyms---- +Category:de:CountriesCategory:de:Exonyms---->>> ***Kiribati*** -Kiribati: -{{wikipedia|lang=de}} +HtmlEntry: Kiribati <<<{{wikipedia|lang=de}}

              Proper noun

              {{head|de|proper noun|g=n}}
              1. {{l|en|Kiribati}}
              2. @@ -1178,10 +1022,9 @@ Kiribati:

                Derived terms

                • {{l|de|kiribatisch}}
                -Category:de:Countries---- +Category:de:Countries---->>> ***Kuwait*** -Kuwait: -{{wikipedia|lang=de}} +HtmlEntry: Kuwait <<<{{wikipedia|lang=de}}

                Proper noun

                {{de-proper noun|g=n}}
                1. {{l|en|Kuwait}}
                2. @@ -1192,10 +1035,9 @@ Kuwait:
                3. {{l|de|Kuwaiterin}}
                4. {{l|de|kuwaitisch}}
                5. -Category:de:Countries---- +Category:de:Countries---->>> ***Laos*** -Laos: -{{wikipedia|lang=de}} +HtmlEntry: Laos <<<{{wikipedia|lang=de}}

                  Proper noun

                  {{de-proper noun|g=n}}
                  1. {{l|en|Laos}}
                  2. @@ -1206,19 +1048,17 @@ Laos:
                  3. Laotin
                  4. laotisch
                  5. -Category:de:CountriesCategory:de:Exonyms---- +Category:de:CountriesCategory:de:Exonyms---->>> ***last*** -last: - +HtmlEntry: last <<<

                    Verb

                    {{head|de}}
                    1. {{de-verb form of|lesen|2|s|v}}
                    2. {{de-verb form of|lesen|2|p|v}}
                    ----- +---->>> ***Liberia*** -Liberia: -{{wikipedia|lang=de}} +HtmlEntry: Liberia <<<{{wikipedia|lang=de}}

                    Pronunciation

                    • {{IPA|/liˈbeːʁia/|lang=de}}
                    @@ -1233,10 +1073,9 @@ Liberia:
                  6. {{l|de|Liberianerin}}
                  7. {{l|de|liberianisch}}
                  8. -Category:de:Countries---- +Category:de:Countries---->>> ***Liechtenstein*** -Liechtenstein: -{{wikipedia|lang=de}} +HtmlEntry: Liechtenstein <<<{{wikipedia|lang=de}}

                    Pronunciation

                    • {{IPA|/ˈlɪçtn̩ˌʃtaɪ̯n/|lang=de}}
                    • {{audio|De-Liechtenstein.ogg|Audio}}
                    • @@ -1252,13 +1091,9 @@ Liechtenstein:
                    • {{l|de|Liechtensteinerin}}
                    • {{l|de|liechtensteinisch}}
                    -Category:de:Countries---- -===lists=== -Appendix:Swadesh lists: -The words from Swadesh's original 100-word list are designated by an asterisk (*). In the composite list on this page, there are actually 207 words, since seven of the words in the 100-word list (breast, fingernail, full, horn, knee, moon, round) were not in the original 200-word list. {| align=center class="wikitable sortable"| i=No | No! c=en | English! c=fr | French! c=de | German! c=it | Italian! c=es | Spanish! c=nl | Dutch! c=sw | Swedish! c=la | Latin|- | i=No | 1| c=en | I *| c=fr | je| c=de | ich| c=it | io| c=es | yo| c=nl | ik| c=sw | jag| c=la | ego|- | i=No | 2| c=en | you sing., thou| c=fr | tu, vous (formal)| c=de | du, Sie (formal)| c=it | tu, Lei (formal)| c=es | tú, usted (formal)| c=nl | jij, je, U (formal)| c=sw | du| c=la | tu|- | i=No | 3| c=en | he| c=fr | il| c=de | er| c=it | lui, egli| c=es | él| c=nl | hij| c=sw | han| c=la | is, ea|- | i=No | 4| c=en | we *| c=fr | nous| c=de | wir| c=it | noi| c=es | nosotros| c=nl | wij, we| c=sw | vi| c=la | nos|- | i=No | 5| c=en | you pl.| c=fr | vous| c=de | ihr, Sie (formal)| c=it | voi| c=es | vosotros, ustedes (formal)| c=nl | jullie| c=sw | ni| c=la | vos|- | i=No | 6| c=en | they| c=fr | ils, elles| c=de | sie| c=it | loro, essi| c=es | ellos, ellas| c=nl | zij, ze| c=sw | de| c=la | ii, eae|- | i=No | 7| c=en | this *| c=fr | ceci| c=de | dieses| c=it | questo| c=es | este| c=nl | deze, dit| c=sw | det här| c=la | hic, is|- | i=No | 8| c=en | that *| c=fr | cela| c=de | jenes, das| c=it | quello| c=es | ese, aquel| c=nl | die, dat| c=sw | det där| c=la | ille|- | i=No | 9| c=en | here| c=fr | ici| c=de | hier| c=it | qui, qua| c=es | aquí, acá| c=nl | hier| c=sw | här| c=la | hic|- | i=No | 10| c=en | there| c=fr | là| c=de | dort| c=it | là| c=es | ahí, allí, allá| c=nl | daar| c=sw | där| c=la | ibi|- | i=No | 11| c=en | who *| c=fr | qui| c=de | wer| c=it | chi| c=es | quien| c=nl | wie| c=sw | vem| c=la | quis|- | i=No | 12| c=en | what *| c=fr | quoi| c=de | was| c=it | che| c=es | que| c=nl | wat| c=sw | vad| c=la | quid|- | i=No | 13| c=en | where| c=fr | où| c=de | wo| c=it | dove| c=es | donde| c=nl | waar| c=sw | var| c=la | ubi|- | i=No | 14| c=en | when| c=fr | quand| c=de | wann| c=it | quando| c=es | cuando| c=nl | wanneer| c=sw | när| c=la | quando|- | i=No | 15| c=en | how| c=fr | comment| c=de | wie| c=it | come| c=es | como| c=nl | hoe| c=sw | hur| c=la | quam, quomodo|- | i=No | 16| c=en | not *| c=fr | ne...pas| c=de | nicht| c=it | non| c=es | no| c=nl | niet| c=sw | inte, ej| c=la | non|- | i=No | 17| c=en | all *| c=fr | tout| c=de | alle| c=it | tutto| c=es | todo| c=nl | al, alle| c=sw | alla| c=la | omnis|- | i=No | 18| c=en | many *| c=fr | plusieurs| c=de | viele| c=it | molti| c=es | muchos| c=nl | veel| c=sw | många| c=la | multi|- | i=No | 19| c=en | some| c=fr | quelques| c=de | einige| c=it | alcuni| c=es | algunos, unos| c=nl | enkele, sommige| c=sw | några, vissa| c=la | aliqui, aliquot|- | i=No | 20| c=en | few| c=fr | peu| c=de | wenige| c=it | pochi| c=es | poco| c=nl | weinig| c=sw | få| c=la | pauci|- | i=No | 21| c=en | other| c=fr | autre| c=de | andere| c=it | altro| c=es | otro| c=nl | ander| c=sw | annan| c=la | alter, alius|- | i=No | 22| c=en | one *| c=fr | un| c=de | eins| c=it | uno| c=es | uno| c=nl | een| c=sw | ett| c=la | unus|- | i=No | 23| c=en | two *| c=fr | deux| c=de | zwei| c=it | due| c=es | dos| c=nl | twee| c=sw | två| c=la | duo|- | i=No | 24| c=en | three| c=fr | trois| c=de | drei| c=it | tre| c=es | tres| c=nl | drie| c=sw | tre| c=la | tres|- | i=No | 25| c=en | four| c=fr | quatre| c=de | vier| c=it | quattro| c=es | cuatro| c=nl | vier| c=sw | fyra| c=la | quattuor|- | i=No | 26| c=en | five| c=fr | cinq| c=de | fünf| c=it | cinque| c=es | cinco| c=nl | vijf| c=sw | fem| c=la | quinque|- | i=No | 27| c=en | big *| c=fr | grand| c=de | groß| c=it | grande| c=es | grande| c=nl | groot| c=sw | stor| c=la | magnus, grandis|- | i=No | 28| c=en | long *| c=fr | long| c=de | lang| c=it | lungo| c=es | largo| c=nl | lang| c=sw | lång| c=la | longus|- | i=No | 29| c=en | wide| c=fr | large| c=de | breit, weit| c=it | largo| c=es | ancho| c=nl | breed, wijd| c=sw | bred, vid| c=la | latus|- | i=No | 30| c=en | thick| c=fr | épais| c=de | dick| c=it | spesso| c=es | grueso| c=nl | dik| c=sw | tjock| c=la | creber|- | i=No | 31| c=en | heavy| c=fr | lourd| c=de | schwer| c=it | pesante| c=es | pesado| c=nl | zwaar| c=sw | tung| c=la | gravis|- | i=No | 32| c=en | small *| c=fr | petit| c=de | klein| c=it | piccolo| c=es | pequeño| c=nl | smal| c=sw | liten| c=la | parvus|- | i=No | 33| c=en | short| c=fr | court| c=de | kurz| c=it | corto| c=es | corto| c=nl | kort| c=sw | kort| c=la | brevis|- | i=No | 34| c=en | narrow| c=fr | étroit| c=de | eng| c=it | stretto| c=es | estrecho, angosto| c=nl | klein| c=sw | trång| c=la | angustus|- | i=No | 35| c=en | thin| c=fr | mince| c=de | dünn| c=it | sottile| c=es | delgado, flaco| c=nl | dun| c=sw | tunn| c=la | macer|- | i=No | 36| c=en | woman *| c=fr | femme| c=de | Frau| c=it | donna| c=es | mujer| c=nl | vrouw| c=sw | kvinna| c=la | femina|- | i=No | 37| c=en | man (adult male)| c=fr | homme| c=de | Mann| c=it | uomo| c=es | hombre| c=nl | man| c=sw | man| c=la | vir|- | i=No | 38| c=en | man * (human being)| c=fr | homme| c=de | Mensch| c=it | uomo| c=es | hombre| c=nl | mens| c=sw | människa| c=la | homo|- | i=No | 39| c=en | kid| c=fr | enfant| c=de | Kind| c=it | bambino| c=es | niño| c=nl | kind| c=sw | barn| c=la | puer|- | i=No | 40| c=en | wife| c=fr | femme, épouse| c=de | Frau, Ehefrau| c=it | moglie| c=es | esposa, mujer| c=nl | vrouw, echtgenote| c=sw | hustru, maka, fru| c=la | uxor, mulier|- | i=No | 41| c=en | husband| c=fr | mari, époux| c=de | Mann, Ehemann| c=it | marito| c=es | esposo, marido| c=nl | man, echtgenoot| c=sw | man, make| c=la | maritus|- | i=No | 42| c=en | mother| c=fr | mère| c=de | Mutter| c=it | madre| c=es | madre| c=nl | moeder| c=sw | mamma, mor| c=la | mater|- | i=No | 43| c=en | father| c=fr | père| c=de | Vater| c=it | padre| c=es | padre| c=nl | vader| c=sw | pappa, far| c=la | pater|- | i=No | 44| c=en | animal| c=fr | animal| c=de | Tier| c=it | animale| c=es | animal| c=nl | dier| c=sw | djur| c=la | animal|- | i=No | 45| c=en | fish *| c=fr | poisson| c=de | Fisch| c=it | pesce| c=es | pez, pescado| c=nl | vis| c=sw | fisk| c=la | piscis|- | i=No | 46| c=en | bird *| c=fr | oiseau| c=de | Vogel| c=it | uccello| c=es | ave, pájaro| c=nl | vogel| c=sw | fågel| c=la | avis|- | i=No | 47| c=en | hound *| c=fr | chien| c=de | Hund| c=it | cane| c=es | perro| c=nl | hond| c=sw | hund| c=la | canis|- | i=No | 48| c=en | louse *| c=fr | pou| c=de | Laus| c=it | pidocchio| c=es | piojo| c=nl | luis| c=sw | lus| c=la | pedis|- | i=No | 49| c=en | snake| c=fr | serpent| c=de | Schlange| c=it | serpente| c=es | serpiente, culebra| c=nl | slang| c=sw | orm| c=la | serpens|- | i=No | 50| c=en | worm| c=fr | ver| c=de | Wurm| c=it | verme| c=es | gusano| c=nl | worm| c=sw | mask| c=la | vermis|- | i=No | 51| c=en | beam *| c=fr | arbre| c=de | Baum| c=it | albero| c=es | árbol| c=nl | boom| c=sw | träd| c=la | arbor|- | i=No | 52| c=en | forest| c=fr | forêt| c=de | Wald| c=it | foresta| c=es | bosque| c=nl | woud| c=sw | skog| c=la | silva|- | i=No | 53| c=en | stick| c=fr | bâton| c=de | Stock| c=it | bastone| c=es | palo| c=nl | stok| c=sw | pinne| c=la | fustis|- | i=No | 54| c=en | fruit| c=fr | fruit| c=de | Frucht| c=it | frutta| c=es | fruta| c=nl | fruit, vrucht| c=sw | frukt| c=la | fructus|- | i=No | 55| c=en | seed *| c=fr | graine| c=de | Samen| c=it | seme| c=es | semilla| c=nl | zaad| c=sw | frö| c=la | semen|- | i=No | 56| c=en | leaf *| c=fr | feuille| c=de | Blatt| c=it | foglia| c=es | hoja| c=nl | blad| c=sw | löv, blad| c=la | folium|- | i=No | 57| c=en | root *| c=fr | racine| c=de | Wurzel| c=it | radice| c=es | raíz| c=nl | root| c=sw | rot| c=la | radix|- | i=No | 58| c=en | bark * (from tree)| c=fr | écorce| c=de | Rinde| c=it | corteccia| c=es | corteza| c=nl | bark| c=sw | bark| c=la | cortex|- | i=No | 59| c=en | flower| c=fr | fleur| c=de | Blume| c=it | fiore| c=es | flor| c=nl | bloem| c=sw | blomma| c=la | flos|- | i=No | 60| c=en | grass| c=fr | herbe| c=de | Gras| c=it | erba| c=es | hierba, pasto| c=nl | gras| c=sw | gräs| c=la | herba|- | i=No | 61| c=en | rope| c=fr | corde| c=de | Seil| c=it | corda| c=es | cuerda| c=nl | reep, koord| c=sw | rep| c=la | funis|- | i=No | 62| c=en | skin *| c=fr | peau| c=de | Haut| c=it | pelle| c=es | piel| c=nl | huid| c=sw | hud| c=la | cutis|- | i=No | 63| c=en | meat| c=fr | viande| c=de | Fleisch| c=it | carne| c=es | carne| c=nl | vlees| c=sw | kött| c=la | caro|- | i=No | 64| c=en | blood *| c=fr | sang| c=de | Blut| c=it | sangue| c=es | sangre| c=nl | bloed| c=sw | blod| c=la | sanguis|- | i=No | 65| c=en | bone *| c=fr | os| c=de | Knochen| c=it | osso| c=es | hueso| c=nl | been, bot| c=sw | ben| c=la | os|- | i=No | 66| c=en | fat * (n.)| c=fr | graisse| c=de | Fett| c=it | grasso| c=es | grasa| c=nl | vet| c=sw | fett| c=la | adeps|- | i=No | 67| c=en | egg *| c=fr | œuf| c=de | Ei| c=it | uovo| c=es | huevo| c=nl | ei| c=sw | ägg| c=la | ovum|- | i=No | 68| c=en | horn *| c=fr | corne| c=de | Horn| c=it | corno| c=es | cuerno| c=nl | horn| c=sw | horn| c=la | cornu|- | i=No | 69| c=en | tail *| c=fr | queue| c=de | Schwanz| c=it | coda| c=es | cola| c=nl | staart| c=sw | svans| c=la | cauda|- | i=No | 70| c=en | feather *| c=fr | plume| c=de | Feder| c=it | piuma| c=es | pluma| c=nl | veder| c=sw | fjäder| c=la | penna|- | i=No | 71| c=en | hair *| c=fr | cheveu| c=de | Haar| c=it | capelli| c=es | cabello, pelo| c=nl | haar| c=sw | hår| c=la | capillus, coma, crinis|- | i=No | 72| c=en | head *| c=fr | tête| c=de | Kopf, Haupt| c=it | testa| c=es | cabeza| c=nl | hoofd, kop| c=sw | huvud| c=la | caput|- | i=No | 73| c=en | ear *| c=fr | oreille| c=de | Ohr| c=it | orecchio| c=es | oreja| c=nl | aar| c=sw | öra| c=la | auris|- | i=No | 74| c=en | eye *| c=fr | œil| c=de | Auge| c=it | occhio| c=es | ojo| c=nl | oog| c=sw | öga| c=la | oculus|- | i=No | 75| c=en | nose *| c=fr | nez| c=de | Nase| c=it | naso| c=es | nariz| c=nl | neus| c=sw | näsa| c=la | nasus|- | i=No | 76| c=en | mouth *| c=fr | bouche| c=de | Mund| c=it | bocca| c=es | boca| c=nl | mond| c=sw | mun| c=la | os|- | i=No | 77| c=en | tooth *| c=fr | dent| c=de | Zahn| c=it | dente| c=es | diente| c=nl | tand| c=sw | tand| c=la | dens|- | i=No | 78| c=en | tongue *| c=fr | langue| c=de | Zunge| c=it | lingua| c=es | lengua| c=nl | tong| c=sw | tunga| c=la | lingua|- | i=No | 79| c=en | fingernail| c=fr | ongle| c=de | Fingernagel| c=it | unghia| c=es | uña| c=nl | vingernagel| c=sw | nagel| c=la | unguis|- | i=No | 80| c=en | foot *| c=fr | pied| c=de | Fuß| c=it | piede| c=es | pie| c=nl | voet| c=sw | fot| c=la | pes|- | i=No | 81| c=en | leg| c=fr | jambe| c=de | Bein| c=it | gamba| c=es | pierna| c=nl | been| c=sw | ben| c=la | crus|- | i=No | 82| c=en | knee *| c=fr | genou| c=de | Knie| c=it | ginocchio| c=es | rodilla| c=nl | knie| c=sw | knä| c=la | genu|- | i=No | 83| c=en | hand *| c=fr | main| c=de | Hand| c=it | mano| c=es | mano| c=nl | hand| c=sw | hand| c=la | manus|- | i=No | 84| c=en | wing| c=fr | aile| c=de | Flügel| c=it | ala| c=es | ala| c=nl | vleugel| c=sw | vinge| c=la | ala|- | i=No | 85| c=en | belly *| c=fr | ventre| c=de | Bauch| c=it | pancia| c=es | barriga, vientre, panza| c=nl | buik| c=sw | mage| c=la | venter|- | i=No | 86| c=en | guts| c=fr | entrailles| c=de | Eingeweide, Innereien| c=it | intestino| c=es | entrañas, tripas| c=nl | ingewanden| c=sw | inälvor| c=la | intestina|- | i=No | 87| c=en | neck *| c=fr | cou| c=de | Hals| c=it | collo| c=es | cuello| c=nl | nek| c=sw | hals, nacke| c=la | collum, cervix|- | i=No | 88| c=en | back| c=fr | dos| c=de | Rücken| c=it | schiena| c=es | espalda| c=nl | rug| c=sw | rygg| c=la | tergum|- | i=No | 89| c=en | breast *| c=fr | sein, poitrine| c=de | Brust| c=it | petto| c=es | pecho, seno| c=nl | borst| c=sw | bröst| c=la | pectus, mamma|- | i=No | 90| c=en | heart *| c=fr | cœur| c=de | Herz| c=it | cuore| c=es | corazón| c=nl | hart| c=sw | hjärta| c=la | cor|- | i=No | 91| c=en | liver *| c=fr | foie| c=de | Leber| c=it | fegato| c=es | hígado| c=nl | lever| c=sw | lever| c=la | iecur|- | i=No | 92| c=en | drink *| c=fr | boire| c=de | trinken| c=it | bere| c=es | beber, tomar| c=nl | drinken| c=sw | dricka| c=la | bibere|- | i=No | 93| c=en | eat *| c=fr | manger| c=de | essen| c=it | mangiare| c=es | comer| c=nl | eten| c=sw | äta| c=la | edere|- | i=No | 94| c=en | bite *| c=fr | mordre| c=de | beißen| c=it | mordere| c=es | morder| c=nl | bijten| c=sw | bita| c=la | mordere|- | i=No | 95| c=en | suck| c=fr | sucer| c=de | saugen| c=it | succhiare| c=es | chupar| c=nl | zuigen| c=sw | suga| c=la | sugere|- | i=No | 96| c=en | spit| c=fr | cracher| c=de | spucken| c=it | sputare| c=es | escupir| c=nl | spugen| c=sw | spotta| c=la | sputare|- | i=No | 97| c=en | vomit| c=fr | vomir| c=de | erbrechen| c=it | vomitare| c=es | vomitar| c=nl | braken, overgeven| c=sw | kräkas, spy| c=la | vomere|- | i=No | 98| c=en | blow| c=fr | souffler| c=de | blasen| c=it | soffiare| c=es | soplar| c=nl | blazen| c=sw | blåsa| c=la | flare|- | i=No | 99| c=en | breathe| c=fr | respirer| c=de | atmen| c=it | respirare| c=es | respirar| c=nl | ademen| c=sw | andas| c=la | spirare|- | i=No | 100| c=en | laugh| c=fr | rire| c=de | lachen| c=it | ridere| c=es | reír| c=nl | lachen| c=sw | skratta| c=la | ridere|- | i=No | 101| c=en | see *| c=fr | voir| c=de | sehen| c=it | vedere| c=es | ver| c=nl | zien| c=sw | se| c=la | videre|- | i=No | 102| c=en | hear *| c=fr | entendre| c=de | hören| c=it | udire, sentire| c=es | oír| c=nl | horen| c=sw | höra| c=la | audire|- | i=No | 103| c=en | know * (a fact)| c=fr | savoir| c=de | wissen| c=it | sapere| c=es | saber| c=nl | kennen| c=sw | veta| c=la | scire|- | i=No | 104| c=en | think| c=fr | penser| c=de | denken| c=it | pensare| c=es | pensar| c=nl | denken| c=sw | tänka| c=la | putare|- | i=No | 105| c=en | smell| c=fr | sentir| c=de | riechen| c=it | odorare, annusare| c=es | oler| c=nl | smelten| c=sw | lukta| c=la | olere|- | i=No | 106| c=en | fear| c=fr | craindre, avoir peur| c=de | fürchten| c=it | temere| c=es | temer| c=nl | vrezen, angst| c=sw | frukta, rädas| c=la | timere|- | i=No | 107| c=en | sleep *| c=fr | dormir| c=de | schlafen| c=it | dormire| c=es | dormir| c=nl | slapen| c=sw | sova| c=la | dormire|- | i=No | 108| c=en | live| c=fr | vivre| c=de | leben| c=it | vivere| c=es | vivir| c=nl | leven| c=sw | leva| c=la | vivere|- | i=No | 109| c=en | die *| c=fr | mourir| c=de | sterben| c=it | morire| c=es | morir| c=nl | doden| c=sw | dö| c=la | mori|- | i=No | 110| c=en | kill *| c=fr | tuer| c=de | töten| c=it | uccidere| c=es | matar| c=nl | doden| c=sw | döda| c=la | necare|- | i=No | 111| c=en | fight| c=fr | se battre| c=de | kämpfen| c=it | combattere| c=es | pelear| c=nl | vechten| c=sw | strida| c=la | pugnare|- | i=No | 112| c=en | hunt| c=fr | chasser| c=de | jagen| c=it | cacciare| c=es | cazar| c=nl | jagen| c=sw | jaga| c=la | venari|- | i=No | 113| c=en | hit| c=fr | frapper| c=de | schlagen| c=it | colpire| c=es | golpear| c=nl | slaan| c=sw | slå| c=la | pellere|- | i=No | 114| c=en | cut| c=fr | couper| c=de | schneiden| c=it | tagliare| c=es | cortar| c=nl | snijden| c=sw | skära| c=la | secare|- | i=No | 115| c=en | split| c=fr | fendre| c=de | spalten| c=it | dividere, separare| c=es | partir| c=nl | splijten| c=sw | dela, klyva| c=la | scindere, partiri|- | i=No | 116| c=en | stab| c=fr | poignarder| c=de | stechen| c=it | pugnalare| c=es | apuñalar| c=nl | steken| c=sw | sticka| c=la | traicere|- | i=No | 117| c=en | scratch| c=fr | gratter| c=de | kratzen| c=it | graffiare| c=es | arañar, rascar| c=nl | krabben| c=sw | klia| c=la | radere|- | i=No | 118| c=en | dig| c=fr | creuser| c=de | graben| c=it | scavare| c=es | cavar| c=nl | delven| c=sw | gräva| c=la | fodere|- | i=No | 119| c=en | swim *| c=fr | nager| c=de | schwimmen| c=it | nuotare| c=es | nadar| c=nl | zwemmen| c=sw | simma| c=la | natare|- | i=No | 120| c=en | fly * (v.)| c=fr | voler| c=de | fliegen| c=it | volare| c=es | volar| c=nl | vliegen| c=sw | flyga| c=la | volare|- | i=No | 121| c=en | walk *| c=fr | marcher| c=de | gehen| c=it | camminare| c=es | caminar| c=nl | lopen, wandelen| c=sw | gå| c=la | gradi|- | i=No | 122| c=en | come *| c=fr | venir| c=de | kommen| c=it | venire| c=es | venir| c=nl | komen| c=sw | komma| c=la | venire|- | i=No | 123| c=en | lie *| c=fr | s'étendre| c=de | liegen| c=it | distendersi| c=es | echarse, acostarse, tenderse| c=nl | liegen| c=sw | ligga| c=la | iacere|- | i=No | 124| c=en | sit *| c=fr | s'asseoir| c=de | setzen| c=it | sedere| c=es | sentarse| c=nl | zitten| c=sw | sitta| c=la | sedere|- | i=No | 125| c=en | stand *| c=fr | se lever| c=de | stehen| c=it | stare in piedi| c=es | estar de pie| c=nl | staan| c=sw | stå| c=la | stare|- | i=No | 126| c=en | turn| c=fr | tourner| c=de | drehen| c=it | girare| c=es | voltear| c=nl | draaien| c=sw | svänga| c=la | vertere|- | i=No | 127| c=en | fall| c=fr | tomber| c=de | fallen| c=it | cadere| c=es | caer| c=nl | vallen| c=sw | falla| c=la | cadere|- | i=No | 128| c=en | give *| c=fr | donner| c=de | geben| c=it | dare| c=es | dar| c=nl | geven| c=sw | ge| c=la | dare|- | i=No | 129| c=en | hold| c=fr | tenir| c=de | halten| c=it | tenere| c=es | sostener| c=nl | houden| c=sw | hålla| c=la | tenere|- | i=No | 130| c=en | squeeze| c=fr | serrer| c=de | quetschen| c=it | spremere| c=es | apretar| c=nl | knijpen| c=sw | klämma| c=la | premere|- | i=No | 131| c=en | rub| c=fr | frotter| c=de | reiben| c=it | strofinare| c=es | frotar, restregar| c=nl | wrijven| c=sw | gnida| c=la | fricare|- | i=No | 132| c=en | wash| c=fr | laver| c=de | waschen| c=it | lavare| c=es | lavar| c=nl | wassen| c=sw | tvätta| c=la | lavare|- | i=No | 133| c=en | wipe| c=fr | essuyer| c=de | wischen| c=it | asciugare| c=es | limpiar| c=nl | vegen| c=sw | rensa| c=la | tergere|- | i=No | 134| c=en | pull| c=fr | tirer| c=de | ziehen| c=it | tirare| c=es | tirar| c=nl | trekken| c=sw | dra| c=la | trahere|- | i=No | 135| c=en | push| c=fr | pousser| c=de | drücken| c=it | spingere| c=es | empujar| c=nl | duwen| c=sw | trycka| c=la | pellere, urgere|- | i=No | 136| c=en | throw| c=fr | jeter| c=de | werfen| c=it | tirare| c=es | tirar| c=nl | werpen, gooien| c=sw | kasta| c=la | iacere|- | i=No | 137| c=en | tie| c=fr | lier| c=de | binden| c=it | legare| c=es | atar| c=nl | binden| c=sw | knyta, binda| c=la | stringere, ligare|- | i=No | 138| c=en | sew| c=fr | coudre| c=de | nähen| c=it | cucire| c=es | coser| c=nl | naaien| c=sw | sy| c=la | suere|- | i=No | 139| c=en | count| c=fr | compter| c=de | zählen| c=it | contare| c=es | contar| c=nl | tellen| c=sw | räkna| c=la | numerare|- | i=No | 140| c=en | say *| c=fr | dire| c=de | sagen| c=it | dire| c=es | decir| c=nl | zeggen| c=sw | säga| c=la | dicere|- | i=No | 141| c=en | sing| c=fr | chanter| c=de | singen| c=it | cantare| c=es | cantar| c=nl | zingen| c=sw | sjunga| c=la | canere|- | i=No | 142| c=en | play| c=fr | jouer| c=de | spielen| c=it | giocare| c=es | jugar| c=nl | spelen| c=sw | leka, spela| c=la | ludere|- | i=No | 143| c=en | float| c=fr | flotter| c=de | schweben| c=it | galleggiare| c=es | flotar| c=nl | zweven| c=sw | flyta| c=la | fluctuare|- | i=No | 144| c=en | flow| c=fr | couler| c=de | fließen| c=it | fluire| c=es | fluir| c=nl | vloeien| c=sw | rinna| c=la | fluere|- | i=No | 145| c=en | freeze| c=fr | geler| c=de | frieren| c=it | gelare| c=es | helar| c=nl | vriezen| c=sw | frysa| c=la | gelare|- | i=No | 146| c=en | swell| c=fr | gonfler| c=de | schwellen| c=it | gonfiare| c=es | hincharse| c=nl | zwellen| c=sw | svälla| c=la | inflare|- | i=No | 147| c=en | sun *| c=fr | soleil| c=de | Sonne| c=it | sole| c=es | sol| c=nl | zon| c=sw | sol| c=la | sol|- | i=No | 148| c=en | moon *| c=fr | lune| c=de | Mond| c=it | luna| c=es | luna| c=nl | maan| c=sw | måne| c=la | luna|- | i=No | 149| c=en | star *| c=fr | étoile| c=de | Stern| c=it | stella| c=es | estrella| c=nl | ster| c=sw | stjärna| c=la | stella|- | i=No | 150| c=en | water *| c=fr | eau| c=de | Wasser| c=it | acqua| c=es | agua| c=nl | water| c=sw | vatten| c=la | aqua|- | i=No | 151| c=en | rain *| c=fr | pluie| c=de | Regen| c=it | pioggia| c=es | lluvia| c=nl | regen| c=sw | regn| c=la | pluvia|- | i=No | 152| c=en | river| c=fr | rivière| c=de | Fluß| c=it | fiume| c=es | río| c=nl | rivier| c=sw | flod| c=la | fluvius|- | i=No | 153| c=en | lake| c=fr | lac| c=de | See| c=it | lago| c=es | lago| c=nl | lak| c=sw | sjö| c=la | lacus|- | i=No | 154| c=en | sea| c=fr | mer| c=de | Meer, See| c=it | mare| c=es | mar| c=nl | zee| c=sw | hav| c=la | mare|- | i=No | 155| c=en | salt| c=fr | sel| c=de | Salz| c=it | sale| c=es | sal| c=nl | zout| c=sw | salt| c=la | sal|- | i=No | 156| c=en | stone *| c=fr | pierre| c=de | Stein| c=it | pietra| c=es | piedra| c=nl | steen| c=sw | sten| c=la | lapis, petra|- | i=No | 157| c=en | sand *| c=fr | sable| c=de | Sand| c=it | sabbia| c=es | arena| c=nl | zand| c=sw | sand| c=la | arena|- | i=No | 158| c=en | dust| c=fr | poussière| c=de | Staub| c=it | polvere| c=es | polvo| c=nl | stof| c=sw | damm| c=la | pulvis|- | i=No | 159| c=en | earth *| c=fr | terre| c=de | Erde| c=it | terra| c=es | tierra| c=nl | aarde| c=sw | jord| c=la | terra|- | i=No | 160| c=en | cloud *| c=fr | nuage| c=de | Wolke| c=it | nuvola| c=es | nube| c=nl | wolk| c=sw | moln| c=la | nimbus, nubes|- | i=No | 161| c=en | fog| c=fr | brouillard| c=de | Nebel| c=it | nebbia| c=es | niebla| c=nl | mist, nevel| c=sw | dimma| c=la | caligo, nebula|- | i=No | 162| c=en | sky| c=fr | ciel| c=de | Himmel| c=it | cielo| c=es | cielo| c=nl | lucht| c=sw | himmel| c=la | caelum|- | i=No | 163| c=en | wind| c=fr | vent| c=de | Wind| c=it | vento| c=es | viento| c=nl | wind| c=sw | vind| c=la | ventus|- | i=No | 164| c=en | snow| c=fr | neige| c=de | Schnee| c=it | neve| c=es | nieve| c=nl | sneeuw| c=sw | snö| c=la | nix|- | i=No | 165| c=en | ice| c=fr | glace| c=de | Eis| c=it | ghiaccio| c=es | hielo| c=nl | ijs| c=sw | is| c=la | glacies|- | i=No | 166| c=en | smoke *| c=fr | fumée| c=de | Rauch| c=it | fumo| c=es | humo| c=nl | rook| c=sw | rök| c=la | fumus|- | i=No | 167| c=en | fire *| c=fr | feu| c=de | Feuer| c=it | fuoco| c=es | fuego| c=nl | vuur| c=sw | eld| c=la | ignis|- | i=No | 168| c=en | ashes *| c=fr | cendres| c=de | Asche| c=it | ceneri| c=es | cenizas| c=nl | as| c=sw | aska| c=la | cineres|- | i=No | 169| c=en | burn *| c=fr | brûler| c=de | brennen| c=it | bruciare| c=es | quemar| c=nl | branden| c=sw | brinna| c=la | ardere|- | i=No | 170| c=en | road *| c=fr | route| c=de | Straße| c=it | strada| c=es | camino| c=nl | weg| c=sw | väg| c=la | via|- | i=No | 171| c=en | mountain *| c=fr | montagne| c=de | Berg| c=it | montagna| c=es | montaña| c=nl | berg| c=sw | berg| c=la | mons|- | i=No | 172| c=en | red *| c=fr | rouge| c=de | rot| c=it | rosso| c=es | rojo| c=nl | rode| c=sw | röd| c=la | ruber|- | i=No | 173| c=en | green *| c=fr | vert| c=de | grün| c=it | verde| c=es | verde| c=nl | groen| c=sw | grön| c=la | viridis|- | i=No | 174| c=en | yellow *| c=fr | jaune| c=de | gelb| c=it | giallo| c=es | amarillo| c=nl | geel| c=sw | gul| c=la | flavus|- | i=No | 175| c=en | white *| c=fr | blanc| c=de | weiß| c=it | bianco| c=es | blanco| c=nl | witte| c=sw | vit| c=la | albus, candidus|- | i=No | 176| c=en | black *| c=fr | noir| c=de | schwarz| c=it | nero| c=es | negro| c=nl | zwart| c=sw | svart| c=la | niger, ater, fuscus|- | i=No | 177| c=en | night *| c=fr | nuit| c=de | Nacht| c=it | notte| c=es | noche| c=nl | nacht| c=sw | natt| c=la | nox|- | i=No | 178| c=en | day| c=fr | jour| c=de | Tag| c=it | giorno| c=es | día| c=nl | dag| c=sw | dag| c=la | dies|- | i=No | 179| c=en | year| c=fr | an, année| c=de | Jahr| c=it | anno| c=es | año| c=nl | jaar| c=sw | år| c=la | annus|- | i=No | 180| c=en | warm *| c=fr | chaud| c=de | warm| c=it | caldo| c=es | cálido, tibio| c=nl | warm| c=sw | varm| c=la | calidus|- | i=No | 181| c=en | cold *| c=fr | froid| c=de | kalt| c=it | freddo| c=es | frío| c=nl | koud| c=sw | kall| c=la | frigidus|- | i=No | 182| c=en | full *| c=fr | plein| c=de | volle| c=it | pieno| c=es | lleno| c=nl | volle| c=sw | full| c=la | plenus|- | i=No | 183| c=en | new *| c=fr | nouveau| c=de | neu| c=it | nuovo| c=es | nuevo| c=nl | nieuw| c=sw | ny| c=la | novus|- | i=No | 184| c=en | old| c=fr | vieux| c=de | alt| c=it | vecchio| c=es | viejo| c=nl | oud| c=sw | gammal| c=la | vetus|- | i=No | 185| c=en | good *| c=fr | bon| c=de | gut| c=it | buono| c=es | bueno| c=nl | goed| c=sw | bra| c=la | bonus|- | i=No | 186| c=en | bad| c=fr | mauvais| c=de | schlecht| c=it | cattivo| c=es | malo<br>| c=nl | slecht| c=sw | dålig| c=la | malus|- | i=No | 187| c=en | rotten| c=fr | pourri| c=de | verrottet| c=it | marcio| c=es | podrido| c=nl | rotten| c=sw | rutten| c=la | puter, putridus|- | i=No | 188| c=en | dirty| c=fr | sale| c=de | schmutzig| c=it | sporco| c=es | sucio| c=nl | vies| c=sw | smutsig| c=la | sordidus|- | i=No | 189| c=en | straight| c=fr | droit| c=de | gerade| c=it | diritto| c=es | recto| c=nl | recht| c=sw | rak| c=la | rectus|- | i=No | 190| c=en | round *| c=fr | rond| c=de | rund| c=it | rotondo| c=es | redondo| c=nl | rond| c=sw | rund| c=la | rotundus|- | i=No | 191| c=en | sharp| c=fr | tranchant, pointu, aigu| c=de | scharf| c=it | aguzzo, affilato| c=es | afilado| c=nl | scherp| c=sw | vass| c=la | acer|- | i=No | 192| c=en | dull| c=fr | émoussé| c=de | stumpf| c=it | noioso| c=es | desafilado| c=nl | stomp, bot| c=sw | slö| c=la | hebes|- | i=No | 193| c=en | smooth| c=fr | lisse| c=de | glatt| c=it | liscio| c=es | suave, liso| c=nl | glad| c=sw | len, slät| c=la | levis|- | i=No | 194| c=en | wet| c=fr | mouillé| c=de | nass, feucht| c=it | bagnato| c=es | mojado| c=nl | nat| c=sw | våt, blöt| c=la | umidus|- | i=No | 195| c=en | dry *| c=fr | sec| c=de | trocken| c=it | asciutto, secco| c=es | seco| c=nl | droog| c=sw | torr| c=la | siccus|- | i=No | 196| c=en | correct| c=fr | juste, correct| c=de | richtig| c=it | corretto| c=es | correcto| c=nl | richting, correct| c=sw | rätt, riktig| c=la | rectus|- | i=No | 197| c=en | near| c=fr | proche| c=de | nah,<br>nahe| c=it | vicino| c=es | cerca| c=nl | naar| c=sw | nära| c=la | propinquus|- | i=No | 198| c=en | far| c=fr | loin| c=de | weit, fern| c=it | lontano| c=es | lejos| c=nl | ver| c=sw | långt bort, fjärran| c=la | longinquus|- | i=No | 199| c=en | right| c=fr | à droite| c=de | rechts| c=it | destra| c=es | derecha| c=nl | rechts| c=sw | höger| c=la | dexter|- | i=No | 200| c=en | left| c=fr | à gauche| c=de | links| c=it | sinistra| c=es | izquierda| c=nl | links| c=sw | vänster| c=la | sinister|- | i=No | 201| c=en | at| c=fr | à| c=de | bei, an| c=it | a| c=es | a, en, ante| c=nl | aan, te, bij| c=sw | hos, vid| c=la | ad|- | i=No | 202| c=en | in| c=fr | dans| c=de | in| c=it | in| c=es | en| c=nl | in| c=sw | i| c=la | in|- | i=No | 203| c=en | with| c=fr | avec| c=de | mit| c=it | con| c=es | con| c=nl | met| c=sw | med| c=la | cum|- | i=No | 204| c=en | and| c=fr | et| c=de | und| c=it | e| c=es | y| c=nl | en| c=sw | och| c=la | et|- | i=No | 205| c=en | if| c=fr | si| c=de | wenn, falls, ob| c=it | se| c=es | si| c=nl | als, indien| c=sw | om| c=la | si|- | i=No | 206| c=en | because| c=fr | parce que| c=de | weil| c=it | perché| c=es | porque| c=nl | omdat| c=sw | eftersom, ty| c=la | quia, quoniam|- | i=No | 207| c=en | name *| c=fr | nom| c=de | Name| c=it | nome| c=es | nombre| c=nl | naam| c=sw | namn| c=la | nomen|} +Category:de:Countries---->>> ***Malawi*** -Malawi: -{{wikipedia|lang=de}} +HtmlEntry: Malawi <<<{{wikipedia|lang=de}}

                    Proper noun

                    Malawi {n}
                    1. {{l|en|Malawi}}
                    2. @@ -1269,18 +1104,16 @@ Malawi:
                    3. Malawierin
                    4. malawisch
                    5. -Category:German proper nounsCategory:de:Countries---- +Category:German proper nounsCategory:de:Countries---->>> ***Malaysia*** -Malaysia: -{{wikipedia|lang=de}} +HtmlEntry: Malaysia <<<{{wikipedia|lang=de}}

                      Proper noun

                      {{head|de|proper noun|g=n}}
                      1. Malaysia
                      -Category:de:Countries---- +Category:de:Countries---->>> ***Mali*** -Mali: -{{wikipedia|lang=de}} +HtmlEntry: Mali <<<{{wikipedia|lang=de}}

                      Pronunciation

                      • {{audio|De-Mali.ogg|Audio}}
                      @@ -1295,10 +1128,9 @@ Mali:
                    6. Malierin
                    7. malisch
                    8. -Category:German proper nounsCategory:de:Countries---- +Category:German proper nounsCategory:de:Countries---->>> ***Malta*** -Malta: -{{wikipedia|lang=de}} +HtmlEntry: Malta <<<{{wikipedia|lang=de}}

                      Proper noun

                      {{head|de|proper noun|g=n}}
                      1. {{l|en|Malta}}
                      2. @@ -1309,10 +1141,9 @@ Malta:
                      3. Malteser
                      4. Malteserin
                      5. -Category:de:CountriesCategory:de:Islands---- +Category:de:CountriesCategory:de:Islands---->>> ***man*** -man: - +HtmlEntry: man <<<

                        Etymology

                        From the same source as Mann ("adult male").<ref>Theo Stemmler: Wie das Eisbein ins Lexikon kam, page 15, ISBN 978-3-411-72291-4.</ref>

                        Pronunciation

                        @@ -1339,9 +1170,8 @@ From the same source as Mann ("adult male").<ref>Theo S

                        References

                        -<references/>---- -man: - +<references/>---->>> +HtmlEntry: man <<<

                        Conjunction

                        {{head|nds|conjunction}}
                        1. {{context|in many dialects, including|_|Low Prussian}} only; but
                        2. @@ -1351,19 +1181,17 @@ man:
                          • {{qualifier|in various dialects}} avers, awer (and many variations thereof; for which, see those entries)
                          • {{qualifier|in some dialects}} bloots
                          ----- -man: - +---->>> +HtmlEntry: man <<<

                          Etymology

                          From {{proto|Germanic|mann-|lang=goh}}.

                          Noun

                          {{goh-noun|g=m}}
                          1. man
                          ----- +---->>> ***Mauritius*** -Mauritius: -{{wikipedia|lang=de}} +HtmlEntry: Mauritius <<<{{wikipedia|lang=de}}

                          Proper noun

                          {{head|de|proper noun|g=n}}
                          1. {{l|en|Mauritius}}
                          2. @@ -1374,28 +1202,25 @@ Mauritius:
                          3. Mauritierin
                          4. mauritisch
                          5. -Category:de:Countries---- +Category:de:Countries---->>> ***Monaco*** -Monaco: - +HtmlEntry: Monaco <<<

                            Proper noun

                            {{head|de|proper noun}}
                            1. {{l|en|Monaco}}
                            -Category:de:Countries---- +Category:de:Countries---->>> ***most*** -most: - +HtmlEntry: most <<<

                            Etymology

                            From {{etyl|la|goh}} {{term|mustum|lang=la}}.

                            Noun

                            {{goh-noun|g=m}}
                            1. must
                            ----- +---->>> ***nine*** -nine: - +HtmlEntry: nine <<<

                            Alternative forms

                            • nin
                            @@ -1408,10 +1233,9 @@ nine: {{head|gsw|cardinal number}}
                            1. {{context|Alsatian|lang=gsw}} {{l|en|nine}}
                            ----- +---->>> ***November*** -November: - +HtmlEntry: November <<<

                            Pronunciation

                            • {{IPA|/noˈvɛmbɐ/|lang=de}}
                            • {{audio|De-November.ogg|audio}}
                            • @@ -1421,10 +1245,9 @@ November: {{head|de|noun|g=m}}
                              1. {{l|en|November}}
                              -Category:de:Months---- +Category:de:Months---->>> ***nu*** -nu: - +HtmlEntry: nu <<<

                              Interjection

                              {{head|de|interjection}}
                              1. well, well now
                              2. @@ -1433,17 +1256,15 @@ nu:

                                Synonyms

                                • na
                                ----- +---->>> ***o*** -o: - +HtmlEntry: o <<<

                                Particle

                                {{head|de|particle}}
                                1. O
                                ----- -o: - +---->>> +HtmlEntry: o <<<

                                Etymology

                                From {{proto|Germanic|awjō|lang=gml}}. Cognate with {{etyl|non|-}} {{term|ey|lang=non}} ({{etyl|sv|-}} {{term|ö|lang=sv}}, {{etyl|no|-}} {{term|øy|lang=no}}).

                                Pronunciation

                                @@ -1456,10 +1277,9 @@ From {{proto|Germanic|awjō|lang=gml}}. Cognate with {{etyl|non|-}} {{term|ey|la

                              Usage notes

                              -Since this is actually an Umlaut, some Middle Low German authors will have written this word as io, ø, ö etc. depending on the system of marking the Umlaut. The semi-standard used in the prime of Middle Low German did not mark the Umlaut.---- +Since this is actually an Umlaut, some Middle Low German authors will have written this word as io, ø, ö etc. depending on the system of marking the Umlaut. The semi-standard used in the prime of Middle Low German did not mark the Umlaut.---->>> ***on*** -on: - +HtmlEntry: on <<<

                              Etymology

                              Ultimately cognate to {{etyl|de|-}} und.

                              Conjunction

                              @@ -1470,10 +1290,9 @@ Ultimately cognate to {{etyl|de|-}} und.
                          -Category:Low German conjunctions---- +Category:Low German conjunctions---->>> ***orange*** -orange: - +HtmlEntry: orange <<<

                          Etymology

                          From the noun {{term|Orange|lang=de}}

                          Pronunciation

                          @@ -1484,18 +1303,16 @@ From the noun {{term|Orange|lang=de}} {{de-adj|-}}
                          1. orange-coloured
                          -Category:de:ColorsCategory:de:Colors of the rainbow---- +Category:de:ColorsCategory:de:Colors of the rainbow---->>> ***planet*** -planet: - +HtmlEntry: planet <<<

                          Verb

                          {{head|de}}
                          1. {{de-verb form of|planen|2|p|k1}}
                          ----- +---->>> ***PM*** -PM: - +HtmlEntry: PM <<<

                          {{initialism|de}}

                          PM
                          1. Pressemitteilung
                          2. @@ -1505,63 +1322,9 @@ PM:
                          3. Papiermaschine
                          -cs:PMet:PMfr:PMhe:PMli:PMhu:PMpl:PMpt:PMfi:PMsv:PMtr:PM -===Proto=== -Appendix:Proto-Germanic/frijaz: - -

                          Etymology

                          -From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond of|lang=gem-pro}}. The original meaning was probably something like from the own clan, from which a meaning being a free man, not a serf developed. -

                          Pronunciation

                          -
                          • {{IPA|/ˈɸri.jɑz/|lang=gem-pro}}
                          • -
                          - -

                          Adjective

                          -{gem-adj} -
                          1. free
                          2. -
                          - -

                          Declension

                          -{{gem-decl-adj-a|frij}} -

                          Related terms

                          -
                          • {{lx|gem-pro|frijōnan|frijōną}}
                          • -
                          - -

                          Descendants

                          -
                          • Old English: {{l|ang|freo|frēo}}
                          • -
                            • English: {{l|en|free}}
                            • -
                            -
                          • Old Frisian: {{l|ofs|fri|frÄ«}}
                          • -
                            • West Frisian: {{l|fy|frij}}
                            • -
                            -
                          • Old Saxon: {{l|osx|fri|frÄ«}}
                          • -
                            • Middle Low German: {{l|gml|vri}}
                            • -
                              • Norwegian: {{l|no|fri}}
                              • -
                              • Swedish: {{l|sv|fri}}
                              • -
                              • Danish: {{l|da|fri}}
                              • -
                              -
                            -
                          • Old Dutch: *frÄ«
                          • -
                            • Middle Dutch: {{l|dum|vri}}
                            • -
                              • Dutch: {{l|nl|vrij}}
                              • -
                                • Afrikaans: {{l|af|vry}}
                                • -
                                -
                              -
                            -
                          • Old High German: {{l|goh|fri|frÄ«}}
                          • -
                            • German: {{l|de|frei}}
                            • -
                            -
                          • Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}
                          • -
                          - -===Resources=== -Wiktionary:Resources for translators: -
                          • [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
                          • -
                          • [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
                          • -
                          - +cs:PMet:PMfr:PMhe:PMli:PMhu:PMpl:PMpt:PMfi:PMsv:PMtr:PM>>> ***September*** -September: - +HtmlEntry: September <<<

                          Pronunciation

                          • {{IPA|/zɛpˈtɛmbɐ/|lang=de}}
                          • {{audio|September.ogg|September}}
                          • @@ -1572,20 +1335,18 @@ September: {{head|de|noun|g=m}}
                            1. {{l|en|September}}
                            -Category:de:Months---- +Category:de:Months---->>> ***SMS*** -SMS: - +HtmlEntry: SMS <<<

                            {{initialism|German}}

                            {{head|de|initialism}}
                            1. {{nautical|military|lang=de}} SMS &mdash; Seiner Majestät Schiff, His Majesty's Ship

                            Usage notes

                            -Used for naval ships of the Austro-Hungarian Empire and the Second Reich of Imperial Germany, for the Kaiserliche und Königliche Kriegsmarine and Kaiserliche Marine, respectively.Category:de:Ship prefixesde:SMSes:SMSfr:SMSko:SMSit:SMShe:SMSku:SMSpl:SMSpt:SMSru:SMSta:SMStr:SMSzh:SMS +Used for naval ships of the Austro-Hungarian Empire and the Second Reich of Imperial Germany, for the Kaiserliche und Königliche Kriegsmarine and Kaiserliche Marine, respectively.Category:de:Ship prefixesde:SMSes:SMSfr:SMSko:SMSit:SMShe:SMSku:SMSpl:SMSpt:SMSru:SMSta:SMStr:SMSzh:SMS>>> ***spring*** -spring: - +HtmlEntry: spring <<<

                            Pronunciation

                            • {{IPA|/ʃpʀɪŋ/|lang=de}}
                            @@ -1595,35 +1356,23 @@ spring:
                            1. {{de-verb form of|springen|i|s}}
                            2. {colloquial} {{de-verb form of|springen|1|s|g}}
                            ----- -===Swadesh=== -Appendix:Swadesh lists: -The words from Swadesh's original 100-word list are designated by an asterisk (*). In the composite list on this page, there are actually 207 words, since seven of the words in the 100-word list (breast, fingernail, full, horn, knee, moon, round) were not in the original 200-word list. {| align=center class="wikitable sortable"| i=No | No! c=en | English! c=fr | French! c=de | German! c=it | Italian! c=es | Spanish! c=nl | Dutch! c=sw | Swedish! c=la | Latin|- | i=No | 1| c=en | I *| c=fr | je| c=de | ich| c=it | io| c=es | yo| c=nl | ik| c=sw | jag| c=la | ego|- | i=No | 2| c=en | you sing., thou| c=fr | tu, vous (formal)| c=de | du, Sie (formal)| c=it | tu, Lei (formal)| c=es | tú, usted (formal)| c=nl | jij, je, U (formal)| c=sw | du| c=la | tu|- | i=No | 3| c=en | he| c=fr | il| c=de | er| c=it | lui, egli| c=es | él| c=nl | hij| c=sw | han| c=la | is, ea|- | i=No | 4| c=en | we *| c=fr | nous| c=de | wir| c=it | noi| c=es | nosotros| c=nl | wij, we| c=sw | vi| c=la | nos|- | i=No | 5| c=en | you pl.| c=fr | vous| c=de | ihr, Sie (formal)| c=it | voi| c=es | vosotros, ustedes (formal)| c=nl | jullie| c=sw | ni| c=la | vos|- | i=No | 6| c=en | they| c=fr | ils, elles| c=de | sie| c=it | loro, essi| c=es | ellos, ellas| c=nl | zij, ze| c=sw | de| c=la | ii, eae|- | i=No | 7| c=en | this *| c=fr | ceci| c=de | dieses| c=it | questo| c=es | este| c=nl | deze, dit| c=sw | det här| c=la | hic, is|- | i=No | 8| c=en | that *| c=fr | cela| c=de | jenes, das| c=it | quello| c=es | ese, aquel| c=nl | die, dat| c=sw | det där| c=la | ille|- | i=No | 9| c=en | here| c=fr | ici| c=de | hier| c=it | qui, qua| c=es | aquí, acá| c=nl | hier| c=sw | här| c=la | hic|- | i=No | 10| c=en | there| c=fr | là| c=de | dort| c=it | là| c=es | ahí, allí, allá| c=nl | daar| c=sw | där| c=la | ibi|- | i=No | 11| c=en | who *| c=fr | qui| c=de | wer| c=it | chi| c=es | quien| c=nl | wie| c=sw | vem| c=la | quis|- | i=No | 12| c=en | what *| c=fr | quoi| c=de | was| c=it | che| c=es | que| c=nl | wat| c=sw | vad| c=la | quid|- | i=No | 13| c=en | where| c=fr | où| c=de | wo| c=it | dove| c=es | donde| c=nl | waar| c=sw | var| c=la | ubi|- | i=No | 14| c=en | when| c=fr | quand| c=de | wann| c=it | quando| c=es | cuando| c=nl | wanneer| c=sw | när| c=la | quando|- | i=No | 15| c=en | how| c=fr | comment| c=de | wie| c=it | come| c=es | como| c=nl | hoe| c=sw | hur| c=la | quam, quomodo|- | i=No | 16| c=en | not *| c=fr | ne...pas| c=de | nicht| c=it | non| c=es | no| c=nl | niet| c=sw | inte, ej| c=la | non|- | i=No | 17| c=en | all *| c=fr | tout| c=de | alle| c=it | tutto| c=es | todo| c=nl | al, alle| c=sw | alla| c=la | omnis|- | i=No | 18| c=en | many *| c=fr | plusieurs| c=de | viele| c=it | molti| c=es | muchos| c=nl | veel| c=sw | många| c=la | multi|- | i=No | 19| c=en | some| c=fr | quelques| c=de | einige| c=it | alcuni| c=es | algunos, unos| c=nl | enkele, sommige| c=sw | några, vissa| c=la | aliqui, aliquot|- | i=No | 20| c=en | few| c=fr | peu| c=de | wenige| c=it | pochi| c=es | poco| c=nl | weinig| c=sw | få| c=la | pauci|- | i=No | 21| c=en | other| c=fr | autre| c=de | andere| c=it | altro| c=es | otro| c=nl | ander| c=sw | annan| c=la | alter, alius|- | i=No | 22| c=en | one *| c=fr | un| c=de | eins| c=it | uno| c=es | uno| c=nl | een| c=sw | ett| c=la | unus|- | i=No | 23| c=en | two *| c=fr | deux| c=de | zwei| c=it | due| c=es | dos| c=nl | twee| c=sw | två| c=la | duo|- | i=No | 24| c=en | three| c=fr | trois| c=de | drei| c=it | tre| c=es | tres| c=nl | drie| c=sw | tre| c=la | tres|- | i=No | 25| c=en | four| c=fr | quatre| c=de | vier| c=it | quattro| c=es | cuatro| c=nl | vier| c=sw | fyra| c=la | quattuor|- | i=No | 26| c=en | five| c=fr | cinq| c=de | fünf| c=it | cinque| c=es | cinco| c=nl | vijf| c=sw | fem| c=la | quinque|- | i=No | 27| c=en | big *| c=fr | grand| c=de | groß| c=it | grande| c=es | grande| c=nl | groot| c=sw | stor| c=la | magnus, grandis|- | i=No | 28| c=en | long *| c=fr | long| c=de | lang| c=it | lungo| c=es | largo| c=nl | lang| c=sw | lång| c=la | longus|- | i=No | 29| c=en | wide| c=fr | large| c=de | breit, weit| c=it | largo| c=es | ancho| c=nl | breed, wijd| c=sw | bred, vid| c=la | latus|- | i=No | 30| c=en | thick| c=fr | épais| c=de | dick| c=it | spesso| c=es | grueso| c=nl | dik| c=sw | tjock| c=la | creber|- | i=No | 31| c=en | heavy| c=fr | lourd| c=de | schwer| c=it | pesante| c=es | pesado| c=nl | zwaar| c=sw | tung| c=la | gravis|- | i=No | 32| c=en | small *| c=fr | petit| c=de | klein| c=it | piccolo| c=es | pequeño| c=nl | smal| c=sw | liten| c=la | parvus|- | i=No | 33| c=en | short| c=fr | court| c=de | kurz| c=it | corto| c=es | corto| c=nl | kort| c=sw | kort| c=la | brevis|- | i=No | 34| c=en | narrow| c=fr | étroit| c=de | eng| c=it | stretto| c=es | estrecho, angosto| c=nl | klein| c=sw | trång| c=la | angustus|- | i=No | 35| c=en | thin| c=fr | mince| c=de | dünn| c=it | sottile| c=es | delgado, flaco| c=nl | dun| c=sw | tunn| c=la | macer|- | i=No | 36| c=en | woman *| c=fr | femme| c=de | Frau| c=it | donna| c=es | mujer| c=nl | vrouw| c=sw | kvinna| c=la | femina|- | i=No | 37| c=en | man (adult male)| c=fr | homme| c=de | Mann| c=it | uomo| c=es | hombre| c=nl | man| c=sw | man| c=la | vir|- | i=No | 38| c=en | man * (human being)| c=fr | homme| c=de | Mensch| c=it | uomo| c=es | hombre| c=nl | mens| c=sw | människa| c=la | homo|- | i=No | 39| c=en | kid| c=fr | enfant| c=de | Kind| c=it | bambino| c=es | niño| c=nl | kind| c=sw | barn| c=la | puer|- | i=No | 40| c=en | wife| c=fr | femme, épouse| c=de | Frau, Ehefrau| c=it | moglie| c=es | esposa, mujer| c=nl | vrouw, echtgenote| c=sw | hustru, maka, fru| c=la | uxor, mulier|- | i=No | 41| c=en | husband| c=fr | mari, époux| c=de | Mann, Ehemann| c=it | marito| c=es | esposo, marido| c=nl | man, echtgenoot| c=sw | man, make| c=la | maritus|- | i=No | 42| c=en | mother| c=fr | mère| c=de | Mutter| c=it | madre| c=es | madre| c=nl | moeder| c=sw | mamma, mor| c=la | mater|- | i=No | 43| c=en | father| c=fr | père| c=de | Vater| c=it | padre| c=es | padre| c=nl | vader| c=sw | pappa, far| c=la | pater|- | i=No | 44| c=en | animal| c=fr | animal| c=de | Tier| c=it | animale| c=es | animal| c=nl | dier| c=sw | djur| c=la | animal|- | i=No | 45| c=en | fish *| c=fr | poisson| c=de | Fisch| c=it | pesce| c=es | pez, pescado| c=nl | vis| c=sw | fisk| c=la | piscis|- | i=No | 46| c=en | bird *| c=fr | oiseau| c=de | Vogel| c=it | uccello| c=es | ave, pájaro| c=nl | vogel| c=sw | fågel| c=la | avis|- | i=No | 47| c=en | hound *| c=fr | chien| c=de | Hund| c=it | cane| c=es | perro| c=nl | hond| c=sw | hund| c=la | canis|- | i=No | 48| c=en | louse *| c=fr | pou| c=de | Laus| c=it | pidocchio| c=es | piojo| c=nl | luis| c=sw | lus| c=la | pedis|- | i=No | 49| c=en | snake| c=fr | serpent| c=de | Schlange| c=it | serpente| c=es | serpiente, culebra| c=nl | slang| c=sw | orm| c=la | serpens|- | i=No | 50| c=en | worm| c=fr | ver| c=de | Wurm| c=it | verme| c=es | gusano| c=nl | worm| c=sw | mask| c=la | vermis|- | i=No | 51| c=en | beam *| c=fr | arbre| c=de | Baum| c=it | albero| c=es | árbol| c=nl | boom| c=sw | träd| c=la | arbor|- | i=No | 52| c=en | forest| c=fr | forêt| c=de | Wald| c=it | foresta| c=es | bosque| c=nl | woud| c=sw | skog| c=la | silva|- | i=No | 53| c=en | stick| c=fr | bâton| c=de | Stock| c=it | bastone| c=es | palo| c=nl | stok| c=sw | pinne| c=la | fustis|- | i=No | 54| c=en | fruit| c=fr | fruit| c=de | Frucht| c=it | frutta| c=es | fruta| c=nl | fruit, vrucht| c=sw | frukt| c=la | fructus|- | i=No | 55| c=en | seed *| c=fr | graine| c=de | Samen| c=it | seme| c=es | semilla| c=nl | zaad| c=sw | frö| c=la | semen|- | i=No | 56| c=en | leaf *| c=fr | feuille| c=de | Blatt| c=it | foglia| c=es | hoja| c=nl | blad| c=sw | löv, blad| c=la | folium|- | i=No | 57| c=en | root *| c=fr | racine| c=de | Wurzel| c=it | radice| c=es | raíz| c=nl | root| c=sw | rot| c=la | radix|- | i=No | 58| c=en | bark * (from tree)| c=fr | écorce| c=de | Rinde| c=it | corteccia| c=es | corteza| c=nl | bark| c=sw | bark| c=la | cortex|- | i=No | 59| c=en | flower| c=fr | fleur| c=de | Blume| c=it | fiore| c=es | flor| c=nl | bloem| c=sw | blomma| c=la | flos|- | i=No | 60| c=en | grass| c=fr | herbe| c=de | Gras| c=it | erba| c=es | hierba, pasto| c=nl | gras| c=sw | gräs| c=la | herba|- | i=No | 61| c=en | rope| c=fr | corde| c=de | Seil| c=it | corda| c=es | cuerda| c=nl | reep, koord| c=sw | rep| c=la | funis|- | i=No | 62| c=en | skin *| c=fr | peau| c=de | Haut| c=it | pelle| c=es | piel| c=nl | huid| c=sw | hud| c=la | cutis|- | i=No | 63| c=en | meat| c=fr | viande| c=de | Fleisch| c=it | carne| c=es | carne| c=nl | vlees| c=sw | kött| c=la | caro|- | i=No | 64| c=en | blood *| c=fr | sang| c=de | Blut| c=it | sangue| c=es | sangre| c=nl | bloed| c=sw | blod| c=la | sanguis|- | i=No | 65| c=en | bone *| c=fr | os| c=de | Knochen| c=it | osso| c=es | hueso| c=nl | been, bot| c=sw | ben| c=la | os|- | i=No | 66| c=en | fat * (n.)| c=fr | graisse| c=de | Fett| c=it | grasso| c=es | grasa| c=nl | vet| c=sw | fett| c=la | adeps|- | i=No | 67| c=en | egg *| c=fr | œuf| c=de | Ei| c=it | uovo| c=es | huevo| c=nl | ei| c=sw | ägg| c=la | ovum|- | i=No | 68| c=en | horn *| c=fr | corne| c=de | Horn| c=it | corno| c=es | cuerno| c=nl | horn| c=sw | horn| c=la | cornu|- | i=No | 69| c=en | tail *| c=fr | queue| c=de | Schwanz| c=it | coda| c=es | cola| c=nl | staart| c=sw | svans| c=la | cauda|- | i=No | 70| c=en | feather *| c=fr | plume| c=de | Feder| c=it | piuma| c=es | pluma| c=nl | veder| c=sw | fjäder| c=la | penna|- | i=No | 71| c=en | hair *| c=fr | cheveu| c=de | Haar| c=it | capelli| c=es | cabello, pelo| c=nl | haar| c=sw | hår| c=la | capillus, coma, crinis|- | i=No | 72| c=en | head *| c=fr | tête| c=de | Kopf, Haupt| c=it | testa| c=es | cabeza| c=nl | hoofd, kop| c=sw | huvud| c=la | caput|- | i=No | 73| c=en | ear *| c=fr | oreille| c=de | Ohr| c=it | orecchio| c=es | oreja| c=nl | aar| c=sw | öra| c=la | auris|- | i=No | 74| c=en | eye *| c=fr | œil| c=de | Auge| c=it | occhio| c=es | ojo| c=nl | oog| c=sw | öga| c=la | oculus|- | i=No | 75| c=en | nose *| c=fr | nez| c=de | Nase| c=it | naso| c=es | nariz| c=nl | neus| c=sw | näsa| c=la | nasus|- | i=No | 76| c=en | mouth *| c=fr | bouche| c=de | Mund| c=it | bocca| c=es | boca| c=nl | mond| c=sw | mun| c=la | os|- | i=No | 77| c=en | tooth *| c=fr | dent| c=de | Zahn| c=it | dente| c=es | diente| c=nl | tand| c=sw | tand| c=la | dens|- | i=No | 78| c=en | tongue *| c=fr | langue| c=de | Zunge| c=it | lingua| c=es | lengua| c=nl | tong| c=sw | tunga| c=la | lingua|- | i=No | 79| c=en | fingernail| c=fr | ongle| c=de | Fingernagel| c=it | unghia| c=es | uña| c=nl | vingernagel| c=sw | nagel| c=la | unguis|- | i=No | 80| c=en | foot *| c=fr | pied| c=de | Fuß| c=it | piede| c=es | pie| c=nl | voet| c=sw | fot| c=la | pes|- | i=No | 81| c=en | leg| c=fr | jambe| c=de | Bein| c=it | gamba| c=es | pierna| c=nl | been| c=sw | ben| c=la | crus|- | i=No | 82| c=en | knee *| c=fr | genou| c=de | Knie| c=it | ginocchio| c=es | rodilla| c=nl | knie| c=sw | knä| c=la | genu|- | i=No | 83| c=en | hand *| c=fr | main| c=de | Hand| c=it | mano| c=es | mano| c=nl | hand| c=sw | hand| c=la | manus|- | i=No | 84| c=en | wing| c=fr | aile| c=de | Flügel| c=it | ala| c=es | ala| c=nl | vleugel| c=sw | vinge| c=la | ala|- | i=No | 85| c=en | belly *| c=fr | ventre| c=de | Bauch| c=it | pancia| c=es | barriga, vientre, panza| c=nl | buik| c=sw | mage| c=la | venter|- | i=No | 86| c=en | guts| c=fr | entrailles| c=de | Eingeweide, Innereien| c=it | intestino| c=es | entrañas, tripas| c=nl | ingewanden| c=sw | inälvor| c=la | intestina|- | i=No | 87| c=en | neck *| c=fr | cou| c=de | Hals| c=it | collo| c=es | cuello| c=nl | nek| c=sw | hals, nacke| c=la | collum, cervix|- | i=No | 88| c=en | back| c=fr | dos| c=de | Rücken| c=it | schiena| c=es | espalda| c=nl | rug| c=sw | rygg| c=la | tergum|- | i=No | 89| c=en | breast *| c=fr | sein, poitrine| c=de | Brust| c=it | petto| c=es | pecho, seno| c=nl | borst| c=sw | bröst| c=la | pectus, mamma|- | i=No | 90| c=en | heart *| c=fr | cœur| c=de | Herz| c=it | cuore| c=es | corazón| c=nl | hart| c=sw | hjärta| c=la | cor|- | i=No | 91| c=en | liver *| c=fr | foie| c=de | Leber| c=it | fegato| c=es | hígado| c=nl | lever| c=sw | lever| c=la | iecur|- | i=No | 92| c=en | drink *| c=fr | boire| c=de | trinken| c=it | bere| c=es | beber, tomar| c=nl | drinken| c=sw | dricka| c=la | bibere|- | i=No | 93| c=en | eat *| c=fr | manger| c=de | essen| c=it | mangiare| c=es | comer| c=nl | eten| c=sw | äta| c=la | edere|- | i=No | 94| c=en | bite *| c=fr | mordre| c=de | beißen| c=it | mordere| c=es | morder| c=nl | bijten| c=sw | bita| c=la | mordere|- | i=No | 95| c=en | suck| c=fr | sucer| c=de | saugen| c=it | succhiare| c=es | chupar| c=nl | zuigen| c=sw | suga| c=la | sugere|- | i=No | 96| c=en | spit| c=fr | cracher| c=de | spucken| c=it | sputare| c=es | escupir| c=nl | spugen| c=sw | spotta| c=la | sputare|- | i=No | 97| c=en | vomit| c=fr | vomir| c=de | erbrechen| c=it | vomitare| c=es | vomitar| c=nl | braken, overgeven| c=sw | kräkas, spy| c=la | vomere|- | i=No | 98| c=en | blow| c=fr | souffler| c=de | blasen| c=it | soffiare| c=es | soplar| c=nl | blazen| c=sw | blåsa| c=la | flare|- | i=No | 99| c=en | breathe| c=fr | respirer| c=de | atmen| c=it | respirare| c=es | respirar| c=nl | ademen| c=sw | andas| c=la | spirare|- | i=No | 100| c=en | laugh| c=fr | rire| c=de | lachen| c=it | ridere| c=es | reír| c=nl | lachen| c=sw | skratta| c=la | ridere|- | i=No | 101| c=en | see *| c=fr | voir| c=de | sehen| c=it | vedere| c=es | ver| c=nl | zien| c=sw | se| c=la | videre|- | i=No | 102| c=en | hear *| c=fr | entendre| c=de | hören| c=it | udire, sentire| c=es | oír| c=nl | horen| c=sw | höra| c=la | audire|- | i=No | 103| c=en | know * (a fact)| c=fr | savoir| c=de | wissen| c=it | sapere| c=es | saber| c=nl | kennen| c=sw | veta| c=la | scire|- | i=No | 104| c=en | think| c=fr | penser| c=de | denken| c=it | pensare| c=es | pensar| c=nl | denken| c=sw | tänka| c=la | putare|- | i=No | 105| c=en | smell| c=fr | sentir| c=de | riechen| c=it | odorare, annusare| c=es | oler| c=nl | smelten| c=sw | lukta| c=la | olere|- | i=No | 106| c=en | fear| c=fr | craindre, avoir peur| c=de | fürchten| c=it | temere| c=es | temer| c=nl | vrezen, angst| c=sw | frukta, rädas| c=la | timere|- | i=No | 107| c=en | sleep *| c=fr | dormir| c=de | schlafen| c=it | dormire| c=es | dormir| c=nl | slapen| c=sw | sova| c=la | dormire|- | i=No | 108| c=en | live| c=fr | vivre| c=de | leben| c=it | vivere| c=es | vivir| c=nl | leven| c=sw | leva| c=la | vivere|- | i=No | 109| c=en | die *| c=fr | mourir| c=de | sterben| c=it | morire| c=es | morir| c=nl | doden| c=sw | dö| c=la | mori|- | i=No | 110| c=en | kill *| c=fr | tuer| c=de | töten| c=it | uccidere| c=es | matar| c=nl | doden| c=sw | döda| c=la | necare|- | i=No | 111| c=en | fight| c=fr | se battre| c=de | kämpfen| c=it | combattere| c=es | pelear| c=nl | vechten| c=sw | strida| c=la | pugnare|- | i=No | 112| c=en | hunt| c=fr | chasser| c=de | jagen| c=it | cacciare| c=es | cazar| c=nl | jagen| c=sw | jaga| c=la | venari|- | i=No | 113| c=en | hit| c=fr | frapper| c=de | schlagen| c=it | colpire| c=es | golpear| c=nl | slaan| c=sw | slå| c=la | pellere|- | i=No | 114| c=en | cut| c=fr | couper| c=de | schneiden| c=it | tagliare| c=es | cortar| c=nl | snijden| c=sw | skära| c=la | secare|- | i=No | 115| c=en | split| c=fr | fendre| c=de | spalten| c=it | dividere, separare| c=es | partir| c=nl | splijten| c=sw | dela, klyva| c=la | scindere, partiri|- | i=No | 116| c=en | stab| c=fr | poignarder| c=de | stechen| c=it | pugnalare| c=es | apuñalar| c=nl | steken| c=sw | sticka| c=la | traicere|- | i=No | 117| c=en | scratch| c=fr | gratter| c=de | kratzen| c=it | graffiare| c=es | arañar, rascar| c=nl | krabben| c=sw | klia| c=la | radere|- | i=No | 118| c=en | dig| c=fr | creuser| c=de | graben| c=it | scavare| c=es | cavar| c=nl | delven| c=sw | gräva| c=la | fodere|- | i=No | 119| c=en | swim *| c=fr | nager| c=de | schwimmen| c=it | nuotare| c=es | nadar| c=nl | zwemmen| c=sw | simma| c=la | natare|- | i=No | 120| c=en | fly * (v.)| c=fr | voler| c=de | fliegen| c=it | volare| c=es | volar| c=nl | vliegen| c=sw | flyga| c=la | volare|- | i=No | 121| c=en | walk *| c=fr | marcher| c=de | gehen| c=it | camminare| c=es | caminar| c=nl | lopen, wandelen| c=sw | gå| c=la | gradi|- | i=No | 122| c=en | come *| c=fr | venir| c=de | kommen| c=it | venire| c=es | venir| c=nl | komen| c=sw | komma| c=la | venire|- | i=No | 123| c=en | lie *| c=fr | s'étendre| c=de | liegen| c=it | distendersi| c=es | echarse, acostarse, tenderse| c=nl | liegen| c=sw | ligga| c=la | iacere|- | i=No | 124| c=en | sit *| c=fr | s'asseoir| c=de | setzen| c=it | sedere| c=es | sentarse| c=nl | zitten| c=sw | sitta| c=la | sedere|- | i=No | 125| c=en | stand *| c=fr | se lever| c=de | stehen| c=it | stare in piedi| c=es | estar de pie| c=nl | staan| c=sw | stå| c=la | stare|- | i=No | 126| c=en | turn| c=fr | tourner| c=de | drehen| c=it | girare| c=es | voltear| c=nl | draaien| c=sw | svänga| c=la | vertere|- | i=No | 127| c=en | fall| c=fr | tomber| c=de | fallen| c=it | cadere| c=es | caer| c=nl | vallen| c=sw | falla| c=la | cadere|- | i=No | 128| c=en | give *| c=fr | donner| c=de | geben| c=it | dare| c=es | dar| c=nl | geven| c=sw | ge| c=la | dare|- | i=No | 129| c=en | hold| c=fr | tenir| c=de | halten| c=it | tenere| c=es | sostener| c=nl | houden| c=sw | hålla| c=la | tenere|- | i=No | 130| c=en | squeeze| c=fr | serrer| c=de | quetschen| c=it | spremere| c=es | apretar| c=nl | knijpen| c=sw | klämma| c=la | premere|- | i=No | 131| c=en | rub| c=fr | frotter| c=de | reiben| c=it | strofinare| c=es | frotar, restregar| c=nl | wrijven| c=sw | gnida| c=la | fricare|- | i=No | 132| c=en | wash| c=fr | laver| c=de | waschen| c=it | lavare| c=es | lavar| c=nl | wassen| c=sw | tvätta| c=la | lavare|- | i=No | 133| c=en | wipe| c=fr | essuyer| c=de | wischen| c=it | asciugare| c=es | limpiar| c=nl | vegen| c=sw | rensa| c=la | tergere|- | i=No | 134| c=en | pull| c=fr | tirer| c=de | ziehen| c=it | tirare| c=es | tirar| c=nl | trekken| c=sw | dra| c=la | trahere|- | i=No | 135| c=en | push| c=fr | pousser| c=de | drücken| c=it | spingere| c=es | empujar| c=nl | duwen| c=sw | trycka| c=la | pellere, urgere|- | i=No | 136| c=en | throw| c=fr | jeter| c=de | werfen| c=it | tirare| c=es | tirar| c=nl | werpen, gooien| c=sw | kasta| c=la | iacere|- | i=No | 137| c=en | tie| c=fr | lier| c=de | binden| c=it | legare| c=es | atar| c=nl | binden| c=sw | knyta, binda| c=la | stringere, ligare|- | i=No | 138| c=en | sew| c=fr | coudre| c=de | nähen| c=it | cucire| c=es | coser| c=nl | naaien| c=sw | sy| c=la | suere|- | i=No | 139| c=en | count| c=fr | compter| c=de | zählen| c=it | contare| c=es | contar| c=nl | tellen| c=sw | räkna| c=la | numerare|- | i=No | 140| c=en | say *| c=fr | dire| c=de | sagen| c=it | dire| c=es | decir| c=nl | zeggen| c=sw | säga| c=la | dicere|- | i=No | 141| c=en | sing| c=fr | chanter| c=de | singen| c=it | cantare| c=es | cantar| c=nl | zingen| c=sw | sjunga| c=la | canere|- | i=No | 142| c=en | play| c=fr | jouer| c=de | spielen| c=it | giocare| c=es | jugar| c=nl | spelen| c=sw | leka, spela| c=la | ludere|- | i=No | 143| c=en | float| c=fr | flotter| c=de | schweben| c=it | galleggiare| c=es | flotar| c=nl | zweven| c=sw | flyta| c=la | fluctuare|- | i=No | 144| c=en | flow| c=fr | couler| c=de | fließen| c=it | fluire| c=es | fluir| c=nl | vloeien| c=sw | rinna| c=la | fluere|- | i=No | 145| c=en | freeze| c=fr | geler| c=de | frieren| c=it | gelare| c=es | helar| c=nl | vriezen| c=sw | frysa| c=la | gelare|- | i=No | 146| c=en | swell| c=fr | gonfler| c=de | schwellen| c=it | gonfiare| c=es | hincharse| c=nl | zwellen| c=sw | svälla| c=la | inflare|- | i=No | 147| c=en | sun *| c=fr | soleil| c=de | Sonne| c=it | sole| c=es | sol| c=nl | zon| c=sw | sol| c=la | sol|- | i=No | 148| c=en | moon *| c=fr | lune| c=de | Mond| c=it | luna| c=es | luna| c=nl | maan| c=sw | måne| c=la | luna|- | i=No | 149| c=en | star *| c=fr | étoile| c=de | Stern| c=it | stella| c=es | estrella| c=nl | ster| c=sw | stjärna| c=la | stella|- | i=No | 150| c=en | water *| c=fr | eau| c=de | Wasser| c=it | acqua| c=es | agua| c=nl | water| c=sw | vatten| c=la | aqua|- | i=No | 151| c=en | rain *| c=fr | pluie| c=de | Regen| c=it | pioggia| c=es | lluvia| c=nl | regen| c=sw | regn| c=la | pluvia|- | i=No | 152| c=en | river| c=fr | rivière| c=de | Fluß| c=it | fiume| c=es | río| c=nl | rivier| c=sw | flod| c=la | fluvius|- | i=No | 153| c=en | lake| c=fr | lac| c=de | See| c=it | lago| c=es | lago| c=nl | lak| c=sw | sjö| c=la | lacus|- | i=No | 154| c=en | sea| c=fr | mer| c=de | Meer, See| c=it | mare| c=es | mar| c=nl | zee| c=sw | hav| c=la | mare|- | i=No | 155| c=en | salt| c=fr | sel| c=de | Salz| c=it | sale| c=es | sal| c=nl | zout| c=sw | salt| c=la | sal|- | i=No | 156| c=en | stone *| c=fr | pierre| c=de | Stein| c=it | pietra| c=es | piedra| c=nl | steen| c=sw | sten| c=la | lapis, petra|- | i=No | 157| c=en | sand *| c=fr | sable| c=de | Sand| c=it | sabbia| c=es | arena| c=nl | zand| c=sw | sand| c=la | arena|- | i=No | 158| c=en | dust| c=fr | poussière| c=de | Staub| c=it | polvere| c=es | polvo| c=nl | stof| c=sw | damm| c=la | pulvis|- | i=No | 159| c=en | earth *| c=fr | terre| c=de | Erde| c=it | terra| c=es | tierra| c=nl | aarde| c=sw | jord| c=la | terra|- | i=No | 160| c=en | cloud *| c=fr | nuage| c=de | Wolke| c=it | nuvola| c=es | nube| c=nl | wolk| c=sw | moln| c=la | nimbus, nubes|- | i=No | 161| c=en | fog| c=fr | brouillard| c=de | Nebel| c=it | nebbia| c=es | niebla| c=nl | mist, nevel| c=sw | dimma| c=la | caligo, nebula|- | i=No | 162| c=en | sky| c=fr | ciel| c=de | Himmel| c=it | cielo| c=es | cielo| c=nl | lucht| c=sw | himmel| c=la | caelum|- | i=No | 163| c=en | wind| c=fr | vent| c=de | Wind| c=it | vento| c=es | viento| c=nl | wind| c=sw | vind| c=la | ventus|- | i=No | 164| c=en | snow| c=fr | neige| c=de | Schnee| c=it | neve| c=es | nieve| c=nl | sneeuw| c=sw | snö| c=la | nix|- | i=No | 165| c=en | ice| c=fr | glace| c=de | Eis| c=it | ghiaccio| c=es | hielo| c=nl | ijs| c=sw | is| c=la | glacies|- | i=No | 166| c=en | smoke *| c=fr | fumée| c=de | Rauch| c=it | fumo| c=es | humo| c=nl | rook| c=sw | rök| c=la | fumus|- | i=No | 167| c=en | fire *| c=fr | feu| c=de | Feuer| c=it | fuoco| c=es | fuego| c=nl | vuur| c=sw | eld| c=la | ignis|- | i=No | 168| c=en | ashes *| c=fr | cendres| c=de | Asche| c=it | ceneri| c=es | cenizas| c=nl | as| c=sw | aska| c=la | cineres|- | i=No | 169| c=en | burn *| c=fr | brûler| c=de | brennen| c=it | bruciare| c=es | quemar| c=nl | branden| c=sw | brinna| c=la | ardere|- | i=No | 170| c=en | road *| c=fr | route| c=de | Straße| c=it | strada| c=es | camino| c=nl | weg| c=sw | väg| c=la | via|- | i=No | 171| c=en | mountain *| c=fr | montagne| c=de | Berg| c=it | montagna| c=es | montaña| c=nl | berg| c=sw | berg| c=la | mons|- | i=No | 172| c=en | red *| c=fr | rouge| c=de | rot| c=it | rosso| c=es | rojo| c=nl | rode| c=sw | röd| c=la | ruber|- | i=No | 173| c=en | green *| c=fr | vert| c=de | grün| c=it | verde| c=es | verde| c=nl | groen| c=sw | grön| c=la | viridis|- | i=No | 174| c=en | yellow *| c=fr | jaune| c=de | gelb| c=it | giallo| c=es | amarillo| c=nl | geel| c=sw | gul| c=la | flavus|- | i=No | 175| c=en | white *| c=fr | blanc| c=de | weiß| c=it | bianco| c=es | blanco| c=nl | witte| c=sw | vit| c=la | albus, candidus|- | i=No | 176| c=en | black *| c=fr | noir| c=de | schwarz| c=it | nero| c=es | negro| c=nl | zwart| c=sw | svart| c=la | niger, ater, fuscus|- | i=No | 177| c=en | night *| c=fr | nuit| c=de | Nacht| c=it | notte| c=es | noche| c=nl | nacht| c=sw | natt| c=la | nox|- | i=No | 178| c=en | day| c=fr | jour| c=de | Tag| c=it | giorno| c=es | día| c=nl | dag| c=sw | dag| c=la | dies|- | i=No | 179| c=en | year| c=fr | an, année| c=de | Jahr| c=it | anno| c=es | año| c=nl | jaar| c=sw | år| c=la | annus|- | i=No | 180| c=en | warm *| c=fr | chaud| c=de | warm| c=it | caldo| c=es | cálido, tibio| c=nl | warm| c=sw | varm| c=la | calidus|- | i=No | 181| c=en | cold *| c=fr | froid| c=de | kalt| c=it | freddo| c=es | frío| c=nl | koud| c=sw | kall| c=la | frigidus|- | i=No | 182| c=en | full *| c=fr | plein| c=de | volle| c=it | pieno| c=es | lleno| c=nl | volle| c=sw | full| c=la | plenus|- | i=No | 183| c=en | new *| c=fr | nouveau| c=de | neu| c=it | nuovo| c=es | nuevo| c=nl | nieuw| c=sw | ny| c=la | novus|- | i=No | 184| c=en | old| c=fr | vieux| c=de | alt| c=it | vecchio| c=es | viejo| c=nl | oud| c=sw | gammal| c=la | vetus|- | i=No | 185| c=en | good *| c=fr | bon| c=de | gut| c=it | buono| c=es | bueno| c=nl | goed| c=sw | bra| c=la | bonus|- | i=No | 186| c=en | bad| c=fr | mauvais| c=de | schlecht| c=it | cattivo| c=es | malo<br>| c=nl | slecht| c=sw | dålig| c=la | malus|- | i=No | 187| c=en | rotten| c=fr | pourri| c=de | verrottet| c=it | marcio| c=es | podrido| c=nl | rotten| c=sw | rutten| c=la | puter, putridus|- | i=No | 188| c=en | dirty| c=fr | sale| c=de | schmutzig| c=it | sporco| c=es | sucio| c=nl | vies| c=sw | smutsig| c=la | sordidus|- | i=No | 189| c=en | straight| c=fr | droit| c=de | gerade| c=it | diritto| c=es | recto| c=nl | recht| c=sw | rak| c=la | rectus|- | i=No | 190| c=en | round *| c=fr | rond| c=de | rund| c=it | rotondo| c=es | redondo| c=nl | rond| c=sw | rund| c=la | rotundus|- | i=No | 191| c=en | sharp| c=fr | tranchant, pointu, aigu| c=de | scharf| c=it | aguzzo, affilato| c=es | afilado| c=nl | scherp| c=sw | vass| c=la | acer|- | i=No | 192| c=en | dull| c=fr | émoussé| c=de | stumpf| c=it | noioso| c=es | desafilado| c=nl | stomp, bot| c=sw | slö| c=la | hebes|- | i=No | 193| c=en | smooth| c=fr | lisse| c=de | glatt| c=it | liscio| c=es | suave, liso| c=nl | glad| c=sw | len, slät| c=la | levis|- | i=No | 194| c=en | wet| c=fr | mouillé| c=de | nass, feucht| c=it | bagnato| c=es | mojado| c=nl | nat| c=sw | våt, blöt| c=la | umidus|- | i=No | 195| c=en | dry *| c=fr | sec| c=de | trocken| c=it | asciutto, secco| c=es | seco| c=nl | droog| c=sw | torr| c=la | siccus|- | i=No | 196| c=en | correct| c=fr | juste, correct| c=de | richtig| c=it | corretto| c=es | correcto| c=nl | richting, correct| c=sw | rätt, riktig| c=la | rectus|- | i=No | 197| c=en | near| c=fr | proche| c=de | nah,<br>nahe| c=it | vicino| c=es | cerca| c=nl | naar| c=sw | nära| c=la | propinquus|- | i=No | 198| c=en | far| c=fr | loin| c=de | weit, fern| c=it | lontano| c=es | lejos| c=nl | ver| c=sw | långt bort, fjärran| c=la | longinquus|- | i=No | 199| c=en | right| c=fr | à droite| c=de | rechts| c=it | destra| c=es | derecha| c=nl | rechts| c=sw | höger| c=la | dexter|- | i=No | 200| c=en | left| c=fr | à gauche| c=de | links| c=it | sinistra| c=es | izquierda| c=nl | links| c=sw | vänster| c=la | sinister|- | i=No | 201| c=en | at| c=fr | à| c=de | bei, an| c=it | a| c=es | a, en, ante| c=nl | aan, te, bij| c=sw | hos, vid| c=la | ad|- | i=No | 202| c=en | in| c=fr | dans| c=de | in| c=it | in| c=es | en| c=nl | in| c=sw | i| c=la | in|- | i=No | 203| c=en | with| c=fr | avec| c=de | mit| c=it | con| c=es | con| c=nl | met| c=sw | med| c=la | cum|- | i=No | 204| c=en | and| c=fr | et| c=de | und| c=it | e| c=es | y| c=nl | en| c=sw | och| c=la | et|- | i=No | 205| c=en | if| c=fr | si| c=de | wenn, falls, ob| c=it | se| c=es | si| c=nl | als, indien| c=sw | om| c=la | si|- | i=No | 206| c=en | because| c=fr | parce que| c=de | weil| c=it | perché| c=es | porque| c=nl | omdat| c=sw | eftersom, ty| c=la | quia, quoniam|- | i=No | 207| c=en | name *| c=fr | nom| c=de | Name| c=it | nome| c=es | nombre| c=nl | naam| c=sw | namn| c=la | nomen|} +---->>> ***synonym*** -synonym: - +HtmlEntry: synonym <<<

                            Adjective

                            {{de-adj|-}}
                            1. synonymous
                            -Category:de:Semantics---- -===translators=== -Wiktionary:Resources for translators: -
                            • [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
                            • -
                            • [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
                            • -
                            - +Category:de:Semantics---->>> ***UdSSR*** -UdSSR: - +HtmlEntry: UdSSR <<<

                            {{abbreviation|German}}

                            UdSSR {f} (abbreviation of Union der Sozialistischen Sowjet-Republiken)
                            1. USSR
                            -Category:German abbreviationsde:UdSSRel:UdSSRfr:UdSSRlt:UdSSRhu:UdSSRpl:UdSSRpt:UdSSR +Category:German abbreviationsde:UdSSRel:UdSSRfr:UdSSRlt:UdSSRhu:UdSSRpl:UdSSRpt:UdSSR>>> ***Uhr*** -Uhr: - +HtmlEntry: Uhr <<<

                            Pronunciation

                            • {{IPA|/ʔuːɐ̯/|lang=de}}
                            • {{audio|De-Uhr.ogg|audio (Germany)}}
                            • @@ -1649,17 +1398,15 @@ Uhr:
                            • Uhrmacher
                            • Uhrwerk
                            ----- -Uhr: - +---->>> +HtmlEntry: Uhr <<<

                            Noun

                            {nds-noun}
                            1. {{alternative spelling of|Ur|lang=nds}}
                            -br:Uhrcs:Uhrde:Uhrel:Uhrfr:Uhrko:Uhrhr:Uhrio:Uhrid:Uhrit:Uhrky:Uhrku:Uhrlo:Uhrlt:Uhrhu:Uhrja:Uhrno:Uhroc:Uhrpl:Uhrro:Uhrru:Uhrfi:Uhrsv:Uhrzh:Uhr +br:Uhrcs:Uhrde:Uhrel:Uhrfr:Uhrko:Uhrhr:Uhrio:Uhrid:Uhrit:Uhrky:Uhrku:Uhrlo:Uhrlt:Uhrhu:Uhrja:Uhrno:Uhroc:Uhrpl:Uhrro:Uhrru:Uhrfi:Uhrsv:Uhrzh:Uhr>>> ***um*** -um: - +HtmlEntry: um <<<

                            Etymology

                            From {{etyl|goh|de}} {{term|umbi|lang=goh}}, from {{proto|Germanic|umbi|lang=de}}.

                            Pronunciation

                            @@ -1689,10 +1436,9 @@ From {{etyl|goh|de}} {{term|umbi|lang=goh}}, from {{proto|Germanic|umbi|lang=de}
                        ----- +---->>> ***umsonst*** -umsonst: - +HtmlEntry: umsonst <<<

                        Adverb

                        umsonst
                        1. free of charge, gratis
                        2. @@ -1703,10 +1449,9 @@ umsonst:
                          • frei
                          • kostenlos
                          -Category:German adverbsde:umsonstfr:umsonstio:umsonsthu:umsonstpl:umsonstzh:umsonst +Category:German adverbsde:umsonstfr:umsonstio:umsonsthu:umsonstpl:umsonstzh:umsonst>>> ***urban*** -urban: - +HtmlEntry: urban <<<

                          Pronunciation

                          • {{IPA|/ˈʊɐ̯ban/|lang=de}}
                          @@ -1719,10 +1464,9 @@ urban:

                          Synonyms

                          • städtisch
                          ----- +---->>> ***wage*** -wage: - +HtmlEntry: wage <<<

                          Verb

                          {{head|de}}
                          1. {{de-verb form of|wagen|1|s|g}}
                          2. @@ -1730,10 +1474,9 @@ wage:
                          3. {{de-verb form of|wagen|3|s|k1}}
                          4. {{de-verb form of|wagen|i|s}}
                          -bg:wagecs:wagede:wageet:wageel:wagees:wagefa:wagefr:wagefy:wageko:wageio:wageid:wageis:wageit:wagekn:wageka:wagesw:wageku:wagelo:wageli:wagehu:wagemg:wageml:wagemy:wagenl:wageja:wageoc:wagepl:wagept:wageru:wagesimple:wagefi:wagesv:wageta:wagete:wagevi:wagezh:wage +bg:wagecs:wagede:wageet:wageel:wagees:wagefa:wagefr:wagefy:wageko:wageio:wageid:wageis:wageit:wagekn:wageka:wagesw:wageku:wagelo:wageli:wagehu:wagemg:wageml:wagemy:wagenl:wageja:wageoc:wagepl:wagept:wageru:wagesimple:wagefi:wagesv:wageta:wagete:wagevi:wagezh:wage>>> ***war*** -war: - +HtmlEntry: war <<<

                          Pronunciation

                          • {{IPA|/vaːɐ̯/|lang=de}}
                          • {{audio|De-war.ogg|audio}}
                          • @@ -1757,9 +1500,8 @@ war:
                        ----- -war: - +---->>> +HtmlEntry: war <<<

                        Alternative forms

                        • {{qualifier|Low Prussian}} wahr
                        @@ -1770,38 +1512,33 @@ Cognate to {{etyl|de|-}} wahr. {{head|nds|adjective}}
                        1. {{context|in some dialects|lang=nds}} true
                        ----- -war: - +---->>> +HtmlEntry: war <<<

                        Adjective

                        wār
                        1. true
                        -Category:Old High German adjectives---- -===Wiktionary=== -Wiktionary:Resources for translators: -
                        • [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
                        • +Category:Old High German adjectives---->>> +***Wiktionary:Resources for translators*** +HtmlEntry: Wiktionary:Resources for translators <<<
                          • [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
                          • [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
                          - +>>> ***wolf*** -wolf: - +HtmlEntry: wolf <<<

                          Noun

                          wolf {m}
                          1. wolf
                          -Category:Middle High German nounsCategory:gmh:Mammals---- +Category:Middle High German nounsCategory:gmh:Mammals---->>> ***zwei*** -zwei: - +HtmlEntry: zwei <<<

                          Number

                          {{head|gsw|number}}
                          1. {{cardinal|lang=gsw}} two
                          ----- -zwei: -{{cardinalbox|de|1|2|3|eins|drei|ord=zweite}} +---->>> +HtmlEntry: zwei <<<{{cardinalbox|de|1|2|3|eins|drei|ord=zweite}}

                          Etymology

                          From {{etyl|goh|de}} {{term|zwene|zwēne|lang=goh}}.

                          Pronunciation

                          @@ -1822,7 +1559,7 @@ From {{etyl|goh|de}} {{term|zwene|zwēne|lang=goh}}.
                          • zwanzig
                          • zwölf
                          -Category:German cardinal numbersast:zweiaz:zweibs:zweibr:zweics:zweicy:zweide:zweiet:zweiel:zweies:zweieo:zweieu:zweifr:zweify:zweiga:zweigl:zweiko:zweihy:zweihr:zweiio:zweiid:zweiis:zweiit:zweika:zweiku:zweilv:zweilb:zweilt:zweihu:zweimg:zweifj:zweinl:zweija:zweino:zweinn:zweipl:zweipt:zweiru:zweifi:zweisv:zweita:zweith:zweitr:zweitk:zweiuk:zweiza:zweivi:zweizh:zwei +Category:German cardinal numbersast:zweiaz:zweibs:zweibr:zweics:zweicy:zweide:zweiet:zweiel:zweies:zweieo:zweieu:zweifr:zweify:zweiga:zweigl:zweiko:zweihy:zweihr:zweiio:zweiid:zweiis:zweiit:zweika:zweiku:zweilv:zweilb:zweilt:zweihu:zweimg:zweifj:zweinl:zweija:zweino:zweinn:zweipl:zweipt:zweiru:zweifi:zweisv:zweita:zweith:zweitr:zweitk:zweiuk:zweiza:zweivi:zweizh:zwei>>> Index: EN EN->DE diff --git a/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text b/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text index 96a0c37..e8a67f9 100644 --- a/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text +++ b/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text @@ -1,10 +1,9 @@ dictInfo=SomeWikiDataWholeSection -EntrySource: wiktionary.WholeSection.EN.quickdic 130 +EntrySource: wiktionary.WholeSection.EN.quickdic 0 Index: EN EN->EN ***A*** -A: - +HtmlEntry: A <<<

                          Etymology 1

                          Runic letter {{term|ᚫ|ansuz|tr=a}}, source for Anglo-Saxon Futhorc letters replaced by AFrom {{etyl|enm}} and {{etyl|ang}} upper case letter {{term|A|lang=enm}} and split of {{etyl|enm}} and {{etyl|ang}} upper case letter {{term|Æ|lang=enm}}.
                            • Anglo-Saxon Futhorc letter {{term|ᚪ|āc|tr=a}} {{etyl|ang}} upper case letter {{term|A|lang=enm}} from 7th century replacement by Latin upper case letter {{term|A|lang=la}} of the Anglo-Saxon Futhorc letter {{term|ᚪ|āc|sc=unicode|tr=a}}, derived from Runic letter {{term|ᚫ|Ansuz|sc=unicode|tr=a}}.
                            • @@ -139,10 +138,9 @@ Runic letter {{term|ᚫ|ansuz|tr=a}}, source for Anglo-Saxon Futhorc letters rep

                              Statistics

                              • {{rank|little|now|then|79|A|should|can|made}}
                              ----- +---->>> ***adjectival*** -adjectival: - +HtmlEntry: adjectival <<<

                              Etymology

                              From {{suffix|adjective|al}}.

                              Pronunciation

                              @@ -163,10 +161,9 @@ From {{suffix|adjective|al}}.

                      References

                      -<references/>---- +<references/>---->>> ***adjective*** -adjective: - +HtmlEntry: adjective <<<

                      Etymology

                      From {{etyl|fro}} {{term|adjectif}}, from {{etyl|la}} {{term|adiectivus|adiectīvum|lang=la}}, from {{term|ad|next to|lang=la}} + {{term|iectus|-iect-|lang=la}}, perfect passive participle of {{term|iacio|iaciō|throw|lang=la}} + {{term|-ivus|-īvus|lang=la}}, adjective ending; hence, a word "thrown next to" a noun, modifying it.

                      Pronunciation

                      @@ -216,10 +213,9 @@ From {{etyl|fro}} {{term|adjectif}}, from {{etyl|la}} {{term|adiectivus|adiectī

                      Hyponyms

                      • See also Wikisaurus:adjective
                      - +>>> ***alphabetical*** -alphabetical: - +HtmlEntry: alphabetical <<<

                      Etymology

                      {{suffix|alphabetic|al}}

                      Pronunciation

                      @@ -251,35 +247,9 @@ alphabetical:
                      • alphabet
                      • alphabetize
                      - -===and=== -rain cats and dogs: - -

                      Etymology

                      -Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}} and {{term|δόξα|opinion, expectation|tr=doxa|lang=grc}}, but see Etymology in Citations -

                      Verb

                      -{{en-verb|rains cats and dogs|raining cats and dogs|rained cats and dogs|head=rain cats and dogs}} -
                      1. {idiomatic} To rain very heavily.
                      2. -
                      - -

                      Synonyms

                      -
                      • {{sense|to rain very heavily}} bucket, bucket down, chuck it down, rain buckets, rain pitchforks, pelt, piss down {{qualifier|coarse slang}}, pour, stream, teem
                      • -
                      - -

                      Anagrams

                      -
                      • rain dogs and cats
                      • -
                      -cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs -apples and pears: - -

                      Noun

                      -{{en-noun|-|sg=apples and pears}} -
                      1. {Cockney rhyming slang} stairs
                      2. -
                      - +>>> ***antidisestablishmentarianism*** -antidisestablishmentarianism: -{wikipedia} +HtmlEntry: antidisestablishmentarianism <<<{wikipedia}

                      Etymology

                      From {{confix|anti|disestablishmentarian|ism}}.

                      Pronunciation

                      @@ -315,10 +285,9 @@ From {{confix|anti|disestablishmentarian|ism}}.
                    9. pneumonoultramicroscopicsilicovolcanoconiosis
                    10. supercalifragilisticexpialidocious
                    11. -Category:English nouns ending in "-ism"Category:Long English wordset:antidisestablishmentarianismfr:antidisestablishmentarianismko:antidisestablishmentarianismpl:antidisestablishmentarianismru:antidisestablishmentarianismsimple:antidisestablishmentarianismta:antidisestablishmentarianismvi:antidisestablishmentarianism +Category:English nouns ending in "-ism"Category:Long English wordset:antidisestablishmentarianismfr:antidisestablishmentarianismko:antidisestablishmentarianismpl:antidisestablishmentarianismru:antidisestablishmentarianismsimple:antidisestablishmentarianismta:antidisestablishmentarianismvi:antidisestablishmentarianism>>> ***antonym*** -antonym: - +HtmlEntry: antonym <<<

                      Etymology

                      circa 1870: {{confix|ant|onym}}

                      Pronunciation

                      @@ -361,27 +330,24 @@ circa 1870: {{confix|ant|onym}}

                      External links

                      • {pedia}
                      ----- -===Appendix=== -Appendix:English pronunciation: -The following tables show the IPA, SAMPA and enPR/AHD representations of English pronunciation, in both Received Pronunciation (UK) and General American (US). For vowels in other dialects, see IPA chart for English. +---->>> +***Appendix:English pronunciation*** +HtmlEntry: Appendix:English pronunciation <<Vowels The vowel table lists both monophthongs and diphthongs.{| {wikitable}! rowspan="2" | enPR<br/>(AHD)! colspan="2" | IPA! colspan="2" | SAMPA! rowspan="2" | Examples|-! RP! GA! RP! GA|-align="center"| {{enPRchar|ă}}| colspan="2" | {{IPAchar2|Near-open front unrounded vowel.ogg|æ}}| colspan="2" | <tt>{</tt>| bad, cat, ran|-align="center"| {{enPRchar|ăr}}| colspan="2" | {{IPAchar|æɹ}}| colspan="2" | <tt>{r\</tt>| carry|-align="center"| {{enPRchar|ā}}| colspan="2" | {{IPAchar|eɪ}}| colspan="2" | <tt>eI</tt>| bait, play, same|-align="center"| {{enPRchar|ä}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>A:</tt>| <tt>A</tt>| father|-align="center"| {{enPRchar|är}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| <tt>A:</tt>| <tt>Ar\</tt>| arm, bard, aria|-align="center"| {{enPRchar|âr}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| <tt>E@</tt>| <tt>Er\</tt>| hair, pear, there, scary|-align="center"| {{enPRchar|ĕ}}| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan="2" | <tt>E</tt>| bed, bet, end|-align="center"| {{enPRchar|ĕr}}| colspan="2" | {{IPAchar|ɛɹ}}| colspan="2" | <tt>Er\</tt>| merry|-align="center"| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| <tt>i:</tt>| <tt>i</tt>| ease, see|-align="center"| {{enPRchar|Ä­}}| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan="2" | <tt>I</tt>| city, bit|-align="center"| {{enPRchar|i}}<ref>Not an AHD symbol. Often written as AHD ē in Wiktionary entries.</ref>| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan="2" | <tt>i</tt>| city, very, ready|-align="center"| {{enPRchar|Ä­r}}| colspan="2" | {{IPAchar|ɪɹ}}| colspan="2" | <tt>Ir\</tt>| syrup, Sirius|-align="center"| {{enPRchar|Ä«}}| colspan="2" | {{IPAchar|aɪ}}| colspan="2" | <tt>aI</tt>| my, rise|-align="center"| {{enPRchar|îr}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| <tt>I@</tt>| <tt>Ir\</tt>| here, near, peer, serious|-align="center"| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>Q</tt>| <tt>A</tt>| not|-align="center"| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| <tt>@U</tt>| <tt>oU</tt>| go, hope, know|-align="center"| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| <tt>O@</tt>| <tt>or\, Or\</tt>| hoarse, glory|-align="center"| {{enPRchar|ô}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| <tt>O:</tt>| <tt>O</tt>| law, caught, saw|-align="center"| {{enPRchar|ôr}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| <tt>O:</tt>| <tt>Or\</tt>| horse, more, laureate|-align="center"| {{enPRchar|oi}}| colspan="2" | {{IPAchar|ɔɪ}}| colspan="2" | <tt>OI</tt>| boy, noise|-align="center"| {{enPRchar|o͝o, ŏŏ}}| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan="2" | <tt>U</tt>| put, foot|-align="center"| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| <tt>U@</tt>| <tt>Ur\</tt>| poor, tour, tourism|-align="center"| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| <tt>u:</tt>| <tt>u</tt>| lose, soon, through|-align="center"| {{enPRchar|ou}}| colspan="2" | {{IPAchar|aʊ}}| colspan="2" | <tt>aU</tt>| house, now|-align="center"| {{enPRchar|Å­}}| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan="2" | <tt>V</tt>| run, enough, up|-align="center"| {{enPRchar|ûr}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| <tt>3:</tt>| <tt>3`</tt>| fur, bird|-align="center"| {{enPRchar|ə}}| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}| colspan="2" | <tt>@</tt>| about|-align="center"| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| <tt>@</tt>| <tt>@`</tt>| enter|}<references/>

                      Consonants

                      {| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| <tt>b</tt>| but, able, cab, wobble, ebb|-| {{enPRchar|ch}}| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}<ref name=tiebar>May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}</ref>| <tt>tS</tt>| chat, teacher, inch, catch, nature|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| <tt>d</tt>| dot, idea, nod, fodder, odd|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| <tt>f</tt>| fan, left, leaf, enough, phase, graphic, epitaph|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|É¡}}| <tt>g</tt>| get, magnet, bag|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| <tt>h</tt>| ham|-| {{enPRchar|hw}}| {{IPAchar2|voiceless labio-velar fricative.ogg|ʍ (hw)}}<ref>Phonologists may deny that {{IPAchar|/ʍ/}} is a distinct phoneme, and instead use {{IPAchar|/hw/}}.</ref>| <tt>W</tt>| which|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />| <tt>dZ</tt>| joy, ajar, gin, agile, age, edge|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| <tt>k</tt>| cat, kit, queen, pique, choir, ache, tack|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| <tt>x</tt>| (Scottish) loch|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| <tt>l</tt>| left (before vowel of syllable)|-| {{enPRchar|l}}| {{IPAchar|lÌ© (əl)}}<ref name="cons">Phonologists may deny that {{IPAchar|/lÌ©, nÌ©, mÌ©/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.</ref>| <tt>l=</tt>| little|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| <tt>m</tt>| man, animal, him|-| {{enPRchar|m}}| {{IPAchar|mÌ© (əm)}}<ref name="cons"/>| <tt>m=</tt>| spasm, prism|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| <tt>n</tt>| note, ant, pan|-| {{enPRchar|n}}| {{IPAchar|nÌ© (ən)}}<ref name="cons"/>| <tt>n=</tt>| hidden|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| <tt>N</tt>| singer, ring|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| <tt>p</tt>| pen, spin, top, apple|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>| <tt>r\</tt>| run, very|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| <tt>s</tt>| set, list, pass, city, ice|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| <tt>S</tt>| she, ash, sure, ration|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| <tt>t</tt>| ton, stab, mat, attend, butt, ought|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| <tt>T</tt>| thin, nothing, moth|-| {{enPRchar|th}}| {{IPAchar2|voiced dental fricative.ogg|ð}}| <tt>D</tt>| this, father, clothe|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| <tt>v</tt>| voice, navel, save, of|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| <tt>w</tt>| wet|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| <tt>j</tt>| yes|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| <tt>z</tt>| zoo, quiz, fuzz, rose, xylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| <tt>Z</tt>| vision, treasure, beige|}<references/>

                      Other symbols

                      -A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. {| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Indicates|-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)| <tt>"</tt> (<tt>"</tt>a)| primary stress|-| {{enPRchar|'}} (a{{enPRchar|'}})| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)| <tt>%</tt> (<tt>%</tt>a)| secondary stress, sometimes tertiary stress|-| a{{enPRchar|-}}a| a{{IPAchar|.}}a| a<tt>.</tt>a| division between syllables|}Note: The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme. -===apples=== -apples and pears: - +A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. {| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Indicates|-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)| <tt>"</tt> (<tt>"</tt>a)| primary stress|-| {{enPRchar|'}} (a{{enPRchar|'}})| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)| <tt>%</tt> (<tt>%</tt>a)| secondary stress, sometimes tertiary stress|-| a{{enPRchar|-}}a| a{{IPAchar|.}}a| a<tt>.</tt>a| division between syllables|}Note: The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme.>>> +***apples and pears*** +HtmlEntry: apples and pears <<<

                      Noun

                      {{en-noun|-|sg=apples and pears}}
                      1. {Cockney rhyming slang} stairs
                      - +>>> ***April*** -April: -{wikipedia} +HtmlEntry: April <<<{wikipedia}

                      Etymology

                      From {{etyl|enm}} {{term|apprile|lang=enm}}, re-Latinized from aueril, from {{etyl|fro}} {{term|avrill|lang=fro}}, from {{etyl|la}} {{term|aprilis|aprÄ«lis|of the month of the goddess Venus|lang=la}}, perhaps based on {{etyl|ett}} {{term|Apru|lang=ett}}, from Ancient Greek {{term|Αφροδίτη|Venus|tr=Afrodíte|lang=grc}}.

                      Pronunciation

                      @@ -440,10 +406,9 @@ From {{etyl|enm}} {{term|apprile|lang=enm}}, re-Latinized from aueril,

                      Anagrams

                      • Pilar
                      ----- +---->>> ***august*** -august: - +HtmlEntry: august <<<

                      Pronunciation

                      • {{a|RP}} {{IPA|/ɔːˈɡʌst/}}
                      • {{a|US}} {{IPA|/ɔːˈɡʌst/|/ɑːˈɡʌst/}}
                      • @@ -483,10 +448,9 @@ From August

                        Anagrams

                        • Tausug
                        ----- +---->>> ***barter*** -barter: -{wikipedia} +HtmlEntry: barter <<<{wikipedia}

                        Pronunciation

                        • {{a|RP}} {{IPA|/ˈbɑːtə(ɹ)/}}, {{X-SAMPA|/bA:t@(r)/}}
                        • {{a|US}} {{enPR|bärʹ-tər}}, {{IPA|/ˈbɑɹtə˞/}}, {{X-SAMPA|/bArt@`/}}
                        • @@ -519,10 +483,9 @@ From {{etyl|fro}} barater, of uncertain origin (maybe Celtic).
                        • swop
                        • trade
                        - +>>> ***book*** -book: -{wikipedia} +HtmlEntry: book <<<{wikipedia}

                        Pronunciation

                        • {{enPR|bo͝ok}}, {{IPA|/bʊk/}}, {{X-SAMPA|/bUk/}}
                        • {{audio|en-us-book.ogg|Audio (US)}} plural {{audio|en-us-books.ogg|Audio (US)}}
                        • @@ -827,19 +790,17 @@ A hard-cover book{en-noun}

                        References

                        -<references/>Category:1000 English basic wordsCategory:en:Poker---- -book: - +<references/>Category:1000 English basic wordsCategory:en:Poker---->>> +HtmlEntry: book <<<

                        Etymology

                        {{etyl|ang|enm}} {{term|boc|bōc|lang=ang}}

                        Noun

                        {enm-noun}
                        1. {{alternative form of|booke|lang=enm}}
                        -af:bookar:bookaz:bookzh-min-nan:bookbs:bookca:bookcs:bookcy:bookda:bookde:booket:bookel:bookes:bookeo:bookeu:bookfa:bookfr:bookgl:bookko:bookhy:bookhr:bookio:bookid:bookiu:bookzu:bookit:bookjv:bookkn:bookka:bookkk:booksw:bookku:bookky:booklo:booklv:booklt:bookli:bookhu:bookmk:bookmg:bookml:bookmy:bookfj:booknl:bookja:bookno:bookoc:bookkm:bookpl:bookpt:bookro:bookru:booksq:booksi:booksimple:bookso:booksr:bookfi:booksv:booktl:bookta:bookte:bookth:booktg:bookchr:booktr:bookug:bookuk:bookur:bookvi:bookzh:book +af:bookar:bookaz:bookzh-min-nan:bookbs:bookca:bookcs:bookcy:bookda:bookde:booket:bookel:bookes:bookeo:bookeu:bookfa:bookfr:bookgl:bookko:bookhy:bookhr:bookio:bookid:bookiu:bookzu:bookit:bookjv:bookkn:bookka:bookkk:booksw:bookku:bookky:booklo:booklv:booklt:bookli:bookhu:bookmk:bookmg:bookml:bookmy:bookfj:booknl:bookja:bookno:bookoc:bookkm:bookpl:bookpt:bookro:bookru:booksq:booksi:booksimple:bookso:booksr:bookfi:booksv:booktl:bookta:bookte:bookth:booktg:bookchr:booktr:bookug:bookuk:bookur:bookvi:bookzh:book>>> ***brown*** -brown: -{wikipedia}Various shades of brown.Brown is a common hair color.A glass of hot chocolate. +HtmlEntry: brown <<<{wikipedia}Various shades of brown.Brown is a common hair color.A glass of hot chocolate.

                        Etymology

                        {{etyl|enm|en}} {{term|broun|lang=enm}}, from {{etyl|ang|en}} {{term|brun|brÅ«n|lang=ang}} 'dark, shining', from {{proto|Germanic|brÅ«naz|lang=en}} (compare {{etyl|fy|-}} {{term|brún|lang=fy}}, {{etyl|nl|-}} {{term|bruin|lang=nl}}, German {{term|braun|lang=de}}), from {{proto|Indo-European|bÊ°ruhₓnos}} (compare Ancient Greek {{term|phrýnē}}, {{term|phrÅ·nos}} ‘toad’), enlargement of {{proto|Indo-European|bÊ°reu-|shiny, brown|title=}} (compare {{etyl|lt|-}} {{term|beras|bė́ras|lang=lt}} ‘brown’, Sanskrit {{term|babhrú}} ‘reddish-brown’ {{rfscript|Devanagari|lang=sa}}).

                        Pronunciation

                        @@ -939,10 +900,9 @@ brown:
                        • golding
                        • Appendix:Colors
                        -Category:1000 English basic wordsCategory:en:BrownsCategory:en:Colorsang:brownar:brownca:browncs:browncy:brownda:brownde:brownet:brownel:brownes:browneu:brownfa:brownfr:browngl:brownko:brownhy:brownhr:brownio:brownid:brownzu:brownit:brownkl:brownkn:brownkk:brownsw:brownku:brownli:brownhu:brownmg:brownml:brownmy:brownfj:brownnl:brownja:brownpl:brownpt:brownru:brownsimple:brownfi:brownsv:browntl:brownta:brownte:brownth:browntr:brownuk:brownvi:brownzh:brown -===business=== -business deal: - +Category:1000 English basic wordsCategory:en:BrownsCategory:en:Colorsang:brownar:brownca:browncs:browncy:brownda:brownde:brownet:brownel:brownes:browneu:brownfa:brownfr:browngl:brownko:brownhy:brownhr:brownio:brownid:brownzu:brownit:brownkl:brownkn:brownkk:brownsw:brownku:brownli:brownhu:brownmg:brownml:brownmy:brownfj:brownnl:brownja:brownpl:brownpt:brownru:brownsimple:brownfi:brownsv:browntl:brownta:brownte:brownth:browntr:brownuk:brownvi:brownzh:brown>>> +***business deal*** +HtmlEntry: business deal <<<

                        Noun

                        {{en-noun|sg=business deal}}
                        1. A particular instance of buying or selling
                        2. @@ -956,10 +916,9 @@ business deal:
                          • deal
                          • trade
                          -it:business deal +it:business deal>>> ***cat*** -cat: -{wikipedia}A domestic cat (1) +HtmlEntry: cat <<<{wikipedia}A domestic cat (1)

                          Pronunciation

                          • {{enPR|kăt}}, {{IPA|/kæt/|[kʲæʔ]}}, {{X-SAMPA|/k{t/}}
                          • {{audio|en-us-cat.ogg|Audio (US)}}
                          • @@ -1191,28 +1150,9 @@ This usage is common in speech but rarely appears in writing.
                          • tac, TAC
                          • TCA
                          -Category:1000 English basic wordsCategory:English terms with multiple etymologiesCategory:en:CatsCategory:en:Mammals---- -===cats=== -rain cats and dogs: - -

                          Etymology

                          -Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}} and {{term|δόξα|opinion, expectation|tr=doxa|lang=grc}}, but see Etymology in Citations -

                          Verb

                          -{{en-verb|rains cats and dogs|raining cats and dogs|rained cats and dogs|head=rain cats and dogs}} -
                          1. {idiomatic} To rain very heavily.
                          2. -
                          - -

                          Synonyms

                          -
                          • {{sense|to rain very heavily}} bucket, bucket down, chuck it down, rain buckets, rain pitchforks, pelt, piss down {{qualifier|coarse slang}}, pour, stream, teem
                          • -
                          - -

                          Anagrams

                          -
                          • rain dogs and cats
                          • -
                          -cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs +Category:1000 English basic wordsCategory:English terms with multiple etymologiesCategory:en:CatsCategory:en:Mammals---->>> ***connotation*** -connotation: - +HtmlEntry: connotation <<<

                          Pronunciation

                          • {{rhymes|eɪʃən}}
                          @@ -1245,10 +1185,9 @@ connotation:

                      External links

                      -Category:en:Semanticscs:connotationet:connotationel:connotationfa:connotationfr:connotationko:connotationio:connotationid:connotationkn:connotationhu:connotationmy:connotationno:connotationpl:connotationru:connotationsimple:connotationfi:connotationta:connotationtr:connotationvi:connotationzh:connotation +Category:en:Semanticscs:connotationet:connotationel:connotationfa:connotationfr:connotationko:connotationio:connotationid:connotationkn:connotationhu:connotationmy:connotationno:connotationpl:connotationru:connotationsimple:connotationfi:connotationta:connotationtr:connotationvi:connotationzh:connotation>>> ***craft*** -craft: -{{wikipedia|craft|dab=craft (disambiguation)}} +HtmlEntry: craft <<<{{wikipedia|craft|dab=craft (disambiguation)}}

                      Etymology

                      From {{etyl|enm|en}}, from {{etyl|ang|en}} {{term|cræft|physical strength, might, courage, science, skill, art, ability, talent, virtue, excellence, trade, handicraft, calling, work or product of art, hex, trick, fraud, deceit, machine, instrument|lang=ang}}, from {{proto|Germanic|kraftaz|power|lang=en}}, from {{proto|Indo-European|ger-|to turn, wind|lang=en}}. Cognate with {{etyl|frs|-}} {{term|craft|strength|lang=frs}}, {{etyl|fy|-}} {{term|krêft|strength|lang=fy}}, {{etyl|nl|-}} {{term|kracht|strength, force, power|lang=nl}}, {{etyl|de|-}} {{term|Kraft|strength, force, power|lang=de}}, {{etyl|sv|-}} {{term|kraft|power, force, drive, energy|lang=sv}}, {{etyl|is|-}} {{term|kraftur|power|lang=is}}.

                      Pronunciation

                      @@ -1329,10 +1268,9 @@ From {{etyl|enm|en}}, from {{etyl|ang|en}} {{term|cræft|physical strength,

                      References

                      • Krueger, Dennis (December 1982). "Why On Earth Do They Call It Throwing?" Studio Potter Vol. 11, Number 1.[http://www.studiopotter.org/articles/?art=art0001]
                      -Category:English invariant nounscs:craftcy:craftet:craftel:crafteo:craftfa:craftfr:craftko:craftio:craftid:craftkn:crafthu:craftmg:craftml:craftmy:craftnl:craftpl:craftru:craftsimple:craftfi:craftsv:craftta:craftte:craftvi:craftzh:craft +Category:English invariant nounscs:craftcy:craftet:craftel:crafteo:craftfa:craftfr:craftko:craftio:craftid:craftkn:crafthu:craftmg:craftml:craftmy:craftnl:craftpl:craftru:craftsimple:craftfi:craftsv:craftta:craftte:craftvi:craftzh:craft>>> ***crow*** -crow: -A bird; a crow: American crow{wikipedia} +HtmlEntry: crow <<American crow{wikipedia}

                      Pronunciation

                      • {{a|RP}} {{IPA|/kɹəʊ/}}, {{X-SAMPA|/kr@U/}}
                      • {{a|US}} {{enPR|krō}}, {{IPA|/kroʊ/}}, {{X-SAMPA|/kroU/}}
                      • @@ -1402,10 +1340,9 @@ A bird; a crow: American crow{wikipedia}
                      • To shout in exultation or defiance; to brag.
                      • To utter a sound expressive of joy or pleasure.
                    - -===current=== -current events: - +>>> +***current events*** +HtmlEntry: current events <<<

                    Noun

                    {{en-plural noun|head=current events|sg=current event}}
                    1. current affairs; those events and issues of interest currently found in the news.
                    2. @@ -1414,10 +1351,9 @@ current events:

                      See also

                      • current affairs
                      -am:current eventsang:current eventszh-min-nan:current eventset:current eventsel:current eventsfr:current eventsia:current eventskk:current eventsmg:current eventsru:current eventssd:current eventsst:current eventssu:current eventsta:current eventsth:current eventstt:current events +am:current eventsang:current eventszh-min-nan:current eventset:current eventsel:current eventsfr:current eventsia:current eventskk:current eventsmg:current eventsru:current eventssd:current eventsst:current eventssu:current eventsta:current eventsth:current eventstt:current events>>> ***day*** -day: -{{wikipedia|Day (disambiguation)}} +HtmlEntry: day <<<{{wikipedia|Day (disambiguation)}}

                      Alternative forms

                      • daie {{qualifier|archaic}}
                      @@ -1541,9 +1477,8 @@ From {{etyl|enm}} {{term|day|lang=enm}}, from {{etyl|ang}} {{term|dæg|d&ae
                      • d'ya
                      • yad
                      -Category:200 English basic wordsCategory:en:Time---- -day: - +Category:200 English basic wordsCategory:en:Time---->>> +HtmlEntry: day <<<

                      Etymology

                      {{etyl|ang|enm}} {{term|dæg|dæÄ¡|lang=ang}}

                      Noun

                      @@ -1554,10 +1489,9 @@ day:

                      Descendants

                      • English: day
                      ----- +---->>> ***deal*** -deal: - +HtmlEntry: deal <<<

                      Pronunciation

                      • {{enPR|dēl}}, {{IPA|/diːl/}}, {{X-SAMPA|/di:l/}}
                      • {{audio|en-us-deal.ogg|Audio (US)}}
                      • @@ -1746,26 +1680,9 @@ From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|dælan|
                      • lade
                      • lead
                      -Category:English irregular verbsCategory:English terms with multiple etymologies---- -business deal: - -

                      Noun

                      -{{en-noun|sg=business deal}} -
                      1. A particular instance of buying or selling
                      2. -
                        • "it was a package deal"
                        • -
                        • "I had no further trade with him"
                        • -
                        • "he's a master of the business deal"
                        • -
                        -
                      - -

                      Synonyms

                      -
                      • deal
                      • -
                      • trade
                      • -
                      -it:business deal +Category:English irregular verbsCategory:English terms with multiple etymologies---->>> ***December*** -December: - +HtmlEntry: December <<<

                      Alternative forms

                      • Decembre {{qualifier|obsolete}}
                      @@ -1801,10 +1718,9 @@ From {{etyl|enm}} {{term|decembre|lang=emn}}, from {{etyl|fro}} {{term|decembre|
                      • Undecimber
                      • {{list|en|Gregorian calendar months}}
                      ----- +---->>> ***denotation*** -denotation: -{wikipedia} +HtmlEntry: denotation <<<{wikipedia}

                      Etymology

                      From to denote (from {{etyl|frm}} denoter, from {{etyl|la}} denotare "denote, mark out", itself from de- "completely" + notare "to mark") + -ation

                      Pronunciation

                      @@ -1840,10 +1756,9 @@ From to denote (from {{etyl|frm}} denoter, from {{etyl|la}} denotare "denot
                      • detonation
                      • taeniodont
                      -pl:denotationpt:denotationru:denotationcs:denotationet:denotationfi:denotationta:denotationvi:denotationtr:denotationzh:denotation +pl:denotationpt:denotationru:denotationcs:denotationet:denotationfi:denotationta:denotationvi:denotationtr:denotationzh:denotation>>> ***dialect*** -dialect: -{wikipedia} +HtmlEntry: dialect <<<{wikipedia}

                      Etymology

                      From {{etyl|grc}} {{term|διάλεκτος|conversation, the language of a country or a place or a nation, the local idiom which derives from a dominant language|tr=diálektos|sc=polytonic}}, from {{term|διαλέγομαι|I participate in a dialogue|tr=dialégomai|sc=polytonic}}, from {{term|διά|inter, through|tr=diá|sc=polytonic}} + {{term|λέγω|I speak|tr=légō|sc=polytonic}}.

                      Pronunciation

                      @@ -1895,10 +1810,9 @@ From {{etyl|grc}} {{term|διάλεκτος|conversation, the language of a coun

                      Anagrams

                      • citadel, deltaic, edictal, lactide
                      ----- +---->>> ***dictionary*** -dictionary: -{{wikipedia|Dictionary|dab=Dictionary (disambiguation)}}A multi-volume Latin dictionary in the University Library of Graz. +HtmlEntry: dictionary <<<{{wikipedia|Dictionary|dab=Dictionary (disambiguation)}}A multi-volume Latin dictionary in the University Library of Graz.

                      Etymology

                      {{etyl|ML.|en}} {{term|dictionarium|lang=la}}, from {{etyl|la|en}} {{term|dictionarius|lang=la}}, from {{term|dictio|speaking|lang=la}}, from {{term|dictus|lang=la}}, perfect past participle of {{term|dico|dīcō|speak|lang=la}} + {{term|-arium|room, place|lang=la}}.

                      Pronunciation

                      @@ -1947,10 +1861,9 @@ Category:en:Reference works
                    3. {transitive} To add to a dictionary
                    4. {intransitive} To appear in a dictionary
                    -ar:dictionaryaz:dictionaryzh-min-nan:dictionarybg:dictionarybs:dictionarybr:dictionaryca:dictionarycs:dictionarycy:dictionaryda:dictionaryde:dictionaryet:dictionaryel:dictionaryes:dictionaryeo:dictionaryeu:dictionaryfa:dictionaryfr:dictionaryfy:dictionarygl:dictionaryko:dictionaryhy:dictionaryhi:dictionaryio:dictionaryid:dictionaryis:dictionaryit:dictionarykn:dictionaryka:dictionarykk:dictionarysw:dictionaryku:dictionarylo:dictionarylv:dictionarylb:dictionarylt:dictionaryli:dictionaryhu:dictionarymk:dictionarymg:dictionaryml:dictionarymy:dictionarynl:dictionaryja:dictionaryno:dictionaryoc:dictionarykm:dictionarytpi:dictionarypl:dictionarypt:dictionaryro:dictionaryru:dictionarysq:dictionarysimple:dictionarysl:dictionarysr:dictionarysu:dictionaryfi:dictionarysv:dictionarytl:dictionaryta:dictionaryte:dictionaryth:dictionarytg:dictionarytr:dictionaryuk:dictionaryur:dictionaryvi:dictionaryzh:dictionary +ar:dictionaryaz:dictionaryzh-min-nan:dictionarybg:dictionarybs:dictionarybr:dictionaryca:dictionarycs:dictionarycy:dictionaryda:dictionaryde:dictionaryet:dictionaryel:dictionaryes:dictionaryeo:dictionaryeu:dictionaryfa:dictionaryfr:dictionaryfy:dictionarygl:dictionaryko:dictionaryhy:dictionaryhi:dictionaryio:dictionaryid:dictionaryis:dictionaryit:dictionarykn:dictionaryka:dictionarykk:dictionarysw:dictionaryku:dictionarylo:dictionarylv:dictionarylb:dictionarylt:dictionaryli:dictionaryhu:dictionarymk:dictionarymg:dictionaryml:dictionarymy:dictionarynl:dictionaryja:dictionaryno:dictionaryoc:dictionarykm:dictionarytpi:dictionarypl:dictionarypt:dictionaryro:dictionaryru:dictionarysq:dictionarysimple:dictionarysl:dictionarysr:dictionarysu:dictionaryfi:dictionarysv:dictionarytl:dictionaryta:dictionaryte:dictionaryth:dictionarytg:dictionarytr:dictionaryuk:dictionaryur:dictionaryvi:dictionaryzh:dictionary>>> ***dog*** -dog: -{slim-wikipedia}A dog (a Labrador retriever) +HtmlEntry: dog <<<{slim-wikipedia}A dog (a Labrador retriever)

                    Alternative forms

                    • darg {{qualifier|dialectical}}
                    • dawg {{qualifier|dialectical}}
                    • @@ -2497,31 +2410,9 @@ From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound,

                      Anagrams

                      • god, God
                      -Category:1000 English basic wordsCategory:English three-letter words Category:en:Mammals---- -===dogs=== -rain cats and dogs: - -

                      Etymology

                      -Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}} and {{term|δόξα|opinion, expectation|tr=doxa|lang=grc}}, but see Etymology in Citations -

                      Verb

                      -{{en-verb|rains cats and dogs|raining cats and dogs|rained cats and dogs|head=rain cats and dogs}} -
                      1. {idiomatic} To rain very heavily.
                      2. -
                      - -

                      Synonyms

                      -
                      • {{sense|to rain very heavily}} bucket, bucket down, chuck it down, rain buckets, rain pitchforks, pelt, piss down {{qualifier|coarse slang}}, pour, stream, teem
                      • -
                      - -

                      Anagrams

                      -
                      • rain dogs and cats
                      • -
                      -cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs -===domain=== -Wiktionary:Public domain sources: -The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.Some scanned fascicles of Oxford English Dictionary under the title A New English Dictionary on Historical Principles by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240]. +Category:1000 English basic wordsCategory:English three-letter words Category:en:Mammals---->>> ***eagle*** -eagle: -Golden eagle (bird). +HtmlEntry: eagle <<Etymology {{etyl|enm}} {{term|egle|lang=enm}}, from {{etyl|xno}} {{term|egle|lang=xno}}, from {{etyl|fro}} {{term|aigle|lang=fro}}, from {{etyl|la}} {{term|aquila|lang=la}}. Displaced native Middle English {{term|earn|ern, earn, arn|lang=enm}}, from {{etyl|ang|-}} {{term|earn|lang=ang}}. More at {{term|erne|lang=en}}.

                      Pronunciation

                      @@ -2579,10 +2470,9 @@ Golden eagle (bird).

                      Anagrams

                      • aglee
                      -Category:en:Birds*Category:en:Golf---- +Category:en:Birds*Category:en:Golf---->>> ***elephant*** -elephant: - +HtmlEntry: elephant <<<

                      Etymology

                      {{etyl|enm}} {{term|elefant|lang=enm}}, {{term|elefaunt|lang=enm}}, from {{etyl|frm}} {{term|elephant|lang=frm}}, learned borrowing from {{etyl|la}} {{term|elephantus|lang=la}}, from {{etyl|grc}} {{term|ἐλέφας|sc=polytonic|tr=eléphās|lang=grc}} (gen. {{term|ἐλέφαντος|tr=eléphantos|lang=grc}}), compound of Berber {{recons|eḷu|lang=ber}} ‘elephant’ (compare Tamahaq (Tahaggart) {{term|êlu|lang=thv}}, (Ghat) {{term|alu|lang=taq}}) and {{etyl|egy}} {{term|𓍋𓃀𓅱𓌟|tr=ȝbw|sc=Egyp}} (ābu) ‘elephant; ivory’. More at {{l|en|ivory}}. Replaced Middle English {{term|olifant|lang=enm}}, which replaced Old English {{term|elpend|lang=la}}, {{term|olfend|lang=ang}}.

                      Pronunciation

                      @@ -2740,10 +2630,9 @@ elephant:
                      • {pedia}
                      • {{pedia|Elephant (disambiguation)}}
                      -Category:Paper sizes*---- +Category:Paper sizes*---->>> ***encyclopaedia*** -encyclopaedia: - +HtmlEntry: encyclopaedia <<<

                      Alternative forms

                      • encyclopædia (UK)
                      • encyclopedia (US, Canada)
                      • @@ -2763,10 +2652,9 @@ encyclopaedia:

                        See also

                        • Wikipedia
                        -zh-min-nan:encyclopaediacs:encyclopaediaet:encyclopaediael:encyclopaediaes:encyclopaediafr:encyclopaediaio:encyclopaediaid:encyclopaediait:encyclopaedialo:encyclopaediahu:encyclopaediamy:encyclopaediapl:encyclopaediaro:encyclopaediafi:encyclopaediata:encyclopaediatr:encyclopaediavi:encyclopaediazh:encyclopaedia +zh-min-nan:encyclopaediacs:encyclopaediaet:encyclopaediael:encyclopaediaes:encyclopaediafr:encyclopaediaio:encyclopaediaid:encyclopaediait:encyclopaedialo:encyclopaediahu:encyclopaediamy:encyclopaediapl:encyclopaediaro:encyclopaediafi:encyclopaediata:encyclopaediatr:encyclopaediavi:encyclopaediazh:encyclopaedia>>> ***encyclopedia*** -encyclopedia: -{wikipedia} +HtmlEntry: encyclopedia <<<{wikipedia}

                        Alternative forms

                        • encyclopædia
                        • {{qualifier|chiefly British}} encyclopaedia
                        • @@ -2809,97 +2697,9 @@ The spelling encyclopedia is standard in American English, preferred in

                          See also

                          • dictionary
                          - -===English=== -Appendix:English pronunciation: -The following tables show the IPA, SAMPA and enPR/AHD representations of English pronunciation, in both Received Pronunciation (UK) and General American (US). For vowels in other dialects, see IPA chart for English. -

                          Vowels

                          -The vowel table lists both monophthongs and diphthongs.{| {wikitable}! rowspan="2" | enPR<br/>(AHD)! colspan="2" | IPA! colspan="2" | SAMPA! rowspan="2" | Examples|-! RP! GA! RP! GA|-align="center"| {{enPRchar|ă}}| colspan="2" | {{IPAchar2|Near-open front unrounded vowel.ogg|æ}}| colspan="2" | <tt>{</tt>| bad, cat, ran|-align="center"| {{enPRchar|ăr}}| colspan="2" | {{IPAchar|æɹ}}| colspan="2" | <tt>{r\</tt>| carry|-align="center"| {{enPRchar|ā}}| colspan="2" | {{IPAchar|eɪ}}| colspan="2" | <tt>eI</tt>| bait, play, same|-align="center"| {{enPRchar|ä}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>A:</tt>| <tt>A</tt>| father|-align="center"| {{enPRchar|är}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| <tt>A:</tt>| <tt>Ar\</tt>| arm, bard, aria|-align="center"| {{enPRchar|âr}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| <tt>E@</tt>| <tt>Er\</tt>| hair, pear, there, scary|-align="center"| {{enPRchar|ĕ}}| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan="2" | <tt>E</tt>| bed, bet, end|-align="center"| {{enPRchar|ĕr}}| colspan="2" | {{IPAchar|ɛɹ}}| colspan="2" | <tt>Er\</tt>| merry|-align="center"| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| <tt>i:</tt>| <tt>i</tt>| ease, see|-align="center"| {{enPRchar|Ä­}}| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan="2" | <tt>I</tt>| city, bit|-align="center"| {{enPRchar|i}}<ref>Not an AHD symbol. Often written as AHD ē in Wiktionary entries.</ref>| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan="2" | <tt>i</tt>| city, very, ready|-align="center"| {{enPRchar|Ä­r}}| colspan="2" | {{IPAchar|ɪɹ}}| colspan="2" | <tt>Ir\</tt>| syrup, Sirius|-align="center"| {{enPRchar|Ä«}}| colspan="2" | {{IPAchar|aɪ}}| colspan="2" | <tt>aI</tt>| my, rise|-align="center"| {{enPRchar|îr}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| <tt>I@</tt>| <tt>Ir\</tt>| here, near, peer, serious|-align="center"| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>Q</tt>| <tt>A</tt>| not|-align="center"| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| <tt>@U</tt>| <tt>oU</tt>| go, hope, know|-align="center"| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| <tt>O@</tt>| <tt>or\, Or\</tt>| hoarse, glory|-align="center"| {{enPRchar|ô}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| <tt>O:</tt>| <tt>O</tt>| law, caught, saw|-align="center"| {{enPRchar|ôr}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| <tt>O:</tt>| <tt>Or\</tt>| horse, more, laureate|-align="center"| {{enPRchar|oi}}| colspan="2" | {{IPAchar|ɔɪ}}| colspan="2" | <tt>OI</tt>| boy, noise|-align="center"| {{enPRchar|o͝o, ŏŏ}}| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan="2" | <tt>U</tt>| put, foot|-align="center"| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| <tt>U@</tt>| <tt>Ur\</tt>| poor, tour, tourism|-align="center"| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| <tt>u:</tt>| <tt>u</tt>| lose, soon, through|-align="center"| {{enPRchar|ou}}| colspan="2" | {{IPAchar|aʊ}}| colspan="2" | <tt>aU</tt>| house, now|-align="center"| {{enPRchar|Å­}}| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan="2" | <tt>V</tt>| run, enough, up|-align="center"| {{enPRchar|ûr}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| <tt>3:</tt>| <tt>3`</tt>| fur, bird|-align="center"| {{enPRchar|ə}}| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}| colspan="2" | <tt>@</tt>| about|-align="center"| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| <tt>@</tt>| <tt>@`</tt>| enter|}<references/> -

                          Consonants

                          -{| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| <tt>b</tt>| but, able, cab, wobble, ebb|-| {{enPRchar|ch}}| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}<ref name=tiebar>May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}</ref>| <tt>tS</tt>| chat, teacher, inch, catch, nature|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| <tt>d</tt>| dot, idea, nod, fodder, odd|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| <tt>f</tt>| fan, left, leaf, enough, phase, graphic, epitaph|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|É¡}}| <tt>g</tt>| get, magnet, bag|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| <tt>h</tt>| ham|-| {{enPRchar|hw}}| {{IPAchar2|voiceless labio-velar fricative.ogg|ʍ (hw)}}<ref>Phonologists may deny that {{IPAchar|/ʍ/}} is a distinct phoneme, and instead use {{IPAchar|/hw/}}.</ref>| <tt>W</tt>| which|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />| <tt>dZ</tt>| joy, ajar, gin, agile, age, edge|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| <tt>k</tt>| cat, kit, queen, pique, choir, ache, tack|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| <tt>x</tt>| (Scottish) loch|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| <tt>l</tt>| left (before vowel of syllable)|-| {{enPRchar|l}}| {{IPAchar|lÌ© (əl)}}<ref name="cons">Phonologists may deny that {{IPAchar|/lÌ©, nÌ©, mÌ©/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.</ref>| <tt>l=</tt>| little|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| <tt>m</tt>| man, animal, him|-| {{enPRchar|m}}| {{IPAchar|mÌ© (əm)}}<ref name="cons"/>| <tt>m=</tt>| spasm, prism|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| <tt>n</tt>| note, ant, pan|-| {{enPRchar|n}}| {{IPAchar|nÌ© (ən)}}<ref name="cons"/>| <tt>n=</tt>| hidden|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| <tt>N</tt>| singer, ring|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| <tt>p</tt>| pen, spin, top, apple|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>| <tt>r\</tt>| run, very|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| <tt>s</tt>| set, list, pass, city, ice|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| <tt>S</tt>| she, ash, sure, ration|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| <tt>t</tt>| ton, stab, mat, attend, butt, ought|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| <tt>T</tt>| thin, nothing, moth|-| {{enPRchar|th}}| {{IPAchar2|voiced dental fricative.ogg|ð}}| <tt>D</tt>| this, father, clothe|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| <tt>v</tt>| voice, navel, save, of|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| <tt>w</tt>| wet|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| <tt>j</tt>| yes|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| <tt>z</tt>| zoo, quiz, fuzz, rose, xylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| <tt>Z</tt>| vision, treasure, beige|}<references/> -

                          Other symbols

                          -A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. {| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Indicates|-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)| <tt>"</tt> (<tt>"</tt>a)| primary stress|-| {{enPRchar|'}} (a{{enPRchar|'}})| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)| <tt>%</tt> (<tt>%</tt>a)| secondary stress, sometimes tertiary stress|-| a{{enPRchar|-}}a| a{{IPAchar|.}}a| a<tt>.</tt>a| division between syllables|}Note: The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme. -===Entry=== -Wiktionary:Entry layout explained: - -

                          Noun

                          -{en-noun} -
                          1. A piece of furniture to sleep on.
                          2. -
                          - -

                          References

                          - -
                          • The Oxford Paperback Dictionary
                          • -
                          -</pre> -

                          Variations for languages other than English

                          -Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.Some languages do have characteristics that require variation from the standard format. For links to these variations see Wiktionary:Language considerations. -Wiktionary:Entry layout explained: - -

                          Alternative forms

                          - -

                          Etymology

                          - -

                          Pronunciation

                          -
                          • Phonetic transcriptions
                          • -
                          • Audio files in any relevant dialects
                          • -
                          • Rhymes
                          • -
                          • Homophones
                          • -
                          • Hyphenation
                          • -
                          - -

                          Noun

                          -Declension -
                          1. Meaning 1
                          2. -
                            • Quotations
                            • -
                            -
                          3. Meaning 2
                          4. -
                            • Quotations
                            • -
                            -
                          - etc. -

                          Usage notes

                          - -

                          Synonyms

                          - -

                          Antonyms

                          - -

                          Derived terms

                          - -

                          Related terms

                          - -

                          References

                          - -

                          External links

                          - -

                          Verb

                          -Conjugation -
                          1. Meaning 1
                          2. -
                            • Quotations
                            • -
                            -
                          - etc. -

                          Usage notes

                          - -

                          Synonyms

                          - -

                          Antonyms

                          - -

                          Derived terms

                          - -

                          Related terms

                          - -

                          Descendants

                          - -

                          References

                          - -

                          External links

                          - -

                          Anagrams

                          ----- (Dividing line between languages) +>>> ***etymology*** -etymology: - +HtmlEntry: etymology <<<

                          Etymology

                          From {{etyl|enm}} {{term|etimologie|lang=enm}}, from {{etyl|fro}} {{term|ethimologie|lang=fro}}, from {{etyl|la}} {{term|etymologia|lang=la}}, from {{etyl|grc}} {{term|ἐτυμολογία|sc=polytonic|tr=etumologia|lang=grc}}, from {{term|ἔτυμον|true sense|sc=polytonic|tr=etumon}} and {{term|-λογία|study of|sc=polytonic|tr=-logia}} (from {{term|λόγος|sc=polytonic|tr=logos}}).

                          Pronunciation

                          @@ -2940,100 +2740,9 @@ From {{etyl|enm}} {{term|etimologie|lang=enm}}, from {{etyl|fro}} {{term|ethimol
                        • {{R:Dictionary.com|etymology}}
                        • {{R:WordNet 2003|etymology}}
                        -Category:English words suffixed with -ologyCategory:en:Linguisticsar:etymologyast:etymologyca:etymologyco:etymologycy:etymologyet:etymologyel:etymologyes:etymologyeo:etymologyfa:etymologyfr:etymologyko:etymologyio:etymologyid:etymologyit:etymologykn:etymologyli:etymologyhu:etymologymg:etymologyml:etymologymy:etymologynl:etymologyja:etymologyno:etymologyoc:etymologypl:etymologypt:etymologyscn:etymologysimple:etymologyfi:etymologysv:etymologyta:etymologyte:etymologyth:etymologytr:etymologyvi:etymologyzh:etymology -===events=== -current events: - -

                        Noun

                        -{{en-plural noun|head=current events|sg=current event}} -
                        1. current affairs; those events and issues of interest currently found in the news.
                        2. -
                        - -

                        See also

                        -
                        • current affairs
                        • -
                        -am:current eventsang:current eventszh-min-nan:current eventset:current eventsel:current eventsfr:current eventsia:current eventskk:current eventsmg:current eventsru:current eventssd:current eventsst:current eventssu:current eventsta:current eventsth:current eventstt:current events -===explained=== -Wiktionary:Entry layout explained: - -

                        Noun

                        -{en-noun} -
                        1. A piece of furniture to sleep on.
                        2. -
                        - -

                        References

                        - -
                        • The Oxford Paperback Dictionary
                        • -
                        -</pre> -

                        Variations for languages other than English

                        -Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.Some languages do have characteristics that require variation from the standard format. For links to these variations see Wiktionary:Language considerations. -Wiktionary:Entry layout explained: - -

                        Alternative forms

                        - -

                        Etymology

                        - -

                        Pronunciation

                        -
                        • Phonetic transcriptions
                        • -
                        • Audio files in any relevant dialects
                        • -
                        • Rhymes
                        • -
                        • Homophones
                        • -
                        • Hyphenation
                        • -
                        - -

                        Noun

                        -Declension -
                        1. Meaning 1
                        2. -
                          • Quotations
                          • -
                          -
                        3. Meaning 2
                        4. -
                          • Quotations
                          • -
                          -
                        - etc. -

                        Usage notes

                        - -

                        Synonyms

                        - -

                        Antonyms

                        - -

                        Derived terms

                        - -

                        Related terms

                        - -

                        References

                        - -

                        External links

                        - -

                        Verb

                        -Conjugation -
                        1. Meaning 1
                        2. -
                          • Quotations
                          • -
                          -
                        - etc. -

                        Usage notes

                        - -

                        Synonyms

                        - -

                        Antonyms

                        - -

                        Derived terms

                        - -

                        Related terms

                        - -

                        Descendants

                        - -

                        References

                        - -

                        External links

                        - -

                        Anagrams

                        ----- (Dividing line between languages) -===false=== -false friend: -{{was wotd|2007|May|4}}{wikipedia} +Category:English words suffixed with -ologyCategory:en:Linguisticsar:etymologyast:etymologyca:etymologyco:etymologycy:etymologyet:etymologyel:etymologyes:etymologyeo:etymologyfa:etymologyfr:etymologyko:etymologyio:etymologyid:etymologyit:etymologykn:etymologyli:etymologyhu:etymologymg:etymologyml:etymologymy:etymologynl:etymologyja:etymologyno:etymologyoc:etymologypl:etymologypt:etymologyscn:etymologysimple:etymologyfi:etymologysv:etymologyta:etymologyte:etymologyth:etymologytr:etymologyvi:etymologyzh:etymology>>> +***false friend*** +HtmlEntry: false friend <<<{{was wotd|2007|May|4}}{wikipedia}

                        Pronunciation

                        • {{a|RP}} {{IPA|/ˌfɒls ˈfrɛnd/|/ˌfɔːls ˈfrɛnd/}}
                        • {{a|US}} {{IPA|/ˌfɑːls ˈfrɛnd/}}
                        • @@ -3065,35 +2774,9 @@ false friend:
                          • cognate
                          • false cognate
                          -fr:false friendid:false friendpl:false friendsv:false friend -===FAQ=== -Help:FAQ: -Q: I see a bunch of articles that have no language specified, but they are clearly written for English terms. That makes sense. Should I remove ==English== wherever I see it then?A: No. It is very much a required heading.The ==English== header is not assumed. It cannot be, since we aim to include "all words." Also, it reminds people that they can enter other languages. -
                          • Some more reasons why "==English==" is required:
                          • -
                            1. Introduces newcomers to wiki* syntax
                            2. -
                            3. Indicates (by implication) to newcomers that a single entry can have more than one language
                            4. -
                            5. Indicates which parts are English
                            6. -
                            7. It reminds new contributors that they can enter words and definitions of other languages.
                            8. -
                            9. The absence of the English heading is an indication that the person entering it is new, and the article probably needs cleanup.
                            10. -
                            -
                          -
                            1. The presence of the English heading makes it readily apparent how another language definition can be added to a page.
                            2. -
                            3. The presence of the English heading makes parsing articles by external tools easier. (The point of Wiktionary is to provide electronic access to everyone, everywhere, provided they extend the same courtesy to their derived works. There is nothing to say that we should arbitrarily make it more difficult for programs to interpret.)
                            4. -
                            5. The presence of the English heading makes parsing articles by internal "bots" easier/possible.
                            6. -
                            -
                          - -===FDL=== -GNU FDL: -{wikipedia} -

                          {initialism}

                          -GNU FDL -
                          1. GNU Free Documentation License
                          2. -
                          -pl:GNU FDL +fr:false friendid:false friendpl:false friendsv:false friend>>> ***February*** -February: - +HtmlEntry: February <<<

                          Etymology

                          Re-Latinized from {{etyl|enm}} {{term|feoverel|lang=enm}}, from {{etyl|fro}} {{term|feverier|lang=fro}}, from {{etyl|la}} {{term|februarius|februārius|lang=la}}, of the month of purification, from februa, the Roman festival of purification, plural of {{term|februum|lang=la}}; perhaps from {{etyl|la}} {{term|febris|fever|lang=la}}, from Proto-Indo-European base *dhegh-, to burn.

                          Pronunciation

                          @@ -3133,10 +2816,9 @@ Re-Latinized from {{etyl|enm}} {{term|feoverel|lang=enm}}, from {{etyl|fro}} {{t

                          See also

                          • {{list|en|Gregorian calendar months}}
                          -ast:Februaryaz:Februaryzh-min-nan:Februarybe:Februarycs:Februaryco:Februarycy:Februaryda:Februaryde:Februaryet:Februaryel:Februaryes:Februaryeo:Februaryeu:Februaryfr:Februaryfy:Februaryga:Februarygl:Februaryko:Februaryhy:Februaryhr:Februaryio:Februaryid:Februaryis:Februaryit:Februarykl:Februaryka:Februarycsb:Februarykk:Februaryku:Februarylo:Februaryla:Februarylv:Februarylb:Februarylt:Februaryln:Februaryhu:Februarymk:Februaryml:Februarymy:Februarynl:Februaryja:Februaryno:Februaryoc:Februaryom:Februaryuz:Februarykm:Februarypl:Februarypt:Februaryro:Februaryru:Februaryscn:Februarysimple:Februaryso:Februarysr:Februaryfi:Februarysv:Februaryta:Februaryth:Februaryti:Februarytg:Februarychr:Februarytr:Februarytk:Februaryuk:Februaryvi:Februaryvo:Februaryzh:February +ast:Februaryaz:Februaryzh-min-nan:Februarybe:Februarycs:Februaryco:Februarycy:Februaryda:Februaryde:Februaryet:Februaryel:Februaryes:Februaryeo:Februaryeu:Februaryfr:Februaryfy:Februaryga:Februarygl:Februaryko:Februaryhy:Februaryhr:Februaryio:Februaryid:Februaryis:Februaryit:Februarykl:Februaryka:Februarycsb:Februarykk:Februaryku:Februarylo:Februaryla:Februarylv:Februarylb:Februarylt:Februaryln:Februaryhu:Februarymk:Februaryml:Februarymy:Februarynl:Februaryja:Februaryno:Februaryoc:Februaryom:Februaryuz:Februarykm:Februarypl:Februarypt:Februaryro:Februaryru:Februaryscn:Februarysimple:Februaryso:Februarysr:Februaryfi:Februarysv:Februaryta:Februaryth:Februaryti:Februarytg:Februarychr:Februarytr:Februarytk:Februaryuk:Februaryvi:Februaryvo:Februaryzh:February>>> ***floccinaucinihilipilification*** -floccinaucinihilipilification: -{wikiquote} +HtmlEntry: floccinaucinihilipilification <<<{wikiquote}

                          Etymology

                          A jocular coinage, apparently by pupils at Eton, combining a number of roughly synonymous Latin stems. {{etyl|la}} flocci, from floccus, a wisp or piece of wool + nauci, from naucum, a trifle + nihili, from the {{etyl|la}} pronoun, {{term|nihil|nothing|lang=la}} + pili, from pilus, a hair, something insignificant (all therefore having the sense of "pettiness" or "nothing") + -fication. "Flocci non facio" was a Latin expression of indifference, literally "I do not make a straw of...".

                          Pronunciation

                          @@ -3162,10 +2844,9 @@ Often cited as the longest non-technical word in the English language, being one

                          Related terms

                          • floccinaucinihilipilificate
                          - +>>> ***free*** -free: -{{wikipedia|dab=free}} +HtmlEntry: free <<<{{wikipedia|dab=free}}

                          Etymology

                          {{etyl|enm}} {{term|fre|lang=enm}}, from {{etyl|ang}} {{term|freo|frēo|lang=ang}}.

                          Pronunciation

                          @@ -3330,10 +3011,9 @@ A sign advertising free beer (obtainable without payment).A "buy one
                          • {{l|en|fere}}
                          • {{l|en|reef}}
                          -Category:1000 English basic wordsCategory:Entries which need Hebrew vowelsCategory:en:Moneyaf:freear:freecs:freecy:freeda:freede:freeet:freeel:freees:freeeo:freefa:freefr:freefy:freeko:freehy:freehi:freeio:freeid:freeit:freekn:freeka:freekk:freesw:freeku:freelo:freela:freelt:freeli:freehu:freemg:freeml:freemy:freenl:freeja:freeno:freepl:freept:freeru:freesimple:freesd:freesk:freefi:freesv:freetl:freeta:freete:freeth:freetr:freeuk:freevi:freewa:freezh:free -===freedom=== -freedom of speech: -{{wikipedia|Freedom of speech}}{{wikinews|Category:Free speech}}{{commons|Category:Freedom of speech}}{{wikiquote|Freedom of speech}} +Category:1000 English basic wordsCategory:Entries which need Hebrew vowelsCategory:en:Moneyaf:freear:freecs:freecy:freeda:freede:freeet:freeel:freees:freeeo:freefa:freefr:freefy:freeko:freehy:freehi:freeio:freeid:freeit:freekn:freeka:freekk:freesw:freeku:freelo:freela:freelt:freeli:freehu:freemg:freeml:freemy:freenl:freeja:freeno:freepl:freept:freeru:freesimple:freesd:freesk:freefi:freesv:freetl:freeta:freete:freeth:freetr:freeuk:freevi:freewa:freezh:free>>> +***freedom of speech*** +HtmlEntry: freedom of speech <<<{{wikipedia|Freedom of speech}}{{wikinews|Category:Free speech}}{{commons|Category:Freedom of speech}}{{wikiquote|Freedom of speech}}

                          Etymology

                          {rfe}

                          Pronunciation

                          @@ -3369,10 +3049,9 @@ freedom of speech:

                          See also

                          • {pedia}
                          -Category:en:Freedom of speechde:freedom of speechet:freedom of speechfr:freedom of speechpl:freedom of speechfi:freedom of speechta:freedom of speech +Category:en:Freedom of speechde:freedom of speechet:freedom of speechfr:freedom of speechpl:freedom of speechfi:freedom of speechta:freedom of speech>>> ***Friday*** -Friday: - +HtmlEntry: Friday <<<

                          Etymology

                          {{etyl|ang}} {{term|frigedæg|frÄ«Ä¡edæÄ¡|lang=ang}}. Compound of frÄ«Ä¡e and dæÄ¡ "day".Old Norse Frigg (genitive Friggjar), Old Saxon Fri, and Old English Frig are derived from Common Germanic Frijjō.[5] Frigg is cognate with Sanskrit prÄ«yā́ which means "wife."[5] The root also appears in Old Saxon fri which means "beloved lady", in Swedish as fria ("to propose for marriage") and in Icelandic as frjá which means "to love."A calque of Latin dies Veneris, via an association of the goddess Frigg with the Roman goddess of love Venus.

                          Pronunciation

                          @@ -3451,45 +3130,9 @@ Friday:

                          Anagrams

                          • fraidy
                          -af:Fridayast:Fridayaz:Fridaybs:Fridaycs:Fridaycy:Fridayda:Fridayde:Fridayet:Fridayel:Fridayes:Fridayeo:Fridayeu:Fridayfa:Fridayfr:Fridayga:Fridaygl:Fridayko:Fridayhy:Fridayhr:Fridayio:Fridayid:Fridayit:Fridaykl:Fridaykn:Fridayka:Fridaykk:Fridaysw:Fridayku:Fridaylo:Fridayla:Fridaylv:Fridaylb:Fridaylt:Fridayhu:Fridaymk:Fridaymg:Fridayml:Fridaymn:Fridaymy:Fridaynl:Fridayja:Fridayno:Fridaynn:Fridayoc:Fridaykm:Fridaypl:Fridaypt:Fridayro:Fridayru:Fridaysimple:Fridaysd:Fridayfi:Fridaysv:Fridaytl:Fridayta:Fridayte:Fridaytg:Fridaytr:Fridayuk:Fridayvi:Fridayvo:Fridayzh:Friday -===friend=== -false friend: -{{was wotd|2007|May|4}}{wikipedia} -

                          Pronunciation

                          -
                          • {{a|RP}} {{IPA|/ˌfɒls ˈfrɛnd/|/ˌfɔːls ˈfrɛnd/}}
                          • -
                          • {{a|US}} {{IPA|/ˌfɑːls ˈfrɛnd/}}
                          • -
                          • {{audio|en-us-false friend.ogg|Audio (US)}}
                          • -
                          - -

                          Noun

                          -{{en-noun|sg=false friend}} -
                          1. {{linguistics|idiomatic}} A word in a foreign language bearing a deceptive resemblance to a word in one's own language.
                          2. -
                          - -

                          Usage notes

                          -
                          • Examples:
                          • -
                            • The French nous demandons means "we ask", but sounds like "we demand", which can turn negotiation into confrontation.
                            • -
                            • The Spanish word embarazada means "pregnant", not "embarrassed" &mdash; "Estoy embarazada" means "I am pregnant", not "I am embarrassed".
                            • -
                            • The German word will (want) is not a future tense marker &mdash; "Ich will gehen" means "I want to go", not "I will go".
                            • -
                              • Same for Dutch and Afrikaans, "Ik wil gaan" and "Ek wil gaan" mean "I want to go".
                              • -
                              -
                            • The Italian word triviale (vulgar) is written almost like trivial, but the two words share only a common Latin root (trivium in Latin means crossroad) and no longer any meaning; "Questo è triviale" means "This is in bad taste", not "This is obvious".
                            • -
                            • The Danish word gift does not mean gift as in present, but can mean a verb form of to marry; Han er gift means He is married. The word for gift is gave, which is close to the past tense of the verb giver. If du gav en gave, you gave a gift. Likewise, if du gav en gift, you actually gave poison.
                            • -
                            -
                          - -

                          Hyponyms

                          -
                          • partial false friend
                          • -
                          - -

                          See also

                          -
                          • cognate
                          • -
                          • false cognate
                          • -
                          -fr:false friendid:false friendpl:false friendsv:false friend +af:Fridayast:Fridayaz:Fridaybs:Fridaycs:Fridaycy:Fridayda:Fridayde:Fridayet:Fridayel:Fridayes:Fridayeo:Fridayeu:Fridayfa:Fridayfr:Fridayga:Fridaygl:Fridayko:Fridayhy:Fridayhr:Fridayio:Fridayid:Fridayit:Fridaykl:Fridaykn:Fridayka:Fridaykk:Fridaysw:Fridayku:Fridaylo:Fridayla:Fridaylv:Fridaylb:Fridaylt:Fridayhu:Fridaymk:Fridaymg:Fridayml:Fridaymn:Fridaymy:Fridaynl:Fridayja:Fridayno:Fridaynn:Fridayoc:Fridaykm:Fridaypl:Fridaypt:Fridayro:Fridayru:Fridaysimple:Fridaysd:Fridayfi:Fridaysv:Fridaytl:Fridayta:Fridayte:Fridaytg:Fridaytr:Fridayuk:Fridayvi:Fridayvo:Fridayzh:Friday>>> ***GDP*** -GDP: -{{wikipedia|GDP (disambiguation)}} +HtmlEntry: GDP <<<{{wikipedia|GDP (disambiguation)}}

                          {initialism}

                          GDP
                          1. {economics} gross domestic product
                          2. @@ -3504,18 +3147,16 @@ GDP:
                            • GNP
                            • GTP
                            -cs:GDPcy:GDPde:GDPet:GDPel:GDPko:GDPid:GDPhe:GDPkk:GDPlo:GDPhu:GDPmy:GDPja:GDPpl:GDPru:GDPsk:GDPfi:GDPta:GDPtr:GDPvi:GDP -===GNU=== -GNU FDL: -{wikipedia} +cs:GDPcy:GDPde:GDPet:GDPel:GDPko:GDPid:GDPhe:GDPkk:GDPlo:GDPhu:GDPmy:GDPja:GDPpl:GDPru:GDPsk:GDPfi:GDPta:GDPtr:GDPvi:GDP>>> +***GNU FDL*** +HtmlEntry: GNU FDL <<<{wikipedia}

                            {initialism}

                            GNU FDL
                            1. GNU Free Documentation License
                            -pl:GNU FDL -===grain=== -grain of salt: -{wikipedia} +pl:GNU FDL>>> +***grain of salt*** +HtmlEntry: grain of salt <<<{wikipedia}

                            Etymology

                            From Latin {{term|cum grano salis}}, literally with a grain of salt, figuratively with a bit of common sense.

                            Noun

                            @@ -3532,10 +3173,9 @@ From Latin {{term|cum grano salis}}, literally with a grain of salt, fi

                            See also

                            • face value
                            -et:grain of saltid:grain of salt +et:grain of saltid:grain of salt>>> ***gratis*** -gratis: - +HtmlEntry: gratis <<<

                            Etymology

                            From {{etyl|la}} gratis.

                            Pronunciation

                            @@ -3564,18 +3204,9 @@ From {{etyl|la}} gratis.

                            See also

                            • libre
                            -Category:English terms derived from LatinCategory:en:Economics---- -===guide=== -pronunciation guide: - -

                            Noun

                            -{{en-noun|sg=pronunciation guide}} -
                            1. {countable} A table in a reference work explaining the symbols that it uses to represent the pronunciation of its entries.
                            2. -
                            -pt:pronunciation guideru:pronunciation guide +Category:English terms derived from LatinCategory:en:Economics---->>> ***head*** -head: -{{wikipedia|Head|dab=Head (disambiguation)}}{{rfc|still missing some basic dictionary definitions: see talk page}} +HtmlEntry: head <<<{{wikipedia|Head|dab=Head (disambiguation)}}{{rfc|still missing some basic dictionary definitions: see talk page}}

                            Alternative forms

                            • {{l|en|heed}} {{qualifier|obsolete}}, {{l|en|hed}} {{qualifier|obsolete}}
                            @@ -3883,10 +3514,9 @@ From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|la

                            Anagrams

                            • DHEA, hade
                            -Category:1000 English basic wordsCategory:en:Anatomy---- -===Help=== -Help:FAQ: -Q: I see a bunch of articles that have no language specified, but they are clearly written for English terms. That makes sense. Should I remove ==English== wherever I see it then?A: No. It is very much a required heading.The ==English== header is not assumed. It cannot be, since we aim to include "all words." Also, it reminds people that they can enter other languages. +Category:1000 English basic wordsCategory:en:Anatomy---->>> +***Help:FAQ*** +HtmlEntry: Help:FAQ <<
                          3. Some more reasons why "==English==" is required:
                            1. Introduces newcomers to wiki* syntax
                            2. Indicates (by implication) to newcomers that a single entry can have more than one language
                            3. @@ -3900,10 +3530,9 @@ Q: I see a bunch of articles that have no language specified, but they are clear
                            4. The presence of the English heading makes parsing articles by internal "bots" easier/possible.
                        - +>>> ***hour*** -hour: - +HtmlEntry: hour <<<

                        Alternative forms

                        • hower {{qualifier|archaic}}
                        @@ -3984,10 +3613,9 @@ hour:

                        Statistics

                        • {{rank|thousand|looking|John|366|hour|air|reason|feel}}
                        -Category:1000 English basic wordsCategory:en:Timeang:hourar:hourzh-min-nan:hourbs:hourca:hourcs:hourcy:hourda:hourde:houret:hourel:houres:houreo:houreu:hourfa:hourfr:hourko:hourhy:hourhr:hourio:hourid:hourit:hourkn:hourkk:hoursw:hourku:hourky:hourlo:hourlt:hourli:hourhu:hourmg:hourml:hourmy:hourfj:hournl:hourja:hourno:houroc:hourpl:hourpt:hourro:hourru:hoursq:hoursimple:hourfi:hoursv:hourta:hourte:hourth:hourtg:hourtr:houruk:hourug:hourvi:hourzh:hour +Category:1000 English basic wordsCategory:en:Timeang:hourar:hourzh-min-nan:hourbs:hourca:hourcs:hourcy:hourda:hourde:houret:hourel:houres:houreo:houreu:hourfa:hourfr:hourko:hourhy:hourhr:hourio:hourid:hourit:hourkn:hourkk:hoursw:hourku:hourky:hourlo:hourlt:hourli:hourhu:hourmg:hourml:hourmy:hourfj:hournl:hourja:hourno:houroc:hourpl:hourpt:hourro:hourru:hoursq:hoursimple:hourfi:hoursv:hourta:hourte:hourth:hourtg:hourtr:houruk:hourug:hourvi:hourzh:hour>>> ***hyponym*** -hyponym: - +HtmlEntry: hyponym <<<

                        Etymology

                        {{confix|hypo|onym}}

                        Pronunciation

                        @@ -4020,10 +3648,9 @@ hyponym:
                        • {pedia}
                        • troponym, the corresponding idea, as applied to verbs.
                        ----- +---->>> ***January*** -January: - +HtmlEntry: January <<<

                        Etymology

                        Re-Latinized from {{etyl|enm}} {{term|Ieneuer|lang=enm}}, from {{etyl|xno}} {{term|genever|lang=xno}}, from {{etyl|la}} {{term|ianuarius|iānuārius|(month) of Janus|lang=la}}, perhaps from Proto-Indo-European base *ei-, "to go".

                        Pronunciation

                        @@ -4064,29 +3691,9 @@ Re-Latinized from {{etyl|enm}} {{term|Ieneuer|lang=enm}}, from {{etyl|xno}} {{te

                        See also

                        • {{list|en|Gregorian calendar months}}
                        -Category:English eponymsar:Januaryast:Januaryaz:Januaryzh-min-nan:Januarybe:Januarybr:Januarycs:Januarycy:Januaryda:Januaryde:Januaryet:Januaryel:Januaryes:Januaryeo:Januaryeu:Januaryfa:Januaryfr:Januaryfy:Januaryga:Januarygl:Januaryko:Januaryhy:Januaryhr:Januaryio:Januaryid:Januaryiu:Januaryis:Januaryit:Januarykl:Januaryka:Januarycsb:Januarykk:Januarysw:Januaryku:Januarylo:Januarylv:Januarylb:Januarylt:Januaryln:Januaryhu:Januarymg:Januaryml:Januarymy:Januarynl:Januaryja:Januaryno:Januaryoc:Januaryom:Januaryuz:Januarykm:Januarypl:Januarypt:Januaryro:Januaryru:Januarysimple:Januaryso:Januarysr:Januaryfi:Januarysv:Januaryta:Januaryte:Januarytg:Januarytr:Januaryuk:Januaryvi:Januaryvo:Januaryzh:January -===Julius=== -Pope Julius: - -

                        Alternative forms

                        -
                        • Pope July
                        • -
                        • Pope Julio
                        • -
                        - -

                        Etymology

                        -Unknown. Presumably named after Pope Julius II, the Warrior Pope. -

                        Proper noun

                        -{en-proper noun} -
                        1. {obsolete} A sixteenth-century gambling card game about which little is known.
                        2. -
                          • {{quote-book|year=1525|author=John Skelton|url=http://books.google.com/books?id=H1g1AAAAMAAJ|title=Speke, parrot|passage=Of Pope Julius cardys he ys chefe cardynall.}}
                          • -
                          • {{quote-book|year=1532|date=November 30|title=Privy Purse Expences of King Henry VIII, 30 Novembre 1532|passage=Item the laste day delived unto the kings grace whiche his grace lost at pope July game wt my lady marquess and m Weston xvj cor}}
                          • -
                          • {{quote-book|year={{circa2|1596}}|author=Sir John Harington|title=A Treatise on Playe|quoted_in=Nugae antiquae|year_published=1804|passage=Pope Julio (if I fail not in the name, and sure I am that there is a game of the cards after his name) was a great and wary player, a great vertue in a man of his profession}}
                          • -
                          -
                        -Category:en:Card games +Category:English eponymsar:Januaryast:Januaryaz:Januaryzh-min-nan:Januarybe:Januarybr:Januarycs:Januarycy:Januaryda:Januaryde:Januaryet:Januaryel:Januaryes:Januaryeo:Januaryeu:Januaryfa:Januaryfr:Januaryfy:Januaryga:Januarygl:Januaryko:Januaryhy:Januaryhr:Januaryio:Januaryid:Januaryiu:Januaryis:Januaryit:Januarykl:Januaryka:Januarycsb:Januarykk:Januarysw:Januaryku:Januarylo:Januarylv:Januarylb:Januarylt:Januaryln:Januaryhu:Januarymg:Januaryml:Januarymy:Januarynl:Januaryja:Januaryno:Januaryoc:Januaryom:Januaryuz:Januarykm:Januarypl:Januarypt:Januaryro:Januaryru:Januarysimple:Januaryso:Januarysr:Januaryfi:Januarysv:Januaryta:Januaryte:Januarytg:Januarytr:Januaryuk:Januaryvi:Januaryvo:Januaryzh:January>>> ***July*** -July: - +HtmlEntry: July <<<

                        Etymology

                        {{etyl|enm}} {{term|iulius|lang=enm}}, from {{etyl|xno}} {{term|julie|lang=xno}}, from {{etyl|fro}} {{term|jule|lang=fro}}, from {{etyl|la}} {{term|iulius|iūlius|lang=la}} (Gaius Julius Caesar's month), perhaps a contraction of *Iovilios, "descended from Jove", from {{etyl|la}} {{term|Iuppiter|lang=la}}, from Proto-Indo-European *dyeu-pəter-, vocative case of godfather, from Proto-Indo-European *deiw-os, god, + *pəter, father

                        Pronunciation

                        @@ -4132,10 +3739,9 @@ July:
                      • July-flower
                      • {{list|en|Gregorian calendar months}}
                      -Category:English eponymsast:Julyaz:Julyzh-min-nan:Julycs:Julycy:Julyda:Julyde:Julyet:Julyel:Julyes:Julyeo:Julyeu:Julyfa:Julyfr:Julyga:Julygl:Julyko:Julyhy:Julyhr:Julyio:Julyid:Julyiu:Julyis:Julyit:Julykl:Julyka:Julycsb:Julykk:Julysw:Julyku:Julylo:Julylv:Julylb:Julylt:Julyhu:Julymg:Julyml:Julymy:Julynl:Julyja:Julyno:Julyoc:Julyom:Julyuz:Julykm:Julypl:Julypt:Julyro:Julyru:Julytn:Julysimple:Julyso:Julysr:Julyfi:Julysv:Julyth:Julytg:Julyuk:Julyvo:Julyzh:July +Category:English eponymsast:Julyaz:Julyzh-min-nan:Julycs:Julycy:Julyda:Julyde:Julyet:Julyel:Julyes:Julyeo:Julyeu:Julyfa:Julyfr:Julyga:Julygl:Julyko:Julyhy:Julyhr:Julyio:Julyid:Julyiu:Julyis:Julyit:Julykl:Julyka:Julycsb:Julykk:Julysw:Julyku:Julylo:Julylv:Julylb:Julylt:Julyhu:Julymg:Julyml:Julymy:Julynl:Julyja:Julyno:Julyoc:Julyom:Julyuz:Julykm:Julypl:Julypt:Julyro:Julyru:Julytn:Julysimple:Julyso:Julysr:Julyfi:Julysv:Julyth:Julytg:Julyuk:Julyvo:Julyzh:July>>> ***June*** -June: - +HtmlEntry: June <<<

                      Etymology

                      From {{etyl|enm|en}} {{term|jun|lang=enm}}, {{term|june|lang=enm}}, re-Latinized from {{etyl|enm|en}} {{term|juyng|lang=enm}}, from {{etyl|fro|en}} {{term|juing|lang=fro}}, from {{etyl|la|en}} {{term|iunius|iÅ«nius|lang=la}}, the month of the goddess {{term|Iuno|Juno|lang=la}}, perhaps from {{proto|Indo-European|yuwnÌ¥kós|lang=en}}, from {{proto|Indo-European|yew-|vital force, youthful vigor|lang=en|title=}}.

                      Pronunciation

                      @@ -4174,98 +3780,19 @@ From {{etyl|enm|en}} {{term|jun|lang=enm}}, {{term|june|lang=enm}}, re-Latinized
                      • June solstice
                      • June sucker
                      • Juneteenth
                      • -
                      • June War
                      • -
                      • June Week
                      • -
                      • Junie
                      • -
                      • mid-June
                      • -
                      • {{w|Movement 2 June}}
                      • -
                      -{rel-bottom} -

                      See also

                      -
                      • {{list|en|Gregorian calendar months}}
                      • -
                      ----- -===layout=== -Wiktionary:Entry layout explained: - -

                      Noun

                      -{en-noun} -
                      1. A piece of furniture to sleep on.
                      2. -
                      - -

                      References

                      - -
                      • The Oxford Paperback Dictionary
                      • -
                      -</pre> -

                      Variations for languages other than English

                      -Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.Some languages do have characteristics that require variation from the standard format. For links to these variations see Wiktionary:Language considerations. -Wiktionary:Entry layout explained: - -

                      Alternative forms

                      - -

                      Etymology

                      - -

                      Pronunciation

                      -
                      • Phonetic transcriptions
                      • -
                      • Audio files in any relevant dialects
                      • -
                      • Rhymes
                      • -
                      • Homophones
                      • -
                      • Hyphenation
                      • -
                      - -

                      Noun

                      -Declension -
                      1. Meaning 1
                      2. -
                        • Quotations
                        • -
                        -
                      3. Meaning 2
                      4. -
                        • Quotations
                        • -
                        -
                      - etc. -

                      Usage notes

                      - -

                      Synonyms

                      - -

                      Antonyms

                      - -

                      Derived terms

                      - -

                      Related terms

                      - -

                      References

                      - -

                      External links

                      - -

                      Verb

                      -Conjugation -
                      1. Meaning 1
                      2. -
                        • Quotations
                        • -
                        -
                      - etc. -

                      Usage notes

                      - -

                      Synonyms

                      - -

                      Antonyms

                      - -

                      Derived terms

                      - -

                      Related terms

                      - -

                      Descendants

                      - -

                      References

                      - -

                      External links

                      - -

                      Anagrams

                      ----- (Dividing line between languages) +
                    • June War
                    • +
                    • June Week
                    • +
                    • Junie
                    • +
                    • mid-June
                    • +
                    • {{w|Movement 2 June}}
                    • +
                    +{rel-bottom} +

                    See also

                    +
                    • {{list|en|Gregorian calendar months}}
                    • +
                    +---->>> ***lexicography*** -lexicography: -{wikipedia} +HtmlEntry: lexicography <<<{wikipedia}

                    Etymology

                    {{confix|lexico|graphy}}

                    Noun

                    @@ -4279,10 +3806,9 @@ lexicography:
                  9. lexicon
                  10. lexicology
                  11. - +>>> ***livre*** -livre: -{{wikipedia|dab=livre}} +HtmlEntry: livre <<<{{wikipedia|dab=livre}}

                    Etymology

                    From {{etyl|fr}} {{term|livre|lang=fr}}.

                    Noun

                    @@ -4300,10 +3826,9 @@ From {{etyl|fr}} {{term|livre|lang=fr}}.

                    Anagrams

                    • liver, rivel, viler
                    ----- +---->>> ***march*** -march: - +HtmlEntry: march <<<

                    Pronunciation

                    • {{a|UK}} {{IPA|/mɑːtʃ/}}, {{X-SAMPA|/mA:tS/}}
                    • {{a|US}} {{enPR|märch}}, {{IPA|/mɑrtʃ/}}, {{X-SAMPA|/mArtS/}}
                    • @@ -4525,10 +4050,9 @@ From {{etyl|enm}} {{term|marche|tract of land along a country's border|lang=enm}

                      Anagrams

                      • charm
                      -Category:English ergative verbsCategory:English terms with multiple etymologiesCategory:en:Gaits---- +Category:English ergative verbsCategory:English terms with multiple etymologiesCategory:en:Gaits---->>> ***may*** -may: -{{slim-wikipedia|May (disambiguation)}} +HtmlEntry: may <<<{{slim-wikipedia|May (disambiguation)}}

                      Pronunciation

                      • {{enPR|mā}}, {{IPA|/meɪ/}}, {{X-SAMPA|/meI/}}
                      • {{audio|en-us-May.ogg|Audio (US)}}
                      • @@ -4650,10 +4174,9 @@ may:

                        Anagrams

                        • Amy, MYA, Mya, mya, yam
                        -Category:100 English basic wordsCategory:English auxiliary verbsCategory:English defective verbsCategory:English irregular verbsCategory:English terms with multiple etymologiesCategory:en:Trees---- +Category:100 English basic wordsCategory:English auxiliary verbsCategory:English defective verbsCategory:English irregular verbsCategory:English terms with multiple etymologiesCategory:en:Trees---->>> ***merchandise*** -merchandise: - +HtmlEntry: merchandise <<<

                        Alternative forms

                        • merchandize {{qualifier|non‐standard}}
                        • merchaundise {{qualifier|obsolete}}
                        • @@ -4703,10 +4226,9 @@ From Anglo‐French marchaundise, from {{term|marchaunt|{{l|en|merchant
                        • merchant
                        • merchantable
                        ----- +---->>> ***minute*** -minute: -{wikipedia} +HtmlEntry: minute <<<{wikipedia}

                        Etymology 1

                        From {{etyl|fro}} {{term|minute|lang=fro}}, from {{etyl|ML.}} {{term|minuta|minūta|60th of an hour", "note|lang=la}}

                        Pronunciation

                        @@ -4794,10 +4316,9 @@ From {{etyl|la}} {{term|minutus|minūtus|small", "petty|lang=la}}, per
                        • minuet
                        • untime
                        -Category:1000 English basic wordsCategory:English heteronymsCategory:en:TimeCategory:en:Units of measure---- +Category:1000 English basic wordsCategory:English heteronymsCategory:en:TimeCategory:en:Units of measure---->>> ***Monday*** -Monday: - +HtmlEntry: Monday <<<

                        Etymology

                        • {{etyl|ang}} {{term|monandæg|mōnandæÄ¡|day of the moon|lang=ang}}, from {{term|mona|mōna|moon|lang=ang}} + {{term|dæg|day|lang=ang}}, a translation of {{etyl|la}} {{term|dies lunae|lang=la}}
                        @@ -4880,10 +4401,9 @@ Monday:

                        Anagrams

                        • dynamo
                        -af:Mondayast:Mondayaz:Mondayzh-min-nan:Mondaybe:Mondaybs:Mondayca:Mondaycs:Mondaycy:Mondayda:Mondayde:Mondayet:Mondayel:Mondayes:Mondayeo:Mondayeu:Mondayfr:Mondayfy:Mondayga:Mondaygl:Mondayko:Mondayhy:Mondayhr:Mondayio:Mondayid:Mondayit:Mondaykl:Mondaykn:Mondayka:Mondaykk:Mondaysw:Mondayku:Mondaylo:Mondayla:Mondaylv:Mondaylb:Mondaylt:Mondayln:Mondayhu:Mondaymk:Mondaymg:Mondayml:Mondaymn:Mondaymy:Mondaynl:Mondayja:Mondayno:Mondaynn:Mondayoc:Mondaykm:Mondaypl:Mondaypt:Mondayro:Mondayru:Mondaysimple:Mondayfi:Mondaysv:Mondayta:Mondaytg:Mondaytr:Mondayuk:Mondayvi:Mondayvo:Mondayzh:Monday +af:Mondayast:Mondayaz:Mondayzh-min-nan:Mondaybe:Mondaybs:Mondayca:Mondaycs:Mondaycy:Mondayda:Mondayde:Mondayet:Mondayel:Mondayes:Mondayeo:Mondayeu:Mondayfr:Mondayfy:Mondayga:Mondaygl:Mondayko:Mondayhy:Mondayhr:Mondayio:Mondayid:Mondayit:Mondaykl:Mondaykn:Mondayka:Mondaykk:Mondaysw:Mondayku:Mondaylo:Mondayla:Mondaylv:Mondaylb:Mondaylt:Mondayln:Mondayhu:Mondaymk:Mondaymg:Mondayml:Mondaymn:Mondaymy:Mondaynl:Mondayja:Mondayno:Mondaynn:Mondayoc:Mondaykm:Mondaypl:Mondaypt:Mondayro:Mondayru:Mondaysimple:Mondayfi:Mondaysv:Mondayta:Mondaytg:Mondaytr:Mondayuk:Mondayvi:Mondayvo:Mondayzh:Monday>>> ***month*** -month: -{wikipedia} +HtmlEntry: month <<<{wikipedia}

                        Alternative forms

                        • {{l|en|moneth}} {{qualifier|dialectal}}
                        @@ -4929,10 +4449,9 @@ From {{etyl|enm}} {{term|month|lang=enm}}, {{term|moneth|lang=enm}}, from {{etyl

                        Statistics

                        • {{rank|original|provide|determined|819|month|news|prepared|support}}
                        -Category:1000 English basic wordsCategory:en:Timeaf:monthar:monthast:monthzh-min-nan:monthca:monthcs:monthco:monthcy:monthda:monthde:monthet:monthel:monthes:montheo:montheu:monthfa:monthfr:monthfy:monthko:monthhy:monthio:monthid:monthik:monthzu:monthit:monthkn:monthkk:monthsw:monthku:monthlo:monthlt:monthli:monthhu:monthmg:monthml:monthmy:monthnah:monthfj:monthnl:monthja:monthno:monthoc:monthpl:monthpt:monthru:monthsq:monthscn:monthsimple:monthfi:monthsv:monthta:monthte:monthth:monthtg:monthtr:monthuk:monthvi:monthwa:monthzh:month +Category:1000 English basic wordsCategory:en:Timeaf:monthar:monthast:monthzh-min-nan:monthca:monthcs:monthco:monthcy:monthda:monthde:monthet:monthel:monthes:montheo:montheu:monthfa:monthfr:monthfy:monthko:monthhy:monthio:monthid:monthik:monthzu:monthit:monthkn:monthkk:monthsw:monthku:monthlo:monthlt:monthli:monthhu:monthmg:monthml:monthmy:monthnah:monthfj:monthnl:monthja:monthno:monthoc:monthpl:monthpt:monthru:monthsq:monthscn:monthsimple:monthfi:monthsv:monthta:monthte:monthth:monthtg:monthtr:monthuk:monthvi:monthwa:monthzh:month>>> ***multiculturalism*** -multiculturalism: -{{was wotd|2011|April|24}}{wikipedia} +HtmlEntry: multiculturalism <<<{{was wotd|2011|April|24}}{wikipedia}

                        Etymology

                        From {{suffix|multicultural|ism}}.

                        Pronunciation

                        @@ -4963,10 +4482,9 @@ From {{suffix|multicultural|ism}}.

                        See also

                        • cosmopolitan
                        -Category:en:Culturefr:multiculturalismko:multiculturalismid:multiculturalismio:multiculturalismpl:multiculturalismru:multiculturalismfi:multiculturalismta:multiculturalism +Category:en:Culturefr:multiculturalismko:multiculturalismid:multiculturalismio:multiculturalismpl:multiculturalismru:multiculturalismfi:multiculturalismta:multiculturalism>>> ***nonsense*** -nonsense: - +HtmlEntry: nonsense <<<

                        Etymology

                        {{prefix|non|sense}}

                        Pronunciation

                        @@ -5041,10 +4559,9 @@ nonsense:

                        Synonyms

                        • pooh-pooh, rubbish
                        -ca:nonsenseet:nonsensees:nonsensefr:nonsenseko:nonsenseio:nonsenseid:nonsenseit:nonsensekn:nonsensesw:nonsenseku:nonsensehu:nonsenseml:nonsensemy:nonsensenl:nonsensepl:nonsensesimple:nonsensefi:nonsensesv:nonsenseta:nonsensete:nonsensevi:nonsensezh:nonsense +ca:nonsenseet:nonsensees:nonsensefr:nonsenseko:nonsenseio:nonsenseid:nonsenseit:nonsensekn:nonsensesw:nonsenseku:nonsensehu:nonsenseml:nonsensemy:nonsensenl:nonsensepl:nonsensesimple:nonsensefi:nonsensesv:nonsenseta:nonsensete:nonsensevi:nonsensezh:nonsense>>> ***noun*** -noun: -{wikipedia} +HtmlEntry: noun <<<{wikipedia}

                        Etymology

                        From {{etyl|xno}} {{term|noun|lang=xno}}, {{term|non|lang=xno}}, {{term|nom|lang=xno}}, from {{etyl|la}} {{term|nomen|nōmen|name|lang=la}}.

                        Pronunciation

                        @@ -5116,10 +4633,9 @@ From {{etyl|xno}} {{term|noun|lang=xno}}, {{term|non|lang=xno}}, {{term|nom|lang

                        Anagrams

                        • non-U
                        -Category:English autological termsCategory:en:Parts of speech---- +Category:English autological termsCategory:en:Parts of speech---->>> ***November*** -November: - +HtmlEntry: November <<<

                        Alternative forms

                        • Novembre {{qualifier|obsolete}}
                        @@ -5164,10 +4680,9 @@ November:

                        See also

                        • {{list|en|Gregorian calendar months}}
                        ----- +---->>> ***October*** -October: - +HtmlEntry: October <<<

                        Alternative forms

                        • Octobre {{qualifier|obsolete}}
                        @@ -5209,68 +4724,9 @@ From {{etyl|enm}}, from {{etyl|ang}}, from {{etyl|la}} {{term|october|octōber|e

                        See also

                        • {{list|en|Gregorian calendar months}}
                        ----- -===of=== -grain of salt: -{wikipedia} -

                        Etymology

                        -From Latin {{term|cum grano salis}}, literally with a grain of salt, figuratively with a bit of common sense. -

                        Noun

                        -{{en-noun|-|sg=grain of salt}} -
                        1. {idiomatic} A bit of common sense and skepticism. Generally used in some form of to take with a grain of salt.
                        2. -
                          • I'd take anything I read in that paper with a grain of salt.
                          • -
                          -
                        - -

                        Synonyms

                        -
                        • pinch of salt
                        • -
                        - -

                        See also

                        -
                        • face value
                        • -
                        -et:grain of saltid:grain of salt -freedom of speech: -{{wikipedia|Freedom of speech}}{{wikinews|Category:Free speech}}{{commons|Category:Freedom of speech}}{{wikiquote|Freedom of speech}} -

                        Etymology

                        -{rfe} -

                        Pronunciation

                        -
                        • {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}
                        • -
                        - -

                        Noun

                        -{{en-noun|-|sg=freedom of speech}} -
                        1. The right of citizens to speak, or otherwise communicate, without fear of harm or prosecution.
                        2. -
                          • {{quote-book|year=1720|author={{w|John Trenchard (writer)|John Trenchard}} and {{w|Thomas Gordon (writer)|Thomas Gordon}}|title={{w|Cato's Letters}}|publisher=|url=|isbn=|page=Letter Number 15, Of Freedom of Speech, That the Same is inseparable from Publick Liberty|passage=All Ministers ... who were Oppressors, or intended to be Oppressors, have been loud in their Complaints against Freedom of Speech, and the License of the Press; and always restrained, or endeavored to restrain, both.}}
                          • -
                          • {{quote-book|author={{w|Frank Murphy}}|title={{w|Thornhill v. Alabama}}|publisher={{w|Supreme Court of the United States}}|year=1940|passage=The freedom of speech and of the press, which are secured by the First Amendment against abridgment by the United States, are among the fundamental personal rights and liberties which are secured to all persons by the Fourteenth Amendment against abridgment by a state. The safeguarding of these rights to the ends that men may speak as they think on matters vital to them and that falsehoods may be exposed through the processes of education and discussion is essential to free government. Those who won our independence had confidence in the power of free and fearless reasoning and communication of ideas to discover and spread political and economic truth.|page={{w|Case citation|310 U.S. 88 }}}}
                          • -
                          • {{quote-book|year=1969|author={{w|Abe Fortas}}|title={{w|Tinker v. Des Moines Independent Community School District}}|publisher={{w|Supreme Court of the United States}}|url=|isbn=|page={{ussc|393|503|1969}}|passage=First Amendment rights, applied in light of the special characteristics of the school environment, are available to teachers and students. It can hardly be argued that either students or teachers shed their constitutional rights to freedom of speech or expression at the schoolhouse gate.}}
                          • -
                          • {{quote-book|year=1997|author={{w|Wendy Grossman}}|title={{w|Net.wars}}|publisher={{w|New York University Press}}|url=|isbn=0814731031|page=90|passage=One question that remains is at what point an individual Net poster has the right to assume prerogatives that have traditionally been only the province of journalists and news-gathering organizations. When the Pentagon Papers landed on the doorstep of The New York Times, the newspaper was able to publish under the First Amendment's guarantees of freedom of speech, and to make a strong argument in court that publication was in the public interest. ... the amplification inherent in the combination of the Net's high-speed communications and the size of the available population has greatly changed the balance of power.}}
                          • -
                          • {{quote-book|year=2003|author=Mike Godwin|authorlink=w:Mike Godwin|title={{w|Cyber Rights}}|publisher=The MIT Press|url=|isbn=0262571684|page=2|passage=The term free speech, which appears in this book's subtitle as well as in its text, is used more or less interchangeably with freedom of the press, freedom of speech, and freedom of expression to refer to all of the expressive rights guaranteed by the forty-five words of the First Amendment, as interpreted by the U.S. courts.}}
                          • -
                          • {{quote-book| last =Green | first =David L. | title =IQuote: Brilliance and Banter from the Internet Age | publisher =Globe Pequot | date =2007 | pages =113 | isbn = 1599211505|passage={{w|Mike Godwin}} (1994): Cyberspace may give freedom of speech more muscle than the First Amendment does. It may already have become literally impossible for a government to shut people up.}}
                          • -
                          -
                        3. {{&lit|freedom|speech}}
                        4. -
                          • {{quote-book|chapter=Of Simulation and Dissimulation|year=1625|title=The essays, or Counsels, civil & moral, with a table of the colours of good and evil. Whereunto is added The wisdome of the ancients, enlarged by the author|author=Francis Bacon|year_published=1680|passage=For to him that opens himself, Men will hardly shew themselves averse, but will (fair) let him go on, and turn their freedom of speech to freedom of thought. And therefore it is a good shrewd Proverb of the Spaniard, Tell a lye, and find a Troth; as if there were no way of discovery, but by Simulation.|url=http://books.google.com/books?id=xjQCAAAAQAAJ&pg=PA20&dq=%22freedom+of+speech%22&hl=en&sa=X&ei=zTI-T9zcDYnr0gHcx_HOBw&ved=0CNoBEOgBMBo#v=onepage&q=%22freedom%20of%20speech%22&f=false}}
                          • -
                          -
                        - -

                        Quotations

                        -{seemoreCites} -

                        Related terms

                        -
                        • free speech
                        • -
                        • freedom of expression
                        • -
                        - -

                        Coordinate terms

                        -
                        • freedom of movement, freedom of contract, freedom of the press, freedom of religion, freedom of assembly, right to petition, right to privacy, right to keep and bear arms
                        • -
                        - -

                        See also

                        -
                        • {pedia}
                        • -
                        -Category:en:Freedom of speechde:freedom of speechet:freedom of speechfr:freedom of speechpl:freedom of speechfi:freedom of speechta:freedom of speech +---->>> ***patronage*** -patronage: -{wikipedia} +HtmlEntry: patronage <<<{wikipedia}

                        Pronunciation

                        /ˈpeɪtrənɪd͡ʒ/

                        Noun

                        @@ -5311,18 +4767,9 @@ patronage:
                  ----- -===pears=== -apples and pears: - -

                  Noun

                  -{{en-noun|-|sg=apples and pears}} -
                  1. {Cockney rhyming slang} stairs
                  2. -
                  - +---->>> ***pie*** -pie: -{{slim-wikipedia|Pie (disambiguation)}}Unsliced Lemon Meringue Pie - Noun, definition 1 +HtmlEntry: pie <<<{{slim-wikipedia|Pie (disambiguation)}}Unsliced Lemon Meringue Pie - Noun, definition 1

                  Pronunciation

                  • {{a|UK}} {{IPA|/pʌɪ/}}
                  • {{a|US}} {{enPR|pÄ«}}, {{IPA|/paɪ/}}, {{X-SAMPA|/paI/}}
                  • @@ -5418,10 +4865,9 @@ From {{etyl|hi}} {{term|पाई|quarter|tr=pāī}}, from {{etyl|sa}} {{term|

                    Anagrams

                    • EIP, ipe, ipé, PEI
                    -Category:English terms with unknown etymologiesCategory:en:CurrencyCategory:en:FoodsCategory:en:Pies---- +Category:English terms with unknown etymologiesCategory:en:CurrencyCategory:en:FoodsCategory:en:Pies---->>> ***pies*** -pies: - +HtmlEntry: pies <<<

                    Pronunciation

                    • {{rhymes|aɪz}}
                    @@ -5440,10 +4886,9 @@ pies:
                    • ipes
                    • sipe
                    ----- +---->>> ***pneumonoultramicroscopicsilicovolcanoconiosis*** -pneumonoultramicroscopicsilicovolcanoconiosis: -{{wikipedia|pneumonoultramicroscopicsilicovolcanoconiosis|pneumono...}} +HtmlEntry: pneumonoultramicroscopicsilicovolcanoconiosis <<<{{wikipedia|pneumonoultramicroscopicsilicovolcanoconiosis|pneumono...}}

                    Alternative forms

                    • pneumonoultramicroscopicsilicovolcano-coniosis
                    • pneumonoultramicroscopicsilicovolcanokoniosis
                    • @@ -5508,10 +4953,9 @@ Coined by Everett K Smith, President of the National Puzzlers’ League, at thei
                    {rel-bottom}

                    References

                    -<references/>Category:Long English wordsCategory:English words suffixed with -osisde:pneumonoultramicroscopicsilicovolcanoconiosisfr:pneumonoultramicroscopicsilicovolcanoconiosisko:pneumonoultramicroscopicsilicovolcanoconiosistl:pneumonoultramicroscopicsilicovolcanoconiosiszh:pneumonoultramicroscopicsilicovolcanoconiosis +<references/>Category:Long English wordsCategory:English words suffixed with -osisde:pneumonoultramicroscopicsilicovolcanoconiosisfr:pneumonoultramicroscopicsilicovolcanoconiosisko:pneumonoultramicroscopicsilicovolcanoconiosistl:pneumonoultramicroscopicsilicovolcanoconiosiszh:pneumonoultramicroscopicsilicovolcanoconiosis>>> ***polysemic*** -polysemic: - +HtmlEntry: polysemic <<<

                    Adjective

                    {en-adj}
                    1. {linguistics} Having a number of meanings, interpretations or understandings.
                    2. @@ -5530,10 +4974,9 @@ polysemic:
                      • polyseme
                      • polysemy
                      -et:polysemicru:polysemic +et:polysemicru:polysemic>>> ***pond*** -pond: -{wikipedia} +HtmlEntry: pond <<<{wikipedia}

                      Pronunciation

                      • {{a|UK}} {{enPR|pŏnd}}, {{IPA|/pɒnd/}}, {{X-SAMPA|/pQnd/}}
                      • {{rhymes|ɒnd}}
                      • @@ -5577,10 +5020,9 @@ A pond{en-noun}

                        Anagrams

                        • DNOP
                        ----- -===Pope=== -Pope Julius: - +---->>> +***Pope Julius*** +HtmlEntry: Pope Julius <<<

                        Alternative forms

                        • Pope July
                        • Pope Julio
                        • @@ -5596,10 +5038,9 @@ Unknown. Presumably named after Pope Julius II, the Warrior Pope.
                        • {{quote-book|year={{circa2|1596}}|author=Sir John Harington|title=A Treatise on Playe|quoted_in=Nugae antiquae|year_published=1804|passage=Pope Julio (if I fail not in the name, and sure I am that there is a game of the cards after his name) was a great and wary player, a great vertue in a man of his profession}}
                    -Category:en:Card games +Category:en:Card games>>> ***portmanteau*** -portmanteau: -{{was wotd|2007|March|8}}{wikipedia} +HtmlEntry: portmanteau <<<{{was wotd|2007|March|8}}{wikipedia}

                    Alternative forms

                    • {{sense|travelling case}} portmantua
                    @@ -5659,10 +5100,9 @@ Coined by Lewis Carroll in Through The Looking Glass to describe the words he co
                    • List of portmanteau words defined in Wiktionary
                    • Wikipedia article on portmanteaus (cases and words)
                    -Category:English autological termscs:portmanteaufr:portmanteauko:portmanteauio:portmanteaukn:portmanteaumy:portmanteauno:portmanteaupl:portmanteauru:portmanteausimple:portmanteaufi:portmanteausv:portmanteautl:portmanteaute:portmanteauvi:portmanteauzh:portmanteau +Category:English autological termscs:portmanteaufr:portmanteauko:portmanteauio:portmanteaukn:portmanteaumy:portmanteauno:portmanteaupl:portmanteauru:portmanteausimple:portmanteaufi:portmanteausv:portmanteautl:portmanteaute:portmanteauvi:portmanteauzh:portmanteau>>> ***pound*** -pound: - +HtmlEntry: pound <<<

                    Pronunciation

                    • {{IPA|/paʊnd/}}
                    • {{audio|en-us-pound.ogg|Audio (US)}}
                    • @@ -5761,55 +5201,9 @@ From {{etyl|enm}} {{term|pounden|lang=enm}}, alteration of {{term|pounen|lang=en {en-noun}
                      1. A hard blow.
                      -Category:en:CanalsCategory:en:CurrencyCategory:en:Units of measurede:poundet:poundel:poundes:poundfa:poundfr:poundko:poundio:poundit:poundkn:poundku:poundlo:poundli:poundhu:poundmg:poundml:poundmy:poundja:poundpl:poundru:poundsimple:poundfi:poundtl:poundta:poundtt:poundte:poundtr:poundvi:poundzh:pound -===pro=== -quid pro quo: -{{was wotd|2009|August|17}}{rfc} -

                      Etymology

                      -From {{etyl|la|en}} : "what for what" . See quid, pro, and quo -

                      Pronunciation

                      -
                      • {{a|UK}} {{IPA|/ˌkwɪd.pɹəʊˈkwəʊ/}}
                      • -
                      • {{a|US}} {{IPA|/ˌkwɪd.pɹoʊˈkwoʊ/}}
                      • -
                      - -

                      Noun

                      -{{en-noun|sg=quid pro quo|pl=quid pro quos|pl2=quae pro quibus|pl3=quid pro quibus|pl4=quid pro quibus}} -
                      1. Something understood as another ; an equivocation.
                      2. -
                        • 1844, Arthur Schopenhauer, translated by Richard Burdon Haldane, The World as Will and Representation, 2nd edition, first book, section 13:
                        • -
                          • The misunderstanding of the word or the quid pro quo is the unintentional pun, and is related to it exactly as folly is to wit.
                          • -
                          -
                        • 1912, Fyodor Dostoevsky, translated by Constance Garnett, The Brothers Karamazov, part II, book V, chapter 5:
                        • -
                          • &ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &mdash; some impossible quid pro quo?&rdquo;
                          • -
                          -
                        -
                      3. {legal} This for that; giving something to receive something else ; something equivalent ; something in return.
                      4. -
                        • 1895, Uchimura Kanzo, The Diary of a Japanese Convert, chapter 1:
                        • -
                          • No less weightier was to be the youth's consideration for his master, who was to him no mere school teacher or college professor on quid pro quo principle, but a veritable didaskalos, in whom he could and must completely confide the care of his body and soul.
                          • -
                          -
                        • 2002, Barry G. Silverman, Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002):
                        • -
                          • Section 170 states that quid pro quo donations, for which a taxpayer receives something in return, are not deductible.
                          • -
                          -
                        -
                      5. An equal exchange.
                      6. -
                        • We had no money so we had to live by quid pro quo.
                        • -
                        -
                      - -

                      Synonyms

                      -
                      • {{sense|an equal exchange}} barter, swap, swop, trade
                      • -
                      - -

                      Related

                      -
                      • tit for tat
                      • -
                      - -

                      Anagrams

                      -
                      • quo pro quid
                      • -
                      -Category:English borrowed termsda:quid pro quode:quid pro quoet:quid pro quofr:quid pro quomy:quid pro quopl:quid pro quoru:quid pro quota:quid pro quo +Category:en:CanalsCategory:en:CurrencyCategory:en:Units of measurede:poundet:poundel:poundes:poundfa:poundfr:poundko:poundio:poundit:poundkn:poundku:poundlo:poundli:poundhu:poundmg:poundml:poundmy:poundja:poundpl:poundru:poundsimple:poundfi:poundtl:poundta:poundtt:poundte:poundtr:poundvi:poundzh:pound>>> ***product*** -product: - +HtmlEntry: product <<<

                      Etymology

                      {{etyl|la}} {{term|productus|prōductus|lang=la}}, perfect participle of {{term|produco|prōdūcō|lang=la}}, first attested in English in the mathematics sense.

                      Pronunciation

                      @@ -5881,29 +5275,16 @@ product:

                      See also

                      • multiplication: (multiplier) × (multiplicand) = (product)
                      ----- -===pronunciation=== -Appendix:English pronunciation: -The following tables show the IPA, SAMPA and enPR/AHD representations of English pronunciation, in both Received Pronunciation (UK) and General American (US). For vowels in other dialects, see IPA chart for English. -

                      Vowels

                      -The vowel table lists both monophthongs and diphthongs.{| {wikitable}! rowspan="2" | enPR<br/>(AHD)! colspan="2" | IPA! colspan="2" | SAMPA! rowspan="2" | Examples|-! RP! GA! RP! GA|-align="center"| {{enPRchar|ă}}| colspan="2" | {{IPAchar2|Near-open front unrounded vowel.ogg|æ}}| colspan="2" | <tt>{</tt>| bad, cat, ran|-align="center"| {{enPRchar|ăr}}| colspan="2" | {{IPAchar|æɹ}}| colspan="2" | <tt>{r\</tt>| carry|-align="center"| {{enPRchar|ā}}| colspan="2" | {{IPAchar|eɪ}}| colspan="2" | <tt>eI</tt>| bait, play, same|-align="center"| {{enPRchar|ä}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>A:</tt>| <tt>A</tt>| father|-align="center"| {{enPRchar|är}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| <tt>A:</tt>| <tt>Ar\</tt>| arm, bard, aria|-align="center"| {{enPRchar|âr}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| <tt>E@</tt>| <tt>Er\</tt>| hair, pear, there, scary|-align="center"| {{enPRchar|ĕ}}| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan="2" | <tt>E</tt>| bed, bet, end|-align="center"| {{enPRchar|ĕr}}| colspan="2" | {{IPAchar|ɛɹ}}| colspan="2" | <tt>Er\</tt>| merry|-align="center"| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| <tt>i:</tt>| <tt>i</tt>| ease, see|-align="center"| {{enPRchar|Ä­}}| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan="2" | <tt>I</tt>| city, bit|-align="center"| {{enPRchar|i}}<ref>Not an AHD symbol. Often written as AHD ē in Wiktionary entries.</ref>| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan="2" | <tt>i</tt>| city, very, ready|-align="center"| {{enPRchar|Ä­r}}| colspan="2" | {{IPAchar|ɪɹ}}| colspan="2" | <tt>Ir\</tt>| syrup, Sirius|-align="center"| {{enPRchar|Ä«}}| colspan="2" | {{IPAchar|aɪ}}| colspan="2" | <tt>aI</tt>| my, rise|-align="center"| {{enPRchar|îr}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| <tt>I@</tt>| <tt>Ir\</tt>| here, near, peer, serious|-align="center"| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>Q</tt>| <tt>A</tt>| not|-align="center"| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| <tt>@U</tt>| <tt>oU</tt>| go, hope, know|-align="center"| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| <tt>O@</tt>| <tt>or\, Or\</tt>| hoarse, glory|-align="center"| {{enPRchar|ô}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| <tt>O:</tt>| <tt>O</tt>| law, caught, saw|-align="center"| {{enPRchar|ôr}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| <tt>O:</tt>| <tt>Or\</tt>| horse, more, laureate|-align="center"| {{enPRchar|oi}}| colspan="2" | {{IPAchar|ɔɪ}}| colspan="2" | <tt>OI</tt>| boy, noise|-align="center"| {{enPRchar|o͝o, ŏŏ}}| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan="2" | <tt>U</tt>| put, foot|-align="center"| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| <tt>U@</tt>| <tt>Ur\</tt>| poor, tour, tourism|-align="center"| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| <tt>u:</tt>| <tt>u</tt>| lose, soon, through|-align="center"| {{enPRchar|ou}}| colspan="2" | {{IPAchar|aʊ}}| colspan="2" | <tt>aU</tt>| house, now|-align="center"| {{enPRchar|Å­}}| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan="2" | <tt>V</tt>| run, enough, up|-align="center"| {{enPRchar|ûr}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| <tt>3:</tt>| <tt>3`</tt>| fur, bird|-align="center"| {{enPRchar|ə}}| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}| colspan="2" | <tt>@</tt>| about|-align="center"| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| <tt>@</tt>| <tt>@`</tt>| enter|}<references/> -

                      Consonants

                      -{| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| <tt>b</tt>| but, able, cab, wobble, ebb|-| {{enPRchar|ch}}| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}<ref name=tiebar>May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}</ref>| <tt>tS</tt>| chat, teacher, inch, catch, nature|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| <tt>d</tt>| dot, idea, nod, fodder, odd|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| <tt>f</tt>| fan, left, leaf, enough, phase, graphic, epitaph|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|É¡}}| <tt>g</tt>| get, magnet, bag|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| <tt>h</tt>| ham|-| {{enPRchar|hw}}| {{IPAchar2|voiceless labio-velar fricative.ogg|ʍ (hw)}}<ref>Phonologists may deny that {{IPAchar|/ʍ/}} is a distinct phoneme, and instead use {{IPAchar|/hw/}}.</ref>| <tt>W</tt>| which|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />| <tt>dZ</tt>| joy, ajar, gin, agile, age, edge|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| <tt>k</tt>| cat, kit, queen, pique, choir, ache, tack|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| <tt>x</tt>| (Scottish) loch|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| <tt>l</tt>| left (before vowel of syllable)|-| {{enPRchar|l}}| {{IPAchar|lÌ© (əl)}}<ref name="cons">Phonologists may deny that {{IPAchar|/lÌ©, nÌ©, mÌ©/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.</ref>| <tt>l=</tt>| little|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| <tt>m</tt>| man, animal, him|-| {{enPRchar|m}}| {{IPAchar|mÌ© (əm)}}<ref name="cons"/>| <tt>m=</tt>| spasm, prism|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| <tt>n</tt>| note, ant, pan|-| {{enPRchar|n}}| {{IPAchar|nÌ© (ən)}}<ref name="cons"/>| <tt>n=</tt>| hidden|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| <tt>N</tt>| singer, ring|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| <tt>p</tt>| pen, spin, top, apple|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>| <tt>r\</tt>| run, very|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| <tt>s</tt>| set, list, pass, city, ice|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| <tt>S</tt>| she, ash, sure, ration|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| <tt>t</tt>| ton, stab, mat, attend, butt, ought|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| <tt>T</tt>| thin, nothing, moth|-| {{enPRchar|th}}| {{IPAchar2|voiced dental fricative.ogg|ð}}| <tt>D</tt>| this, father, clothe|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| <tt>v</tt>| voice, navel, save, of|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| <tt>w</tt>| wet|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| <tt>j</tt>| yes|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| <tt>z</tt>| zoo, quiz, fuzz, rose, xylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| <tt>Z</tt>| vision, treasure, beige|}<references/> -

                      Other symbols

                      -A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. {| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Indicates|-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)| <tt>"</tt> (<tt>"</tt>a)| primary stress|-| {{enPRchar|'}} (a{{enPRchar|'}})| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)| <tt>%</tt> (<tt>%</tt>a)| secondary stress, sometimes tertiary stress|-| a{{enPRchar|-}}a| a{{IPAchar|.}}a| a<tt>.</tt>a| division between syllables|}Note: The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme. -pronunciation guide: - +---->>> +***pronunciation guide*** +HtmlEntry: pronunciation guide <<<

                      Noun

                      {{en-noun|sg=pronunciation guide}}
                      1. {countable} A table in a reference work explaining the symbols that it uses to represent the pronunciation of its entries.
                      -pt:pronunciation guideru:pronunciation guide -===Public=== -Wiktionary:Public domain sources: -The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.Some scanned fascicles of Oxford English Dictionary under the title A New English Dictionary on Historical Principles by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240]. +pt:pronunciation guideru:pronunciation guide>>> ***pumpkin*** -pumpkin: - +HtmlEntry: pumpkin <<<

                      Alternative forms

                      • {{sense|US|term of endearment}} punkin
                      @@ -5939,55 +5320,9 @@ From {{etyl|frm}} {{term|pompon|lang=frm}}, from {{etyl|la}} {{term|pepo|pepō|l
                    • marrow
                    • squash
                    -Category:en:ColorsCategory:en:Terms of endearmentcs:pumpkinde:pumpkinet:pumpkinel:pumpkineo:pumpkineu:pumpkinfr:pumpkingl:pumpkinko:pumpkinio:pumpkinid:pumpkinzu:pumpkinkn:pumpkinkk:pumpkinlo:pumpkinlt:pumpkinhu:pumpkinmg:pumpkinml:pumpkinmy:pumpkinnl:pumpkinja:pumpkinpl:pumpkinpt:pumpkinru:pumpkinfi:pumpkinsv:pumpkintl:pumpkinta:pumpkintr:pumpkinvi:pumpkinzh:pumpkin -===quid=== -quid pro quo: -{{was wotd|2009|August|17}}{rfc} -

                    Etymology

                    -From {{etyl|la|en}} : "what for what" . See quid, pro, and quo -

                    Pronunciation

                    -
                    • {{a|UK}} {{IPA|/ˌkwɪd.pɹəʊˈkwəʊ/}}
                    • -
                    • {{a|US}} {{IPA|/ˌkwɪd.pɹoʊˈkwoʊ/}}
                    • -
                    - -

                    Noun

                    -{{en-noun|sg=quid pro quo|pl=quid pro quos|pl2=quae pro quibus|pl3=quid pro quibus|pl4=quid pro quibus}} -
                    1. Something understood as another ; an equivocation.
                    2. -
                      • 1844, Arthur Schopenhauer, translated by Richard Burdon Haldane, The World as Will and Representation, 2nd edition, first book, section 13:
                      • -
                        • The misunderstanding of the word or the quid pro quo is the unintentional pun, and is related to it exactly as folly is to wit.
                        • -
                        -
                      • 1912, Fyodor Dostoevsky, translated by Constance Garnett, The Brothers Karamazov, part II, book V, chapter 5:
                      • -
                        • &ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &mdash; some impossible quid pro quo?&rdquo;
                        • -
                        -
                      -
                    3. {legal} This for that; giving something to receive something else ; something equivalent ; something in return.
                    4. -
                      • 1895, Uchimura Kanzo, The Diary of a Japanese Convert, chapter 1:
                      • -
                        • No less weightier was to be the youth's consideration for his master, who was to him no mere school teacher or college professor on quid pro quo principle, but a veritable didaskalos, in whom he could and must completely confide the care of his body and soul.
                        • -
                        -
                      • 2002, Barry G. Silverman, Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002):
                      • -
                        • Section 170 states that quid pro quo donations, for which a taxpayer receives something in return, are not deductible.
                        • -
                        -
                      -
                    5. An equal exchange.
                    6. -
                      • We had no money so we had to live by quid pro quo.
                      • -
                      -
                    - -

                    Synonyms

                    -
                    • {{sense|an equal exchange}} barter, swap, swop, trade
                    • -
                    - -

                    Related

                    -
                    • tit for tat
                    • -
                    - -

                    Anagrams

                    -
                    • quo pro quid
                    • -
                    -Category:English borrowed termsda:quid pro quode:quid pro quoet:quid pro quofr:quid pro quomy:quid pro quopl:quid pro quoru:quid pro quota:quid pro quo -===quo=== -quid pro quo: -{{was wotd|2009|August|17}}{rfc} +Category:en:ColorsCategory:en:Terms of endearmentcs:pumpkinde:pumpkinet:pumpkinel:pumpkineo:pumpkineu:pumpkinfr:pumpkingl:pumpkinko:pumpkinio:pumpkinid:pumpkinzu:pumpkinkn:pumpkinkk:pumpkinlo:pumpkinlt:pumpkinhu:pumpkinmg:pumpkinml:pumpkinmy:pumpkinnl:pumpkinja:pumpkinpl:pumpkinpt:pumpkinru:pumpkinfi:pumpkinsv:pumpkintl:pumpkinta:pumpkintr:pumpkinvi:pumpkinzh:pumpkin>>> +***quid pro quo*** +HtmlEntry: quid pro quo <<<{{was wotd|2009|August|17}}{rfc}

                    Etymology

                    From {{etyl|la|en}} : "what for what" . See quid, pro, and quo

                    Pronunciation

                    @@ -6029,10 +5364,9 @@ From {{etyl|la|en}} : "what for what" . See quid, pro, and quo

                    Anagrams

                    • quo pro quid
                    -Category:English borrowed termsda:quid pro quode:quid pro quoet:quid pro quofr:quid pro quomy:quid pro quopl:quid pro quoru:quid pro quota:quid pro quo -===rain=== -rain cats and dogs: - +Category:English borrowed termsda:quid pro quode:quid pro quoet:quid pro quofr:quid pro quomy:quid pro quopl:quid pro quoru:quid pro quota:quid pro quo>>> +***rain cats and dogs*** +HtmlEntry: rain cats and dogs <<<

                    Etymology

                    Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}} and {{term|δόξα|opinion, expectation|tr=doxa|lang=grc}}, but see Etymology in Citations

                    Verb

                    @@ -6047,10 +5381,9 @@ Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}}

                    Anagrams

                    • rain dogs and cats
                    -cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs +cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs>>> ***raven*** -raven: -{wikipedia}A raven (bird). +HtmlEntry: raven <<<{wikipedia}A raven (bird).

                    Pronunciation

                    • {{enPR|rāʹvən}}, {{IPA|/ˈreɪvən/}}, {{X-SAMPA|/"reIv@n/}}
                    • {{audio|en-us-raven.ogg|Audio (US)}}
                    • @@ -6124,30 +5457,9 @@ From {{etyl|fro}} {{term|raviner|rush, seize by force|lang=fro}}, itself from {{

                      Anagrams

                      • Verna
                      -Category:English adjectives ending in -enCategory:English heteronymsCategory:en:Birds---- -===salt=== -grain of salt: -{wikipedia} -

                      Etymology

                      -From Latin {{term|cum grano salis}}, literally with a grain of salt, figuratively with a bit of common sense. -

                      Noun

                      -{{en-noun|-|sg=grain of salt}} -
                      1. {idiomatic} A bit of common sense and skepticism. Generally used in some form of to take with a grain of salt.
                      2. -
                        • I'd take anything I read in that paper with a grain of salt.
                        • -
                        -
                      - -

                      Synonyms

                      -
                      • pinch of salt
                      • -
                      - -

                      See also

                      -
                      • face value
                      • -
                      -et:grain of saltid:grain of salt +Category:English adjectives ending in -enCategory:English heteronymsCategory:en:Birds---->>> ***Saturday*** -Saturday: - +HtmlEntry: Saturday <<<

                      Etymology

                      {{etyl|ang}} {{term|sæterndæg|Sæternesdæg|day of Saturn}}, from {{term|Sætern|Saturn}}, from {{etyl|la}} {{term|Saturnus|the god of agriculture}}, possibly from Etruscan, + {{etyl|ang}} {{term|dæg|day}}; a translation of {{etyl|la}} {{term|dies Saturni}}

                      Pronunciation

                      @@ -6197,10 +5509,9 @@ Saturday:

                      See also

                      • {{list|en|days of the week}}
                      -af:Saturdayar:Saturdayast:Saturdayaz:Saturdaycs:Saturdaycy:Saturdayda:Saturdayde:Saturdayet:Saturdayel:Saturdayes:Saturdayeo:Saturdayeu:Saturdayfa:Saturdayfr:Saturdayfy:Saturdayga:Saturdaygl:Saturdayko:Saturdayhy:Saturdayhr:Saturdayio:Saturdayid:Saturdayit:Saturdaykl:Saturdayka:Saturdaykk:Saturdayku:Saturdaylo:Saturdayla:Saturdaylv:Saturdaylt:Saturdayhu:Saturdaymg:Saturdayml:Saturdaymn:Saturdaymy:Saturdaynl:Saturdayja:Saturdayno:Saturdaynn:Saturdayoc:Saturdaykm:Saturdaypl:Saturdaypt:Saturdayro:Saturdayru:Saturdaysimple:Saturdaysk:Saturdaysr:Saturdayfi:Saturdaysv:Saturdayta:Saturdaytg:Saturdaytr:Saturdayuk:Saturdayvi:Saturdayvo:Saturdayzh:Saturday +af:Saturdayar:Saturdayast:Saturdayaz:Saturdaycs:Saturdaycy:Saturdayda:Saturdayde:Saturdayet:Saturdayel:Saturdayes:Saturdayeo:Saturdayeu:Saturdayfa:Saturdayfr:Saturdayfy:Saturdayga:Saturdaygl:Saturdayko:Saturdayhy:Saturdayhr:Saturdayio:Saturdayid:Saturdayit:Saturdaykl:Saturdayka:Saturdaykk:Saturdayku:Saturdaylo:Saturdayla:Saturdaylv:Saturdaylt:Saturdayhu:Saturdaymg:Saturdayml:Saturdaymn:Saturdaymy:Saturdaynl:Saturdayja:Saturdayno:Saturdaynn:Saturdayoc:Saturdaykm:Saturdaypl:Saturdaypt:Saturdayro:Saturdayru:Saturdaysimple:Saturdaysk:Saturdaysr:Saturdayfi:Saturdaysv:Saturdayta:Saturdaytg:Saturdaytr:Saturdayuk:Saturdayvi:Saturdayvo:Saturdayzh:Saturday>>> ***semantics*** -semantics: -{wikipedia} +HtmlEntry: semantics <<<{wikipedia}

                      Pronunciation

                      • {{IPA|/sɪˈmæntɪks/}}
                      @@ -6251,10 +5562,9 @@ semantics:

                      External links

                      • {R:OneLook}
                      -Category:en:Philosophyet:semanticsel:semanticsfa:semanticsio:semanticsid:semanticskn:semanticshu:semanticsno:semanticspl:semanticspt:semanticssimple:semanticsfi:semanticsta:semanticstr:semanticsvi:semanticszh:semantics +Category:en:Philosophyet:semanticsel:semanticsfa:semanticsio:semanticsid:semanticskn:semanticshu:semanticsno:semanticspl:semanticspt:semanticssimple:semanticsfi:semanticsta:semanticstr:semanticsvi:semanticszh:semantics>>> ***September*** -September: - +HtmlEntry: September <<<

                      Alternative forms

                      • Septembre {{qualifier|obsolete}}
                      @@ -6322,10 +5632,9 @@ Late {{etyl|ang}}, {{etyl|la}} {{term|september|seventh month|lang=la}}, from La
                      • 9/11
                      • {{list|en|Gregorian calendar months}}
                      ----- +---->>> ***sesquipedalianism*** -sesquipedalianism: - +HtmlEntry: sesquipedalianism <<<

                      Etymology

                      Surface form analyzed as {{suffix|sesquipedalian|ism}}, from {{prefix|sesqui|pedalian|t1=one and a half|t2=of the foot}}.From {{etyl|la}} {{term|sesquipedalis|a foot and a half long; in metaphorical use, “of an unnatural length, huge, big”|lang=la}}, from {{term|sesqui|one and a half times as great|lang=la}} + {{term|pedalis|foot|lang=la}}.<ref>From A New and Copious Lexicon of the Latin Language, Compiled Chiefly from the Magnum Totius Latinitatis Lexicon of Facciolati and Forcellini, and the German Works of Scheller and Luenemann, edited by F. P. Leverett, Wilkins, Carter & Co., Boston, 1849.</ref>

                      Pronunciation

                      @@ -6350,52 +5659,9 @@ Surface form analyzed as {{suffix|sesquipedalian|ism}}, from {{prefix|sesqui|ped

                    References

                    -<references/>et:sesquipedalianism -===sources=== -Wiktionary:Public domain sources: -The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.Some scanned fascicles of Oxford English Dictionary under the title A New English Dictionary on Historical Principles by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240]. -===speech=== -freedom of speech: -{{wikipedia|Freedom of speech}}{{wikinews|Category:Free speech}}{{commons|Category:Freedom of speech}}{{wikiquote|Freedom of speech}} -

                    Etymology

                    -{rfe} -

                    Pronunciation

                    -
                    • {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}
                    • -
                    - -

                    Noun

                    -{{en-noun|-|sg=freedom of speech}} -
                    1. The right of citizens to speak, or otherwise communicate, without fear of harm or prosecution.
                    2. -
                      • {{quote-book|year=1720|author={{w|John Trenchard (writer)|John Trenchard}} and {{w|Thomas Gordon (writer)|Thomas Gordon}}|title={{w|Cato's Letters}}|publisher=|url=|isbn=|page=Letter Number 15, Of Freedom of Speech, That the Same is inseparable from Publick Liberty|passage=All Ministers ... who were Oppressors, or intended to be Oppressors, have been loud in their Complaints against Freedom of Speech, and the License of the Press; and always restrained, or endeavored to restrain, both.}}
                      • -
                      • {{quote-book|author={{w|Frank Murphy}}|title={{w|Thornhill v. Alabama}}|publisher={{w|Supreme Court of the United States}}|year=1940|passage=The freedom of speech and of the press, which are secured by the First Amendment against abridgment by the United States, are among the fundamental personal rights and liberties which are secured to all persons by the Fourteenth Amendment against abridgment by a state. The safeguarding of these rights to the ends that men may speak as they think on matters vital to them and that falsehoods may be exposed through the processes of education and discussion is essential to free government. Those who won our independence had confidence in the power of free and fearless reasoning and communication of ideas to discover and spread political and economic truth.|page={{w|Case citation|310 U.S. 88 }}}}
                      • -
                      • {{quote-book|year=1969|author={{w|Abe Fortas}}|title={{w|Tinker v. Des Moines Independent Community School District}}|publisher={{w|Supreme Court of the United States}}|url=|isbn=|page={{ussc|393|503|1969}}|passage=First Amendment rights, applied in light of the special characteristics of the school environment, are available to teachers and students. It can hardly be argued that either students or teachers shed their constitutional rights to freedom of speech or expression at the schoolhouse gate.}}
                      • -
                      • {{quote-book|year=1997|author={{w|Wendy Grossman}}|title={{w|Net.wars}}|publisher={{w|New York University Press}}|url=|isbn=0814731031|page=90|passage=One question that remains is at what point an individual Net poster has the right to assume prerogatives that have traditionally been only the province of journalists and news-gathering organizations. When the Pentagon Papers landed on the doorstep of The New York Times, the newspaper was able to publish under the First Amendment's guarantees of freedom of speech, and to make a strong argument in court that publication was in the public interest. ... the amplification inherent in the combination of the Net's high-speed communications and the size of the available population has greatly changed the balance of power.}}
                      • -
                      • {{quote-book|year=2003|author=Mike Godwin|authorlink=w:Mike Godwin|title={{w|Cyber Rights}}|publisher=The MIT Press|url=|isbn=0262571684|page=2|passage=The term free speech, which appears in this book's subtitle as well as in its text, is used more or less interchangeably with freedom of the press, freedom of speech, and freedom of expression to refer to all of the expressive rights guaranteed by the forty-five words of the First Amendment, as interpreted by the U.S. courts.}}
                      • -
                      • {{quote-book| last =Green | first =David L. | title =IQuote: Brilliance and Banter from the Internet Age | publisher =Globe Pequot | date =2007 | pages =113 | isbn = 1599211505|passage={{w|Mike Godwin}} (1994): Cyberspace may give freedom of speech more muscle than the First Amendment does. It may already have become literally impossible for a government to shut people up.}}
                      • -
                      -
                    3. {{&lit|freedom|speech}}
                    4. -
                      • {{quote-book|chapter=Of Simulation and Dissimulation|year=1625|title=The essays, or Counsels, civil & moral, with a table of the colours of good and evil. Whereunto is added The wisdome of the ancients, enlarged by the author|author=Francis Bacon|year_published=1680|passage=For to him that opens himself, Men will hardly shew themselves averse, but will (fair) let him go on, and turn their freedom of speech to freedom of thought. And therefore it is a good shrewd Proverb of the Spaniard, Tell a lye, and find a Troth; as if there were no way of discovery, but by Simulation.|url=http://books.google.com/books?id=xjQCAAAAQAAJ&pg=PA20&dq=%22freedom+of+speech%22&hl=en&sa=X&ei=zTI-T9zcDYnr0gHcx_HOBw&ved=0CNoBEOgBMBo#v=onepage&q=%22freedom%20of%20speech%22&f=false}}
                      • -
                      -
                    - -

                    Quotations

                    -{seemoreCites} -

                    Related terms

                    -
                    • free speech
                    • -
                    • freedom of expression
                    • -
                    - -

                    Coordinate terms

                    -
                    • freedom of movement, freedom of contract, freedom of the press, freedom of religion, freedom of assembly, right to petition, right to privacy, right to keep and bear arms
                    • -
                    - -

                    See also

                    -
                    • {pedia}
                    • -
                    -Category:en:Freedom of speechde:freedom of speechet:freedom of speechfr:freedom of speechpl:freedom of speechfi:freedom of speechta:freedom of speech +<references/>et:sesquipedalianism>>> ***substantive*** -substantive: -{wikipedia} +HtmlEntry: substantive <<<{wikipedia}

                    Etymology

                    From {{etyl|fro}} substantif.

                    Adjective

                    @@ -6435,10 +5701,9 @@ From {{etyl|fro}} substantif.
                    • substantivise/substantivize
                    • substantival
                    - +>>> ***Sunday*** -Sunday: - +HtmlEntry: Sunday <<<

                    Etymology

                    {{etyl|enm}} sunnenday from {{etyl|ang}} {{term|sunnandæg|day of the sun|lang=ang}}, from {{term|sunne|sun|lang=ang}}, + {{term|dæg|day|lang=ang}}, as a translation of {{etyl|la}} dies solis; declared the "venerable day of the sun" by Roman Emperor Constantine on March 7, 321 {C.E.}.

                    Pronunciation

                    @@ -6593,10 +5858,9 @@ Sunday:

                    See also

                    • {{list|en|days of the week}}
                    -af:Sundayast:Sundayaz:Sundaycs:Sundaycy:Sundayda:Sundayde:Sundayet:Sundayel:Sundayes:Sundayeo:Sundayeu:Sundayfr:Sundayga:Sundaygl:Sundayko:Sundayhy:Sundayhr:Sundayio:Sundayid:Sundayit:Sundaykl:Sundaykn:Sundayka:Sundaykk:Sundayku:Sundaylo:Sundayla:Sundaylv:Sundaylt:Sundayhu:Sundaymg:Sundayml:Sundaymn:Sundaymy:Sundaynl:Sundayja:Sundayno:Sundaynn:Sundayoc:Sundaykm:Sundaypl:Sundaypt:Sundayro:Sundayru:Sundaysimple:Sundaysr:Sundayfi:Sundaysv:Sundayta:Sundayte:Sundaytg:Sundaytr:Sundayuk:Sundayvi:Sundayvo:Sundayzh:Sunday +af:Sundayast:Sundayaz:Sundaycs:Sundaycy:Sundayda:Sundayde:Sundayet:Sundayel:Sundayes:Sundayeo:Sundayeu:Sundayfr:Sundayga:Sundaygl:Sundayko:Sundayhy:Sundayhr:Sundayio:Sundayid:Sundayit:Sundaykl:Sundaykn:Sundayka:Sundaykk:Sundayku:Sundaylo:Sundayla:Sundaylv:Sundaylt:Sundayhu:Sundaymg:Sundayml:Sundaymn:Sundaymy:Sundaynl:Sundayja:Sundayno:Sundaynn:Sundayoc:Sundaykm:Sundaypl:Sundaypt:Sundayro:Sundayru:Sundaysimple:Sundaysr:Sundayfi:Sundaysv:Sundayta:Sundayte:Sundaytg:Sundaytr:Sundayuk:Sundayvi:Sundayvo:Sundayzh:Sunday>>> ***swap*** -swap: -{wikipedia} +HtmlEntry: swap <<<{wikipedia}

                    Alternative forms

                    • swop {{qualifier|nonstandard}}
                    @@ -6654,10 +5918,9 @@ Uncertain, probably from imitative origin.
                  • wasp
                  • WSPA
                  -Category:Trading---- +Category:Trading---->>> ***swop*** -swop: - +HtmlEntry: swop <<<

                  Noun

                  {en-noun}
                  1. {{alternative spelling of|swap}}
                  2. @@ -6676,10 +5939,9 @@ swop:
                    • pows, POWs
                    • wops
                    -et:swopfi:swopte:swopvi:swop +et:swopfi:swopte:swopvi:swop>>> ***synonym*** -synonym: -{wikipedia} +HtmlEntry: synonym <<<{wikipedia}

                    Etymology

                    From {{etyl|enm}} {{term|sinonyme|lang=enm}}, from {{etyl|la}} {{term|synonymum|synōnymum|lang=la}}, from {{etyl|grc}} {{term|συνώνυμον|tr=sunōnumon|lang=grc}}, neuter singular form of {{term|συνώνυμος|synonymous|tr=sunōnumos|lang=grc}}, from {{term|σύν|with|lang=grc}} + {{term|ὄνομα|name|onoma|lang=grc}}.

                    Pronunciation

                    @@ -6726,10 +5988,9 @@ From {{etyl|enm}} {{term|sinonyme|lang=enm}}, from {{etyl|la}} {{term|synonymum|
                    • homotypic
                    • heterotypic
                    ----- +---->>> ***thesaurus*** -thesaurus: -{wikipedia} +HtmlEntry: thesaurus <<<{wikipedia}

                    Etymology

                    16th century, from {{etyl|la|en}} {{term|thesaurus|thēsaurus|lang=la}}, from {{etyl|grc|en}} {{term|θησαυρός|storehouse, treasure|tr=thēsauros|lang=grc|sc=polytonic}}; its current English usage/meaning was established soon after the publication of Peter Roget's Thesaurus of English Words and Phrases in 1852

                    Pronunciation

                    @@ -6765,10 +6026,9 @@ thesaurus:
                  3. {R:Century 1911}
                  4. Roget's Thesaurus can be found at: http://www.bartleby.com/thesauri
                  5. -Category:en:Reference works---- +Category:en:Reference works---->>> ***Thursday*** -Thursday: - +HtmlEntry: Thursday <<<

                    Etymology

                    From {{etyl|enm}}, from {{etyl|ang}} {{term|þursdæg|þursdæÄ¡|lang=ang}}, {{term|þurresdæg|þurresdæÄ¡|Thursday|lang=ang}}, possibly from a contraction of {{etyl|ang}} {{term|þunresdæg|þunresdæÄ¡|Thursday|lit=Thor's day|lang=ang}}, but more likely of {{etyl|gmq}} origin, from {{etyl|non}} {{term|þórsdagr|þōrsdagr|lang=non}} or Old {{etyl|da}} {{term|þursdag|þÅ«rsdag|Thursday|lang=da}}; all from {{proto|Germanic|Þunras dagaz|Thor's day|lang=en}}. More at {{l|en|thunder}}, {{l|en|day}}.A calque of Latin dies Iovis (dies Jovis), via an association of the god Thor with the Roman god of thunder Jove (Jupiter).

                    Pronunciation

                    @@ -6828,10 +6088,9 @@ From {{etyl|enm}}, from {{etyl|ang}} {{term|þursdæg|þursd&aeli

                    See also

                    • {{list|en|days of the week}}
                    -Category:en:Timeaf:Thursdayast:Thursdayaz:Thursdayca:Thursdaycs:Thursdaycy:Thursdayda:Thursdayde:Thursdayet:Thursdayel:Thursdayes:Thursdayeo:Thursdayeu:Thursdayfr:Thursdayga:Thursdaygl:Thursdayko:Thursdayhy:Thursdayhr:Thursdayio:Thursdayid:Thursdayit:Thursdaykl:Thursdaykn:Thursdayka:Thursdaykk:Thursdayku:Thursdaylo:Thursdayla:Thursdaylv:Thursdaylt:Thursdayhu:Thursdaymg:Thursdayml:Thursdaymn:Thursdaymy:Thursdaynl:Thursdayja:Thursdayno:Thursdaynn:Thursdayoc:Thursdaykm:Thursdaypl:Thursdaypt:Thursdayro:Thursdayru:Thursdaysimple:Thursdayfi:Thursdaysv:Thursdayta:Thursdayte:Thursdaytg:Thursdaytr:Thursdayuk:Thursdayvi:Thursdayvo:Thursdayzh:Thursday +Category:en:Timeaf:Thursdayast:Thursdayaz:Thursdayca:Thursdaycs:Thursdaycy:Thursdayda:Thursdayde:Thursdayet:Thursdayel:Thursdayes:Thursdayeo:Thursdayeu:Thursdayfr:Thursdayga:Thursdaygl:Thursdayko:Thursdayhy:Thursdayhr:Thursdayio:Thursdayid:Thursdayit:Thursdaykl:Thursdaykn:Thursdayka:Thursdaykk:Thursdayku:Thursdaylo:Thursdayla:Thursdaylv:Thursdaylt:Thursdayhu:Thursdaymg:Thursdayml:Thursdaymn:Thursdaymy:Thursdaynl:Thursdayja:Thursdayno:Thursdaynn:Thursdayoc:Thursdaykm:Thursdaypl:Thursdaypt:Thursdayro:Thursdayru:Thursdaysimple:Thursdayfi:Thursdaysv:Thursdayta:Thursdayte:Thursdaytg:Thursdaytr:Thursdayuk:Thursdayvi:Thursdayvo:Thursdayzh:Thursday>>> ***trade*** -trade: -{{wikipedia|trade|dab=trade (disambiguation)}} +HtmlEntry: trade <<<{{wikipedia|trade|dab=trade (disambiguation)}}

                    Etymology

                    From {{etyl|enm|en}} {{term|trade|path, course of conduct|lang=enm}}, cognate with {{etyl|ang}} {{term|tredan|tread|lang=ang}}; See [http://www.etymonline.com/index.php?search=trade&searchmode=none Online Etymology Dictionary]

                    Pronunciation

                    @@ -6995,9 +6254,9 @@ From {{etyl|enm|en}} {{term|trade|path, course of conduct|lang=enm}}, cognate wi

                    Anagrams

                    • adret, dater, derat, drate, rated, tared, tread
                    -Category:1000 English basic words---- -trade wind: - +Category:1000 English basic words---->>> +***trade wind*** +HtmlEntry: trade wind <<<

                    Alternative forms

                    • trade-wind
                    @@ -7020,10 +6279,9 @@ trade wind:

                    Antonyms

                    • easterly
                    -Category:en:Windio:trade windja:trade windro:trade windfi:trade windta:trade windzh:trade wind +Category:en:Windio:trade windja:trade windro:trade windfi:trade windta:trade windzh:trade wind>>> ***Tuesday*** -Tuesday: - +HtmlEntry: Tuesday <<<

                    Etymology

                    From {{etyl|enm}} {{term|Tewesday|lang=enm}}, from {{etyl|ang}} {{term|Tiwesdæg|TÄ«wesdæÄ¡|Tuesday|lang=ang}}, from {{proto|Germanic|TÄ«was dagaz|Tuesday|lit=Tiw's Day|lang=en}} (a rendering of {{etyl|la|-}} {{term|dies Martis|lang=la}} (see {{w|interpretatio germanica}}), itself a translation of {{etyl|grc|-}} {{term|tr=Areos hemera|lang=grc}} (see {{w|interpretatio romana}})), equivalent to {{proto|Germanic|TÄ«waz|god of war|lang=en}} (compare {{etyl|non|-}} {{term|Tyr|lang=non}}, {{etyl|goh|-}} {{term|Ziu|lang=goh}}), from {{proto|Indo-European|dyewós|god|lang=en}} + {{proto|Germanic|dagaz|day|lang=en}}. Cognate with {{etyl|sco|-}} {{term|Tysday|Tuesday|lang=sco}}, {{etyl|fy|-}} {{term|tiisdei|Tuesday|lang=fy}}, {{etyl|de|-}} dialectal {{term|Ziestag|Tuesday|lang=de}}, {{etyl|da|-}} {{term|tirsdag|Tuesday|lang=da}}, {{etyl|sv|-}} {{term|tisdag|Tuesday|lang=sv}}. More at Zeus, day.A calque of Latin dies Martis, via an association of the god Tiw with the Roman god of war Mars.

                    Pronunciation

                    @@ -7077,10 +6335,9 @@ From {{etyl|enm}} {{term|Tewesday|lang=enm}}, from {{etyl|ang}} {{term|Tiwesd&ae

                    See also

                    • {{list|en|days of the week}}
                    -af:Tuesdayast:Tuesdayaz:Tuesdayzh-min-nan:Tuesdaycs:Tuesdaycy:Tuesdayda:Tuesdayde:Tuesdayet:Tuesdayel:Tuesdayes:Tuesdayeo:Tuesdayeu:Tuesdayfr:Tuesdayga:Tuesdaygl:Tuesdayko:Tuesdayhy:Tuesdayhr:Tuesdayio:Tuesdayid:Tuesdayit:Tuesdaykl:Tuesdaykn:Tuesdayka:Tuesdaykk:Tuesdayku:Tuesdaylo:Tuesdayla:Tuesdaylv:Tuesdaylt:Tuesdayhu:Tuesdaymg:Tuesdayml:Tuesdaymn:Tuesdaymy:Tuesdaynl:Tuesdayja:Tuesdayno:Tuesdaynn:Tuesdayoc:Tuesdaykm:Tuesdaypl:Tuesdaypt:Tuesdayro:Tuesdayru:Tuesdaysimple:Tuesdaysr:Tuesdayfi:Tuesdaysv:Tuesdayta:Tuesdaytg:Tuesdaytr:Tuesdayuk:Tuesdayvi:Tuesdayvo:Tuesdayzh:Tuesday +af:Tuesdayast:Tuesdayaz:Tuesdayzh-min-nan:Tuesdaycs:Tuesdaycy:Tuesdayda:Tuesdayde:Tuesdayet:Tuesdayel:Tuesdayes:Tuesdayeo:Tuesdayeu:Tuesdayfr:Tuesdayga:Tuesdaygl:Tuesdayko:Tuesdayhy:Tuesdayhr:Tuesdayio:Tuesdayid:Tuesdayit:Tuesdaykl:Tuesdaykn:Tuesdayka:Tuesdaykk:Tuesdayku:Tuesdaylo:Tuesdayla:Tuesdaylv:Tuesdaylt:Tuesdayhu:Tuesdaymg:Tuesdayml:Tuesdaymn:Tuesdaymy:Tuesdaynl:Tuesdayja:Tuesdayno:Tuesdaynn:Tuesdayoc:Tuesdaykm:Tuesdaypl:Tuesdaypt:Tuesdayro:Tuesdayru:Tuesdaysimple:Tuesdaysr:Tuesdayfi:Tuesdaysv:Tuesdayta:Tuesdaytg:Tuesdaytr:Tuesdayuk:Tuesdayvi:Tuesdayvo:Tuesdayzh:Tuesday>>> ***verb*** -verb: -{wikipedia} +HtmlEntry: verb <<<{wikipedia}

                    Etymology

                    From {{etyl|fro|en}} {{term|verbe|lang=fro}}, from {{etyl|la|en}} {{term|verbum|word|lang=la}}, from {{proto|Indo-European|wer-|lang=en}}.

                    Pronunciation

                    @@ -7182,10 +6439,9 @@ Verbs compose a fundamental category of words in most languages. In an English
                    • v.
                    • copula
                    -Category:English autological termsCategory:en:Parts of speechCategory:en:Verbs---- +Category:English autological termsCategory:en:Parts of speechCategory:en:Verbs---->>> ***wares*** -wares: - +HtmlEntry: wares <<<

                    Pronunciation

                    • {{audio|en-us-wares.ogg|Audio (US)}}
                    • {{rhymes|ɛə(r)z}}
                    • @@ -7214,10 +6470,9 @@ wares:
                    • swear
                    • wears
                    -Category:English terms with homophonesfr:waresko:waresio:wareskn:wareshu:waresmy:waresnl:waresfi:wares +Category:English terms with homophonesfr:waresko:waresio:wareskn:wareshu:waresmy:waresnl:waresfi:wares>>> ***Wednesday*** -Wednesday: -{{wikipedia|wednesday|dab=wednesday (disambiguation)}} +HtmlEntry: Wednesday <<<{{wikipedia|wednesday|dab=wednesday (disambiguation)}}

                    Etymology

                    From {{etyl|enm}} {{term|Wednesdai|lang=enm}}, {{term|Wodnesdei|lang=enm}}, from {{etyl|ang}} {{term|wodnesdæg|wōdnesdæÄ¡|Wednesday|lang=ang}}, from a Germanic calque of {{etyl|la}} {{term|dies|day|lang=la}} {{term|Mercurii|of Mercurii|lang=la}} and Koine {{etyl|grc|-}} {{term|ἡμέρα|day|tr=hemera|lang=grc}} {{term|Ἕρμου|of Hermes|lang=grc|tr=Hermou}}, via an association of the god Odin (Woden) with Mercury and Hermes.{{rel-top|additional etymological information}}
                    • Cognate with {{etyl|fy|-}} {{term|woansdei|Wednesday|lang=fy}}, {{etyl|nl|-}} {{term|woensdag|Wednesday|lang=nl}}, {{etyl|de|-}} dialectal {{term|Wodenstag|Wednesday|lang=de}}, {{etyl|da|-}} {{term|onsdag|Wednesday|lang=da}}, {{etyl|sv|-}} {{term|onsdag|Wednesday|lang=sv}}.
                    • @@ -7266,12 +6521,9 @@ From {{etyl|enm}} {{term|Wednesdai|lang=enm}}, {{term|Wodnesdei|lang=enm}}, from

                      See also

                      • {{list|en|days of the week}}
                      -af:Wednesdayast:Wednesdayaz:Wednesdaycs:Wednesdaycy:Wednesdayda:Wednesdayde:Wednesdayet:Wednesdayel:Wednesdayes:Wednesdayeo:Wednesdayeu:Wednesdayfr:Wednesdayfy:Wednesdayga:Wednesdaygl:Wednesdayko:Wednesdayhy:Wednesdayhr:Wednesdayio:Wednesdayid:Wednesdayit:Wednesdaykl:Wednesdaykn:Wednesdayka:Wednesdaykk:Wednesdayku:Wednesdaylo:Wednesdayla:Wednesdaylv:Wednesdaylt:Wednesdayhu:Wednesdaymg:Wednesdayml:Wednesdaymn:Wednesdaymy:Wednesdaynl:Wednesdayja:Wednesdayno:Wednesdaynn:Wednesdayoc:Wednesdaykm:Wednesdaypl:Wednesdaypt:Wednesdayro:Wednesdayru:Wednesdaysimple:Wednesdaysr:Wednesdayfi:Wednesdaysv:Wednesdayta:Wednesdayte:Wednesdaytg:Wednesdaytr:Wednesdayuk:Wednesdayvi:Wednesdayvo:Wednesdayzh:Wednesday -===Wiktionary=== -Wiktionary:Public domain sources: -The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.Some scanned fascicles of Oxford English Dictionary under the title A New English Dictionary on Historical Principles by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240]. -Wiktionary:Entry layout explained: - +af:Wednesdayast:Wednesdayaz:Wednesdaycs:Wednesdaycy:Wednesdayda:Wednesdayde:Wednesdayet:Wednesdayel:Wednesdayes:Wednesdayeo:Wednesdayeu:Wednesdayfr:Wednesdayfy:Wednesdayga:Wednesdaygl:Wednesdayko:Wednesdayhy:Wednesdayhr:Wednesdayio:Wednesdayid:Wednesdayit:Wednesdaykl:Wednesdaykn:Wednesdayka:Wednesdaykk:Wednesdayku:Wednesdaylo:Wednesdayla:Wednesdaylv:Wednesdaylt:Wednesdayhu:Wednesdaymg:Wednesdayml:Wednesdaymn:Wednesdaymy:Wednesdaynl:Wednesdayja:Wednesdayno:Wednesdaynn:Wednesdayoc:Wednesdaykm:Wednesdaypl:Wednesdaypt:Wednesdayro:Wednesdayru:Wednesdaysimple:Wednesdaysr:Wednesdayfi:Wednesdaysv:Wednesdayta:Wednesdayte:Wednesdaytg:Wednesdaytr:Wednesdayuk:Wednesdayvi:Wednesdayvo:Wednesdayzh:Wednesday>>> +***Wiktionary:Entry layout explained*** +HtmlEntry: Wiktionary:Entry layout explained <<<

                      Noun

                      {en-noun}
                      1. A piece of furniture to sleep on.
                      2. @@ -7283,9 +6535,8 @@ Wiktionary:Entry layout explained:
                    </pre>

                    Variations for languages other than English

                    -Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.Some languages do have characteristics that require variation from the standard format. For links to these variations see Wiktionary:Language considerations. -Wiktionary:Entry layout explained: - +Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.Some languages do have characteristics that require variation from the standard format. For links to these variations see Wiktionary:Language considerations.>>> +HtmlEntry: Wiktionary:Entry layout explained <<<

                    Alternative forms

                    Etymology

                    @@ -7346,36 +6597,11 @@ Conjugation

                    External links

                    Anagrams

                    ----- (Dividing line between languages) -===wind=== -trade wind: - -

                    Alternative forms

                    -
                    • trade-wind
                    • -
                    - -

                    Pronunciation

                    -
                    • {{IPA|/ˈtreɪdˑwɪnd/}}
                    • -
                    - -

                    Noun

                    -{{en-noun|sg=trade wind}} -
                    1. A steady wind that blows from east to west above and below the equator.
                    2. -
                      • They rode the trade winds going west.
                      • -
                      -
                    - -

                    Synonyms

                    -
                    • westerly
                    • -
                    - -

                    Antonyms

                    -
                    • easterly
                    • -
                    -Category:en:Windio:trade windja:trade windro:trade windfi:trade windta:trade windzh:trade wind +---- (Dividing line between languages)>>> +***Wiktionary:Public domain sources*** +HtmlEntry: Wiktionary:Public domain sources <<A New English Dictionary on Historical Principles
                    by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240].>>> ***word*** -word: -{{wikipedia|word|dab=word (disambiguation)}} +HtmlEntry: word <<<{{wikipedia|word|dab=word (disambiguation)}}

                    Etymology

                    From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word, speech, sentence, statement, command, order, subject of talk, story, news, report, fame, promise, verb|lang=ang}}, from {{proto|Germanic|wurdan|word|lang=en}}, from {{proto|Indo-European|werdÊ°o-|word|lang=en}}. Cognate with {{etyl|sco|-}} {{term|word|word|lang=sco}}, {{etyl|fy|-}} {{term|wurd|word|lang=fy}}, {{etyl|nl|-}} {{term|woord|word|lang=nl}}, {{etyl|de|-}} {{term|Wort|word|lang=de}}, {{etyl|da|-}}, {{etyl|no|-}} and {{etyl|sv|-}} {{term|ord|word|lang=sv}}, {{etyl|is|-}} {{term|orð|word|lang=is}}, {{etyl|la|-}} {{term|verbum|word|lang=la}}, {{etyl|lt|-}} {{term|vardas|name|lang=lt}}, Albanian {{term|urtë|sage, wise, silent|lang=sq}}.

                    Pronunciation

                    @@ -7575,9 +6801,8 @@ From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word,

                    Anagrams

                    • drow
                    -Category:1000 English basic wordsCategory:English autological termsCategory:en:CommunicationCategory:en:Semantics---- -word: - +Category:1000 English basic wordsCategory:English autological termsCategory:en:CommunicationCategory:en:Semantics---->>> +HtmlEntry: word <<<

                    Alternative forms

                    • Æ¿ord
                    @@ -7596,7 +6821,7 @@ From {{proto|Germanic|wurdan|lang=ang}}, from {{proto|Indo-European|werdÊ°o-|wor
                  6. news, information, rumour
                  7. command, request
                  -Category:ang:Grammar---- +Category:ang:Grammar---->>> Index: EN EN->EN diff --git a/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text b/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text index 2ad7ccc..e003ef8 100644 --- a/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text +++ b/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text @@ -1,10 +1,27 @@ dictInfo=SomeWikiDataWholeSection -EntrySource: wiktionary.WholeSection.IT.quickdic 100 +EntrySource: wiktionary.WholeSection.IT.quickdic 0 Index: IT IT->EN -***a*** -a-: -{{wikipedia|a (prefisso)|lang=it}} +***A*** +HtmlEntry: A <<<{{wikipedia|lang=it}} +

                  Pronunciation

                  +
                  • {{qualifier|phoneme; name of letter}} {{IPA|/a/|lang=it}}
                  • +
                    • {{homophones|a|ha|lang=it}}
                    • +
                    +
                  + +

                  Letter

                  +{{head|it|letter|lower case|a|g=m|g2=f|g3=inv}} +
                  1. {{Latn-def|it|letter|1|a}}
                  2. +
                  + +

                  See also

                  +
                  • {{list|it|Latin script letters}}
                  • +
                  • {{pedialite|Italian alphabet}}
                  • +
                  +Category:Italian nouns---->>> +***a-*** +HtmlEntry: a- <<<{{wikipedia|a (prefisso)|lang=it}}

                  Etymology 1

                  From {{etyl|la|it}} {{term|ad|ad-|lang=la}}.

                  Prefix

                  @@ -24,39 +41,18 @@ Borrowed from {{etyl|grc|it}} {{term|ἀ-|tr=a-|lang=grc}}.
                  Synonyms
                  • an-
                  ----- -***A*** -A: -{{wikipedia|lang=it}} -

                  Pronunciation

                  -
                  • {{qualifier|phoneme; name of letter}} {{IPA|/a/|lang=it}}
                  • -
                    • {{homophones|a|ha|lang=it}}
                    • -
                    -
                  - -

                  Letter

                  -{{head|it|letter|lower case|a|g=m|g2=f|g3=inv}} -
                  1. {{Latn-def|it|letter|1|a}}
                  2. -
                  - -

                  See also

                  -
                  • {{list|it|Latin script letters}}
                  • -
                  • {{pedialite|Italian alphabet}}
                  • -
                  -Category:Italian nouns---- +---->>> ***abalienate*** -abalienate: - +HtmlEntry: abalienate <<<

                  Verb

                  abalienate
                  1. {{conjugation of|abalienare|2|p|pres|ind|lang=it}}
                  2. {{conjugation of|abalienare|2|p|imp|lang=it}}
                  3. {{form of|Feminine plural|abalienato}}
                  -Category:Italian past participle formsCategory:Italian verb forms---- +Category:Italian past participle formsCategory:Italian verb forms---->>> ***abate*** -abate: - +HtmlEntry: abate <<<

                  Etymology

                  From {{etyl|la|it}} {{term|abbas|abbās, abbātis|lang=la}}, from {{etyl|grc|it}} {{term|ἀββᾶς|tr=abbas|lang=grc|sc=polytonic}}, from {{etyl|arc|it}} {{term|אבא|father|lang=arc|tr=’abbā|sc=Hebr}}.

                  Pronunciation

                  @@ -78,10 +74,9 @@ From {{etyl|la|it}} {{term|abbas|abbās, abbātis|lang=la}}, from {{etyl|grc|it}

                  Anagrams

                  • beata
                  ----- +---->>> ***abbreviate*** -abbreviate: - +HtmlEntry: abbreviate <<<

                  Verb

                  abbreviate
                  1. second-person plural present tense of abbreviare
                  2. @@ -91,55 +86,49 @@ abbreviate:

                    Anagrams

                    • abbeverati
                    -Category:Italian verb forms---- +Category:Italian verb forms---->>> ***abdicate*** -abdicate: - +HtmlEntry: abdicate <<<

                    Verb form

                    abdicate
                    1. second-person plural present tense of abdicare
                    2. second-person plural imperative of abdicare
                    -Category:Italian verb forms---- +Category:Italian verb forms---->>> ***abduce*** -abduce: - +HtmlEntry: abduce <<<

                    Verb

                    abduce
                    1. {{conjugation of|abdurre|3|s|pres|ind|lang=it}}
                    -Category:Italian verb forms---- +Category:Italian verb forms---->>> ***aberrate*** -aberrate: - +HtmlEntry: aberrate <<<

                    Verb

                    aberrate
                    1. {{conjugation of|aberrare|2|p|pres|ind|lang=it}}
                    2. {{conjugation of|aberrare|2|p|imp|lang=it}}
                    3. {{form of|Feminine plural|aberrato}}
                    -Category:Italian past participle formsCategory:Italian verb forms---- +Category:Italian past participle formsCategory:Italian verb forms---->>> ***ablative*** -ablative: - +HtmlEntry: ablative <<<

                    Adjective

                    ablative {f}
                    1. Feminine plural form of ablativo
                    -Category:Italian adjective forms---- +Category:Italian adjective forms---->>> ***abominate*** -abominate: - +HtmlEntry: abominate <<<

                    Verb

                    abominate
                    1. {{conjugation of|abominare|2|p|pres|ind|lang=it}}
                    2. {{conjugation of|abominare|2|p|imp|lang=it}}
                    3. {{form of|Feminine plural|abominato}}
                    -Category:Italian past participle formsCategory:Italian verb forms---- +Category:Italian past participle formsCategory:Italian verb forms---->>> ***abortive*** -abortive: - +HtmlEntry: abortive <<<

                    Adjective

                    {{head|it|adjective form}} {{f|p}}
                    1. {{feminine plural of|abortivo|lang=it}}
                    2. @@ -148,10 +137,9 @@ abortive:

                      Anagrams

                      • breviato
                      ----- +---->>> ***abrade*** -abrade: - +HtmlEntry: abrade <<<

                      Verb

                      abrade
                      1. {{conjugation of|abradere|3|s|pres|ind|lang=it}}
                      2. @@ -161,10 +149,9 @@ abrade:
                        • badare
                        • baderà
                        -Category:Italian verb forms---- +Category:Italian verb forms---->>> ***abrase*** -abrase: - +HtmlEntry: abrase <<<

                        Verb

                        abrase
                        1. {{conjugation of|abradere|3|s|past historic|lang=it}}
                        2. @@ -177,10 +164,9 @@ abrase:
                          • basare
                          • baserà
                          -Category:Italian past participle formsCategory:Italian verb forms---- +Category:Italian past participle formsCategory:Italian verb forms---->>> ***abrasive*** -abrasive: - +HtmlEntry: abrasive <<<

                          Adjective

                          abrasive {f}
                          1. Feminine plural form of abrasivo
                          2. @@ -190,52 +176,46 @@ abrasive:
                            • bavaresi
                            • sbaverai
                            -Category:Italian adjective formsam:abrasivear:abrasivede:abrasiveet:abrasiveel:abrasivefa:abrasivefr:abrasiveko:abrasivehi:abrasiveio:abrasiveid:abrasiveit:abrasivekn:abrasivehu:abrasivemy:abrasivepl:abrasivept:abrasiveru:abrasivefi:abrasiveta:abrasivett:abrasiveth:abrasivetr:abrasivevi:abrasivezh:abrasive +Category:Italian adjective formsam:abrasivear:abrasivede:abrasiveet:abrasiveel:abrasivefa:abrasivefr:abrasiveko:abrasivehi:abrasiveio:abrasiveid:abrasiveit:abrasivekn:abrasivehu:abrasivemy:abrasivepl:abrasivept:abrasiveru:abrasivefi:abrasiveta:abrasivett:abrasiveth:abrasivetr:abrasivevi:abrasivezh:abrasive>>> ***abrogate*** -abrogate: - +HtmlEntry: abrogate <<<

                            Verb

                            abrogate
                            1. {{conjugation of|abrogare|2|p|pres|ind|lang=it}}
                            2. {{conjugation of|abrogare|2|p|imp|lang=it}}
                            3. {{form of|Feminine plural|abrogato}}
                            -Category:Italian past participle formsCategory:Italian verb forms---- +Category:Italian past participle formsCategory:Italian verb forms---->>> ***abrogative*** -abrogative: - +HtmlEntry: abrogative <<<

                            Adjective

                            abrogative {f}
                            1. Feminine plural form of abrogativo
                            -Category:Italian adjective formsel:abrogativepl:abrogativeru:abrogativeta:abrogativevi:abrogative +Category:Italian adjective formsel:abrogativepl:abrogativeru:abrogativeta:abrogativevi:abrogative>>> ***abusive*** -abusive: - +HtmlEntry: abusive <<<

                            Adjective

                            abusive {f}
                            1. Feminine plural form of abusivo
                            -Category:Italian adjective forms---- +Category:Italian adjective forms---->>> ***acacia*** -acacia: - +HtmlEntry: acacia <<<

                            Noun

                            {{it-noun|acaci|f|a|e}}
                            1. acacia (tree)
                            ----- +---->>> ***accidie*** -accidie: - +HtmlEntry: accidie <<<

                            Noun

                            accidie {f}
                            1. {{plural of|accidia|lang=it}}
                            -fr:accidie +fr:accidie>>> ***acclimate*** -acclimate: - +HtmlEntry: acclimate <<<

                            Verb

                            acclimate
                            1. {{conjugation of|acclimare|2|p|pres|ind|lang=it}}
                            2. @@ -246,10 +226,9 @@ acclimate:

                              Anagrams

                              • malaticce
                              -Category:Italian past participle formsCategory:Italian verb formsam:acclimatear:acclimateca:acclimateet:acclimateel:acclimatefa:acclimatefr:acclimateko:acclimateio:acclimateid:acclimateit:acclimatemy:acclimateps:acclimatepl:acclimatept:acclimateru:acclimatevi:acclimatezh:acclimate +Category:Italian past participle formsCategory:Italian verb formsam:acclimatear:acclimateca:acclimateet:acclimateel:acclimatefa:acclimatefr:acclimateko:acclimateio:acclimateid:acclimateit:acclimatemy:acclimateps:acclimatepl:acclimatept:acclimateru:acclimatevi:acclimatezh:acclimate>>> ***acclive*** -acclive: - +HtmlEntry: acclive <<<

                              Adjective

                              {{it-adj|accliv|e|i}}
                              1. steep
                              2. @@ -263,18 +242,16 @@ acclive:
                                • leccavi
                                • velacci
                                ----- +---->>> ***accresce*** -accresce: - +HtmlEntry: accresce <<<

                                Verb

                                accresce
                                1. {{conjugation of|accrescere|3|s|pres|ind|lang=it}}
                                -Category:Italian verb forms---- +Category:Italian verb forms---->>> ***accurate*** -accurate: - +HtmlEntry: accurate <<<

                                Adjective

                                {{head|it|adjective form|g=f|g2=p}}
                                1. {{feminine plural of|accurato}}
                                2. @@ -283,10 +260,9 @@ accurate:

                                  Anagrams

                                  • cacature
                                  ----- +---->>> ***AD*** -AD: - +HtmlEntry: AD <<<

                                  Initialism

                                  AD
                                  1. CEO (amministratore delegato)
                                  2. @@ -295,10 +271,9 @@ AD:

                                    Anagrams

                                    • da, da', dà
                                    -Category:Italian initialisms---- +Category:Italian initialisms---->>> ***Afghanistan*** -Afghanistan: -{{wikipedia|lang=it}} +HtmlEntry: Afghanistan <<<{{wikipedia|lang=it}}

                                    Pronunciation

                                    • {{audio|It-Afghanistan.ogg|audio}}
                                    @@ -315,10 +290,9 @@ Afghanistan:

                                    Derived terms

                                    • afgano, afghano
                                    -Category:Italian proper nounsCategory:it:Countries---- +Category:Italian proper nounsCategory:it:Countries---->>> ***Albania*** -Albania: -{{wikipedia|lang=it}} +HtmlEntry: Albania <<<{{wikipedia|lang=it}}

                                    Pronunciation

                                    • {{audio|It-Albania.ogg|Audio}}
                                    @@ -331,10 +305,9 @@ Albania:

                                    Derived terms

                                    • albanese
                                    -Category:it:Countries---- +Category:it:Countries---->>> ***Algeria*** -Algeria: -{{wikipedia|lang=it}} +HtmlEntry: Algeria <<<{{wikipedia|lang=it}}

                                    Pronunciation

                                    • {{audio|It-Algeria.ogg|Audio}}
                                    @@ -352,10 +325,9 @@ Algeria:
                                    • regalai
                                    • regalia
                                    -Category:it:Countrieszh-min-nan:Algeriacs:Algeriacy:Algeriade:Algeriaet:Algeriael:Algeriaes:Algeriafa:Algeriafr:Algeriako:Algeriahy:Algeriahi:Algeriahr:Algeriaio:Algeriaid:Algeriait:Algeriakn:Algeriasw:Algerialt:Algeriahu:Algeriamg:Algeriamn:Algerianl:Algeriano:Algeriands:Algeriapl:Algeriapt:Algeriaru:Algeriasq:Algeriasimple:Algeriafi:Algeriasv:Algeriata:Algeriatr:Algeriauk:Algeriavi:Algeriazh:Algeria +Category:it:Countrieszh-min-nan:Algeriacs:Algeriacy:Algeriade:Algeriaet:Algeriael:Algeriaes:Algeriafa:Algeriafr:Algeriako:Algeriahy:Algeriahi:Algeriahr:Algeriaio:Algeriaid:Algeriait:Algeriakn:Algeriasw:Algerialt:Algeriahu:Algeriamg:Algeriamn:Algerianl:Algeriano:Algeriands:Algeriapl:Algeriapt:Algeriaru:Algeriasq:Algeriasimple:Algeriafi:Algeriasv:Algeriata:Algeriatr:Algeriauk:Algeriavi:Algeriazh:Algeria>>> ***andante*** -andante: - +HtmlEntry: andante <<<

                                    Verb

                                    {{head|it|present participle}}
                                    1. {{present participle of|andare|lang=it}}
                                    2. @@ -370,10 +342,9 @@ andante:

                                      Anagrams

                                      • dannate
                                      -de:andanteet:andanteel:andantefr:andantegl:andanteko:andanteid:andanteit:andanteku:andantehu:andanteja:andanteno:andantepl:andanteru:andantesq:andantefi:andanteta:andantetr:andantevi:andantezh:andante +de:andanteet:andanteel:andantefr:andantegl:andanteko:andanteid:andanteit:andanteku:andantehu:andanteja:andanteno:andantepl:andanteru:andantesq:andantefi:andanteta:andantetr:andantevi:andantezh:andante>>> ***Andorra*** -Andorra: -{{wikipedia|lang=it}} +HtmlEntry: Andorra <<<{{wikipedia|lang=it}}

                                      Proper noun

                                      {{it-proper noun|f}}
                                      1. {{l|en|Andorra}}
                                      2. @@ -382,10 +353,9 @@ Andorra:

                                        Derived terms

                                        • andorrano
                                        -Category:it:Countries---- +Category:it:Countries---->>> ***Angola*** -Angola: -{{wikipedia|lang=it}} +HtmlEntry: Angola <<<{{wikipedia|lang=it}}

                                        Pronunciation

                                        • {{audio|it-Angola.ogg|Audio}}
                                        @@ -398,10 +368,9 @@ Angola:

                                        Derived terms

                                        • angolano
                                        -Category:Italian proper nounsCategory:it:Countries---- +Category:Italian proper nounsCategory:it:Countries---->>> ***aquila*** -aquila: - +HtmlEntry: aquila <<<

                                        Etymology

                                        From the {{etyl|la|it}} {{term|aquila|lang=la}}.

                                        Noun

                                        @@ -428,10 +397,9 @@ From the {{etyl|la|it}} {{term|aquila|lang=la}}.
                                      3. aquila spiegata
                                      4. aquila urlatrice
                                      5. -{bottom}Category:it:Birds---- +{bottom}Category:it:Birds---->>> ***are*** -are: - +HtmlEntry: are <<<

                                        Noun

                                        are {f} {p}
                                        1. {{plural of|ara|lang=it}}
                                        2. @@ -441,10 +409,9 @@ are:
                                          • era, Era
                                          • rea
                                          ----- +---->>> ***Argentina*** -Argentina: - +HtmlEntry: Argentina <<<

                                          Proper noun

                                          {{it-proper noun|g=f}}
                                          1. Argentina
                                          2. @@ -461,10 +428,9 @@ Argentina:
                                          3. ingranate
                                          4. rinnegata
                                          5. -Category:it:Countries---- +Category:it:Countries---->>> ***aria*** -aria: -{{wikipedia|lang=it}} +HtmlEntry: aria <<<{{wikipedia|lang=it}}

                                            Etymology

                                            Metathesis from {{etyl|la|it}} {{term|aerem|lang=la}}, accusative of {{term|aer|āēr|lang=la}}, from {{etyl|grc|it}} {{term|ἀήρ|air|tr=aēr|sc=polytonic|lang=grc}}.

                                            Pronunciation

                                            @@ -494,10 +460,9 @@ Metathesis from {{etyl|la|it}} {{term|aerem|lang=la}}, accusative of {{term|aer|

                                            Anagrams

                                            • arai
                                            ----- +---->>> ***arietta*** -arietta: - +HtmlEntry: arietta <<<

                                            Noun

                                            {{it-noun|ariett|f|a|e}}
                                            1. breeze
                                            2. @@ -509,10 +474,9 @@ arietta:
                                            3. tariate
                                            4. traiate
                                            5. -de:ariettapl:ariettaru:ariettaet:ariettafi:ariettavi:ariettatr:arietta +de:ariettapl:ariettaru:ariettaet:ariettafi:ariettavi:ariettatr:arietta>>> ***Armenia*** -Armenia: -{{wikipedia|lang=it}} +HtmlEntry: Armenia <<<{{wikipedia|lang=it}}

                                              Proper noun

                                              {{it-proper noun|g=f}}
                                              1. {{l|en|Armenia}}
                                              2. @@ -529,10 +493,9 @@ Armenia:
                                              3. maniera
                                              4. mariane
                                              5. -Category:it:CountriesCategory:it:Exonyms---- +Category:it:CountriesCategory:it:Exonyms---->>> ***Austria*** -Austria: -{{wikipedia|lang=it}} +HtmlEntry: Austria <<<{{wikipedia|lang=it}}

                                                Pronunciation

                                                • {{IPA|/ˈaustrja/|lang=it}}, {{X-SAMPA|/"austrja/|lang=it}}
                                                @@ -551,10 +514,9 @@ Austria:
                                              6. saturai
                                              7. Taurasi
                                              8. -Category:it:CountriesCategory:it:Exonyms---- +Category:it:CountriesCategory:it:Exonyms---->>> ***avatar*** -avatar: - +HtmlEntry: avatar <<<

                                                Noun

                                                {{wikipedia|lang=it}}{{head|it|noun|g=m}} {inv}
                                                1. avatar (all senses)
                                                2. @@ -563,18 +525,16 @@ avatar:

                                                  Anagrams

                                                  • tarava, varata
                                                  ----- +---->>> ***Bahrain*** -Bahrain: -{{wikipedia|lang=it}} +HtmlEntry: Bahrain <<<{{wikipedia|lang=it}}

                                                  Proper noun

                                                  {{head|it|proper noun|g=m}}
                                                  1. {{l|en|Bahrain}}
                                                  -Category:it:Countries---- +Category:it:Countries---->>> ***Bangladesh*** -Bangladesh: -{{wikipedia|lang=it}} +HtmlEntry: Bangladesh <<<{{wikipedia|lang=it}}

                                                  Proper noun

                                                  {{it-proper noun|g=m}}
                                                  1. {{l|en|Bangladesh}}
                                                  2. @@ -584,37 +544,33 @@ Bangladesh:
                                                    • bengalese
                                                    • bengali
                                                    -Category:it:Countries---- +Category:it:Countries---->>> ***BCE*** -BCE: - +HtmlEntry: BCE <<<

                                                    Etymology

                                                    {{initialism of|Banca Centrale Europea|European Central Bank|lang=it}}

                                                    Proper noun

                                                    {it-proper noun}
                                                    1. ECB
                                                    ----- +---->>> ***big*** -big: - +HtmlEntry: big <<<

                                                    Noun

                                                    {{head|it|noun|g=m}} {inv}
                                                    1. star (entertainment)
                                                    2. big shot, big noise
                                                    ----- +---->>> ***bone*** -bone: - +HtmlEntry: bone <<<

                                                    Adjective

                                                    bone {f}
                                                    1. {{form of|Feminine plural form|bono}}
                                                    -Category:Italian adjective forms---- +Category:Italian adjective forms---->>> ***Bulgaria*** -Bulgaria: -{{wikipedia|lang=it}} +HtmlEntry: Bulgaria <<<{{wikipedia|lang=it}}

                                                    Pronunciation

                                                    • {{IPA|/bulÉ¡aˈri.a/|lang=it}}, {{X-SAMPA|/bulga"ri.a/|lang=it}}
                                                    @@ -627,10 +583,9 @@ Bulgaria:

                                                    Related terms

                                                    • bulgaro
                                                    -Category:it:Countries---- +Category:it:Countries---->>> ***Burundi*** -Burundi: -{{wikipedia|lang=it}} +HtmlEntry: Burundi <<<{{wikipedia|lang=it}}

                                                    Proper noun

                                                    {{it-proper noun|g=m}}
                                                    1. {{l|en|Burundi}}
                                                    2. @@ -639,18 +594,16 @@ Burundi:

                                                      Derived terms

                                                      • burundese
                                                      -Category:it:Countries---- +Category:it:Countries---->>> ***can*** -can: - +HtmlEntry: can <<<

                                                      Noun

                                                      {{it-noun|ca|m|n|ni}}
                                                      1. {{context|poetic|_|and literary form of cane|lang=it}} dog
                                                      ----- +---->>> ***centavo*** -centavo: - +HtmlEntry: centavo <<<

                                                      Noun

                                                      {{it-noun|centav|m|o|i}}
                                                      1. centavo
                                                      2. @@ -660,10 +613,9 @@ centavo:
                                                        • covante
                                                        • vocante
                                                        ----- +---->>> ***ci*** -ci: - +HtmlEntry: ci <<<

                                                        Etymology

                                                        <small>For the pronoun</small><br>From {{etyl|la|it}} {{term|ecce|look|lang=la}} + {{term|hic|here|lang=la}}<small>For the adverb</small><br>{{etyl|la|it}} {{term|ecce|look|lang=la}} + {{term|ibi|there|lang=la}}

                                                        Pronunciation

                                                        @@ -699,10 +651,9 @@ ci:
                                                      3. qua
                                                      4. qui
                                                      5. ----- +---->>> ***color*** -color: - +HtmlEntry: color <<<

                                                        Noun

                                                        {{head|it|noun|g=m}} {inv}
                                                        1. {{apocopic form of|colore|lang=it}}
                                                        2. @@ -711,20 +662,18 @@ color:

                                                          Anagrams

                                                          • cloro
                                                          ----- +---->>> ***country*** -country: - +HtmlEntry: country <<<

                                                          Etymology

                                                          From {{etyl|en|it}}

                                                          Noun

                                                          {{head|it|noun}} {{m|inv}}
                                                          1. {{music|lang=it}} country music
                                                          -af:countryang:countryar:countryaz:countryzh-min-nan:countrycs:countrycy:countryde:countryet:countryel:countryes:countryeo:countryfa:countryfr:countrygl:countryko:countryhy:countryio:countryid:countryit:countrykl:countrykn:countryka:countrykk:countrysw:countryku:countrylo:countrylb:countrylt:countryli:countryhu:countrymg:countryml:countrymy:countrynl:countryja:countrypl:countrypt:countryro:countryru:countrysimple:countryfi:countrysv:countryta:countryte:countryth:countrytr:countryuk:countryvi:countryzh:country +af:countryang:countryar:countryaz:countryzh-min-nan:countrycs:countrycy:countryde:countryet:countryel:countryes:countryeo:countryfa:countryfr:countrygl:countryko:countryhy:countryio:countryid:countryit:countrykl:countrykn:countryka:countrykk:countrysw:countryku:countrylo:countrylb:countrylt:countryli:countryhu:countrymg:countryml:countrymy:countrynl:countryja:countrypl:countrypt:countryro:countryru:countrysimple:countryfi:countrysv:countryta:countryte:countryth:countrytr:countryuk:countryvi:countryzh:country>>> ***crude*** -crude: - +HtmlEntry: crude <<<

                                                          Adjective

                                                          crude f plural
                                                          1. feminine plural of crudo
                                                          2. @@ -733,10 +682,9 @@ crude:

                                                            Anagrams

                                                            • curde
                                                            -Category:Italian adjective forms---- +Category:Italian adjective forms---->>> ***date*** -date: - +HtmlEntry: date <<<

                                                            Noun

                                                            date {f}
                                                            1. {{plural of|data|lang=it}}
                                                            2. @@ -748,10 +696,9 @@ date:
                                                            3. second-person plural imperative of dare
                                                            4. feminine plural of dato, past participle of dare
                                                            -Category:Italian past participle formsCategory:Italian verb forms---- +Category:Italian past participle formsCategory:Italian verb forms---->>> ***de*** -de: - +HtmlEntry: de <<<

                                                            Contraction

                                                            {{head|it|contraction}}
                                                            1. {{apocopic form of|del|lang=it}}
                                                            2. @@ -768,10 +715,9 @@ de:

                                                              Anagrams

                                                              • ed
                                                              ----- +---->>> ***decade*** -decade: - +HtmlEntry: decade <<<

                                                              Etymology

                                                              {{confix|deca|ade|lang=it}}

                                                              Noun

                                                              @@ -792,20 +738,18 @@ decade:

                                                              Anagrams

                                                              • deceda
                                                              -Category:Italian verb formsCategory:it:Time---- +Category:Italian verb formsCategory:it:Time---->>> ***deficit*** -deficit: - +HtmlEntry: deficit <<<

                                                              Etymology

                                                              {{etyl|en|it}}

                                                              Noun

                                                              {{head|it|noun|g=m}} {inv}
                                                              1. deficit (financial, medical)
                                                              ----- +---->>> ***Esperanto*** -Esperanto: - +HtmlEntry: Esperanto <<<

                                                              Noun

                                                              {{head|it|noun|g=m}}
                                                              1. Esperanto
                                                              2. @@ -819,10 +763,9 @@ Esperanto:
                                                                • pensatore
                                                                • speronate
                                                                ----- +---->>> ***Estonia*** -Estonia: -{{wikipedia|lang=it}} +HtmlEntry: Estonia <<<{{wikipedia|lang=it}}

                                                                Proper noun

                                                                {{it-proper noun|f}}
                                                                1. {{l|en|Estonia}}
                                                                2. @@ -837,26 +780,23 @@ Estonia:
                                                                3. esitano
                                                                4. soniate
                                                                5. -Category:it:CountriesCategory:it:Exonyms---- +Category:it:CountriesCategory:it:Exonyms---->>> ***euro*** -euro: -{{wikipedia|lang=it}} +HtmlEntry: euro <<<{{wikipedia|lang=it}}

                                                                  Noun

                                                                  {{it-noun|eur|m|o|o}}
                                                                  1. euro {{gloss|currency}}
                                                                  -Category:it:Currency---- +Category:it:Currency---->>> ***f*** -f: - +HtmlEntry: f <<<

                                                                  Noun

                                                                  {{head|it|letter}} {{m|f|inv}}
                                                                  1. See under F
                                                                  ----- +---->>> ***fa*** -fa: - +HtmlEntry: fa <<<

                                                                  Pronunciation

                                                                  • {{IPA|[ˈfa]|lang=it}}, {{X-SAMPA|/"fa/}}
                                                                  • {{hyphenation|fà}}
                                                                  • @@ -886,10 +826,9 @@ fa:
                                                                    1. Third-person singular indicative present form of {{l|it|fare}}.
                                                                    2. Second-person singular imperative form of {{l|it|fare}}.
                                                                    ----- +---->>> ***gratis*** -gratis: - +HtmlEntry: gratis <<<

                                                                    Etymology

                                                                    From {{etyl|la|it}} {{term|gratis|lang=la}}

                                                                    Adverb

                                                                    @@ -913,10 +852,9 @@ From {{etyl|la|it}} {{term|gratis|lang=la}}

                                                                    Anagrams

                                                                    • stragi
                                                                    ----- +---->>> ***guerra*** -guerra: - +HtmlEntry: guerra <<<

                                                                    Etymology

                                                                    From {{etyl|roa-oit|it}} {{term|guerra|lang=it}}, from {{etyl|LL.|it}} {{recons|werra|lang=LL.}}, {{recons|guerra|lang=LL.}}, from {{etyl|frk|it}} {{recons|werra|werra|riot, disturbance, quarrel|lang=frk|sc=Latn}} from {{proto|Germanic|werrō|confusion, disarray|lang=it}}, from {{proto|Indo-European|wers-|to mix up, confuse, beat, thresh|lang=it}}. Related to {{etyl|goh|-}} {{term|werra|confusion, strife, quarrel|lang=goh}} ({{etyl|de|-}} {{term|verwirren|to confuse|lang=de}}), {{etyl|osx|-}} {{term|werran|to confuse, perplex|lang=osx}}, {{etyl|nl|-}} {{term|war|confusion, disarray|lang=nl}}, {{etyl|ang|-}} {{term|wyrsa|wyrsa, wiersa|worse|lang=ang}}. More at {{l|en|worse}}, {{l|en|wurst}}.

                                                                    Pronunciation

                                                                    @@ -954,10 +892,9 @@ From {{etyl|roa-oit|it}} {{term|guerra|lang=it}}, from {{etyl|LL.|it}} {{recons|

                                                                    Anagrams

                                                                    • urgerà
                                                                    ----- +---->>> ***i*** -i: - +HtmlEntry: i <<<

                                                                    Etymology 1

                                                                    Reduced form of {{term|gli|lang=it}}.<ref>{{reference-book| last = Patota | first = Giuseppe | title = Lineamenti di grammatica storica dell'italiano | year = 2002 | publisher = il Mulino | location = Bologna | language = Italian | id = ISBN 88-15-08638-2 | pages = p. 126 | chapter = }}</ref>

                                                                    Article

                                                                    @@ -985,10 +922,9 @@ Reduced form of {{term|gli|lang=it}}.<ref>{{reference-book| last = Patota

                                                                  References

                                                                  -<references/>Category:it:Latin letter names---- +<references/>Category:it:Latin letter names---->>> ***in*** -in: - +HtmlEntry: in <<<

                                                                  Pronunciation

                                                                  • {{IPA|[in]|lang=it}}
                                                                  @@ -1009,10 +945,9 @@ in:

                                                                  Anagrams

                                                                  • ni
                                                                  ----- +---->>> ***Iraq*** -Iraq: -{{wikipedia|lang=it}} +HtmlEntry: Iraq <<<{{wikipedia|lang=it}}

                                                                  Proper noun

                                                                  {{it-proper noun|m}}
                                                                  1. {{l|en|Iraq}}
                                                                  2. @@ -1021,10 +956,9 @@ Iraq:

                                                                    Derived terms

                                                                    • iracheno
                                                                    -Category:it:Countries---- +Category:it:Countries---->>> ***langue*** -langue: - +HtmlEntry: langue <<<

                                                                    Verb

                                                                    langue
                                                                    1. {{conjugation of|languire|3|s|pres|ind|lang=it}}
                                                                    2. @@ -1033,10 +967,9 @@ langue:

                                                                      Anagrams

                                                                      • lagune
                                                                      -Category:Italian verb forms---- +Category:Italian verb forms---->>> ***lente*** -lente: - +HtmlEntry: lente <<<

                                                                      Etymology 1

                                                                      Inflected form of {{term|lento|lang=it}}.

                                                                      Adjective

                                                                      @@ -1055,10 +988,9 @@ From {{etyl|la|it}} {{term|lens|lēns|lentil|lang=la}}, lentis.
                                                                      • lente a contatto
                                                                      • lente d'ingrandimento
                                                                      ----- +---->>> ***libero*** -libero: - +HtmlEntry: libero <<<

                                                                      Etymology

                                                                      From {{etyl|la|it}} {{term|liber|līber}}

                                                                      Pronunciation

                                                                      @@ -1114,18 +1046,16 @@ From {{etyl|la|it}} {{term|liber|līber}} {{it-noun|liber|m|o|i}}
                                                                      1. {{football|lang=it}} sweeper.
                                                                      ----- +---->>> ***libre*** -libre: - +HtmlEntry: libre <<<

                                                                      Noun

                                                                      libre {f}
                                                                      1. {{plural of|libra|lang=it}}
                                                                      ----- +---->>> ***medicine*** -medicine: - +HtmlEntry: medicine <<<

                                                                      Noun

                                                                      medicine {f}
                                                                      1. {{plural of|medicina|lang=it}}
                                                                      2. @@ -1134,10 +1064,9 @@ medicine:

                                                                        Anagrams

                                                                        • endemici
                                                                        ----- +---->>> ***minute*** -minute: - +HtmlEntry: minute <<<

                                                                        Adjective

                                                                        {{head|it|adjective form|g=f|g2=p}}
                                                                        1. {{feminine plural of|minuto|lang=it}}
                                                                        2. @@ -1146,10 +1075,9 @@ minute:

                                                                          Anagrams

                                                                          • emunti, munite
                                                                          ----- +---->>> ***mobile*** -mobile: - +HtmlEntry: mobile <<<

                                                                          Etymology

                                                                          From {{etyl|la|it}} mobilis.

                                                                          Adjective

                                                                          @@ -1189,10 +1117,9 @@ From {{etyl|la|it}} mobilis.

                                                                          Anagrams

                                                                          • emboli
                                                                          ----- +---->>> ***monetario*** -monetario: - +HtmlEntry: monetario <<<

                                                                          Adjective

                                                                          {{it-adj|monetar|io|ia|i|ie}}
                                                                          1. monetary
                                                                          2. @@ -1201,10 +1128,9 @@ monetario:

                                                                            Anagrams

                                                                            • erotomani
                                                                            ----- +---->>> ***nu*** -nu: - +HtmlEntry: nu <<<

                                                                            Noun

                                                                            {{head|it|noun|g=m|g2=f}} {inv}
                                                                            1. The name of the letter N
                                                                            2. @@ -1213,10 +1139,9 @@ nu:

                                                                              Anagrams

                                                                              • un, un'
                                                                              ----- +---->>> ***o*** -o: - +HtmlEntry: o <<<

                                                                              Etymology 1

                                                                              From {{etyl|la|it}} {{term|aut|lang=la}}.<ref>Angelo Prati, "Vocabolario Etimologico Italiano", Torino, 1951</ref>

                                                                              Alternative forms

                                                                              @@ -1236,10 +1161,9 @@ From {{etyl|la|it}} {{term|aut|lang=la}}.<ref>Angelo Prati, "Vocabola

                                                                            References

                                                                            -<references/>---- +<references/>---->>> ***OMC*** -OMC: - +HtmlEntry: OMC <<<

                                                                            {{initialism|Italian}}

                                                                            OMC
                                                                            1. Organizzazione Mondiale del Commercio, WTO (World Trade Organisation.)
                                                                            2. @@ -1248,18 +1172,16 @@ OMC:

                                                                              Anagrams

                                                                              • com'
                                                                              ----- -***osteo*** -osteo-: - +---->>> +***osteo-*** +HtmlEntry: osteo- <<<

                                                                              Prefix

                                                                              osteo-
                                                                              1. {{anatomy|lang=it}} osteo-
                                                                              -Category:Italian prefixeset:osteo-fr:osteo-ja:osteo-pl:osteo- +Category:Italian prefixeset:osteo-fr:osteo-ja:osteo-pl:osteo->>> ***parole*** -parole: - +HtmlEntry: parole <<<

                                                                              Pronunciation

                                                                              • {{IPA|/paɾɔle/|lang=it}}, {{X-SAMPA|/pa4Ole/}}
                                                                              @@ -1285,10 +1207,9 @@ parole:

                                                                              Anagrams

                                                                              • palerò, polare
                                                                              ----- +---->>> ***peso*** -peso: - +HtmlEntry: peso <<<

                                                                              Etymology

                                                                              From {{etyl|la|it}} {{term|pensum|lang=la}}.

                                                                              Noun

                                                                              @@ -1314,10 +1235,9 @@ From {{etyl|la|it}} {{term|pensum|lang=la}}.

                                                                              Anagrams

                                                                              • pose
                                                                              -Category:Italian verb forms---- +Category:Italian verb forms---->>> ***pie*** -pie: - +HtmlEntry: pie <<<

                                                                              Adjective

                                                                              pie {f}
                                                                              1. Feminine plural form of pio
                                                                              2. @@ -1326,10 +1246,9 @@ pie:

                                                                                Anagrams

                                                                                • pei
                                                                                -Category:Italian adjective forms---- +Category:Italian adjective forms---->>> ***premature*** -premature: - +HtmlEntry: premature <<<

                                                                                Adjective

                                                                                premature
                                                                                1. Feminine plural form of prematuro
                                                                                2. @@ -1338,26 +1257,23 @@ premature:

                                                                                  Anagrams

                                                                                  • premurate
                                                                                  -Category:Italian adjective formset:prematurees:prematurefr:prematureko:prematureio:prematureid:prematureit:prematurekn:prematurehu:prematuremg:prematureml:prematuremy:prematurenl:prematurepl:prematurefi:prematuresv:prematureta:prematurete:prematurevi:prematurezh:premature -***pseudo*** -pseudo-: - +Category:Italian adjective formset:prematurees:prematurefr:prematureko:prematureio:prematureid:prematureit:prematurekn:prematurehu:prematuremg:prematureml:prematuremy:prematurenl:prematurepl:prematurefi:prematuresv:prematureta:prematurete:prematurevi:prematurezh:premature>>> +***pseudo-*** +HtmlEntry: pseudo- <<<

                                                                                  Prefix

                                                                                  {{head|it|prefix}}
                                                                                  1. pseudo-
                                                                                  ----- +---->>> ***qualitative*** -qualitative: - +HtmlEntry: qualitative <<<

                                                                                  Adjective

                                                                                  qualitative {f}
                                                                                  1. Feminine plural form of qualitativo
                                                                                  -Category:Italian adjective formset:qualitativeel:qualitativees:qualitativefa:qualitativefr:qualitativeio:qualitativehu:qualitativemy:qualitativeja:qualitativepl:qualitativept:qualitativeru:qualitativesimple:qualitativefi:qualitativeta:qualitativete:qualitativetr:qualitativevi:qualitativezh:qualitative +Category:Italian adjective formset:qualitativeel:qualitativees:qualitativefa:qualitativefr:qualitativeio:qualitativehu:qualitativemy:qualitativeja:qualitativepl:qualitativept:qualitativeru:qualitativesimple:qualitativefi:qualitativeta:qualitativete:qualitativetr:qualitativevi:qualitativezh:qualitative>>> ***quiz*** -quiz: - +HtmlEntry: quiz <<<

                                                                                  Noun

                                                                                  {{head|it|noun|g=m}} {inv}
                                                                                  1. quiz
                                                                                  2. @@ -1366,10 +1282,9 @@ quiz:

                                                                                    Derived terms

                                                                                    • telequiz
                                                                                    -et:quizel:quizfa:quizfr:quizko:quizid:quizit:quizkn:quizsw:quizhu:quizml:quizmy:quiznl:quizja:quizpl:quizpt:quizru:quizsimple:quizfi:quizsv:quizta:quizte:quiztr:quizvi:quizzh:quiz +et:quizel:quizfa:quizfr:quizko:quizid:quizit:quizkn:quizsw:quizhu:quizml:quizmy:quiznl:quizja:quizpl:quizpt:quizru:quizsimple:quizfi:quizsv:quizta:quizte:quiztr:quizvi:quizzh:quiz>>> ***radio*** -radio: -{{wikipedia|lang=it}} +HtmlEntry: radio <<<{{wikipedia|lang=it}}

                                                                                    Etymology

                                                                                    Borrowed from {{etyl|la|it}} radius.

                                                                                    Pronunciation

                                                                                    @@ -1411,10 +1326,9 @@ Borrowed from {{etyl|la|it}} radius.
                                                                                  3. rioda
                                                                                  4. rodai
                                                                                  5. -Category:Italian nouns with irregular genderCategory:it:Chemical elements---- +Category:Italian nouns with irregular genderCategory:it:Chemical elements---->>> ***rape*** -rape: - +HtmlEntry: rape <<<

                                                                                    Pronunciation

                                                                                    • {{IPA|/ˈrape/|[ˈraː.pe]|lang=it}}, {{X-SAMPA|/"rape/}}
                                                                                    • {{hyphenation|rà|pe}}
                                                                                    • @@ -1428,10 +1342,9 @@ rape:

                                                                                      Anagrams

                                                                                      • apre, arpe, pare, pera
                                                                                      ----- +---->>> ***relegate*** -relegate: - +HtmlEntry: relegate <<<

                                                                                      Pronunciation

                                                                                      • {{IPA|/re.leˈɡa.te/|lang=it}}
                                                                                      • {{hyphenation|re|le|gà|te}}
                                                                                      • @@ -1443,10 +1356,9 @@ relegate:
                                                                                      • {{conjugation of|relegare|2|p|imp|lang=it}}
                                                                                      • {{form of|Feminine plural|relegato}}
                                                                                  -Category:Italian past participle formsCategory:Italian verb forms---- +Category:Italian past participle formsCategory:Italian verb forms---->>> ***robot*** -robot: - +HtmlEntry: robot <<<

                                                                                  Noun

                                                                                  {{head|it|noun|g=m}} {inv}
                                                                                  1. {{l|en|robot}}
                                                                                  2. @@ -1456,10 +1368,9 @@ robot:

                                                                                    Derived terms

                                                                                    • robot da cucina
                                                                                    ----- +---->>> ***sabato*** -sabato: - +HtmlEntry: sabato <<<

                                                                                    Pronunciation

                                                                                    • {{IPA|/ˈsabato/|[ˈsaː.ba.t̪o]|lang=it}}, {{X-SAMPA|/"sabato/}}
                                                                                    • {{audio|It-sabato.ogg|audio}}
                                                                                    • @@ -1480,10 +1391,9 @@ From {{etyl|la|it}} sabbatum, from {{etyl|grc|it}} {{term|σάββατ

                                                                                      Anagrams

                                                                                      • basato, sabota
                                                                                      -Category:it:Days of the weekaf:sabatoang:sabatoast:sabatoaz:sabatobr:sabatocs:sabatocy:sabatoda:sabatode:sabatoet:sabatoel:sabatoes:sabatoeo:sabatoeu:sabatofr:sabatogl:sabatoko:sabatohy:sabatoio:sabatoid:sabatoit:sabatolo:sabatolv:sabatolb:sabatolt:sabatohu:sabatomg:sabatonl:sabatoja:sabatono:sabatooc:sabatopl:sabatopt:sabatoro:sabatoru:sabatofi:sabatosv:sabatota:sabatotr:sabatozh:sabato +Category:it:Days of the weekaf:sabatoang:sabatoast:sabatoaz:sabatobr:sabatocs:sabatocy:sabatoda:sabatode:sabatoet:sabatoel:sabatoes:sabatoeo:sabatoeu:sabatofr:sabatogl:sabatoko:sabatohy:sabatoio:sabatoid:sabatoit:sabatolo:sabatolv:sabatolb:sabatolt:sabatohu:sabatomg:sabatonl:sabatoja:sabatono:sabatooc:sabatopl:sabatopt:sabatoro:sabatoru:sabatofi:sabatosv:sabatota:sabatotr:sabatozh:sabato>>> ***seme*** -seme: -{{wikipedia|lang=it}} +HtmlEntry: seme <<<{{wikipedia|lang=it}}

                                                                                      Pronunciation

                                                                                      • {{IPA|[ˈseme]|lang=it}}
                                                                                      • {{enPR|séme}}, {{IPA|/ˈseme/|lang=it}}, {{X-SAMPA|/"seme/}}
                                                                                      • @@ -1510,10 +1420,9 @@ From {{etyl|la|it}} semen.

                                                                                        Anagrams

                                                                                        • mese
                                                                                        ----- +---->>> ***SpA*** -SpA: - +HtmlEntry: SpA <<<

                                                                                        Noun

                                                                                        {{head|it|noun}} {{f|inv}}
                                                                                        1. {{abbreviation of|società per azioni|lang=it}} {{gloss|public limited company, PLC}}
                                                                                        2. @@ -1528,30 +1437,27 @@ SpA:
                                                                                        3. {{sense|UK}} PLC {{qualifier|English}}
                                                                                        4. {{sense|USA}} Inc. {{qualifier|English}}
                                                                                      - +>>> ***star*** -star: - +HtmlEntry: star <<<

                                                                                      Etymology

                                                                                      From {{etyl|en|it}}

                                                                                      Noun

                                                                                      {{head|it|noun|g=f}} {inv}
                                                                                      1. star {{gloss|celebrity}}
                                                                                      ----- +---->>> ***stock*** -stock: - +HtmlEntry: stock <<<

                                                                                      Etymology

                                                                                      From {{etyl|en|it}} stock.

                                                                                      Noun

                                                                                      {{head|it|noun}}
                                                                                      1. stock, goods in supply, inventory
                                                                                      ----- +---->>> ***te*** -te: - +HtmlEntry: te <<<

                                                                                      Etymology

                                                                                      From {{etyl|la|it}} {{term|te|tē|lang=la}}, from {{term|tu|tū|lang=la}}.

                                                                                      Pronoun

                                                                                      @@ -1563,18 +1469,16 @@ From {{etyl|la|it}} {{term|te|tē|lang=la}}, from {{term|tu|tū|lang=la}}.
                                                                                      • ti
                                                                                      ----- +---->>> ***transfinite*** -transfinite: - +HtmlEntry: transfinite <<<

                                                                                      Adjective

                                                                                      transfinite {f}
                                                                                      1. Feminine plural form of transfinito
                                                                                      -Category:Italian adjective formsfr:transfiniteko:transfiniteio:transfinitepl:transfiniteru:transfinitevi:transfinite +Category:Italian adjective formsfr:transfiniteko:transfiniteio:transfinitepl:transfiniteru:transfinitevi:transfinite>>> ***transitive*** -transitive: - +HtmlEntry: transitive <<<

                                                                                      Adjective

                                                                                      transitive {p}
                                                                                      1. {{feminine of|transitivo|lang=it}}
                                                                                      2. @@ -1583,10 +1487,9 @@ transitive:

                                                                                        Anagrams

                                                                                        • {{l|it|intervista}}, {{l|it|intestarvi}}, {{l|it|intraviste}}, {{l|it|rinvestita}}, {{l|it|rinvitaste}}, {{l|it|strinatevi}}, {{l|it|vetrinista}}
                                                                                        -Category:Italian adjective forms---- +Category:Italian adjective forms---->>> ***Tunisia*** -Tunisia: -{{wikipedia|lang=it}} +HtmlEntry: Tunisia <<<{{wikipedia|lang=it}}

                                                                                        Proper noun

                                                                                        Tunisia {f}
                                                                                        1. Tunisia
                                                                                        2. @@ -1595,10 +1498,9 @@ Tunisia:

                                                                                          Derived terms

                                                                                          • tunisino
                                                                                          -Category:Italian proper nounsCategory:it:Countries---- +Category:Italian proper nounsCategory:it:Countries---->>> ***wireless*** -wireless: - +HtmlEntry: wireless <<<

                                                                                          Etymology

                                                                                          {{etyl|en|it}}

                                                                                          Noun

                                                                                          @@ -1610,18 +1512,16 @@ wireless: {{head|it|adjective}} {inv}
                                                                                          1. wireless (computing)
                                                                                          -cs:wirelesset:wirelessel:wirelessfa:wirelessfr:wirelessko:wirelessio:wirelessid:wirelesskn:wirelesshu:wirelessml:wirelessfj:wirelessnl:wirelesspl:wirelesspt:wirelessfi:wirelesssv:wirelessta:wirelesstr:wirelessvi:wirelesszh:wireless +cs:wirelesset:wirelessel:wirelessfa:wirelessfr:wirelessko:wirelessio:wirelessid:wirelesskn:wirelesshu:wirelessml:wirelessfj:wirelessnl:wirelesspl:wirelesspt:wirelessfi:wirelesssv:wirelessta:wirelesstr:wirelessvi:wirelesszh:wireless>>> ***y*** -y: - +HtmlEntry: y <<<

                                                                                          Noun

                                                                                          {{head|it|letter}} {{m|f|inv}}
                                                                                          1. See under Y
                                                                                          ----- +---->>> ***zero*** -zero: -{{cardinalbox|it|0|1|uno|ord=zeresimo}} +HtmlEntry: zero <<<{{cardinalbox|it|0|1|uno|ord=zeresimo}}

                                                                                          Pronunciation

                                                                                          • {{IPA|/ˈdzɛro/|[ˈd̪͡z̪ɛː.ro]|lang=it}}, {{X-SAMPA|/"dzEro/}}
                                                                                          • {{hyphenation|zè|ro}}
                                                                                          • @@ -1649,7 +1549,7 @@ zero:

                                                                                            See also

                                                                                            • Appendix:Italian numbers
                                                                                            -Category:Italian cardinal numbers---- +Category:Italian cardinal numbers---->>> Index: EN EN->IT diff --git a/todo.txt b/todo.txt index 1ae1fd8..3587e21 100644 --- a/todo.txt +++ b/todo.txt @@ -1,6 +1,8 @@ -make sure word is sticky when you change dictionaries. +* HtmlEntries + - Add them to the dictionary's list. + - Link to them from the appropriate places: IndexEntry (first), and individual rows (tricker, built at different times). -Ok, good to know. I will put in Dutch-Greek in the next release, and see if I can separate the Ancient Greek from the modern Greek. +make sure word is sticky when you change dictionaries. get rid of Appendix:.... sections from EN.data in split. @@ -30,7 +32,6 @@ flag images history dialog italian verbs... (show conjugation, pulled from a linked place....--would lower size a lot!) - handle enwiktionary examples like "asdf (asdf)" better example splitting check arabic UI fix @@ -40,16 +41,7 @@ check arabic UI fix * quiz * colorize things - -done: -Hide uninstalled dictionaries. -* sorting of entries -* better Row/Entry classes? -* wiktionary -* better tokenization? -* publish 2.0 dictionary -* test email -* dict manager +Ok, good to know. I will put in Dutch-Greek in the next release, and see if I can separate the Ancient Greek from the modern Greek. flashcards move dict to top of list when downloaded @@ -59,34 +51,6 @@ text to speech / audio from wiktionary icons inside dictionaries -**** PC: -{{count page|[[Wiktionary:Page count]]}} - -Bad filing: under Arab? -===Arab=== - جميل {m} (tr. jamiil) (adjective), feminine singular and inanimate plural: {{Arab|[[جميلة]]}}, masculine plural: {{Arab|[[جمال]]}}, feminine plural: {{Arab|[[جميلات]]}} :: beautiful - {{Arab|برج}} (tr. burj) (noun), dual: {{Arab|[[برجي]]}} (barjī), plural: {{Arab|[[بروج]]}} (burūj) or {{Arab|[[ابراج]]}} (’abrāj) :: castle - {{Arab|برج}} (tr. burj) (noun), dual: {{Arab|[[برجي]]}} (barjī), plural: {{Arab|[[بروج]]}} (burūj) or {{Arab|[[ابراج]]}} (’abrāj) :: citadel - {{Arab|برج}} (tr. burj) (noun), dual: {{Arab|[[برجي]]}} (barjī), plural: {{Arab|[[بروج]]}} (burūj) or {{Arab|[[ابراج]]}} (’abrāj) :: tower - {{term|w:Burj Khalifa|برج خليفة|tr=Burj Khalifa|Khalifa Tower}} (dialect: borǰ khalīfa), initially named {{term|sc=Arab||برج دبي|lang=ar||Dubai Tower}}. :: -- - {{Arab|برج}} (tr. burj) (noun), dual: {{Arab|[[برجي]]}} (barjī), plural: {{Arab|[[بروج]]}} (burūj) or {{Arab|[[ابراج]]}} (’abrāj) :: constellation - {{Arab|برج}} (tr. burj) (noun), dual: {{Arab|[[برجي]]}} (barjī), plural: {{Arab|[[بروج]]}} (burūj) or {{Arab|[[ابراج]]}} (’abrāj) :: spire - {{Arab|برج}} (tr. burj) (noun), dual: {{Arab|[[برجي]]}} (barjī), plural: {{Arab|[[بروج]]}} (burūj) or {{Arab|[[ابراج]]}} (’abrāj) :: asterism - {{Arab|برج}} (tr. burj) (noun), dual: {{Arab|[[برجي]]}} (barjī), plural: {{Arab|[[بروج]]}} (burūj) or {{Arab|[[ابراج]]}} (’abrāj) :: zodiac - {{Arab|برج}} (tr. burj) (noun), dual: {{Arab|[[برجي]]}} (barjī), plural: {{Arab|[[بروج]]}} (burūj) or {{Arab|[[ابراج]]}} (’abrāj) :: sign of the zodiac - هدف {m} (tr. hádaf) (noun), plural: {{Arab|[[اهداف]]}} (’ahdāf) :: target, object, aim, end - هدف {m} (tr. hádaf) (noun), plural: {{Arab|[[اهداف]]}} (’ahdāf) :: objective, purpose, design, intention - هدف {m} (tr. hádaf) (noun), plural: {{Arab|[[اهداف]]}} (’ahdāf) :: goal - صفر {{Arab|صُفْر}} {{IPAchar|(Sufr)}} {p} :: yellow, pale, pallid, wan ({plural of|{{Arab|[[أصفر|أَصْفَر]]}}}) - - -=== Bad ordering: -===do=== - do {{wikipedia|Do (nota)|lang=it}}{{infl|it|noun|g=m}} :: do, the musical note - fare {{it-verb}} {{transitive}} :: To do - - - done: {infl} better handling of language name in foreign sections (might need to append it if it isn't exact) @@ -131,4 +95,12 @@ Handle other sections: Chinese: handle "Compounds" section handle word-info in English. random word jump +Hide uninstalled dictionaries. +sorting of entries +better Row/Entry classes? +wiktionary +better tokenization? +publish 2.0 dictionary +test email +dict manager \ No newline at end of file -- 2.43.0