]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
Escape HTML. Test special ISO coding.
authorthadh <thadh@10.203.1.206>
Sat, 28 Jul 2012 01:51:00 +0000 (18:51 -0700)
committerthadh <thadh@10.203.1.206>
Sat, 28 Jul 2012 01:51:00 +0000 (18:51 -0700)
.classpath
jars/commons-lang3-3.1.jar [new file with mode: 0644]
src/com/hughes/android/dictionary/engine/DictionaryBuilderMain.java
src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java
src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java
testdata/goldens/QuickDic-FR-NL.quickdic.text [new file with mode: 0644]
testdata/goldens/wiktionary.WholeSection.DE.quickdic.text
testdata/goldens/wiktionary.WholeSection.EN.quickdic.text
testdata/goldens/wiktionary.WholeSection.IT.quickdic.text
todo.txt

index 529b43268ba5f079f247e13609c2ca9dca4f12e9..60b221e67987b5895fca74585dac129286ba019d 100755 (executable)
@@ -5,5 +5,6 @@
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
        <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
        <classpathentry kind="lib" path="jars/xerces-2_11_0/xercesImpl.jar"/>
+       <classpathentry kind="lib" path="jars/commons-lang3-3.1.jar"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>
diff --git a/jars/commons-lang3-3.1.jar b/jars/commons-lang3-3.1.jar
new file mode 100644 (file)
index 0000000..a85e539
Binary files /dev/null and b/jars/commons-lang3-3.1.jar differ
index c17ebec6717e5bff24da762eb7bf493797520195..2df52e704e1ae283138c65613ef4b81f3f5669aa 100644 (file)
@@ -25,6 +25,7 @@ import java.util.Set;
 import junit.framework.TestCase;
 
 import com.hughes.android.dictionary.parser.wiktionary.EnTranslationToTranslationParser;
+import com.hughes.android.dictionary.parser.wiktionary.WholeSectionToHtmlParser;
 import com.hughes.android.dictionary.parser.wiktionary.WiktionaryLangs;
 
 public class DictionaryBuilderMain extends TestCase {
@@ -108,7 +109,7 @@ public class DictionaryBuilderMain extends TestCase {
       }
       
       result.add(String.format("--input%d=%s/wikiSplit/en/%s.data", i, INPUTS, foreignIso));
-      result.add(String.format("--input%dName=enwiktionary.%s", i, foreignIso)) ;
+      result.add(String.format("--input%dName=ENWiktionary.%s", i, foreignIso)) ;
       result.add(String.format("--input%dFormat=enwiktionary", i));
       result.add(String.format("--input%dWiktionaryType=EnForeign", i));
       result.add(String.format("--input%dLangPattern=%s", i, foreignRegex));
@@ -132,6 +133,13 @@ public class DictionaryBuilderMain extends TestCase {
         result.add(String.format("--input%dFormat=chemnitz", i));
         ++i;
       }
+      
+      result.add(String.format("--input%d=%s/wikiSplit/en/%s.data", i, INPUTS, foreignIso));
+      result.add(String.format("--input%dName=%s", i, "ENWiktionary.WholeSections.%s", foreignIso));
+      result.add(String.format("--input%dFormat=%s", i, WholeSectionToHtmlParser.NAME));
+      result.add(String.format("--input%dTitleIndex=%d", i, 3 - enIndex));
+      ++i;
+
     } else {
       // Pairs without English.
       result.add(String.format("--lang1=%s", lang1));
@@ -255,6 +263,10 @@ public class DictionaryBuilderMain extends TestCase {
       }
       done.add(pairList);
       
+      if (!pairList.contains("IT") || !pairList.contains("EN")) {
+        continue;
+      }
+      
       DictionaryBuilder.main(getMainArgs(pair).toArray(new String[0]));
     }
     
index 59de98fa13b071db22e386385ab6b616691cb145..c19a1b375bfeb5329123361b21262188688306e4 100644 (file)
@@ -35,6 +35,32 @@ public class DictionaryBuilderTest extends TestCase {
 
   public static final String TEST_OUTPUTS = "testdata/outputs/";
 
+  public void doTestCustomDict(final String name, final String lang1,
+      final String lang2, final String inputFile) throws Exception {
+    final File result = new File(TEST_OUTPUTS + name);
+    System.out.println("Writing to: " + result);
+    DictionaryBuilder.main(new String[] {
+        "--dictOut=" + result.getAbsolutePath(),
+        "--lang1=" + lang1,
+        "--lang2=" + lang2,
+        "--lang1Stoplist=" + STOPLISTS + "empty.txt",
+        "--lang2Stoplist=" + STOPLISTS + "empty.txt",
+        "--dictInfo=bleh.",
+        
+        "--input1=testdata/inputs/" + inputFile,
+        "--input1Name=my_input_" + name,
+        "--input1Charset=ISO-8859-1",
+        "--input1Format=tab_separated",
+
+        "--print=" + result.getPath() + ".text",
+    });
+    
+    checkGolden(name, result); 
+  }
+  
+  public void test_FR_NL() throws Exception {
+    doTestCustomDict("QuickDic-FR-NL.quickdic", "FR", "NL", "QuickDic-FR-NL.txt");
+  }
   
   public void testWiktionary_en_de2fr() throws Exception {
     wiktionaryTestWithEnTrans2Trans("wiktionary.de_fr.quickdic", "DE", "FR");
index d0a4908f10ccad4962dc5ce47ebcb2af5b10daa3..f38b5503086a5c27b988dcdaa93cab06525ba6c3 100644 (file)
@@ -5,6 +5,8 @@ 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;
@@ -48,7 +50,7 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
 
     @Override
     public void onPlainText(String plainText) {
-      super.onPlainText(plainText);
+      super.onPlainText(StringEscapeUtils.escapeHtml3(plainText));
     }
 
     @Override
@@ -84,9 +86,9 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
         }
         return;
       }
-      onPlainText(String.format("\n<h%d>", depth));
+      builder.append(String.format("\n<h%d>", depth));
       dispatch(headingText, null);
-      onPlainText(String.format("</h%d>\n", depth));
+      builder.append(String.format("</h%d>\n", depth));
     }
 
     final List<Character> listPrefixStack = new ArrayList<Character>();
@@ -97,12 +99,12 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
       }
       final String prefix = wikiTokenizer.listItemPrefix();
       while (listPrefixStack.size() < prefix.length()) {
-        onPlainText(String.format("<%s>", WikiTokenizer.getListTag(prefix.charAt(listPrefixStack.size()))));
+        builder.append(String.format("<%s>", WikiTokenizer.getListTag(prefix.charAt(listPrefixStack.size()))));
         listPrefixStack.add(prefix.charAt(listPrefixStack.size()));
       }
-      onPlainText("<li>");
+      builder.append("<li>");
       dispatch(wikiTokenizer.listItemWikiText(), null);
-      onPlainText("</li>\n");
+      builder.append("</li>\n");
       
       WikiTokenizer nextToken = wikiTokenizer.nextToken();
       boolean returnToLineStart = false;
@@ -121,7 +123,7 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
       }
       while (listPrefixStack.size() > nextListHeader.length()) {
         final char prefixChar = listPrefixStack.remove(listPrefixStack.size() - 1);
-        onPlainText(String.format("</%s>\n", WikiTokenizer.getListTag(prefixChar)));
+        builder.append(String.format("</%s>\n", WikiTokenizer.getListTag(prefixChar)));
       }
     }
 
@@ -131,16 +133,16 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
     public void onMarkup(WikiTokenizer wikiTokenizer) {
       if ("'''".equals(wikiTokenizer.token())) {
         if (!boldOn) {
-          onPlainText("<b>");
+          builder.append("<b>");
         } else {
-          onPlainText("</b>");
+          builder.append("</b>");
         }
         boldOn = !boldOn;
       } else if ("''".equals(wikiTokenizer.token())) {
         if (!italicOn) {
-          onPlainText("<em>");
+          builder.append("<em>");
         } else {
-          onPlainText("</em>");
+          builder.append("</em>");
         }
         italicOn = !italicOn;
       } else {
diff --git a/testdata/goldens/QuickDic-FR-NL.quickdic.text b/testdata/goldens/QuickDic-FR-NL.quickdic.text
new file mode 100644 (file)
index 0000000..78ca579
--- /dev/null
@@ -0,0 +1,57 @@
+dictInfo=bleh.
+EntrySource: my_input_QuickDic-FR-NL.quickdic 25
+
+Index: FR FR->NL
+===à===
+  à l'entour :: rondom, in het rond
+***abord***
+  abord :: omtrek, directe omgeving, aankomst
+***abordés***
+  abordés :: aanleggen, tot stand brengen, bereiken
+***chêne***
+  chêne :: eikenhout, eik
+***collé***
+  collé :: kleven
+***conçu***
+  conçu :: zie concevoir
+===l'entour===
+  à l'entour :: rondom, in het rond
+
+Index: NL NL->FR
+===aankomst===
+  abord :: omtrek, directe omgeving, aankomst
+===aanleggen===
+  abordés :: aanleggen, tot stand brengen, bereiken
+===bereiken===
+  abordés :: aanleggen, tot stand brengen, bereiken
+===brengen===
+  abordés :: aanleggen, tot stand brengen, bereiken
+===concevoir===
+  conçu :: zie concevoir
+===directe===
+  abord :: omtrek, directe omgeving, aankomst
+===eik===
+  chêne :: eikenhout, eik
+===eikenhout===
+  chêne :: eikenhout, eik
+===het===
+  à l'entour :: rondom, in het rond
+===in===
+  à l'entour :: rondom, in het rond
+***kleven***
+  collé :: kleven
+===omgeving===
+  abord :: omtrek, directe omgeving, aankomst
+===omtrek===
+  abord :: omtrek, directe omgeving, aankomst
+===rond===
+  à l'entour :: rondom, in het rond
+===rondom===
+  à l'entour :: rondom, in het rond
+===stand===
+  abordés :: aanleggen, tot stand brengen, bereiken
+===tot===
+  abordés :: aanleggen, tot stand brengen, bereiken
+===zie===
+  conçu :: zie concevoir
+
index ea2d91bfd38f631c72afaaa7f673838edc3f845a..819fbf6a9b1ee0d4136efa1bdf37bdf8a61da15b 100644 (file)
@@ -40,7 +40,7 @@ ab-:
 <ul><li> <em>abfahren</em> (to depart from).</li>
 </ul>
 <li> Separable verb prefix that indicates removal or quitting, off.</li>
-<ul><li> <em>abspülen</em> (to rinse off, to wash off).</li>
+<ul><li> <em>absp&uuml;len</em> (to rinse off, to wash off).</li>
 </ul>
 <li> Separable verb prefix that indicates a downward movement, down.</li>
 <li> Separable verb prefix that indicates from or of.</li>
@@ -58,19 +58,19 @@ ab-:
 
 <h4>Derived terms</h4>
 {der-top}
-<ul><li> abändern</li>
+<ul><li> ab&auml;ndern</li>
 <li> abarbeiten</li>
 <li> abbauen</li>
 <li> abbilden</li>
 <li> abbinden</li>
 <li> abbrechen</li>
 <li> abfallen</li>
-<li> abführen</li>
+<li> abf&uuml;hren</li>
 <li> abgeben</li>
 <li> abhalten</li>
-<li> abhängen</li>
-<li> abklären</li>
-<li> abkürzen</li>
+<li> abh&auml;ngen</li>
+<li> abkl&auml;ren</li>
+<li> abk&uuml;rzen</li>
 <li> ablehnen</li>
 <li> ableiten</li>
 <li> ablesen</li>
@@ -79,7 +79,7 @@ ab-:
 <ul><li> abnehmen</li>
 <li> abschalten</li>
 <li> abschlagen</li>
-<li> abschließen</li>
+<li> abschlie&szlig;en</li>
 <li> abschneiden</li>
 <li> absetzen</li>
 <li> abstammen</li>
@@ -108,7 +108,7 @@ From {{etyl|goh|de}} {{term|ab|lang=goh}}, from {{proto|Germanic|ab|lang=de}}.
 <h3>Preposition</h3>
 {{head|de|preposition}}
 <ol><li> Beginning at that time or location; from.</li>
-<ul><li> <b><em>ab</b> heute verfügbar</em> (available from today on)</li>
+<ul><li> <b><em>ab</b> heute verf&uuml;gbar</em> (available from today on)</li>
 </ul>
 </ol>
 
@@ -273,7 +273,7 @@ From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond
 </ul>
 
 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 (<em>breast</em>, <em>fingernail</em>, <em>full</em>, <em>horn</em>, <em>knee</em>, <em>moon</em>, <em>round</em>) 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 <em>sing.</em>, 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 <em>pl.</em>|  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|}
+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 (<em>breast</em>, <em>fingernail</em>, <em>full</em>, <em>horn</em>, <em>knee</em>, <em>moon</em>, <em>round</em>) were not in the original 200-word list. {|  align=center class=&quot;wikitable sortable&quot;|  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 <em>sing.</em>, thou|  c=fr | tu, vous (formal)|  c=de | du, Sie (formal)|  c=it | tu, Lei (formal)|  c=es | t&uacute;, 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 | &eacute;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 <em>pl.</em>|  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&auml;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&auml;r|  c=la | ille|- |  i=No | 9|  c=en | here|  c=fr | ici|  c=de | hier|  c=it | qui, qua|  c=es | aqu&iacute;, ac&aacute;|  c=nl | hier|  c=sw | h&auml;r|  c=la | hic|- |  i=No | 10|  c=en | there|  c=fr | l&agrave;|  c=de | dort|  c=it | l&agrave;|  c=es | ah&iacute;, all&iacute;, all&aacute;|  c=nl | daar|  c=sw | d&auml;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&ugrave;|  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&auml;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&aring;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&aring;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&aring;|  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&aring;|  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&uuml;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&szlig;|  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&aring;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 | &eacute;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&ntilde;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 | &eacute;troit|  c=de | eng|  c=it | stretto|  c=es | estrecho, angosto|  c=nl | klein|  c=sw | tr&aring;ng|  c=la | angustus|- |  i=No | 35|  c=en | thin|  c=fr | mince|  c=de | d&uuml;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&auml;nniska|  c=la | homo|- |  i=No | 39|  c=en | kid|  c=fr | enfant|  c=de | Kind|  c=it | bambino|  c=es | ni&ntilde;o|  c=nl | kind|  c=sw | barn|  c=la | puer|- |  i=No | 40|  c=en | wife|  c=fr | femme, &eacute;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, &eacute;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&egrave;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&egrave;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&aacute;jaro|  c=nl | vogel|  c=sw | f&aring;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 | &aacute;rbol|  c=nl | boom|  c=sw | tr&auml;d|  c=la | arbor|- |  i=No | 52|  c=en | forest|  c=fr | for&ecirc;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&acirc;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&ouml;|  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&ouml;v, blad|  c=la | folium|- |  i=No | 57|  c=en | root *|  c=fr | racine|  c=de | Wurzel|  c=it | radice|  c=es | ra&iacute;z|  c=nl | root|  c=sw | rot|  c=la | radix|- |  i=No | 58|  c=en | bark * (from tree)|  c=fr | &eacute;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&auml;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&ouml;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 | &auml;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&auml;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&aring;r|  c=la | capillus, coma, crinis|- |  i=No | 72|  c=en | head *|  c=fr | t&ecirc;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 | &ouml;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 | &ouml;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&auml;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&ntilde;a|  c=nl | vingernagel|  c=sw | nagel|  c=la | unguis|- |  i=No | 80|  c=en | foot *|  c=fr | pied|  c=de | Fu&szlig;|  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&auml;|  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&uuml;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&ntilde;as, tripas|  c=nl | ingewanden|  c=sw | in&auml;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&uuml;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&ouml;st|  c=la | pectus, mamma|- |  i=No | 90|  c=en | heart *|  c=fr | cœur|  c=de | Herz|  c=it | cuore|  c=es | coraz&oacute;n|  c=nl | hart|  c=sw | hj&auml;rta|  c=la | cor|- |  i=No | 91|  c=en | liver *|  c=fr | foie|  c=de | Leber|  c=it | fegato|  c=es | h&iacute;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 | &auml;ta|  c=la | edere|- |  i=No | 94|  c=en | bite *|  c=fr | mordre|  c=de | bei&szlig;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&auml;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&aring;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&iacute;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&ouml;ren|  c=it | udire, sentire|  c=es | o&iacute;r|  c=nl | horen|  c=sw | h&ouml;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&auml;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&uuml;rchten|  c=it | temere|  c=es | temer|  c=nl | vrezen, angst|  c=sw | frukta, r&auml;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&ouml;|  c=la | mori|- |  i=No | 110|  c=en | kill *|  c=fr | tuer|  c=de | t&ouml;ten|  c=it | uccidere|  c=es | matar|  c=nl | doden|  c=sw | d&ouml;da|  c=la | necare|- |  i=No | 111|  c=en | fight|  c=fr | se battre|  c=de | k&auml;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&aring;|  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&auml;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&ntilde;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&ntilde;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&auml;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&aring;|  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'&eacute;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&aring;|  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&auml;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&aring;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&auml;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&auml;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&uuml;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&auml;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&auml;hlen|  c=it | contare|  c=es | contar|  c=nl | tellen|  c=sw | r&auml;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&auml;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&szlig;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&auml;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&aring;ne|  c=la | luna|- |  i=No | 149|  c=en | star *|  c=fr | &eacute;toile|  c=de | Stern|  c=it | stella|  c=es | estrella|  c=nl | ster|  c=sw | stj&auml;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&egrave;re|  c=de | Flu&szlig;|  c=it | fiume|  c=es | r&iacute;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&ouml;|  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&egrave;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&ouml;|  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&eacute;e|  c=de | Rauch|  c=it | fumo|  c=es | humo|  c=nl | rook|  c=sw | r&ouml;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&ucirc;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&szlig;e|  c=it | strada|  c=es | camino|  c=nl | weg|  c=sw | v&auml;g|  c=la | via|- |  i=No | 171|  c=en | mountain *|  c=fr | montagne|  c=de | Berg|  c=it | montagna|  c=es | monta&ntilde;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&ouml;d|  c=la | ruber|- |  i=No | 173|  c=en | green *|  c=fr | vert|  c=de | gr&uuml;n|  c=it | verde|  c=es | verde|  c=nl | groen|  c=sw | gr&ouml;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&szlig;|  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&iacute;a|  c=nl | dag|  c=sw | dag|  c=la | dies|- |  i=No | 179|  c=en | year|  c=fr | an, ann&eacute;e|  c=de | Jahr|  c=it | anno|  c=es | a&ntilde;o|  c=nl | jaar|  c=sw | &aring;r|  c=la | annus|- |  i=No | 180|  c=en | warm *|  c=fr | chaud|  c=de | warm|  c=it | caldo|  c=es | c&aacute;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&iacute;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&lt;br&gt;|  c=nl | slecht|  c=sw | d&aring;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 | &eacute;mouss&eacute;|  c=de | stumpf|  c=it | noioso|  c=es | desafilado|  c=nl | stomp, bot|  c=sw | sl&ouml;|  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&auml;t|  c=la | levis|- |  i=No | 194|  c=en | wet|  c=fr | mouill&eacute;|  c=de | nass, feucht|  c=it | bagnato|  c=es | mojado|  c=nl | nat|  c=sw | v&aring;t, bl&ouml;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&auml;tt, riktig|  c=la | rectus|- |  i=No | 197|  c=en | near|  c=fr | proche|  c=de | nah,&lt;br&gt;nahe|  c=it | vicino|  c=es | cerca|  c=nl | naar|  c=sw | n&auml;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&aring;ngt bort, fj&auml;rran|  c=la | longinquus|- |  i=No | 199|  c=en | right|  c=fr | &agrave; droite|  c=de | rechts|  c=it | destra|  c=es | derecha|  c=nl | rechts|  c=sw | h&ouml;ger|  c=la | dexter|- |  i=No | 200|  c=en | left|  c=fr | &agrave; gauche|  c=de | links|  c=it | sinistra|  c=es | izquierda|  c=nl | links|  c=sw | v&auml;nster|  c=la | sinister|- |  i=No | 201|  c=en | at|  c=fr | &agrave;|  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&eacute;|  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:
 
@@ -386,7 +386,7 @@ China:
 {{wikipedia|lang=de}}
 <h3>Pronunciation</h3>
 <ul><li> {{audio|De-China.ogg|audio}}</li>
-<li> {{IPA|[ˈçiːnaː]|lang=de}}, colloquially: {{IPAchar|[ˈʃiːnaː]}}</li>
+<li> {{IPA|[ˈ&ccedil;iːnaː]|lang=de}}, colloquially: {{IPAchar|[ˈʃiːnaː]}}</li>
 <li> Austria, Switzerland: {{IPAchar|[ˈkiːnaː]}}</li>
 <li> {{audio|De-at-China.ogg|Audio (Austria)}}</li>
 </ul>
@@ -416,7 +416,7 @@ From {{etyl|osx|nds}} {{term|that|lang=osx}}.
 {{head|nds|article|g=n}}
 <ol><li> {{demonstrative|lang=nds}} that</li>
 <ul><li> <em>Ik mag dat Bauk.</em> (I like that book.)</li>
-<li> <em>...un dat Schapp, weck ümmer leddig was.</em> (...and that cabinet, which was always empty.)</li>
+<li> <em>...un dat Schapp, weck &uuml;mmer leddig was.</em> (...and that cabinet, which was always empty.)</li>
 </ul>
 </ol>
 
@@ -489,8 +489,8 @@ From {{etyl|osx|nds}}.
 <h3>Pronoun</h3>
 {{head|nds|pronoun|accusative|den|g=m}}
 <ol><li> {{relative|lang=nds}} which, that</li>
-<ul><li> <em>De Mann, <b>de</b> dår güng.</em> (The man, <b>which</b> walked there.)</li>
-<li> <em>De Mann, <b>den</b> wi hüert häbben.</em> (The man, <b>which</b> we hired.)</li>
+<ul><li> <em>De Mann, <b>de</b> d&aring;r g&uuml;ng.</em> (The man, <b>which</b> walked there.)</li>
+<li> <em>De Mann, <b>den</b> wi h&uuml;ert h&auml;bben.</em> (The man, <b>which</b> we hired.)</li>
 </ul>
 </ol>
 
@@ -501,7 +501,7 @@ From {{etyl|osx|nds}}.
 <h3>Pronoun</h3>
 {{head|nds|pronoun|accusative|de|g=f}}
 <ol><li> {{relative|lang=nds}} which, that</li>
-<ul><li> <em>De Fru, <b>de</b> wi hüert hębben.</em> (The woman, <b>which</b> we have hired.)</li>
+<ul><li> <em>De Fru, <b>de</b> wi h&uuml;ert hębben.</em> (The woman, <b>which</b> we have hired.)</li>
 </ul>
 </ol>
 
@@ -513,7 +513,7 @@ From {{etyl|osx|nds}}.
 Dezember:
 
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|[deˈtsɛmbɐ]|lang=de}}, {{X-SAMPA|[de"tsEmb6]}}</li>
+<ul><li> {{IPA|[deˈtsɛmbɐ]|lang=de}}, {{X-SAMPA|[de&quot;tsEmb6]}}</li>
 <li> {{hyphenation|De-zem-ber}}</li>
 <li> {{audio|De-Dezember.ogg|audio}}</li>
 </ul>
@@ -558,7 +558,7 @@ die:
 {{head|de|article|definite|feminine and plural form of|der}}
 <ol><li> The; {{form of|declined form|der|lang=de}}</li>
 <ul><li> <b><em>die</b> Frau</em> — “the woman”</li>
-<li> <b><em>die</b> Männer</em> — “the men”</li>
+<li> <b><em>die</b> M&auml;nner</em> — “the men”</li>
 </ul>
 </ol>
 
@@ -711,8 +711,8 @@ Fanny:
 ----
 ===for===
 Wiktionary:Resources for translators:
-<ul><li> [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)</li>
-<li> [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)</li>
+<ul><li> [http://dict.leo.org/ Leo] - German &lt;-&gt; English plus 5 other languages, hosted by Technical University Munich (German interface)</li>
+<li> [http://www.woerterbuch-uebersetzung.de/ W&ouml;rterbuch &Uuml;bersetzung] - German &lt;-&gt; English (German interface)</li>
 </ul>
 
 ***frei***
@@ -750,7 +750,7 @@ frei:
 <ul><li> befreien, Befreiung</li>
 <li> bleifrei</li>
 <li> Freiheit</li>
-<li> freimütig</li>
+<li> freim&uuml;tig</li>
 <li> Freizeit</li>
 </ul>
 ----
@@ -941,7 +941,7 @@ Guyana:
 </ol>
 
 <h4>Derived terms</h4>
-<ul><li> Französisch-Guyana</li>
+<ul><li> Franz&ouml;sisch-Guyana</li>
 <li> Guyaner</li>
 <li> Guyanerin</li>
 <li> guyanisch</li>
@@ -976,13 +976,13 @@ From {{etyl|goh|de}} {{term|hus|hūs|lang=goh}}, from {{proto|Germanic|hūsan|la
 </ul>
 
 <h3>Noun</h3>
-{{de-noun|g=n|genitive=Hauses|plural=Häuser}}
+{{de-noun|g=n|genitive=Hauses|plural=H&auml;user}}
 <ol><li> house</li>
 <li> theatre</li>
 </ol>
 
 <h4>Declension</h4>
-{{de-noun-n|es|pl=Häuser}}
+{{de-noun-n|es|pl=H&auml;user}}
 <h4>Derived terms</h4>
 <ul><li> Armenhaus</li>
 <li> Haustier</li>
@@ -1023,11 +1023,11 @@ Category:German proper nounsCategory:de:Countries----
 ik:
 
 <h3>Alternative forms</h3>
-<ul><li> {{qualifier|Low Prussian}} öck, eck</li>
+<ul><li> {{qualifier|Low Prussian}} &ouml;ck, eck</li>
 </ul>
 
 <h3>Etymology</h3>
-From {{etyl|osx|nds}} {{term|ik|lang=osx}}, from {{proto|Germanic|ek|lang=nds}}, from {{proto|Indo-European|éǵh₂|lang=nds}}.
+From {{etyl|osx|nds}} {{term|ik|lang=osx}}, from {{proto|Germanic|ek|lang=nds}}, from {{proto|Indo-European|&eacute;ǵh₂|lang=nds}}.
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|/ik/|lang=nds}}</li>
 </ul>
@@ -1035,7 +1035,7 @@ From {{etyl|osx|nds}} {{term|ik|lang=osx}}, from {{proto|Germanic|ek|lang=nds}},
 <h3>Pronoun</h3>
 {{head|nds|pronoun}}
 <ol><li> {{context|in some dialects|lang=nds}} I {{n-g|(first person singular pronoun)}}</li>
-<ul><li> <em>Ik kem, ik seg, ik wünd</em> ({nds}) / <em>Ik keem, ik keek, ik wun</em> ({pdt})</li>
+<ul><li> <em>Ik kem, ik seg, ik w&uuml;nd</em> ({nds}) / <em>Ik keem, ik keek, ik wun</em> ({pdt})</li>
 <ul><li> I came, I saw, I conquered. (<em>veni, vidi, vici</em>, attributed to w:Julius Caesar.)</li>
 </ul>
 </ul>
@@ -1058,11 +1058,11 @@ From {{etyl|goh|de}} {{term|in|lang=goh}}, from {{proto|Germanic|in|lang=de}}.
 <h4>Preposition</h4>
 {{head|de|preposition}}
 <ol><li> (<b>in</b> + <em>dative</em>) in; within; at; contained by</li>
-<ul><li> <em>Es ist <b>im</b> Haus.</em> - "It is in the house."</li>
+<ul><li> <em>Es ist <b>im</b> Haus.</em> - &quot;It is in the house.&quot;</li>
 </ul>
 <li> (<b>in</b> + <em>dative</em>) pertaining to</li>
 <li> (<b>in</b> + <em>accusative</em>) into</li>
-<ul><li> <em>Er geht <b>ins</b> Haus.</em> - "He goes into the house."</li>
+<ul><li> <em>Er geht <b>ins</b> Haus.</em> - &quot;He goes into the house.&quot;</li>
 </ul>
 </ol>
 
@@ -1071,7 +1071,7 @@ The preposition {{term|in}} is used with accusative case if the verb shows movem
 <h5>Derived terms</h5>
 <ul><li> (<b><em>in</b> + dem</em>) im {{m|n}}</li>
 <li> (<b><em>in</b> + das</em>) ins {n}</li>
-<li> in der Zwickmühle stecken</li>
+<li> in der Zwickm&uuml;hle stecken</li>
 </ul>
 
 <h3>Etymology 2</h3>
@@ -1084,7 +1084,7 @@ From {{etyl|en|de}} {{term|in|lang=en}}.
 in:
 
 <h3>Etymology</h3>
-From {{proto|Germanic|in|lang=goh}}, whence also Old English <em>in</em>, Old Norse <em>í</em>
+From {{proto|Germanic|in|lang=goh}}, whence also Old English <em>in</em>, Old Norse <em>&iacute;</em>
 <h3>Preposition</h3>
 {{head|goh|preposition}}
 <ol><li> in</li>
@@ -1110,7 +1110,7 @@ Iran:
 </ol>
 
 <h3>Usage notes</h3>
-The article (<em>der</em>) is often used with the name of the country, thus one says <em>er ist <b>im</b> Iran</em> (<em>he is <b>in</b> Iran</em>) and not <em>er ist <b>in</b> Iran</em>. However, one can say <em>er ist in Irans Hauptstadt</em>, which has the same meaning as <em>er ist in der Hauptstadt des Iran[s]</em> &mdash; <em>he is in the capital of Iran</em>. Similar examples: der: Irak, Sudan, Kongo; die: Türkei, Schweiz, Slowakei.
+The article (<em>der</em>) is often used with the name of the country, thus one says <em>er ist <b>im</b> Iran</em> (<em>he is <b>in</b> Iran</em>) and not <em>er ist <b>in</b> Iran</em>. However, one can say <em>er ist in Irans Hauptstadt</em>, which has the same meaning as <em>er ist in der Hauptstadt des Iran[s]</em> &amp;mdash; <em>he is in the capital of Iran</em>. Similar examples: der: Irak, Sudan, Kongo; die: T&uuml;rkei, Schweiz, Slowakei.
 <h3>See also</h3>
 <ul><li> Perser</li>
 <li> Persien</li>
@@ -1238,13 +1238,13 @@ Category:de:Countries----
 Liechtenstein:
 {{wikipedia|lang=de}}
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈlɪçtn̩ˌʃtaɪ̯n/|lang=de}}</li>
+<ul><li> {{IPA|/ˈlɪ&ccedil;tn̩ˌʃtaɪ̯n/|lang=de}}</li>
 <li> {{audio|De-Liechtenstein.ogg|Audio}}</li>
 </ul>
 
 <h3>Proper noun</h3>
 {{de-proper noun|g=n}}
-<ol><li> Country in Europe. Official name: Fürstentum Liechtenstein.</li>
+<ol><li> Country in Europe. Official name: F&uuml;rstentum Liechtenstein.</li>
 </ol>
 
 <h4>Derived terms</h4>
@@ -1255,7 +1255,7 @@ Liechtenstein:
 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 (<em>breast</em>, <em>fingernail</em>, <em>full</em>, <em>horn</em>, <em>knee</em>, <em>moon</em>, <em>round</em>) 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 <em>sing.</em>, 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 <em>pl.</em>|  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|}
+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 (<em>breast</em>, <em>fingernail</em>, <em>full</em>, <em>horn</em>, <em>knee</em>, <em>moon</em>, <em>round</em>) were not in the original 200-word list. {|  align=center class=&quot;wikitable sortable&quot;|  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 <em>sing.</em>, thou|  c=fr | tu, vous (formal)|  c=de | du, Sie (formal)|  c=it | tu, Lei (formal)|  c=es | t&uacute;, 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 | &eacute;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 <em>pl.</em>|  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&auml;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&auml;r|  c=la | ille|- |  i=No | 9|  c=en | here|  c=fr | ici|  c=de | hier|  c=it | qui, qua|  c=es | aqu&iacute;, ac&aacute;|  c=nl | hier|  c=sw | h&auml;r|  c=la | hic|- |  i=No | 10|  c=en | there|  c=fr | l&agrave;|  c=de | dort|  c=it | l&agrave;|  c=es | ah&iacute;, all&iacute;, all&aacute;|  c=nl | daar|  c=sw | d&auml;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&ugrave;|  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&auml;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&aring;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&aring;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&aring;|  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&aring;|  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&uuml;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&szlig;|  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&aring;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 | &eacute;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&ntilde;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 | &eacute;troit|  c=de | eng|  c=it | stretto|  c=es | estrecho, angosto|  c=nl | klein|  c=sw | tr&aring;ng|  c=la | angustus|- |  i=No | 35|  c=en | thin|  c=fr | mince|  c=de | d&uuml;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&auml;nniska|  c=la | homo|- |  i=No | 39|  c=en | kid|  c=fr | enfant|  c=de | Kind|  c=it | bambino|  c=es | ni&ntilde;o|  c=nl | kind|  c=sw | barn|  c=la | puer|- |  i=No | 40|  c=en | wife|  c=fr | femme, &eacute;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, &eacute;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&egrave;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&egrave;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&aacute;jaro|  c=nl | vogel|  c=sw | f&aring;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 | &aacute;rbol|  c=nl | boom|  c=sw | tr&auml;d|  c=la | arbor|- |  i=No | 52|  c=en | forest|  c=fr | for&ecirc;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&acirc;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&ouml;|  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&ouml;v, blad|  c=la | folium|- |  i=No | 57|  c=en | root *|  c=fr | racine|  c=de | Wurzel|  c=it | radice|  c=es | ra&iacute;z|  c=nl | root|  c=sw | rot|  c=la | radix|- |  i=No | 58|  c=en | bark * (from tree)|  c=fr | &eacute;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&auml;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&ouml;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 | &auml;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&auml;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&aring;r|  c=la | capillus, coma, crinis|- |  i=No | 72|  c=en | head *|  c=fr | t&ecirc;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 | &ouml;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 | &ouml;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&auml;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&ntilde;a|  c=nl | vingernagel|  c=sw | nagel|  c=la | unguis|- |  i=No | 80|  c=en | foot *|  c=fr | pied|  c=de | Fu&szlig;|  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&auml;|  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&uuml;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&ntilde;as, tripas|  c=nl | ingewanden|  c=sw | in&auml;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&uuml;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&ouml;st|  c=la | pectus, mamma|- |  i=No | 90|  c=en | heart *|  c=fr | cœur|  c=de | Herz|  c=it | cuore|  c=es | coraz&oacute;n|  c=nl | hart|  c=sw | hj&auml;rta|  c=la | cor|- |  i=No | 91|  c=en | liver *|  c=fr | foie|  c=de | Leber|  c=it | fegato|  c=es | h&iacute;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 | &auml;ta|  c=la | edere|- |  i=No | 94|  c=en | bite *|  c=fr | mordre|  c=de | bei&szlig;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&auml;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&aring;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&iacute;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&ouml;ren|  c=it | udire, sentire|  c=es | o&iacute;r|  c=nl | horen|  c=sw | h&ouml;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&auml;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&uuml;rchten|  c=it | temere|  c=es | temer|  c=nl | vrezen, angst|  c=sw | frukta, r&auml;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&ouml;|  c=la | mori|- |  i=No | 110|  c=en | kill *|  c=fr | tuer|  c=de | t&ouml;ten|  c=it | uccidere|  c=es | matar|  c=nl | doden|  c=sw | d&ouml;da|  c=la | necare|- |  i=No | 111|  c=en | fight|  c=fr | se battre|  c=de | k&auml;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&aring;|  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&auml;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&ntilde;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&ntilde;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&auml;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&aring;|  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'&eacute;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&aring;|  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&auml;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&aring;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&auml;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&auml;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&uuml;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&auml;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&auml;hlen|  c=it | contare|  c=es | contar|  c=nl | tellen|  c=sw | r&auml;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&auml;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&szlig;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&auml;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&aring;ne|  c=la | luna|- |  i=No | 149|  c=en | star *|  c=fr | &eacute;toile|  c=de | Stern|  c=it | stella|  c=es | estrella|  c=nl | ster|  c=sw | stj&auml;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&egrave;re|  c=de | Flu&szlig;|  c=it | fiume|  c=es | r&iacute;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&ouml;|  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&egrave;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&ouml;|  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&eacute;e|  c=de | Rauch|  c=it | fumo|  c=es | humo|  c=nl | rook|  c=sw | r&ouml;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&ucirc;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&szlig;e|  c=it | strada|  c=es | camino|  c=nl | weg|  c=sw | v&auml;g|  c=la | via|- |  i=No | 171|  c=en | mountain *|  c=fr | montagne|  c=de | Berg|  c=it | montagna|  c=es | monta&ntilde;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&ouml;d|  c=la | ruber|- |  i=No | 173|  c=en | green *|  c=fr | vert|  c=de | gr&uuml;n|  c=it | verde|  c=es | verde|  c=nl | groen|  c=sw | gr&ouml;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&szlig;|  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&iacute;a|  c=nl | dag|  c=sw | dag|  c=la | dies|- |  i=No | 179|  c=en | year|  c=fr | an, ann&eacute;e|  c=de | Jahr|  c=it | anno|  c=es | a&ntilde;o|  c=nl | jaar|  c=sw | &aring;r|  c=la | annus|- |  i=No | 180|  c=en | warm *|  c=fr | chaud|  c=de | warm|  c=it | caldo|  c=es | c&aacute;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&iacute;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&lt;br&gt;|  c=nl | slecht|  c=sw | d&aring;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 | &eacute;mouss&eacute;|  c=de | stumpf|  c=it | noioso|  c=es | desafilado|  c=nl | stomp, bot|  c=sw | sl&ouml;|  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&auml;t|  c=la | levis|- |  i=No | 194|  c=en | wet|  c=fr | mouill&eacute;|  c=de | nass, feucht|  c=it | bagnato|  c=es | mojado|  c=nl | nat|  c=sw | v&aring;t, bl&ouml;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&auml;tt, riktig|  c=la | rectus|- |  i=No | 197|  c=en | near|  c=fr | proche|  c=de | nah,&lt;br&gt;nahe|  c=it | vicino|  c=es | cerca|  c=nl | naar|  c=sw | n&auml;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&aring;ngt bort, fj&auml;rran|  c=la | longinquus|- |  i=No | 199|  c=en | right|  c=fr | &agrave; droite|  c=de | rechts|  c=it | destra|  c=es | derecha|  c=nl | rechts|  c=sw | h&ouml;ger|  c=la | dexter|- |  i=No | 200|  c=en | left|  c=fr | &agrave; gauche|  c=de | links|  c=it | sinistra|  c=es | izquierda|  c=nl | links|  c=sw | v&auml;nster|  c=la | sinister|- |  i=No | 201|  c=en | at|  c=fr | &agrave;|  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&eacute;|  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|}
 ***Malawi***
 Malawi:
 {{wikipedia|lang=de}}
@@ -1314,7 +1314,7 @@ Category:de:CountriesCategory:de:Islands----
 man:
 
 <h3>Etymology</h3>
-From the same source as <em>Mann</em> ("adult male").<ref>Theo Stemmler: <em>Wie das Eisbein ins Lexikon kam,</em> page 15, ISBN 978-3-411-72291-4.</ref>
+From the same source as <em>Mann</em> (&quot;adult male&quot;).&lt;ref&gt;Theo Stemmler: <em>Wie das Eisbein ins Lexikon kam,</em> page 15, ISBN 978-3-411-72291-4.&lt;/ref&gt;
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|[man]|lang=de}}</li>
 <li> {{audio|De-at-man.ogg|audio (Austria)}}</li>
@@ -1325,9 +1325,9 @@ From the same source as <em>Mann</em> ("adult male").<ref>Theo Stemmler: <em>Wie
 <h3>Pronoun</h3>
 {{head|de|indefinite pronoun}}
 <ol><li> {{indefinite|lang=de}} one, they {{qualifier|indefinite third-person singular pronoun}}</li>
-<ul><li> <em>was <b>man</b> sehen kann</em> &mdash; what one can see</li>
-<li> <b>2008</b>, Frank Behmeta, <em>Wenn ich die Augen öffne</em>, page 55:</li>
-<ul><li> Kann <b>man</b> es fühlen, wenn <b>man</b> schwanger ist?</li>
+<ul><li> <em>was <b>man</b> sehen kann</em> &amp;mdash; what one can see</li>
+<li> <b>2008</b>, Frank Behmeta, <em>Wenn ich die Augen &ouml;ffne</em>, page 55:</li>
+<ul><li> Kann <b>man</b> es f&uuml;hlen, wenn <b>man</b> schwanger ist?</li>
 <ul><li> Can a person feel it when he is pregnant?</li>
 </ul>
 </ul>
@@ -1335,11 +1335,11 @@ From the same source as <em>Mann</em> ("adult male").<ref>Theo Stemmler: <em>Wie
 </ol>
 
 <h4>Usage notes</h4>
-<ul><li> Because <em>man</em> derives from the word for a "man" (an adult male), its use, especially when writing about women, is considered sexist by some. Feminists have proposed alternating <em>man</em> and <em>frau</em>. Compare the use of <em>she</em> vs <em>he</em> in English to refer to someone whose gender is unknown.</li>
+<ul><li> Because <em>man</em> derives from the word for a &quot;man&quot; (an adult male), its use, especially when writing about women, is considered sexist by some. Feminists have proposed alternating <em>man</em> and <em>frau</em>. Compare the use of <em>she</em> vs <em>he</em> in English to refer to someone whose gender is unknown.</li>
 </ul>
 
 <h4>References</h4>
-<references/>----
+&lt;references/&gt;----
 man:
 
 <h3>Conjunction</h3>
@@ -1445,9 +1445,9 @@ o:
 o:
 
 <h3>Etymology</h3>
-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}}).
+From {{proto|Germanic|awjō|lang=gml}}. Cognate with {{etyl|non|-}} {{term|ey|lang=non}} ({{etyl|sv|-}} {{term|&ouml;|lang=sv}}, {{etyl|no|-}} {{term|&oslash;y|lang=no}}).
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/øː/|lang=gml}}</li>
+<ul><li> {{IPA|/&oslash;ː/|lang=gml}}</li>
 </ul>
 
 <h3>Noun</h3>
@@ -1456,7 +1456,7 @@ From {{proto|Germanic|awjō|lang=gml}}. Cognate with {{etyl|non|-}} {{term|ey|la
 </ol>
 
 <h4>Usage notes</h4>
-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, &oslash;, &ouml; 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:
 
@@ -1555,8 +1555,8 @@ From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond
 
 ===Resources===
 Wiktionary:Resources for translators:
-<ul><li> [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)</li>
-<li> [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)</li>
+<ul><li> [http://dict.leo.org/ Leo] - German &lt;-&gt; English plus 5 other languages, hosted by Technical University Munich (German interface)</li>
+<li> [http://www.woerterbuch-uebersetzung.de/ W&ouml;rterbuch &Uuml;bersetzung] - German &lt;-&gt; English (German interface)</li>
 </ul>
 
 ***September***
@@ -1578,11 +1578,11 @@ SMS:
 
 <h3>{{initialism|German}}</h3>
 {{head|de|initialism}}
-<ol><li> {{nautical|military|lang=de}} SMS &mdash; Seiner Majestät Schiff, <em>His Majesty's Ship</em></li>
+<ol><li> {{nautical|military|lang=de}} SMS &amp;mdash; Seiner Majest&auml;t Schiff, <em>His Majesty's Ship</em></li>
 </ol>
 
 <h4>Usage notes</h4>
-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&ouml;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:
 
@@ -1598,7 +1598,7 @@ spring:
 ----
 ===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 (<em>breast</em>, <em>fingernail</em>, <em>full</em>, <em>horn</em>, <em>knee</em>, <em>moon</em>, <em>round</em>) 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 <em>sing.</em>, 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 <em>pl.</em>|  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|}
+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 (<em>breast</em>, <em>fingernail</em>, <em>full</em>, <em>horn</em>, <em>knee</em>, <em>moon</em>, <em>round</em>) were not in the original 200-word list. {|  align=center class=&quot;wikitable sortable&quot;|  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 <em>sing.</em>, thou|  c=fr | tu, vous (formal)|  c=de | du, Sie (formal)|  c=it | tu, Lei (formal)|  c=es | t&uacute;, 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 | &eacute;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 <em>pl.</em>|  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&auml;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&auml;r|  c=la | ille|- |  i=No | 9|  c=en | here|  c=fr | ici|  c=de | hier|  c=it | qui, qua|  c=es | aqu&iacute;, ac&aacute;|  c=nl | hier|  c=sw | h&auml;r|  c=la | hic|- |  i=No | 10|  c=en | there|  c=fr | l&agrave;|  c=de | dort|  c=it | l&agrave;|  c=es | ah&iacute;, all&iacute;, all&aacute;|  c=nl | daar|  c=sw | d&auml;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&ugrave;|  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&auml;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&aring;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&aring;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&aring;|  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&aring;|  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&uuml;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&szlig;|  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&aring;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 | &eacute;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&ntilde;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 | &eacute;troit|  c=de | eng|  c=it | stretto|  c=es | estrecho, angosto|  c=nl | klein|  c=sw | tr&aring;ng|  c=la | angustus|- |  i=No | 35|  c=en | thin|  c=fr | mince|  c=de | d&uuml;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&auml;nniska|  c=la | homo|- |  i=No | 39|  c=en | kid|  c=fr | enfant|  c=de | Kind|  c=it | bambino|  c=es | ni&ntilde;o|  c=nl | kind|  c=sw | barn|  c=la | puer|- |  i=No | 40|  c=en | wife|  c=fr | femme, &eacute;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, &eacute;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&egrave;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&egrave;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&aacute;jaro|  c=nl | vogel|  c=sw | f&aring;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 | &aacute;rbol|  c=nl | boom|  c=sw | tr&auml;d|  c=la | arbor|- |  i=No | 52|  c=en | forest|  c=fr | for&ecirc;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&acirc;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&ouml;|  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&ouml;v, blad|  c=la | folium|- |  i=No | 57|  c=en | root *|  c=fr | racine|  c=de | Wurzel|  c=it | radice|  c=es | ra&iacute;z|  c=nl | root|  c=sw | rot|  c=la | radix|- |  i=No | 58|  c=en | bark * (from tree)|  c=fr | &eacute;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&auml;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&ouml;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 | &auml;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&auml;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&aring;r|  c=la | capillus, coma, crinis|- |  i=No | 72|  c=en | head *|  c=fr | t&ecirc;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 | &ouml;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 | &ouml;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&auml;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&ntilde;a|  c=nl | vingernagel|  c=sw | nagel|  c=la | unguis|- |  i=No | 80|  c=en | foot *|  c=fr | pied|  c=de | Fu&szlig;|  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&auml;|  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&uuml;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&ntilde;as, tripas|  c=nl | ingewanden|  c=sw | in&auml;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&uuml;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&ouml;st|  c=la | pectus, mamma|- |  i=No | 90|  c=en | heart *|  c=fr | cœur|  c=de | Herz|  c=it | cuore|  c=es | coraz&oacute;n|  c=nl | hart|  c=sw | hj&auml;rta|  c=la | cor|- |  i=No | 91|  c=en | liver *|  c=fr | foie|  c=de | Leber|  c=it | fegato|  c=es | h&iacute;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 | &auml;ta|  c=la | edere|- |  i=No | 94|  c=en | bite *|  c=fr | mordre|  c=de | bei&szlig;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&auml;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&aring;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&iacute;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&ouml;ren|  c=it | udire, sentire|  c=es | o&iacute;r|  c=nl | horen|  c=sw | h&ouml;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&auml;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&uuml;rchten|  c=it | temere|  c=es | temer|  c=nl | vrezen, angst|  c=sw | frukta, r&auml;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&ouml;|  c=la | mori|- |  i=No | 110|  c=en | kill *|  c=fr | tuer|  c=de | t&ouml;ten|  c=it | uccidere|  c=es | matar|  c=nl | doden|  c=sw | d&ouml;da|  c=la | necare|- |  i=No | 111|  c=en | fight|  c=fr | se battre|  c=de | k&auml;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&aring;|  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&auml;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&ntilde;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&ntilde;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&auml;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&aring;|  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'&eacute;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&aring;|  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&auml;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&aring;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&auml;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&auml;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&uuml;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&auml;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&auml;hlen|  c=it | contare|  c=es | contar|  c=nl | tellen|  c=sw | r&auml;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&auml;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&szlig;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&auml;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&aring;ne|  c=la | luna|- |  i=No | 149|  c=en | star *|  c=fr | &eacute;toile|  c=de | Stern|  c=it | stella|  c=es | estrella|  c=nl | ster|  c=sw | stj&auml;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&egrave;re|  c=de | Flu&szlig;|  c=it | fiume|  c=es | r&iacute;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&ouml;|  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&egrave;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&ouml;|  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&eacute;e|  c=de | Rauch|  c=it | fumo|  c=es | humo|  c=nl | rook|  c=sw | r&ouml;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&ucirc;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&szlig;e|  c=it | strada|  c=es | camino|  c=nl | weg|  c=sw | v&auml;g|  c=la | via|- |  i=No | 171|  c=en | mountain *|  c=fr | montagne|  c=de | Berg|  c=it | montagna|  c=es | monta&ntilde;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&ouml;d|  c=la | ruber|- |  i=No | 173|  c=en | green *|  c=fr | vert|  c=de | gr&uuml;n|  c=it | verde|  c=es | verde|  c=nl | groen|  c=sw | gr&ouml;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&szlig;|  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&iacute;a|  c=nl | dag|  c=sw | dag|  c=la | dies|- |  i=No | 179|  c=en | year|  c=fr | an, ann&eacute;e|  c=de | Jahr|  c=it | anno|  c=es | a&ntilde;o|  c=nl | jaar|  c=sw | &aring;r|  c=la | annus|- |  i=No | 180|  c=en | warm *|  c=fr | chaud|  c=de | warm|  c=it | caldo|  c=es | c&aacute;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&iacute;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&lt;br&gt;|  c=nl | slecht|  c=sw | d&aring;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 | &eacute;mouss&eacute;|  c=de | stumpf|  c=it | noioso|  c=es | desafilado|  c=nl | stomp, bot|  c=sw | sl&ouml;|  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&auml;t|  c=la | levis|- |  i=No | 194|  c=en | wet|  c=fr | mouill&eacute;|  c=de | nass, feucht|  c=it | bagnato|  c=es | mojado|  c=nl | nat|  c=sw | v&aring;t, bl&ouml;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&auml;tt, riktig|  c=la | rectus|- |  i=No | 197|  c=en | near|  c=fr | proche|  c=de | nah,&lt;br&gt;nahe|  c=it | vicino|  c=es | cerca|  c=nl | naar|  c=sw | n&auml;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&aring;ngt bort, fj&auml;rran|  c=la | longinquus|- |  i=No | 199|  c=en | right|  c=fr | &agrave; droite|  c=de | rechts|  c=it | destra|  c=es | derecha|  c=nl | rechts|  c=sw | h&ouml;ger|  c=la | dexter|- |  i=No | 200|  c=en | left|  c=fr | &agrave; gauche|  c=de | links|  c=it | sinistra|  c=es | izquierda|  c=nl | links|  c=sw | v&auml;nster|  c=la | sinister|- |  i=No | 201|  c=en | at|  c=fr | &agrave;|  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&eacute;|  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:
 
@@ -1609,8 +1609,8 @@ synonym:
 Category:de:Semantics----
 ===translators===
 Wiktionary:Resources for translators:
-<ul><li> [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)</li>
-<li> [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)</li>
+<ul><li> [http://dict.leo.org/ Leo] - German &lt;-&gt; English plus 5 other languages, hosted by Technical University Munich (German interface)</li>
+<li> [http://www.woerterbuch-uebersetzung.de/ W&ouml;rterbuch &Uuml;bersetzung] - German &lt;-&gt; English (German interface)</li>
 </ul>
 
 ***UdSSR***
@@ -1635,7 +1635,7 @@ Uhr:
 <h3>Noun</h3>
 {{de-noun|g=f|plural=Uhren}}
 <ol><li> clock, watch</li>
-<li> hour, as in <em>Es ist fünf Uhr</em> (it is five o'clock)</li>
+<li> hour, as in <em>Es ist f&uuml;nf Uhr</em> (it is five o'clock)</li>
 <li> ~uhr: an instrument to measure something passing by (compare Wasseruhr, Gasuhr)</li>
 </ol>
 
@@ -1717,7 +1717,7 @@ urban:
 </ol>
 
 <h4>Synonyms</h4>
-<ul><li> städtisch</li>
+<ul><li> st&auml;dtisch</li>
 </ul>
 ----
 ***wage***
@@ -1744,14 +1744,14 @@ war:
 {de-verb form}
 <ol><li> {{de-verb form of|sein|1|s|v}}</li>
 <ul><li> <b>1788</b>: Johann Wolfgang von Goethe, <em>Egmont</em></li>
-<ul><li> Ich hätte ihn heiraten können, und glaube, ich [http://www.gutenberg.org/dirs/etext00/8gmnt10.txt war] nie in ihn verliebt.</li>
+<ul><li> Ich h&auml;tte ihn heiraten k&ouml;nnen, und glaube, ich [http://www.gutenberg.org/dirs/etext00/8gmnt10.txt war] nie in ihn verliebt.</li>
 <ul><li> I could have married him; yet I believe I [http://www.gutenberg.org/files/1945/1945.txt was] never really in love with him.</li>
 </ul>
 </ul>
 </ul>
 <li> {{de-verb form of|sein|3|s|v}}</li>
 <ul><li> <b>1788</b>: Johann Wolfgang von Goethe, <em>Egmont</em></li>
-<ul><li> Gott tröst' ihn! Das [http://www.gutenberg.org/dirs/etext00/8gmnt10.txt war] ein Herr!</li>
+<ul><li> Gott tr&ouml;st' ihn! Das [http://www.gutenberg.org/dirs/etext00/8gmnt10.txt war] ein Herr!</li>
 <ul><li> God bless him! He [http://www.gutenberg.org/files/1945/1945.txt was] a king indeed!</li>
 </ul>
 </ul>
@@ -1780,8 +1780,8 @@ war:
 Category:Old High German adjectives----
 ===Wiktionary===
 Wiktionary:Resources for translators:
-<ul><li> [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)</li>
-<li> [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)</li>
+<ul><li> [http://dict.leo.org/ Leo] - German &lt;-&gt; English plus 5 other languages, hosted by Technical University Munich (German interface)</li>
+<li> [http://www.woerterbuch-uebersetzung.de/ W&ouml;rterbuch &Uuml;bersetzung] - German &lt;-&gt; English (German interface)</li>
 </ul>
 
 ***wolf***
@@ -1820,7 +1820,7 @@ From {{etyl|goh|de}} {{term|zwene|zwēne|lang=goh}}.
 
 <h4>Related terms</h4>
 <ul><li> zwanzig</li>
-<li> zwölf</li>
+<li> zw&ouml;lf</li>
 </ul>
 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 1064aa777662ad655d13eff7ba22e2fe38436b24..96a0c37bfce9ace9d2c6855d813ac8fba3499002 100644 (file)
@@ -6,21 +6,21 @@ Index: EN EN->EN
 A:
 
 <h3>Etymology 1</h3>
-Runic letter {{term|ᚫ|ansuz|tr=a}}, source for Anglo-Saxon Futhorc letters replaced by <em>A</em>From {{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}}.
+Runic letter {{term|ᚫ|ansuz|tr=a}}, source for Anglo-Saxon Futhorc letters replaced by <em>A</em>From {{etyl|enm}} and {{etyl|ang}} upper case letter {{term|A|lang=enm}} and split of {{etyl|enm}} and {{etyl|ang}} upper case letter {{term|&AElig;|lang=enm}}.
 <ul><ul><li> 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}}.</li>
-<li> Anglo-Saxon Futhorc letter {{term|ᚫ|æsc|tr=æ}} {{etyl|ang}} upper case letter {{term|Æ|lang=enm}} from 7th century replacement by Latin upper case ligature {{term|Æ|lang=la}} of the Anglo-Saxon Futhorc letter {{term|ᚫ|æsc|sc=unicode|tr=æ}}, also derived from Runic letter {{term|ᚫ|Ansuz|sc=unicode|tr=a}}.</li>
+<li> Anglo-Saxon Futhorc letter {{term|ᚫ|&aelig;sc|tr=&aelig;}} {{etyl|ang}} upper case letter {{term|&AElig;|lang=enm}} from 7th century replacement by Latin upper case ligature {{term|&AElig;|lang=la}} of the Anglo-Saxon Futhorc letter {{term|ᚫ|&aelig;sc|sc=unicode|tr=&aelig;}}, also derived from Runic letter {{term|ᚫ|Ansuz|sc=unicode|tr=a}}.</li>
 </ul>
 </ul>
 
 <h4>Alternative forms</h4>
-<ul><li> {{qualifier|Gregg shorthand versions Centennial,Series 90, DJS, Simplified, Anniversary, and Pre-Anniversary}} {{l|mul|·|gloss=dot}}</li>
+<ul><li> {{qualifier|Gregg shorthand versions Centennial,Series 90, DJS, Simplified, Anniversary, and Pre-Anniversary}} {{l|mul|&middot;|gloss=dot}}</li>
 </ul>
 
 <h4>Pronunciation</h4>
 <ul><li> {{qualifier|letter name}}</li>
 <ul><li> {{a|RP|GenAm}} {{IPA|/eɪ̯/}}, {{X-SAMPA|/eI/}}</li>
 <li> {{audio|en-us-a.ogg|Audio (US)}}</li>
-<li> {{a|AusE}} {{IPA|/æɪ/}}, {{X-SAMPA|/{I/}}</li>
+<li> {{a|AusE}} {{IPA|/&aelig;ɪ/}}, {{X-SAMPA|/{I/}}</li>
 </ul>
 <li> {{rhymes|eɪ}}</li>
 <ul><li> The current pronunciation is a comparatively modern sound, and has taken the place of what, till about the early part of the 15th century, was similar to that in other languages.</li>
@@ -47,7 +47,7 @@ Runic letter {{term|ᚫ|ansuz|tr=a}}, source for Anglo-Saxon Futhorc letters rep
 <h4>Number</h4>
 {{en-number|upper=A|lower=a}}
 <ol><li> {{Latn-def|en|ordinal|1|a}}</li>
-<ul><li> The item <b>A</b> is "foods", the item B is "drinks".</li>
+<ul><li> The item <b>A</b> is &quot;foods&quot;, the item B is &quot;drinks&quot;.</li>
 </ul>
 </ol>
 
@@ -129,7 +129,7 @@ Runic letter {{term|ᚫ|ansuz|tr=a}}, source for Anglo-Saxon Futhorc letters rep
 </ol>
 
 <h5>Synonyms</h5>
-<ul><li> {{sense|physics|angstrom}} Å</li>
+<ul><li> {{sense|physics|angstrom}} &Aring;</li>
 </ul>
 
 <h5>Derived terms</h5>
@@ -146,14 +146,14 @@ adjectival:
 <h3>Etymology</h3>
 From {{suffix|adjective|al}}.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ædʒɛkˈtaɪvəl/}}<ref>[http://dictionary.cambridge.org/define.asp?key=1028&amp;dict=CALD Cambridge Advanced Learner's Dictionary]</ref></li>
-<li> {{a|US}} {{IPA|/ædʒəkˈtaɪvəl/}}</li>
+<ul><li> {{a|UK}} {{IPA|/&aelig;dʒɛkˈtaɪvəl/}}&lt;ref&gt;[http://dictionary.cambridge.org/define.asp?key=1028&amp;amp;dict=CALD Cambridge Advanced Learner's Dictionary]&lt;/ref&gt;</li>
+<li> {{a|US}} {{IPA|/&aelig;dʒəkˈtaɪvəl/}}</li>
 <li> {{audio|En-us-adjectival.ogg|Audio (US)}}</li>
 </ul>
 
 <h3>Adjective</h3>
 {en-adj}
-<ol><li> {grammar} Of or relating to or functioning as an adjective; "adjectival syntax"; "an adjective clause" <ref>adjectival. Dictionary.com. WordNet® 3.0. Princeton University. http://dictionary.reference.com/browse/adjectival </ref>.</li>
+<ol><li> {grammar} Of or relating to or functioning as an adjective; &quot;adjectival syntax&quot;; &quot;an adjective clause&quot; &lt;ref&gt;adjectival. Dictionary.com. WordNet&reg; 3.0. Princeton University. http://dictionary.reference.com/browse/adjectival &lt;/ref&gt;.</li>
 <li> {legal} Of or relating to procedure, especially to technicalities thereof.</li>
 </ol>
 
@@ -163,12 +163,12 @@ From {{suffix|adjective|al}}.
 </ol>
 
 <h3>References</h3>
-<references/>----
+&lt;references/&gt;----
 ***adjective***
 adjective:
 
 <h3>Etymology</h3>
-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.
+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 &quot;thrown next to&quot; a noun, modifying it.
 <h3>Pronunciation</h3>
 <ul><li> {{audio|En-us-adjective.ogg|Audio (US)}}</li>
 </ul>
@@ -223,8 +223,8 @@ alphabetical:
 <h3>Etymology</h3>
 {{suffix|alphabetic|al}}
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˌælf.əˈbɛt.ɪk.əl/}}, {{X-SAMPA|/%{lf.@"bEt.Ik.@l/}}</li>
-<li> {{a|GenAM}} {{IPA|/ˌælfəˈbɛdɪkəl/}}, {{X-SAMPA|/%{lf@"bEdIk@l/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˌ&aelig;lf.əˈbɛt.ɪk.əl/}}, {{X-SAMPA|/%{lf.@&quot;bEt.Ik.@l/}}</li>
+<li> {{a|GenAM}} {{IPA|/ˌ&aelig;lfəˈbɛdɪkəl/}}, {{X-SAMPA|/%{lf@&quot;bEdIk@l/}}</li>
 <ul><li> {{audio|en-us-alphabetical.ogg|Audio (US)}}</li>
 </ul>
 <li> {{hyphenation|al|pha|bet|ic|al}}</li>
@@ -284,19 +284,19 @@ antidisestablishmentarianism:
 From {{confix|anti|disestablishmentarian|ism}}.
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK}} {{IPA|/ˌan.ti.dɪ.sɪ.sta.blɪʃ.mənˈtɛː.ɹɪə.nɪ.z(ə)m/}}</li>
-<li> {{a|US}} {{IPA|/ˌæn.taiˌdɪs.ɛsˌtæb.lɪʃ.məntˈɛː.ɹi.ənˌɪ.zm/}}</li>
+<li> {{a|US}} {{IPA|/ˌ&aelig;n.taiˌdɪs.ɛsˌt&aelig;b.lɪʃ.məntˈɛː.ɹi.ənˌɪ.zm/}}</li>
 <li> {{audio|en-uk-antidisestablishmentarianism.ogg|Audio (UK)}}</li>
 <li> {{audio|en-us-antidisestablishmentarianism.ogg|Audio (US)}}</li>
 </ul>
 
 <h3>Noun</h3>
 {{en-noun|-}}
-<ol><li> A political philosophy opposed to the separation of a religious group ("church") and a government ("state"), especially the belief held by those in 19th century England opposed to separating the Anglican church from the civil government (but chiefly in use as an example of a long word) or to refer to separation of church and state.{{defdate|from 20th c.}}</li>
+<ol><li> A political philosophy opposed to the separation of a religious group (&quot;church&quot;) and a government (&quot;state&quot;), especially the belief held by those in 19th century England opposed to separating the Anglican church from the civil government (but chiefly in use as an example of a long word) or to refer to separation of church and state.{{defdate|from 20th c.}}</li>
 <ul><li> <b>1998</b>, University of Oklahoma College of Law, <em>American Indian Law Review</em>:</li>
-<ul><li> Jed Rubenfeld, who actually may not have been recycling a <em>Boerne</em> Court- rejected argument into a law review article,<sup>450</sup> reasoned that RFRA indeed lacked constitutionality, but because of First Amendment antidisestablishmentarianism, and not the reasons offered by the Court.<sup>451</sup></li>
+<ul><li> Jed Rubenfeld, who actually may not have been recycling a <em>Boerne</em> Court- rejected argument into a law review article,&lt;sup&gt;450&lt;/sup&gt; reasoned that RFRA indeed lacked constitutionality, but because of First Amendment antidisestablishmentarianism, and not the reasons offered by the Court.&lt;sup&gt;451&lt;/sup&gt;</li>
 </ul>
 <li> <b>2002</b>, Angela Hague and David Lavery (credited as editors, but truly authors of the compiled fictional reviews), <em>Teleparody: predicting/preventing the TV discourse of tomorrow</em></li>
-<ul><li> The establishmentarianism of Hatch's alliance-building strategy undermined by the disestablishmentarianism of Wiglesworth's treachery triggers an <b>antidisestablishmentarianism</b> in Hawk &mdash; but the negation of Wiglesworth's 'dis' coupled with the counter-negation of Hawk's 'anti' does not simply generate a synthetic affirmation of Hatch's 'establishmentarianism'. Instead, Hawk's <b>antidisestablishmentarianism</b>, like a cancerous wart on the end of the nose, is perched at the fuzzy border separating ontology from oncology, malignity from malignancy.</li>
+<ul><li> The establishmentarianism of Hatch's alliance-building strategy undermined by the disestablishmentarianism of Wiglesworth's treachery triggers an <b>antidisestablishmentarianism</b> in Hawk &amp;mdash; but the negation of Wiglesworth's 'dis' coupled with the counter-negation of Hawk's 'anti' does not simply generate a synthetic affirmation of Hatch's 'establishmentarianism'. Instead, Hawk's <b>antidisestablishmentarianism</b>, like a cancerous wart on the end of the nose, is perched at the fuzzy border separating ontology from oncology, malignity from malignancy.</li>
 </ul>
 </ul>
 </ol>
@@ -315,21 +315,21 @@ From {{confix|anti|disestablishmentarian|ism}}.
 <li> pneumonoultramicroscopicsilicovolcanoconiosis</li>
 <li> supercalifragilisticexpialidocious</li>
 </ul>
-Category:English nouns ending in "-ism"Category:Long English wordset:antidisestablishmentarianismfr:antidisestablishmentarianismko:antidisestablishmentarianismpl:antidisestablishmentarianismru:antidisestablishmentarianismsimple:antidisestablishmentarianismta:antidisestablishmentarianismvi:antidisestablishmentarianism
+Category:English nouns ending in &quot;-ism&quot;Category:Long English wordset:antidisestablishmentarianismfr:antidisestablishmentarianismko:antidisestablishmentarianismpl:antidisestablishmentarianismru:antidisestablishmentarianismsimple:antidisestablishmentarianismta:antidisestablishmentarianismvi:antidisestablishmentarianism
 ***antonym***
 antonym:
 
 <h3>Etymology</h3>
 circa 1870: {{confix|ant|onym}}
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈæntəˌnɪm/}}</li>
+<ul><li> {{IPA|/ˈ&aelig;ntəˌnɪm/}}</li>
 <li> {{audio|en-us-antonym.ogg|Audio (US)}}</li>
 </ul>
 
 <h3>Noun</h3>
 {en-noun}
 <ol><li> {semantics} A word which has the opposite meaning of another, although not necessarily in all its senses.</li>
-<ul><li> <em>"rich" is an <b>antonym</b> of "poor"; "full" is an <b>antonym</b> of "empty"</em>.</li>
+<ul><li> <em>&quot;rich&quot; is an <b>antonym</b> of &quot;poor&quot;; &quot;full&quot; is an <b>antonym</b> of &quot;empty&quot;</em>.</li>
 </ul>
 </ol>
 
@@ -366,11 +366,11 @@ circa 1870: {{confix|ant|onym}}
 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.
 <h3>Vowels</h3>
-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>| b<b>a</b>d, c<b>a</b>t, r<b>a</b>n|-align="center"| {{enPRchar|ăr}}| colspan="2" | {{IPAchar|æɹ}}| colspan="2" | <tt>{r\</tt>| c<b>arr</b>y|-align="center"| {{enPRchar|ā}}| colspan="2" | {{IPAchar|eɪ}}| colspan="2" | <tt>eI</tt>| b<b>ai</b>t, pl<b>ay</b>, s<b>a</b>me|-align="center"| {{enPRchar|ä}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>A:</tt>| <tt>A</tt>| f<b>a</b>ther|-align="center"| {{enPRchar|är}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| <tt>A:</tt>| <tt>Ar\</tt>| <b>ar</b>m, b<b>ar</b>d, <b>ar</b>ia|-align="center"| {{enPRchar|âr}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| <tt>E@</tt>| <tt>Er\</tt>| h<b>air</b>, p<b>ear</b>, th<b>ere</b>, sc<b>ar</b>y|-align="center"| {{enPRchar|ĕ}}| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan="2" | <tt>E</tt>| b<b>e</b>d, b<b>e</b>t, <b>e</b>nd|-align="center"| {{enPRchar|ĕr}}| colspan="2" | {{IPAchar|ɛɹ}}| colspan="2" | <tt>Er\</tt>| m<b>err</b>y|-align="center"| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| <tt>i:</tt>| <tt>i</tt>| <b>ea</b>se, s<b>ee</b>|-align="center"| {{enPRchar|ĭ}}| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan="2" | <tt>I</tt>| c<b>i</b>ty, b<b>i</b>t|-align="center"| {{enPRchar|i}}<ref>Not an AHD symbol. Often written as AHD <em>ē</em> in Wiktionary entries.</ref>| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan="2" | <tt>i</tt>| cit<b>y</b>, ver<b>y</b>, read<b>y</b>|-align="center"| {{enPRchar|ĭr}}| colspan="2" | {{IPAchar|ɪɹ}}| colspan="2" | <tt>Ir\</tt>| s<b>yr</b>up, S<b>ir</b>ius|-align="center"| {{enPRchar|ī}}| colspan="2" | {{IPAchar|aɪ}}| colspan="2" | <tt>aI</tt>| m<b>y</b>, r<b>i</b>se|-align="center"| {{enPRchar|îr}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| <tt>I@</tt>| <tt>Ir\</tt>| h<b>ere</b>, n<b>ear</b>, p<b>eer</b>, s<b>er</b>ious|-align="center"| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>Q</tt>| <tt>A</tt>| n<b>o</b>t|-align="center"| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| <tt>@U</tt>| <tt>oU</tt>| g<b>o</b>, h<b>o</b>pe, kn<b>ow</b>|-align="center"| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| <tt>O@</tt>| <tt>or\, Or\</tt>| h<b>oar</b>se, gl<b>or</b>y|-align="center"| {{enPRchar|ô}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| <tt>O:</tt>| <tt>O</tt>| l<b>aw</b>, c<b>au</b>ght, s<b>aw</b>|-align="center"| {{enPRchar|ôr}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| <tt>O:</tt>| <tt>Or\</tt>| h<b>or</b>se, m<b>ore</b>, l<b>aur</b>eate|-align="center"| {{enPRchar|oi}}| colspan="2" | {{IPAchar|ɔɪ}}| colspan="2" | <tt>OI</tt>| b<b>oy</b>, n<b>oi</b>se|-align="center"| {{enPRchar|o͝o, ŏŏ}}| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan="2" | <tt>U</tt>| p<b>u</b>t, f<b>oo</b>t|-align="center"| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| <tt>U@</tt>| <tt>Ur\</tt>| p<b>oor</b>, t<b>our</b>, t<b>our</b>ism|-align="center"| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| <tt>u:</tt>| <tt>u</tt>| l<b>o</b>se, s<b>oo</b>n, thr<b>ou</b>gh|-align="center"| {{enPRchar|ou}}| colspan="2" | {{IPAchar|aʊ}}| colspan="2" | <tt>aU</tt>| h<b>ou</b>se, n<b>ow</b>|-align="center"| {{enPRchar|ŭ}}| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan="2" | <tt>V</tt>| r<b>u</b>n, en<b>ou</b>gh, <b>u</b>p|-align="center"| {{enPRchar|ûr}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| <tt>3:</tt>| <tt>3`</tt>| f<b>ur</b>, b<b>ir</b>d|-align="center"| {{enPRchar|ə}}| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}| colspan="2" | <tt>@</tt>| <b>a</b>bout|-align="center"| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| <tt>@</tt>| <tt>@`</tt>| ent<b>er</b>|}<references/>
+The vowel table lists both monophthongs and diphthongs.{| {wikitable}! rowspan=&quot;2&quot; | enPR&lt;br/&gt;(AHD)! colspan=&quot;2&quot; | IPA! colspan=&quot;2&quot; | SAMPA! rowspan=&quot;2&quot; | Examples|-! RP! GA! RP! GA|-align=&quot;center&quot;| {{enPRchar|ă}}| colspan=&quot;2&quot; | {{IPAchar2|Near-open front unrounded vowel.ogg|&aelig;}}| colspan=&quot;2&quot; | &lt;tt&gt;{&lt;/tt&gt;| b<b>a</b>d, c<b>a</b>t, r<b>a</b>n|-align=&quot;center&quot;| {{enPRchar|ăr}}| colspan=&quot;2&quot; | {{IPAchar|&aelig;ɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;{r\&lt;/tt&gt;| c<b>arr</b>y|-align=&quot;center&quot;| {{enPRchar|ā}}| colspan=&quot;2&quot; | {{IPAchar|eɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;eI&lt;/tt&gt;| b<b>ai</b>t, pl<b>ay</b>, s<b>a</b>me|-align=&quot;center&quot;| {{enPRchar|&auml;}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| &lt;tt&gt;A:&lt;/tt&gt;| &lt;tt&gt;A&lt;/tt&gt;| f<b>a</b>ther|-align=&quot;center&quot;| {{enPRchar|&auml;r}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| &lt;tt&gt;A:&lt;/tt&gt;| &lt;tt&gt;Ar\&lt;/tt&gt;| <b>ar</b>m, b<b>ar</b>d, <b>ar</b>ia|-align=&quot;center&quot;| {{enPRchar|&acirc;r}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| &lt;tt&gt;E@&lt;/tt&gt;| &lt;tt&gt;Er\&lt;/tt&gt;| h<b>air</b>, p<b>ear</b>, th<b>ere</b>, sc<b>ar</b>y|-align=&quot;center&quot;| {{enPRchar|ĕ}}| colspan=&quot;2&quot; | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan=&quot;2&quot; | &lt;tt&gt;E&lt;/tt&gt;| b<b>e</b>d, b<b>e</b>t, <b>e</b>nd|-align=&quot;center&quot;| {{enPRchar|ĕr}}| colspan=&quot;2&quot; | {{IPAchar|ɛɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;Er\&lt;/tt&gt;| m<b>err</b>y|-align=&quot;center&quot;| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| &lt;tt&gt;i:&lt;/tt&gt;| &lt;tt&gt;i&lt;/tt&gt;| <b>ea</b>se, s<b>ee</b>|-align=&quot;center&quot;| {{enPRchar|ĭ}}| colspan=&quot;2&quot; | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;I&lt;/tt&gt;| c<b>i</b>ty, b<b>i</b>t|-align=&quot;center&quot;| {{enPRchar|i}}&lt;ref&gt;Not an AHD symbol. Often written as AHD <em>ē</em> in Wiktionary entries.&lt;/ref&gt;| colspan=&quot;2&quot; | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan=&quot;2&quot; | &lt;tt&gt;i&lt;/tt&gt;| cit<b>y</b>, ver<b>y</b>, read<b>y</b>|-align=&quot;center&quot;| {{enPRchar|ĭr}}| colspan=&quot;2&quot; | {{IPAchar|ɪɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;Ir\&lt;/tt&gt;| s<b>yr</b>up, S<b>ir</b>ius|-align=&quot;center&quot;| {{enPRchar|ī}}| colspan=&quot;2&quot; | {{IPAchar|aɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;aI&lt;/tt&gt;| m<b>y</b>, r<b>i</b>se|-align=&quot;center&quot;| {{enPRchar|&icirc;r}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| &lt;tt&gt;I@&lt;/tt&gt;| &lt;tt&gt;Ir\&lt;/tt&gt;| h<b>ere</b>, n<b>ear</b>, p<b>eer</b>, s<b>er</b>ious|-align=&quot;center&quot;| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| &lt;tt&gt;Q&lt;/tt&gt;| &lt;tt&gt;A&lt;/tt&gt;| n<b>o</b>t|-align=&quot;center&quot;| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| &lt;tt&gt;@U&lt;/tt&gt;| &lt;tt&gt;oU&lt;/tt&gt;| g<b>o</b>, h<b>o</b>pe, kn<b>ow</b>|-align=&quot;center&quot;| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| &lt;tt&gt;O@&lt;/tt&gt;| &lt;tt&gt;or\, Or\&lt;/tt&gt;| h<b>oar</b>se, gl<b>or</b>y|-align=&quot;center&quot;| {{enPRchar|&ocirc;}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| &lt;tt&gt;O:&lt;/tt&gt;| &lt;tt&gt;O&lt;/tt&gt;| l<b>aw</b>, c<b>au</b>ght, s<b>aw</b>|-align=&quot;center&quot;| {{enPRchar|&ocirc;r}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| &lt;tt&gt;O:&lt;/tt&gt;| &lt;tt&gt;Or\&lt;/tt&gt;| h<b>or</b>se, m<b>ore</b>, l<b>aur</b>eate|-align=&quot;center&quot;| {{enPRchar|oi}}| colspan=&quot;2&quot; | {{IPAchar|ɔɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;OI&lt;/tt&gt;| b<b>oy</b>, n<b>oi</b>se|-align=&quot;center&quot;| {{enPRchar|o͝o, ŏŏ}}| colspan=&quot;2&quot; | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan=&quot;2&quot; | &lt;tt&gt;U&lt;/tt&gt;| p<b>u</b>t, f<b>oo</b>t|-align=&quot;center&quot;| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| &lt;tt&gt;U@&lt;/tt&gt;| &lt;tt&gt;Ur\&lt;/tt&gt;| p<b>oor</b>, t<b>our</b>, t<b>our</b>ism|-align=&quot;center&quot;| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| &lt;tt&gt;u:&lt;/tt&gt;| &lt;tt&gt;u&lt;/tt&gt;| l<b>o</b>se, s<b>oo</b>n, thr<b>ou</b>gh|-align=&quot;center&quot;| {{enPRchar|ou}}| colspan=&quot;2&quot; | {{IPAchar|aʊ}}| colspan=&quot;2&quot; | &lt;tt&gt;aU&lt;/tt&gt;| h<b>ou</b>se, n<b>ow</b>|-align=&quot;center&quot;| {{enPRchar|ŭ}}| colspan=&quot;2&quot; | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan=&quot;2&quot; | &lt;tt&gt;V&lt;/tt&gt;| r<b>u</b>n, en<b>ou</b>gh, <b>u</b>p|-align=&quot;center&quot;| {{enPRchar|&ucirc;r}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| &lt;tt&gt;3:&lt;/tt&gt;| &lt;tt&gt;3`&lt;/tt&gt;| f<b>ur</b>, b<b>ir</b>d|-align=&quot;center&quot;| {{enPRchar|ə}}| colspan=&quot;2&quot; | {{IPAchar2|Schwa.ogg|ə}}| colspan=&quot;2&quot; | &lt;tt&gt;@&lt;/tt&gt;| <b>a</b>bout|-align=&quot;center&quot;| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| &lt;tt&gt;@&lt;/tt&gt;| &lt;tt&gt;@`&lt;/tt&gt;| ent<b>er</b>|}&lt;references/&gt;
 <h3>Consonants</h3>
-{| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| <tt>b</tt>| <b>b</b>ut, a<b>b</b>le, ca<b>b</b>, wo<b>bb</b>le, e<b>bb</b>|-| {{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>| <b>ch</b>at, tea<b>ch</b>er, in<b>ch</b>, ca<b>tch</b>, na<b>t</b>ure|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| <tt>d</tt>| <b>d</b>ot, i<b>d</b>ea, no<b>d</b>, fo<b>dd</b>er, o<b>dd</b>|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| <tt>f</tt>| <b>f</b>an, le<b>f</b>t, lea<b>f</b>, enou<b>gh</b>, <b>ph</b>ase, gra<b>ph</b>ic, epita<b>ph</b>|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}| <tt>g</tt>| <b>g</b>et, ma<b>g</b>net, ba<b>g</b>|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| <tt>h</tt>| <b>h</b>am|-| {{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>| <b>wh</b>ich|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />| <tt>dZ</tt>| <b>j</b>oy, a<b>j</b>ar, <b>g</b>in, a<b>g</b>ile, a<b>ge</b>, e<b>dge</b>|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| <tt>k</tt>| <b>c</b>at, <b>k</b>it, <b>q</b>ueen, pi<b>que</b>, <b>ch</b>oir, a<b>ch</b>e, ta<b>ck</b>|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| <tt>x</tt>| (<em>Scottish</em>) lo<b>ch</b>|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| <tt>l</tt>| <b>l</b>eft (<em>before vowel of syllable</em>)|-| {{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>| litt<b>le</b>|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| <tt>m</tt>| <b>m</b>an, ani<b>m</b>al, hi<b>m</b>|-| {{enPRchar|m}}| {{IPAchar|m̩ (əm)}}<ref name="cons"/>| <tt>m=</tt>| spas<b>m</b>, pris<b>m</b>|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| <tt>n</tt>| <b>n</b>ote, a<b>n</b>t, pa<b>n</b>|-| {{enPRchar|n}}| {{IPAchar|n̩ (ən)}}<ref name="cons"/>| <tt>n=</tt>| hidd<b>en</b>|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| <tt>N</tt>| si<b>ng</b>er, ri<b>ng</b>|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| <tt>p</tt>| <b>p</b>en, s<b>p</b>in, to<b>p</b>, a<b>pp</b>le|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>| <tt>r\</tt>| <b>r</b>un, ve<b>r</b>y|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| <tt>s</tt>| <b>s</b>et, li<b>s</b>t, pa<b>ss</b>, <b>c</b>ity, i<b>ce</b>|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| <tt>S</tt>| <b>sh</b>e, a<b>sh</b>, <b>s</b>ure, ra<b>t</b>ion|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| <tt>t</tt>| <b>t</b>on, s<b>t</b>ab, ma<b>t</b>, a<b>tt</b>end, bu<b>tt</b>, ou<b>ght</b>|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| <tt>T</tt>| <b>th</b>in, no<b>th</b>ing, mo<b>th</b>|-| {{enPRchar|<em>th</em>}}| {{IPAchar2|voiced dental fricative.ogg|ð}}| <tt>D</tt>| <b>th</b>is, fa<b>th</b>er, clo<b>the</b>|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| <tt>v</tt>| <b>v</b>oice, na<b>v</b>el, sa<b>ve</b>, o<b>f</b>|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| <tt>w</tt>| <b>w</b>et|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| <tt>j</tt>| <b>y</b>es|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| <tt>z</tt>| <b>z</b>oo, qui<b>z</b>, fu<b>zz</b>, ro<b>s</b>e, <b>x</b>ylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| <tt>Z</tt>| vi<b>s</b>ion, trea<b>s</b>ure, bei<b>ge</b>|}<references/>
+{| {wikitable}! enPR&lt;br&gt;(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| &lt;tt&gt;b&lt;/tt&gt;| <b>b</b>ut, a<b>b</b>le, ca<b>b</b>, wo<b>bb</b>le, e<b>bb</b>|-| {{enPRchar|ch}}| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}&lt;ref name=tiebar&gt;May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}&lt;/ref&gt;| &lt;tt&gt;tS&lt;/tt&gt;| <b>ch</b>at, tea<b>ch</b>er, in<b>ch</b>, ca<b>tch</b>, na<b>t</b>ure|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| &lt;tt&gt;d&lt;/tt&gt;| <b>d</b>ot, i<b>d</b>ea, no<b>d</b>, fo<b>dd</b>er, o<b>dd</b>|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| &lt;tt&gt;f&lt;/tt&gt;| <b>f</b>an, le<b>f</b>t, lea<b>f</b>, enou<b>gh</b>, <b>ph</b>ase, gra<b>ph</b>ic, epita<b>ph</b>|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}| &lt;tt&gt;g&lt;/tt&gt;| <b>g</b>et, ma<b>g</b>net, ba<b>g</b>|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| &lt;tt&gt;h&lt;/tt&gt;| <b>h</b>am|-| {{enPRchar|hw}}| {{IPAchar2|voiceless labio-velar fricative.ogg|ʍ (hw)}}&lt;ref&gt;Phonologists may deny that {{IPAchar|/ʍ/}} is a distinct phoneme, and instead use {{IPAchar|/hw/}}.&lt;/ref&gt;| &lt;tt&gt;W&lt;/tt&gt;| <b>wh</b>ich|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}&lt;ref name=tiebar /&gt;| &lt;tt&gt;dZ&lt;/tt&gt;| <b>j</b>oy, a<b>j</b>ar, <b>g</b>in, a<b>g</b>ile, a<b>ge</b>, e<b>dge</b>|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| &lt;tt&gt;k&lt;/tt&gt;| <b>c</b>at, <b>k</b>it, <b>q</b>ueen, pi<b>que</b>, <b>ch</b>oir, a<b>ch</b>e, ta<b>ck</b>|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| &lt;tt&gt;x&lt;/tt&gt;| (<em>Scottish</em>) lo<b>ch</b>|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| &lt;tt&gt;l&lt;/tt&gt;| <b>l</b>eft (<em>before vowel of syllable</em>)|-| {{enPRchar|l}}| {{IPAchar|l̩ (əl)}}&lt;ref name=&quot;cons&quot;&gt;Phonologists may deny that {{IPAchar|/l̩, n̩, m̩/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.&lt;/ref&gt;| &lt;tt&gt;l=&lt;/tt&gt;| litt<b>le</b>|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| &lt;tt&gt;m&lt;/tt&gt;| <b>m</b>an, ani<b>m</b>al, hi<b>m</b>|-| {{enPRchar|m}}| {{IPAchar|m̩ (əm)}}&lt;ref name=&quot;cons&quot;/&gt;| &lt;tt&gt;m=&lt;/tt&gt;| spas<b>m</b>, pris<b>m</b>|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| &lt;tt&gt;n&lt;/tt&gt;| <b>n</b>ote, a<b>n</b>t, pa<b>n</b>|-| {{enPRchar|n}}| {{IPAchar|n̩ (ən)}}&lt;ref name=&quot;cons&quot;/&gt;| &lt;tt&gt;n=&lt;/tt&gt;| hidd<b>en</b>|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| &lt;tt&gt;N&lt;/tt&gt;| si<b>ng</b>er, ri<b>ng</b>|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| &lt;tt&gt;p&lt;/tt&gt;| <b>p</b>en, s<b>p</b>in, to<b>p</b>, a<b>pp</b>le|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}&lt;ref&gt;Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.&lt;/ref&gt;| &lt;tt&gt;r\&lt;/tt&gt;| <b>r</b>un, ve<b>r</b>y|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| &lt;tt&gt;s&lt;/tt&gt;| <b>s</b>et, li<b>s</b>t, pa<b>ss</b>, <b>c</b>ity, i<b>ce</b>|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| &lt;tt&gt;S&lt;/tt&gt;| <b>sh</b>e, a<b>sh</b>, <b>s</b>ure, ra<b>t</b>ion|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| &lt;tt&gt;t&lt;/tt&gt;| <b>t</b>on, s<b>t</b>ab, ma<b>t</b>, a<b>tt</b>end, bu<b>tt</b>, ou<b>ght</b>|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| &lt;tt&gt;T&lt;/tt&gt;| <b>th</b>in, no<b>th</b>ing, mo<b>th</b>|-| {{enPRchar|<em>th</em>}}| {{IPAchar2|voiced dental fricative.ogg|&eth;}}| &lt;tt&gt;D&lt;/tt&gt;| <b>th</b>is, fa<b>th</b>er, clo<b>the</b>|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| &lt;tt&gt;v&lt;/tt&gt;| <b>v</b>oice, na<b>v</b>el, sa<b>ve</b>, o<b>f</b>|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| &lt;tt&gt;w&lt;/tt&gt;| <b>w</b>et|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| &lt;tt&gt;j&lt;/tt&gt;| <b>y</b>es|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| &lt;tt&gt;z&lt;/tt&gt;| <b>z</b>oo, qui<b>z</b>, fu<b>zz</b>, ro<b>s</b>e, <b>x</b>ylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| &lt;tt&gt;Z&lt;/tt&gt;| vi<b>s</b>ion, trea<b>s</b>ure, bei<b>ge</b>|}&lt;references/&gt;
 <h3>Other symbols</h3>
-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|}<b>Note:</b> The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme.
+A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. {| {wikitable}! enPR&lt;br&gt;(AHD)! IPA! SAMPA! Indicates|-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)| &lt;tt&gt;&quot;&lt;/tt&gt; (&lt;tt&gt;&quot;&lt;/tt&gt;a)| primary stress|-| {{enPRchar|'}} (a{{enPRchar|'}})| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)| &lt;tt&gt;%&lt;/tt&gt; (&lt;tt&gt;%&lt;/tt&gt;a)| secondary stress, sometimes tertiary stress|-| a{{enPRchar|-}}a| a{{IPAchar|.}}a| a&lt;tt&gt;.&lt;/tt&gt;a| division between syllables|}<b>Note:</b> 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:
 
@@ -383,10 +383,10 @@ apples and pears:
 April:
 {wikipedia}
 <h3>Etymology</h3>
-From {{etyl|enm}} {{term|apprile|lang=enm}}, re-Latinized from <em>aueril</em>, 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}}.
+From {{etyl|enm}} {{term|apprile|lang=enm}}, re-Latinized from <em>aueril</em>, 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&iacute;te|lang=grc}}.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˈeɪprɪl/}}, {{X-SAMPA|/"eIprIl/}} <em>or as US</em></li>
-<li> {{a|US}} {{enPR|āʹprəl}}, {{IPA|/ˈeɪprəl/}}, {{X-SAMPA|/"eIpr@l/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˈeɪprɪl/}}, {{X-SAMPA|/&quot;eIprIl/}} <em>or as US</em></li>
+<li> {{a|US}} {{enPR|āʹprəl}}, {{IPA|/ˈeɪprəl/}}, {{X-SAMPA|/&quot;eIpr@l/}}</li>
 <li> {{audio|en-us-April.ogg|Audio (US)}}</li>
 </ul>
 
@@ -489,7 +489,7 @@ barter:
 {wikipedia}
 <h3>Pronunciation</h3>
 <ul><li> {{a|RP}} {{IPA|/ˈbɑːtə(ɹ)/}}, {{X-SAMPA|/bA:t@(r)/}}</li>
-<li> {{a|US}} {{enPR|bärʹ-tər}}, {{IPA|/ˈbɑɹtə˞/}}, {{X-SAMPA|/bArt@`/}}</li>
+<li> {{a|US}} {{enPR|b&auml;rʹ-tər}}, {{IPA|/ˈbɑɹtə˞/}}, {{X-SAMPA|/bArt@`/}}</li>
 <li> {{rhymes|ɑː(r)tə(r)}}</li>
 </ul>
 
@@ -531,14 +531,14 @@ book:
 </ul>
 
 <h3>Etymology 1</h3>
-From {{etyl|enm}} {{term|book|lang=enm}}, from {{etyl|ang}} {{term|boc|bōc|lang=ang}}, first and third person singular preterite of {{term|bacan|to bake|lang=ang}}. Cognate with {{etyl|sco|-}} {{term|beuk|baked|lang=sco}}, {{etyl|de|-}} {{term|buke|baked|lang=de}} and probably Albanian {{term|bukë|bread, baked dough|lang=sq}}. More at {{l|en|bake}}.
+From {{etyl|enm}} {{term|book|lang=enm}}, from {{etyl|ang}} {{term|boc|bōc|lang=ang}}, first and third person singular preterite of {{term|bacan|to bake|lang=ang}}. Cognate with {{etyl|sco|-}} {{term|beuk|baked|lang=sco}}, {{etyl|de|-}} {{term|buke|baked|lang=de}} and probably Albanian {{term|buk&euml;|bread, baked dough|lang=sq}}. More at {{l|en|bake}}.
 <h4>Verb</h4>
 {{head|en|verb form}}
 <ol><li> {{context|UK|_|dialectal|Northern England}} {{form of|Alternative simple past|bake|lang=en}}.</li>
 </ol>
 
 <h3>Etymology 2</h3>
-From {{etyl|enm}} {{term|book|lang=enm}}, from {{etyl|ang}} {{term|boc|bōc|a book, a document, register, catalog, a legal document, a bill of divorce, a charter, a title deed, conveyance, a volume, literary work, pages, main division of a work|lang=ang}}, from {{proto|Germanic|bōks|beech, book|lang=en}}, from {{proto|Indo-European|bheh₁g̑ós|beech|lang=en}}. Cognate with {{etyl|sco|-}} {{term|buik|lang=sco}}, {{term|beuk|book|lang=sco}}, {{etyl|fy|-}} {{term|boek|book|lang=fy}}, {{etyl|nl|-}} {{term|boek|book|lang=nl}}, {{etyl|de|-}} {{term|Buch|book|lang=de}}, {{etyl|sv|-}} {{term|bok|book|lang=sv}}. Related also to Latin {{term|fagus|fāgus|beech|lang=la}}, Russian {{term|бук|beech|tr=buk|lang=ru}}, Albanian {{term|bung|chestnut, oak|lang=sq}}, Ancient Greek {{term|φηγός|oak|tr=phēgós|lang=grc}}, Armenian {{term|bown|trunk}}, Kurdish {{term|bûz|elm}}. More at beech, buckwheat.The sense development of <em>beech</em> to <em>book</em> is explained by the fact that smooth gray beech bark was commonly used as bookfell.<ref>J.P. Mallory, <em>Encyclopedia of Indo-European Culture</em>, s.v. "beech" (London: Fitroy-Dearborn, 1997), 58.</ref>
+From {{etyl|enm}} {{term|book|lang=enm}}, from {{etyl|ang}} {{term|boc|bōc|a book, a document, register, catalog, a legal document, a bill of divorce, a charter, a title deed, conveyance, a volume, literary work, pages, main division of a work|lang=ang}}, from {{proto|Germanic|bōks|beech, book|lang=en}}, from {{proto|Indo-European|bheh₁g̑&oacute;s|beech|lang=en}}. Cognate with {{etyl|sco|-}} {{term|buik|lang=sco}}, {{term|beuk|book|lang=sco}}, {{etyl|fy|-}} {{term|boek|book|lang=fy}}, {{etyl|nl|-}} {{term|boek|book|lang=nl}}, {{etyl|de|-}} {{term|Buch|book|lang=de}}, {{etyl|sv|-}} {{term|bok|book|lang=sv}}. Related also to Latin {{term|fagus|fāgus|beech|lang=la}}, Russian {{term|бук|beech|tr=buk|lang=ru}}, Albanian {{term|bung|chestnut, oak|lang=sq}}, Ancient Greek {{term|φηγός|oak|tr=phēg&oacute;s|lang=grc}}, Armenian {{term|bown|trunk}}, Kurdish {{term|b&ucirc;z|elm}}. More at beech, buckwheat.The sense development of <em>beech</em> to <em>book</em> is explained by the fact that smooth gray beech bark was commonly used as bookfell.&lt;ref&gt;J.P. Mallory, <em>Encyclopedia of Indo-European Culture</em>, s.v. &quot;beech&quot; (London: Fitroy-Dearborn, 1997), 58.&lt;/ref&gt;
 <h4>Noun</h4>
 A hard-cover book{en-noun}
 <ol><li> A collection of sheets of paper bound together to hinge at one edge, containing printed or written material, pictures, etc. If initially blank, commonly referred to as a notebook.</li>
@@ -827,7 +827,7 @@ A hard-cover book{en-noun}
 </ul>
 
 <h3>References</h3>
-<references/>Category:1000 English basic wordsCategory:en:Poker----
+&lt;references/&gt;Category:1000 English basic wordsCategory:en:Poker----
 book:
 
 <h3>Etymology</h3>
@@ -841,7 +841,7 @@ af:bookar:bookaz:bookzh-min-nan:bookbs:bookca:bookcs:bookcy:bookda:bookde:booket
 brown:
 {wikipedia}Various shades of brown.Brown is a common hair color.A glass of hot chocolate.
 <h3>Etymology</h3>
-{{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}}).
+{{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&uacute;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&yacute;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&uacute;}} ‘reddish-brown’ {{rfscript|Devanagari|lang=sa}}).
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|/braʊn/}}</li>
 <li> {{audio|en-us-brown.ogg|Audio (US)}}</li>
@@ -881,7 +881,7 @@ brown:
 </ol>
 
 <h3>Derived terms</h3>
-{{rel-top|terms derived from "brown"}}
+{{rel-top|terms derived from &quot;brown&quot;}}
 <ul><li> brown adipose tissue</li>
 <li> brown ale</li>
 <li> brown bastard</li>
@@ -946,9 +946,9 @@ business deal:
 <h3>Noun</h3>
 {{en-noun|sg=business deal}}
 <ol><li> A particular instance of buying or selling</li>
-<ul><li>"it was a package deal"</li>
-<li>"I had no further trade with him"</li>
-<li>"he's a master of the business deal" </li>
+<ul><li>&quot;it was a package deal&quot;</li>
+<li>&quot;I had no further trade with him&quot;</li>
+<li>&quot;he's a master of the business deal&quot; </li>
 </ul>
 </ol>
 
@@ -961,14 +961,14 @@ it:business deal
 cat:
 {wikipedia}A domestic cat (1)
 <h3>Pronunciation</h3>
-<ul><li> {{enPR|kăt}}, {{IPA|/kæt/|[kʲæʔ]}}, {{X-SAMPA|/k{t/}}</li>
+<ul><li> {{enPR|kăt}}, {{IPA|/k&aelig;t/|[kʲ&aelig;ʔ]}}, {{X-SAMPA|/k{t/}}</li>
 <li> {{audio|en-us-cat.ogg|Audio (US)}}</li>
 <li> {{audio|en-us-inlandnorth-cat.ogg|Audio (US-Inland North)}}</li>
-<li> {{rhymes|æt}}</li>
+<li> {{rhymes|&aelig;t}}</li>
 </ul>
 
 <h3>Etymology 1</h3>
-From {{etyl|enm}} {{term|cat|lang=enm}}, {{term|catte|lang=enm}}, from {{etyl|ang}} {{term|catt|male cat|lang=ang}} and {{term|catte|female cat|lang=ang}}, from {{etyl|LL.}} {{term|cattus|domestic cat|lang=la}}, from {{etyl|la}} {{term|catta|lang=la}} (c.75 B.C., Martial)<ref>Douglas Harper, <em>Online Etymology Dictionary</em>, s.v. "cat", [html], retrieved on 29 September 2009: [http://www.etymonline.com/index.php?term=cat].</ref>, from {{etyl|afa}} (compare Nubian <em>kadís</em>, {{etyl|ber|-}} <em>kaddîska</em> 'wildcat'), from Late Egyptian <em>čaute</em>,<ref>Jean-Paul Savignac, <em>Dictionnaire français-gaulois</em>, s.v. "chat" (Paris: Errance, 2004), 82.</ref> feminine of <em>čaus</em> 'jungle cat, African wildcat', from earlier {{etyl|egy|-}} <em>tešau</em> 'female cat'. Cognate with {{etyl|sco|-}} {{term|cat|cat|lang=sco}}, West Frisian {{term|kat|cat|lang=fy}}, {{etyl|frr|-}} {{term|kåt|cat|lang=frr}}, Dutch {{term|kat|cat|lang=nl}}, {{etyl|nds|-}} {{term|katte|cat|lang=nds}}, German {{term|Katze|cat|lang=de}}, Danish {{term|kat|cat|lang=da}}, Swedish {{term|katt|cat|lang=sv}}, {{etyl|is|-}} {{term|köttur|cat|lang=is}}, and also with {{etyl|de|-}} {{term|Kater|tomcat|lang=de}} and Dutch {{term|kater|tomcat|lang=nl}}.
+From {{etyl|enm}} {{term|cat|lang=enm}}, {{term|catte|lang=enm}}, from {{etyl|ang}} {{term|catt|male cat|lang=ang}} and {{term|catte|female cat|lang=ang}}, from {{etyl|LL.}} {{term|cattus|domestic cat|lang=la}}, from {{etyl|la}} {{term|catta|lang=la}} (c.75 B.C., Martial)&lt;ref&gt;Douglas Harper, <em>Online Etymology Dictionary</em>, s.v. &quot;cat&quot;, [html], retrieved on 29 September 2009: [http://www.etymonline.com/index.php?term=cat].&lt;/ref&gt;, from {{etyl|afa}} (compare Nubian <em>kad&iacute;s</em>, {{etyl|ber|-}} <em>kadd&icirc;ska</em> 'wildcat'), from Late Egyptian <em>čaute</em>,&lt;ref&gt;Jean-Paul Savignac, <em>Dictionnaire fran&ccedil;ais-gaulois</em>, s.v. &quot;chat&quot; (Paris: Errance, 2004), 82.&lt;/ref&gt; feminine of <em>čaus</em> 'jungle cat, African wildcat', from earlier {{etyl|egy|-}} <em>tešau</em> 'female cat'. Cognate with {{etyl|sco|-}} {{term|cat|cat|lang=sco}}, West Frisian {{term|kat|cat|lang=fy}}, {{etyl|frr|-}} {{term|k&aring;t|cat|lang=frr}}, Dutch {{term|kat|cat|lang=nl}}, {{etyl|nds|-}} {{term|katte|cat|lang=nds}}, German {{term|Katze|cat|lang=de}}, Danish {{term|kat|cat|lang=da}}, Swedish {{term|katt|cat|lang=sv}}, {{etyl|is|-}} {{term|k&ouml;ttur|cat|lang=is}}, and also with {{etyl|de|-}} {{term|Kater|tomcat|lang=de}} and Dutch {{term|kater|tomcat|lang=nl}}.
 <h4>Noun</h4>
 {en-noun}
 <ol><li> A domesticated subspecies {{qualifier|Felis silvestris catus}} of feline animal, commonly kept as a house pet. {{defdate|from 8th c.}}</li>
@@ -982,15 +982,15 @@ From {{etyl|enm}} {{term|cat|lang=enm}}, {{term|catte|lang=enm}}, from {{etyl|an
 <ul><li> <em>No room to swing a <b>cat</b>.</em></li>
 </ul>
 <li> {slang} Any of a variety of earth-moving machines. (from their manufacturer Caterpillar Inc.)</li>
-<li> {archaic} A sturdy merchant sailing vessel {{qualifier|now only in "catboat"}}.</li>
-<li> {{archaic|uncountable}} The game of "trap and ball" (also called "cat and dog").</li>
-<li> {{archaic|uncountable}} The trap of the game of "trap and ball".</li>
+<li> {archaic} A sturdy merchant sailing vessel {{qualifier|now only in &quot;catboat&quot;}}.</li>
+<li> {{archaic|uncountable}} The game of &quot;trap and ball&quot; (also called &quot;cat and dog&quot;).</li>
+<li> {{archaic|uncountable}} The trap of the game of &quot;trap and ball&quot;.</li>
 <li> {slang} Prostitute. {{defdate|from at least early 15th c.}}</li>
 <li> {{slang|vulgar|African American Vernacular English}} A vagina; female external genitalia</li>
 <ul><li> 1969. Iceberg Slim. <em>Pimp: The Story of My Life</em>. Holloway House Publishing.</li>
-<ul><li> "What the hell, so this broad's got a prematurely-gray <b>cat</b>."<em></li>
+<ul><li> &quot;What the hell, so this broad's got a prematurely-gray <b>cat</b>.&quot;<em></li>
 </ul>
-<li> 2005. Carolyn Chambers Sanders. </em>Sins & Secrets<em>. Hachette Digital.</li>
+<li> 2005. Carolyn Chambers Sanders. </em>Sins &amp; Secrets<em>. Hachette Digital.</li>
 <ul><li> </em>As she came up, she tried to put her <b>cat</b> in his face for some licking.<em></li>
 </ul>
 <li> 2007. Franklin White. </em>Money for Good<em>. Simon and Schuster. page 64.</li>
@@ -1000,12 +1000,12 @@ From {{etyl|enm}} {{term|cat|lang=enm}}, {{term|catte|lang=enm}}, from {{etyl|an
 </ol>
 
 <h5>Synonyms</h5>
-<ul><li> {{sense|any member of the suborder (sometimes superfamily) Feliformia or Feloidea}} feliform ("cat-like" carnivoran), feloid (cf. Caniformia, Canoidea)</li>
+<ul><li> {{sense|any member of the suborder (sometimes superfamily) Feliformia or Feloidea}} feliform (&quot;cat-like&quot; carnivoran), feloid (cf. Caniformia, Canoidea)</li>
 <li> {{sense|any member of the family Felidae}} felid</li>
 <li> {{sense|any member of the subfamily Felinae, genera Puma, Acinonyx, Lynx, Leopardus, and Felis)}} feline cat, a feline</li>
 <li> {{sense|any member of the subfamily Pantherinae, genera Panthera, Uncia and Neofelis}} pantherine cat, a pantherine</li>
 <li> {{sense|technically, all members of the genus Panthera}} panther (i.e. tiger, lion, jaguar, leopard), {{qualifier|narrow sense}} panther (i.e. black panther)</li>
-<li> {{sense|any member of the extinct subfamily Machairodontinae, genera Smilodon, Homotherium, Miomachairodus, etc.}} Smilodontini, Machairodontini (Homotherini), Metailurini, "saber-toothed cat" (saber-tooth)</li>
+<li> {{sense|any member of the extinct subfamily Machairodontinae, genera Smilodon, Homotherium, Miomachairodus, etc.}} Smilodontini, Machairodontini (Homotherini), Metailurini, &quot;saber-toothed cat&quot; (saber-tooth)</li>
 <li> {{sense|domestic species}} housecat, puss, pussy, malkin, kitten, kitty, pussy-cat, mouser, tomcat, grimalkin</li>
 <li> {{sense|man}} bloke {{qualifier|UK}}, chap {{qualifier|British}}, cove {{qualifier|UK}}, dude, fellow, fella, guy</li>
 <li> {{sense|spiteful woman}} bitch</li>
@@ -1117,7 +1117,7 @@ From {{etyl|enm}} {{term|cat|lang=enm}}, {{term|catte|lang=enm}}, from {{etyl|an
 <li> sand cat</li>
 </ul>
 <ul><li> scaredy-cat</li>
-<li> Schrödinger’s cat</li>
+<li> Schr&ouml;dinger’s cat</li>
 <li> Siamese cat, Siamese</li>
 <li> spokescat</li>
 <li> tabby cat, tabby</li>
@@ -1140,7 +1140,7 @@ From {{etyl|enm}} {{term|cat|lang=enm}}, {{term|catte|lang=enm}}, from {{etyl|an
 <li> nine lives</li>
 <li> Persian</li>
 <li> Russian Blue</li>
-<li> Schrödinger’s cat</li>
+<li> Schr&ouml;dinger’s cat</li>
 <li> Siamese</li>
 <li> tabby</li>
 </ul>
@@ -1184,7 +1184,7 @@ Possibly a shortened form of {{term|catastrophic}}.
 <h5>Usage notes</h5>
 This usage is common in speech but rarely appears in writing.
 <h3>References</h3>
-<references/>
+&lt;references/&gt;
 <h3>Anagrams</h3>
 <ul><li> act , act., Act., ACT</li>
 <li> ATC</li>
@@ -1220,10 +1220,10 @@ connotation:
 <h3>Noun</h3>
 {en-noun}
 <ol><li> A meaning of a word or phrase that is suggested or implied, as opposed to a denotation, or literal meaning. A characteristic of words or phrases, or of the contexts that words and phrases are used in.</li>
-<ul><li> <em>The <b>connotations</b> of the phrase "you are a dog" are that you are physically unattractive or morally reprehensible, not that you are a canine.</em></li>
+<ul><li> <em>The <b>connotations</b> of the phrase &quot;you are a dog&quot; are that you are physically unattractive or morally reprehensible, not that you are a canine.</em></li>
 </ul>
 <li> A technical term in logic used by J. S. Mill and later logicians to refer to the attribute or aggregate of attributes connoted by a term, and contrasted with <em>denotation</em>.</li>
-<ul><li> <em>The two expressions "the morning star" and "the evening star" have different <b>connotations</b> but the same denotation (i.e. the planet Venus).</em></li>
+<ul><li> <em>The two expressions &quot;the morning star&quot; and &quot;the evening star&quot; have different <b>connotations</b> but the same denotation (i.e. the planet Venus).</em></li>
 </ul>
 </ol>
 
@@ -1250,12 +1250,12 @@ Category:en:Semanticscs:connotationet:connotationel:connotationfa:connotationfr:
 craft:
 {{wikipedia|craft|dab=craft (disambiguation)}}
 <h3>Etymology</h3>
-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}}.
+From {{etyl|enm|en}}, from {{etyl|ang|en}} {{term|cr&aelig;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&ecirc;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}}.
 <h3>Pronunciation</h3>
 <ul><li> {{a|RP}} {{IPA|/kɹɑːft/}}</li>
 <ul><li> {{rhymes|ɑːft}}</li>
 </ul>
-<li> {{a|US}} {{IPA|/kɹæft/}}</li>
+<li> {{a|US}} {{IPA|/kɹ&aelig;ft/}}</li>
 <li> {{audio|en-us-craft.ogg|Audio (US)}}</li>
 </ul>
 
@@ -1270,19 +1270,19 @@ From {{etyl|enm|en}}, from {{etyl|ang|en}} {{term|cræft|physical strength, migh
 <ul><li> <em>She represented the <b>craft</b> of brewers.</em></li>
 </ul>
 <li> {{context|nautical|whaling}} Implements used in catching fish, such as net, line, or hook. Modern use primarily in whaling, as in harpoons, hand-lances, etc.</li>
-<ul><li> {{ante|1784}} “An Act for encouraging and regulating Fiſheries”, in <em>Acts and Laws of the State of Connecticut, in America</em>, T. Green (1784), [http://books.google.com/books?id=ywc4AAAAIAAJ&pg=PA79&dq=craft page 79]:</li>
+<ul><li> {{ante|1784}} “An Act for encouraging and regulating Fiſheries”, in <em>Acts and Laws of the State of Connecticut, in America</em>, T. Green (1784), [http://books.google.com/books?id=ywc4AAAAIAAJ&amp;pg=PA79&amp;dq=craft page 79]:</li>
 <ul><li> <em>And whereas the continual Interruption of the Courſe and Paſſage of the Fiſh up the Rivers, by the daily drawing of Seins and other Fiſh-<b>Craft</b>, tends to prevent their Increaſe, {...}</em> </li>
 </ul>
-<li> <b>1869</b> April 27, C. M. Scammon, Edward D. Cope (editor), “On the Cetaceans of the Western Coast of North America”, in <em>Proceedings of the Academy of Natural Sciences of Philadelphia</em>, Volume 21, [http://books.google.com/books?id=9IEOAQAAIAAJ&pg=RA1-PA46&dq=craft page 46]:</li>
+<li> <b>1869</b> April 27, C. M. Scammon, Edward D. Cope (editor), “On the Cetaceans of the Western Coast of North America”, in <em>Proceedings of the Academy of Natural Sciences of Philadelphia</em>, Volume 21, [http://books.google.com/books?id=9IEOAQAAIAAJ&amp;pg=RA1-PA46&amp;dq=craft page 46]:</li>
 <ul><li> The whaling <b>craft</b> consists of harpoons, lances, lines, and sealskin buoys, all of their own workmanship.</li>
 </ul>
-<li> {{ante|1923}} Charles Boardman Hawes, “A Boy Who Went Whaling”, in <em>The Highest Hit: and Other Selections by Newbery Authors</em>,<sup >[http://books.google.com/books?id=xZC5QKSqW8UC ]</sup> Gareth Stevens Publishing (2001), ISBN 9780836828566, page 47:</li>
+<li> {{ante|1923}} Charles Boardman Hawes, “A Boy Who Went Whaling”, in <em>The Highest Hit: and Other Selections by Newbery Authors</em>,&lt;sup &gt;[http://books.google.com/books?id=xZC5QKSqW8UC ]&lt;/sup&gt; Gareth Stevens Publishing (2001), ISBN 9780836828566, page 47:</li>
 <ul><li> From the mate’s boat they removed, at his direction, all whaling gear and <b>craft</b> except the oars and a single lance.</li>
 </ul>
-<li> <b>1950</b>, in <em>Discovery Reports</em>, Volume 26,<sup >[http://books.google.com/books?id=GFgqAAAAMAAJ ]</sup> Cambridge University Press, page 318:</li>
+<li> <b>1950</b>, in <em>Discovery Reports</em>, Volume 26,&lt;sup &gt;[http://books.google.com/books?id=GFgqAAAAMAAJ ]&lt;/sup&gt; Cambridge University Press, page 318:</li>
 <ul><li> {...} Temple, a negro of New Bedford, who made ‘whalecraft’, that is, was a blacksmith engaged in working from iron the special utensils or ‘<b>craft</b>’ of the whaling trade.</li>
 </ul>
-<li> <b>1991</b>, Joan Druett, <em>Petticoat Whalers: Whaling Wives at Sea, 1820–1920</em>, University Press of New England (2001), ISBN 978-1-58465-159-8, [http://books.google.com/books?id=lwfRQFIeBYMC&pg=PA55&dq=craft page 55]:</li>
+<li> <b>1991</b>, Joan Druett, <em>Petticoat Whalers: Whaling Wives at Sea, 1820–1920</em>, University Press of New England (2001), ISBN 978-1-58465-159-8, [http://books.google.com/books?id=lwfRQFIeBYMC&amp;pg=PA55&amp;dq=craft page 55]:</li>
 <ul><li> The men raced about decks collecting the whaling <b>craft</b> and gear and putting them into the boats, while all the time the lookouts hollered from above.</li>
 </ul>
 </ul>
@@ -1323,11 +1323,11 @@ From {{etyl|enm|en}}, from {{etyl|ang|en}} {{term|cræft|physical strength, migh
 <h3>Verb</h3>
 {en-verb}
 <ol><li> To make by hand and with much skill.</li>
-<li> To construct, develop something (like a skilled craftsman): "state crafting", "crafting global policing".</li>
+<li> To construct, develop something (like a skilled craftsman): &quot;state crafting&quot;, &quot;crafting global policing&quot;.</li>
 </ol>
 
 <h3>References</h3>
-<ul><li> Krueger, Dennis (December 1982). "Why On Earth Do They Call It Throwing?" <em>Studio Potter</em> Vol. 11, Number 1.[http://www.studiopotter.org/articles/?art=art0001]</li>
+<ul><li> Krueger, Dennis (December 1982). &quot;Why On Earth Do They Call It Throwing?&quot; <em>Studio Potter</em> Vol. 11, Number 1.[http://www.studiopotter.org/articles/?art=art0001]</li>
 </ul>
 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***
@@ -1341,7 +1341,7 @@ A bird; a crow: <em>American crow</em>{wikipedia}
 </ul>
 
 <h3>Etymology 1</h3>
-{{etyl|enm}} {{term|crowe|lang=enm}}, from {{etyl|ang}} {{term|crawe|crāwe|lang=ang}}, from {{proto|Germanic|krāwō}} (compare {{etyl|fy|-}} {{term|krie|lang=fy}}, {{etyl|nl|-}} {{term|kraai|lang=nl}}, {{etyl|de|-}} {{term|Krähe|lang=de}}), from {{proto|Germanic|krāhanan|title=}} ‘to crow’. See below.
+{{etyl|enm}} {{term|crowe|lang=enm}}, from {{etyl|ang}} {{term|crawe|crāwe|lang=ang}}, from {{proto|Germanic|krāwō}} (compare {{etyl|fy|-}} {{term|krie|lang=fy}}, {{etyl|nl|-}} {{term|kraai|lang=nl}}, {{etyl|de|-}} {{term|Kr&auml;he|lang=de}}), from {{proto|Germanic|krāhanan|title=}} ‘to crow’. See below.
 <h4>Noun</h4>
 {en-noun}
 <ol><li> A bird, usually black, of the genus <em>Corvus</em>, having a strong conical beak, with projecting bristles; it has a harsh, croaking call.</li>
@@ -1388,7 +1388,7 @@ A bird; a crow: <em>American crow</em>{wikipedia}
 </ul>
 
 <h3>Etymology 2</h3>
-{{etyl|enm}} {{term|crowen|lang=enm}}, from {{etyl|ang}} {{term|crawan|crāwan|lang=ang}}, from {{proto|Germanic|krāhanan}} (compare Dutch {{term|kraaien|lang=nl}}, German {{term|krähen|lang=de}}), from {{proto|Indo-European|greh₂-}} ‘to caw, croak’ (compare Lithuanian {{term|gróti|lang=lt}}, Russian {{term|граять|tr=grájat'|sc=Cyrl|lang=ru}}). Related to {{l|en|croak}}.
+{{etyl|enm}} {{term|crowen|lang=enm}}, from {{etyl|ang}} {{term|crawan|crāwan|lang=ang}}, from {{proto|Germanic|krāhanan}} (compare Dutch {{term|kraaien|lang=nl}}, German {{term|kr&auml;hen|lang=de}}), from {{proto|Indo-European|greh₂-}} ‘to caw, croak’ (compare Lithuanian {{term|gr&oacute;ti|lang=lt}}, Russian {{term|граять|tr=gr&aacute;jat'|sc=Cyrl|lang=ru}}). Related to {{l|en|croak}}.
 <h4>Verb</h4>
 {{en-verb|crows|crowing|<b>crowed</b> or <b>crew</b> (Br. Eng. sense 1 only)|crowed}}
 <ol><li> To make the shrill sound characteristic of a rooster; to make a sound in this manner, either in joy, gaiety, or defiance.</li>
@@ -1423,7 +1423,7 @@ day:
 </ul>
 
 <h3>Etymology</h3>
-From {{etyl|enm}} {{term|day|lang=enm}}, from {{etyl|ang}} {{term|dæg|dæġ|day|lang=ang|sc=Latinx}}, from {{proto|Germanic|dagaz|day|lang=en}}, from {{proto|Indo-European|dʰegʰ-|to burn|lang=en}}. Cognate with {{etyl|fy|-}} {{term|dei|day|lang=fy}}, Dutch {{term|dag|day|lang=nl}}, German {{term|Tag|day|lang=de}}, Swedish {{term|dag|day|lang=sv}}, {{etyl|is|-}} {{term|dagur|day|lang=is}}. Compare {{etyl|sq|-}} {{term|djeg|to burn|lang=sq}}, {{etyl|lt|-}} {{term|degti|to burn|lang=lt}}, {{etyl|sa|-}} {{term|heat|tr=dāhas|lang=sa|sc=Deva}}.Not related to Latin {{term|dies|lang=la}} (from {{proto|Indo-European|dyeu-|to shine}}).
+From {{etyl|enm}} {{term|day|lang=enm}}, from {{etyl|ang}} {{term|d&aelig;g|d&aelig;ġ|day|lang=ang|sc=Latinx}}, from {{proto|Germanic|dagaz|day|lang=en}}, from {{proto|Indo-European|dʰegʰ-|to burn|lang=en}}. Cognate with {{etyl|fy|-}} {{term|dei|day|lang=fy}}, Dutch {{term|dag|day|lang=nl}}, German {{term|Tag|day|lang=de}}, Swedish {{term|dag|day|lang=sv}}, {{etyl|is|-}} {{term|dagur|day|lang=is}}. Compare {{etyl|sq|-}} {{term|djeg|to burn|lang=sq}}, {{etyl|lt|-}} {{term|degti|to burn|lang=lt}}, {{etyl|sa|-}} {{term|heat|tr=dāhas|lang=sa|sc=Deva}}.Not related to Latin {{term|dies|lang=la}} (from {{proto|Indo-European|dyeu-|to shine}}).
 <h3>Pronunciation</h3>
 <ul><li> {{enPR|dā}}, {{IPA|/deɪ/}}, {{X-SAMPA|/deI/}}</li>
 <li> {{audio|en-us-day.ogg|Audio (US)}}</li>
@@ -1545,7 +1545,7 @@ Category:200 English basic wordsCategory:en:Time----
 day:
 
 <h3>Etymology</h3>
-{{etyl|ang|enm}} {{term|dæg|dæġ|lang=ang}}
+{{etyl|ang|enm}} {{term|d&aelig;g|d&aelig;ġ|lang=ang}}
 <h3>Noun</h3>
 {enm-noun}
 <ol><li> day</li>
@@ -1565,7 +1565,7 @@ deal:
 </ul>
 
 <h3>Etymology 1</h3>
-From {{etyl|enm}} {{term|dele|lang=enm}}, from {{etyl|ang}} {{term|dæl|dǣl|part, share, portion|lang=ang|sc=Latinx}}, from {{proto|Germanic|dailiz|part, deal|lang=en}}, from {{proto|Indo-European|dhAil-|part, watershed|lang=en}}. Cognate with {{etyl|sco|-}} {{term|dele|part, portion|lang=sco}}, {{etyl|fy|-}} {{term|diel|part, share|lang=fy}}, {{etyl|nl|-}} {{term|deel|part, share, portion|lang=nl}}, {{etyl|de|-}} {{term|Teil|part, portion, section|lang=de}}, {{etyl|da|-}} {{term|del|part|lang=da}}, {{etyl|is|-}} {{term|deila|division, contention|lang=is}}, {{etyl|got|-}} {{term|𐌳𐌰𐌹𐌻𐍃|portion|tr=dails|lang=got|sc=Goth}}. Related to {{etyl|ang|-}} {{term|dal|dāl|portion|lang=ang}}. More at {{l|en|dole}}.
+From {{etyl|enm}} {{term|dele|lang=enm}}, from {{etyl|ang}} {{term|d&aelig;l|dǣl|part, share, portion|lang=ang|sc=Latinx}}, from {{proto|Germanic|dailiz|part, deal|lang=en}}, from {{proto|Indo-European|dhAil-|part, watershed|lang=en}}. Cognate with {{etyl|sco|-}} {{term|dele|part, portion|lang=sco}}, {{etyl|fy|-}} {{term|diel|part, share|lang=fy}}, {{etyl|nl|-}} {{term|deel|part, share, portion|lang=nl}}, {{etyl|de|-}} {{term|Teil|part, portion, section|lang=de}}, {{etyl|da|-}} {{term|del|part|lang=da}}, {{etyl|is|-}} {{term|deila|division, contention|lang=is}}, {{etyl|got|-}} {{term|𐌳𐌰𐌹𐌻𐍃|portion|tr=dails|lang=got|sc=Goth}}. Related to {{etyl|ang|-}} {{term|dal|dāl|portion|lang=ang}}. More at {{l|en|dole}}.
 <h4>Noun</h4>
 {en-noun}
 <ol><li> {obsolete} A division, a portion, a share.</li>
@@ -1594,7 +1594,7 @@ From {{etyl|enm}} {{term|dele|lang=enm}}, from {{etyl|ang}} {{term|dæl|dǣl|par
 </ul>
 
 <h3>Etymology 2</h3>
-From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|dælan|dǣlan|to divide, part|lang=ang}}, from {{proto|Germanic|dailijanan|to divide, part, deal|lang=en}}, from {{proto|Indo-European|dʰail-|part, watershed|lang=en}}. Cognate with {{etyl|fy|-}} {{term|diele|to divide, separate|lang=fy}}, Dutch {{term|delen|lang=nl}}, German {{term|teilen|lang=de}}, Swedish {{term|dela|lang=sv}}; and with Lithuanian {{term|dalinti|divide|lang=lt}}, Russian {{term|делить|lang=ru|sc=Cyrl}}.
+From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|d&aelig;lan|dǣlan|to divide, part|lang=ang}}, from {{proto|Germanic|dailijanan|to divide, part, deal|lang=en}}, from {{proto|Indo-European|dʰail-|part, watershed|lang=en}}. Cognate with {{etyl|fy|-}} {{term|diele|to divide, separate|lang=fy}}, Dutch {{term|delen|lang=nl}}, German {{term|teilen|lang=de}}, Swedish {{term|dela|lang=sv}}; and with Lithuanian {{term|dalinti|divide|lang=lt}}, Russian {{term|делить|lang=ru|sc=Cyrl}}.
 <h4>Verb</h4>
 {{en-verb|deals|dealing|dealt}}
 <ol><li> {transitive} To distribute among a number of recipients, to give out as one’s portion or share.</li>
@@ -1602,7 +1602,7 @@ From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|dælan|dǣla
 </ul>
 <li> {transitive} To administer or give out, as in small portions.</li>
 <ul><li> <b>1820</b>, Sir Walter Scott, <em>The Abbot</em>, ch. 30:</li>
-<ul><li> "Away, proud woman!" said the Lady; "who ever knew so well as thou to <b>deal</b> the deepest wounds under the pretence of kindness and courtesy?"</li>
+<ul><li> &quot;Away, proud woman!&quot; said the Lady; &quot;who ever knew so well as thou to <b>deal</b> the deepest wounds under the pretence of kindness and courtesy?&quot;</li>
 </ul>
 <li> {{quote-news|year=2011|date=April 15|author=Saj Chowdhury|title=Norwich 2 - 1 Nott'm Forest|work=BBC Sport|url=http://news.bbc.co.uk/sport2/hi/football/13009332.stm|page=|passage=Norwich returned to second in the Championship with victory over Nottingham Forest, whose promotion hopes were <b>dealt</b> another blow.}}</li>
 </ul>
@@ -1687,7 +1687,7 @@ From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|dælan|dǣla
 <li> <em>He made a <b>deal</b> with the devil.</em></li>
 </ul>
 <li> {informal} A situation, occasion, or event.</li>
-<ul><li> "<em>I've never killed anybody before. I don't see what's the big <b>deal</b>."</li>
+<ul><li> &quot;<em>I've never killed anybody before. I don't see what's the big <b>deal</b>.&quot;</li>
 <li> Line spoken by character played by John Travolta in the movie </em>Broken Arrow<em>.</li>
 <li> </em>What's the <b>deal</b>?<em></li>
 </ul>
@@ -1704,7 +1704,7 @@ From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|dælan|dǣla
 </ul>
 
 <h5>Derived terms</h5>
-{{rel-top3|Terms derived from the noun "deal"}}
+{{rel-top3|Terms derived from the noun &quot;deal&quot;}}
 <ul><li> no deal</li>
 <li> package deal</li>
 </ul>
@@ -1716,7 +1716,7 @@ From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|dælan|dǣla
 </ul>
 {rel-bottom}
 <h3>Etymology 3</h3>
-{{etyl|gml}} {{term|dele|lang=gml}}, cognate with Old English {{term|þille|lang=ang}}.
+{{etyl|gml}} {{term|dele|lang=gml}}, cognate with Old English {{term|&thorn;ille|lang=ang}}.
 <h4>Noun</h4>
 {en-noun}
 <ol><li> {uncountable} Wood that is easy to saw (from conifers such as pine or fir)</li>
@@ -1752,9 +1752,9 @@ business deal:
 <h3>Noun</h3>
 {{en-noun|sg=business deal}}
 <ol><li> A particular instance of buying or selling</li>
-<ul><li>"it was a package deal"</li>
-<li>"I had no further trade with him"</li>
-<li>"he's a master of the business deal" </li>
+<ul><li>&quot;it was a package deal&quot;</li>
+<li>&quot;I had no further trade with him&quot;</li>
+<li>&quot;he's a master of the business deal&quot; </li>
 </ul>
 </ol>
 
@@ -1773,8 +1773,8 @@ December:
 <h3>Etymology</h3>
 From {{etyl|enm}} {{term|decembre|lang=emn}}, from {{etyl|fro}} {{term|decembre|lang=fro}}, from {{etyl|la}} {{term|december|tenth month|lang=la}}, from Latin {{term|decem|ten|lang=la}}, from Proto-Indo-European *<em>dekm</em>, ten; December was the tenth month in the Roman calendar.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/dɪˈsɛmbə/}}, {{X-SAMPA|/dI"sEmb@/}}</li>
-<li> {{a|US}} {{enPR|dĭ-sĕmʹbər}}, {{IPA|/dɪˈsɛmbəɹ/}}, {{X-SAMPA|/dI"sEmb@r/}}</li>
+<ul><li> {{a|UK}} {{IPA|/dɪˈsɛmbə/}}, {{X-SAMPA|/dI&quot;sEmb@/}}</li>
+<li> {{a|US}} {{enPR|dĭ-sĕmʹbər}}, {{IPA|/dɪˈsɛmbəɹ/}}, {{X-SAMPA|/dI&quot;sEmb@r/}}</li>
 <li> {{audio|en-us-December.ogg|Audio (US)}}</li>
 <li> {{rhymes|ɛmbə(r)}}</li>
 </ul>
@@ -1806,7 +1806,7 @@ From {{etyl|enm}} {{term|decembre|lang=emn}}, from {{etyl|fro}} {{term|decembre|
 denotation:
 {wikipedia}
 <h3>Etymology</h3>
-From to denote (from {{etyl|frm}} denoter, from {{etyl|la}} denotare "denote, mark out", itself from de- "completely" + notare "to mark") + -ation
+From to denote (from {{etyl|frm}} denoter, from {{etyl|la}} denotare &quot;denote, mark out&quot;, itself from de- &quot;completely&quot; + notare &quot;to mark&quot;) + -ation
 <h3>Pronunciation</h3>
 <ul><li> {{rhymes|eɪʃən}}</li>
 </ul>
@@ -1815,7 +1815,7 @@ From to denote (from {{etyl|frm}} denoter, from {{etyl|la}} denotare "denote, ma
 {en-noun}
 <ol><li> The act of denoting, or something (such as a symbol) that denotes</li>
 <li> {{logic|linguistics|semiotics}} The primary, literal, or explicit meaning of a word, phrase, or symbol; that which a word denotes, as contrasted with its connotation; the aggregate or set of objects of which a word may be predicated.</li>
-<ul><li> <em>The <b>denotations</b> of the two expressions "the morning star" and "the evening star" are the same (i.e. both expressions denote the planet Venus), but their connotations are different.</em></li>
+<ul><li> <em>The <b>denotations</b> of the two expressions &quot;the morning star&quot; and &quot;the evening star&quot; are the same (i.e. both expressions denote the planet Venus), but their connotations are different.</em></li>
 </ul>
 <li> {{philosophy|logic}} The intension and extension of a word</li>
 <li> {semantics} Something signified or referred to; a particular meaning of a symbol</li>
@@ -1845,7 +1845,7 @@ pl:denotationpt:denotationru:denotationcs:denotationet:denotationfi:denotationta
 dialect:
 {wikipedia}
 <h3>Etymology</h3>
-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}}.
+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&aacute;lektos|sc=polytonic}}, from {{term|διαλέγομαι|I participate in a dialogue|tr=dial&eacute;gomai|sc=polytonic}}, from {{term|διά|inter, through|tr=di&aacute;|sc=polytonic}} + {{term|λέγω|I speak|tr=l&eacute;gō|sc=polytonic}}.
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|/ˈdaɪ.ə.ˌlɛkt/}}</li>
 <li> {{audio|En-us-dialect.ogg|Audio (US)}}</li>
@@ -1858,13 +1858,13 @@ From {{etyl|grc}} {{term|διάλεκτος|conversation, the language of a coun
 </ul>
 <li> A dialect of a language perceived as substandard and wrong.</li>
 <ul><li> Roger W. Shuy, <em>Discovering American dialects</em>, National Council of Teachers of English, 1967, page 1:</li>
-<ul><li> Many even deny it and say something like this: "No, we don't speak a <b>dialect</b> around here. <nowiki>[...]</nowiki></li>
+<ul><li> Many even deny it and say something like this: &quot;No, we don't speak a <b>dialect</b> around here. &lt;nowiki&gt;[...]&lt;/nowiki&gt;</li>
 </ul>
 <li> <em>Linguistic perspectives on black English</em>, H. Carl, 1975, pg. 219:</li>
 <ul><li> Well, those children don't speak <b>dialect</b>, not in this school. Maybe in the public schools, but not here.</li>
 </ul>
 <li> H. Nigel Thomas, <em>Spirits in the dark</em>, Heinemann, 1994, pg. 11:</li>
-<ul><li> <nowiki>[...]</nowiki> on the second day, Miss Anderson gave the school a lecture on why it was wrong to speak <b>dialect</b>. She had ended by saying "Respectable people don't speak <b>dialect</b>."</li>
+<ul><li> &lt;nowiki&gt;[...]&lt;/nowiki&gt; on the second day, Miss Anderson gave the school a lecture on why it was wrong to speak <b>dialect</b>. She had ended by saying &quot;Respectable people don't speak <b>dialect</b>.&quot;</li>
 </ul>
 </ul>
 </ol>
@@ -1902,8 +1902,8 @@ dictionary:
 <h3>Etymology</h3>
 {{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}}.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˈdɪkʃən(ə)ɹi/}}, {{X-SAMPA|/"dIkS@n(@)ri/}}</li>
-<li> {{a|North America}} {{enPR|dĭk'shə-nĕr-ē}}, {{IPA|/ˈdɪkʃənɛɹi/}}, {{X-SAMPA|/"dIkS@nEri/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˈdɪkʃən(ə)ɹi/}}, {{X-SAMPA|/&quot;dIkS@n(@)ri/}}</li>
+<li> {{a|North America}} {{enPR|dĭk'shə-nĕr-ē}}, {{IPA|/ˈdɪkʃənɛɹi/}}, {{X-SAMPA|/&quot;dIkS@nEri/}}</li>
 <li> {{audio|en-us-dictionary.ogg|Audio (US)}}</li>
 <li> {{audio|en-uk-dictionary.ogg|Audio (UK)}}</li>
 </ul>
@@ -1993,7 +1993,7 @@ From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound,
 </ul>
 </ul>
 <li> Any of various mechanical devices for holding, gripping, or fastening something, particularly with a tooth-like projection.</li>
-<li> "A click or pallet adapted to engage the teeth of a ratchet-wheel, to restrain the back action; a click or pawl." (See also: ratchet, windlass)</li>
+<li> &quot;A click or pallet adapted to engage the teeth of a ratchet-wheel, to restrain the back action; a click or pawl.&quot; (See also: ratchet, windlass)</li>
 <ul><li> <b>1897</b> <em>Universal Dictionary of the English Language</em>, Robert Hunter and Charles Morris, eds., v2 p1700.</li>
 </ul>
 <li> A metal support for logs in a fireplace.</li>
@@ -2005,7 +2005,7 @@ From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound,
 <li> A hot dog.</li>
 <li> {{poker|_|slang}} Underdog</li>
 <li> {{slang|almost always|_|in the plural}} feet.</li>
-<ul><li> "My <b>dogs</b> are barking!" meaning "My feet hurt!"</li>
+<ul><li> &quot;My <b>dogs</b> are barking!&quot; meaning &quot;My feet hurt!&quot;</li>
 </ul>
 </ol>
 
@@ -2473,7 +2473,7 @@ From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound,
 <ol><li> {transitive} To pursue with the intent to catch.</li>
 <li> {transitive} To follow in an annoying way, to constantly be affected by.</li>
 <ul><li> <em>The woman cursed him so that trouble would <b>dog</b> his every step.</em></li>
-<li> {{quote-news|year=2012|date=May 9|author=Jonathan Wilson|title=Europa League: Radamel Falcao's Atlético Madrid rout Athletic Bilbao|work=the Guardian|url=http://www.guardian.co.uk/football/2012/may/09/atletico-madrid-athletic-bilbao-europa-league|page=|passage=But this is not an Athletic that ever looks comfortable at the back – a criticism that has often <b>dogged</b> Marcelo Bielsa's sides. }}</li>
+<li> {{quote-news|year=2012|date=May 9|author=Jonathan Wilson|title=Europa League: Radamel Falcao's Atl&eacute;tico Madrid rout Athletic Bilbao|work=the Guardian|url=http://www.guardian.co.uk/football/2012/may/09/atletico-madrid-athletic-bilbao-europa-league|page=|passage=But this is not an Athletic that ever looks comfortable at the back – a criticism that has often <b>dogged</b> Marcelo Bielsa's sides. }}</li>
 </ul>
 <li> {{transitive|nautical}} To fasten a hatch securely.</li>
 <ul><li> <em>It is very important to <b>dog</b> down these hatches...</em></li>
@@ -2584,7 +2584,7 @@ Category:en:Birds*Category:en:Golf----
 elephant:
 
 <h3>Etymology</h3>
-{{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}} (<em>ābu</em>) ‘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}}.
+{{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&eacute;phās|lang=grc}} (gen. {{term|ἐλέφαντος|tr=el&eacute;phantos|lang=grc}}), compound of Berber {{recons|eḷu|lang=ber}} ‘elephant’ (compare Tamahaq (Tahaggart) {{term|&ecirc;lu|lang=thv}}, (Ghat) {{term|alu|lang=taq}}) and {{etyl|egy}} {{term|𓍋𓃀𓅱𓌟|tr=ȝbw|sc=Egyp}} (<em>ābu</em>) ‘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}}.
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|/ˈɛləfənt/|/ˈɛlɪfənt/}}</li>
 <li> {{audio|En-us-elephant.ogg|Audio (US)}}</li>
@@ -2602,7 +2602,7 @@ elephant:
 
 <h4>Synonyms</h4>
 <ul><li> {{sense|animal}} <em>Elephas maximus</em>, <em>Loxodonta africana</em></li>
-<li> {{sense|counting term}} (<I>US</I>) <em>alligator</em></li>
+<li> {{sense|counting term}} (&lt;I&gt;US&lt;/I&gt;) <em>alligator</em></li>
 </ul>
 
 <h4>Derived terms</h4>
@@ -2745,7 +2745,7 @@ Category:Paper sizes*----
 encyclopaedia:
 
 <h3>Alternative forms</h3>
-<ul><li> encyclopædia (<em>UK</em>)</li>
+<ul><li> encyclop&aelig;dia (<em>UK</em>)</li>
 <li> encyclopedia (<em>US, Canada</em>)</li>
 </ul>
 
@@ -2768,7 +2768,7 @@ zh-min-nan:encyclopaediacs:encyclopaediaet:encyclopaediael:encyclopaediaes:encyc
 encyclopedia:
 {wikipedia}
 <h3>Alternative forms</h3>
-<ul><li> encyclopædia</li>
+<ul><li> encyclop&aelig;dia</li>
 <li> {{qualifier|chiefly British}} encyclopaedia</li>
 </ul>
 
@@ -2783,7 +2783,7 @@ From {{etyl|la}} {{term|encyclopaedia|lang=la}}, from {{etyl|grc}} {{term|ἐγ
 </ul>
 
 <h3>Noun</h3>
-The National Scientific Publishers encyclopedia (Polish){{en-noun|s|pl2=encyclopediae|pl3=encyclopediæ}}
+The National Scientific Publishers encyclopedia (Polish){{en-noun|s|pl2=encyclopediae|pl3=encyclopedi&aelig;}}
 <ol><li> A comprehensive reference work with articles on a range of subjects.</li>
 <ul><li> <em>I only use the library for the <b>encyclopedia</b>, as we’ve got most other books here.</em></li>
 </ul>
@@ -2814,11 +2814,11 @@ The spelling <em>encyclopedia</em> is standard in American English, preferred in
 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.
 <h3>Vowels</h3>
-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>| b<b>a</b>d, c<b>a</b>t, r<b>a</b>n|-align="center"| {{enPRchar|ăr}}| colspan="2" | {{IPAchar|æɹ}}| colspan="2" | <tt>{r\</tt>| c<b>arr</b>y|-align="center"| {{enPRchar|ā}}| colspan="2" | {{IPAchar|eɪ}}| colspan="2" | <tt>eI</tt>| b<b>ai</b>t, pl<b>ay</b>, s<b>a</b>me|-align="center"| {{enPRchar|ä}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>A:</tt>| <tt>A</tt>| f<b>a</b>ther|-align="center"| {{enPRchar|är}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| <tt>A:</tt>| <tt>Ar\</tt>| <b>ar</b>m, b<b>ar</b>d, <b>ar</b>ia|-align="center"| {{enPRchar|âr}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| <tt>E@</tt>| <tt>Er\</tt>| h<b>air</b>, p<b>ear</b>, th<b>ere</b>, sc<b>ar</b>y|-align="center"| {{enPRchar|ĕ}}| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan="2" | <tt>E</tt>| b<b>e</b>d, b<b>e</b>t, <b>e</b>nd|-align="center"| {{enPRchar|ĕr}}| colspan="2" | {{IPAchar|ɛɹ}}| colspan="2" | <tt>Er\</tt>| m<b>err</b>y|-align="center"| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| <tt>i:</tt>| <tt>i</tt>| <b>ea</b>se, s<b>ee</b>|-align="center"| {{enPRchar|ĭ}}| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan="2" | <tt>I</tt>| c<b>i</b>ty, b<b>i</b>t|-align="center"| {{enPRchar|i}}<ref>Not an AHD symbol. Often written as AHD <em>ē</em> in Wiktionary entries.</ref>| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan="2" | <tt>i</tt>| cit<b>y</b>, ver<b>y</b>, read<b>y</b>|-align="center"| {{enPRchar|ĭr}}| colspan="2" | {{IPAchar|ɪɹ}}| colspan="2" | <tt>Ir\</tt>| s<b>yr</b>up, S<b>ir</b>ius|-align="center"| {{enPRchar|ī}}| colspan="2" | {{IPAchar|aɪ}}| colspan="2" | <tt>aI</tt>| m<b>y</b>, r<b>i</b>se|-align="center"| {{enPRchar|îr}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| <tt>I@</tt>| <tt>Ir\</tt>| h<b>ere</b>, n<b>ear</b>, p<b>eer</b>, s<b>er</b>ious|-align="center"| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>Q</tt>| <tt>A</tt>| n<b>o</b>t|-align="center"| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| <tt>@U</tt>| <tt>oU</tt>| g<b>o</b>, h<b>o</b>pe, kn<b>ow</b>|-align="center"| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| <tt>O@</tt>| <tt>or\, Or\</tt>| h<b>oar</b>se, gl<b>or</b>y|-align="center"| {{enPRchar|ô}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| <tt>O:</tt>| <tt>O</tt>| l<b>aw</b>, c<b>au</b>ght, s<b>aw</b>|-align="center"| {{enPRchar|ôr}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| <tt>O:</tt>| <tt>Or\</tt>| h<b>or</b>se, m<b>ore</b>, l<b>aur</b>eate|-align="center"| {{enPRchar|oi}}| colspan="2" | {{IPAchar|ɔɪ}}| colspan="2" | <tt>OI</tt>| b<b>oy</b>, n<b>oi</b>se|-align="center"| {{enPRchar|o͝o, ŏŏ}}| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan="2" | <tt>U</tt>| p<b>u</b>t, f<b>oo</b>t|-align="center"| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| <tt>U@</tt>| <tt>Ur\</tt>| p<b>oor</b>, t<b>our</b>, t<b>our</b>ism|-align="center"| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| <tt>u:</tt>| <tt>u</tt>| l<b>o</b>se, s<b>oo</b>n, thr<b>ou</b>gh|-align="center"| {{enPRchar|ou}}| colspan="2" | {{IPAchar|aʊ}}| colspan="2" | <tt>aU</tt>| h<b>ou</b>se, n<b>ow</b>|-align="center"| {{enPRchar|ŭ}}| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan="2" | <tt>V</tt>| r<b>u</b>n, en<b>ou</b>gh, <b>u</b>p|-align="center"| {{enPRchar|ûr}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| <tt>3:</tt>| <tt>3`</tt>| f<b>ur</b>, b<b>ir</b>d|-align="center"| {{enPRchar|ə}}| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}| colspan="2" | <tt>@</tt>| <b>a</b>bout|-align="center"| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| <tt>@</tt>| <tt>@`</tt>| ent<b>er</b>|}<references/>
+The vowel table lists both monophthongs and diphthongs.{| {wikitable}! rowspan=&quot;2&quot; | enPR&lt;br/&gt;(AHD)! colspan=&quot;2&quot; | IPA! colspan=&quot;2&quot; | SAMPA! rowspan=&quot;2&quot; | Examples|-! RP! GA! RP! GA|-align=&quot;center&quot;| {{enPRchar|ă}}| colspan=&quot;2&quot; | {{IPAchar2|Near-open front unrounded vowel.ogg|&aelig;}}| colspan=&quot;2&quot; | &lt;tt&gt;{&lt;/tt&gt;| b<b>a</b>d, c<b>a</b>t, r<b>a</b>n|-align=&quot;center&quot;| {{enPRchar|ăr}}| colspan=&quot;2&quot; | {{IPAchar|&aelig;ɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;{r\&lt;/tt&gt;| c<b>arr</b>y|-align=&quot;center&quot;| {{enPRchar|ā}}| colspan=&quot;2&quot; | {{IPAchar|eɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;eI&lt;/tt&gt;| b<b>ai</b>t, pl<b>ay</b>, s<b>a</b>me|-align=&quot;center&quot;| {{enPRchar|&auml;}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| &lt;tt&gt;A:&lt;/tt&gt;| &lt;tt&gt;A&lt;/tt&gt;| f<b>a</b>ther|-align=&quot;center&quot;| {{enPRchar|&auml;r}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| &lt;tt&gt;A:&lt;/tt&gt;| &lt;tt&gt;Ar\&lt;/tt&gt;| <b>ar</b>m, b<b>ar</b>d, <b>ar</b>ia|-align=&quot;center&quot;| {{enPRchar|&acirc;r}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| &lt;tt&gt;E@&lt;/tt&gt;| &lt;tt&gt;Er\&lt;/tt&gt;| h<b>air</b>, p<b>ear</b>, th<b>ere</b>, sc<b>ar</b>y|-align=&quot;center&quot;| {{enPRchar|ĕ}}| colspan=&quot;2&quot; | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan=&quot;2&quot; | &lt;tt&gt;E&lt;/tt&gt;| b<b>e</b>d, b<b>e</b>t, <b>e</b>nd|-align=&quot;center&quot;| {{enPRchar|ĕr}}| colspan=&quot;2&quot; | {{IPAchar|ɛɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;Er\&lt;/tt&gt;| m<b>err</b>y|-align=&quot;center&quot;| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| &lt;tt&gt;i:&lt;/tt&gt;| &lt;tt&gt;i&lt;/tt&gt;| <b>ea</b>se, s<b>ee</b>|-align=&quot;center&quot;| {{enPRchar|ĭ}}| colspan=&quot;2&quot; | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;I&lt;/tt&gt;| c<b>i</b>ty, b<b>i</b>t|-align=&quot;center&quot;| {{enPRchar|i}}&lt;ref&gt;Not an AHD symbol. Often written as AHD <em>ē</em> in Wiktionary entries.&lt;/ref&gt;| colspan=&quot;2&quot; | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan=&quot;2&quot; | &lt;tt&gt;i&lt;/tt&gt;| cit<b>y</b>, ver<b>y</b>, read<b>y</b>|-align=&quot;center&quot;| {{enPRchar|ĭr}}| colspan=&quot;2&quot; | {{IPAchar|ɪɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;Ir\&lt;/tt&gt;| s<b>yr</b>up, S<b>ir</b>ius|-align=&quot;center&quot;| {{enPRchar|ī}}| colspan=&quot;2&quot; | {{IPAchar|aɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;aI&lt;/tt&gt;| m<b>y</b>, r<b>i</b>se|-align=&quot;center&quot;| {{enPRchar|&icirc;r}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| &lt;tt&gt;I@&lt;/tt&gt;| &lt;tt&gt;Ir\&lt;/tt&gt;| h<b>ere</b>, n<b>ear</b>, p<b>eer</b>, s<b>er</b>ious|-align=&quot;center&quot;| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| &lt;tt&gt;Q&lt;/tt&gt;| &lt;tt&gt;A&lt;/tt&gt;| n<b>o</b>t|-align=&quot;center&quot;| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| &lt;tt&gt;@U&lt;/tt&gt;| &lt;tt&gt;oU&lt;/tt&gt;| g<b>o</b>, h<b>o</b>pe, kn<b>ow</b>|-align=&quot;center&quot;| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| &lt;tt&gt;O@&lt;/tt&gt;| &lt;tt&gt;or\, Or\&lt;/tt&gt;| h<b>oar</b>se, gl<b>or</b>y|-align=&quot;center&quot;| {{enPRchar|&ocirc;}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| &lt;tt&gt;O:&lt;/tt&gt;| &lt;tt&gt;O&lt;/tt&gt;| l<b>aw</b>, c<b>au</b>ght, s<b>aw</b>|-align=&quot;center&quot;| {{enPRchar|&ocirc;r}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| &lt;tt&gt;O:&lt;/tt&gt;| &lt;tt&gt;Or\&lt;/tt&gt;| h<b>or</b>se, m<b>ore</b>, l<b>aur</b>eate|-align=&quot;center&quot;| {{enPRchar|oi}}| colspan=&quot;2&quot; | {{IPAchar|ɔɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;OI&lt;/tt&gt;| b<b>oy</b>, n<b>oi</b>se|-align=&quot;center&quot;| {{enPRchar|o͝o, ŏŏ}}| colspan=&quot;2&quot; | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan=&quot;2&quot; | &lt;tt&gt;U&lt;/tt&gt;| p<b>u</b>t, f<b>oo</b>t|-align=&quot;center&quot;| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| &lt;tt&gt;U@&lt;/tt&gt;| &lt;tt&gt;Ur\&lt;/tt&gt;| p<b>oor</b>, t<b>our</b>, t<b>our</b>ism|-align=&quot;center&quot;| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| &lt;tt&gt;u:&lt;/tt&gt;| &lt;tt&gt;u&lt;/tt&gt;| l<b>o</b>se, s<b>oo</b>n, thr<b>ou</b>gh|-align=&quot;center&quot;| {{enPRchar|ou}}| colspan=&quot;2&quot; | {{IPAchar|aʊ}}| colspan=&quot;2&quot; | &lt;tt&gt;aU&lt;/tt&gt;| h<b>ou</b>se, n<b>ow</b>|-align=&quot;center&quot;| {{enPRchar|ŭ}}| colspan=&quot;2&quot; | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan=&quot;2&quot; | &lt;tt&gt;V&lt;/tt&gt;| r<b>u</b>n, en<b>ou</b>gh, <b>u</b>p|-align=&quot;center&quot;| {{enPRchar|&ucirc;r}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| &lt;tt&gt;3:&lt;/tt&gt;| &lt;tt&gt;3`&lt;/tt&gt;| f<b>ur</b>, b<b>ir</b>d|-align=&quot;center&quot;| {{enPRchar|ə}}| colspan=&quot;2&quot; | {{IPAchar2|Schwa.ogg|ə}}| colspan=&quot;2&quot; | &lt;tt&gt;@&lt;/tt&gt;| <b>a</b>bout|-align=&quot;center&quot;| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| &lt;tt&gt;@&lt;/tt&gt;| &lt;tt&gt;@`&lt;/tt&gt;| ent<b>er</b>|}&lt;references/&gt;
 <h3>Consonants</h3>
-{| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| <tt>b</tt>| <b>b</b>ut, a<b>b</b>le, ca<b>b</b>, wo<b>bb</b>le, e<b>bb</b>|-| {{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>| <b>ch</b>at, tea<b>ch</b>er, in<b>ch</b>, ca<b>tch</b>, na<b>t</b>ure|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| <tt>d</tt>| <b>d</b>ot, i<b>d</b>ea, no<b>d</b>, fo<b>dd</b>er, o<b>dd</b>|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| <tt>f</tt>| <b>f</b>an, le<b>f</b>t, lea<b>f</b>, enou<b>gh</b>, <b>ph</b>ase, gra<b>ph</b>ic, epita<b>ph</b>|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}| <tt>g</tt>| <b>g</b>et, ma<b>g</b>net, ba<b>g</b>|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| <tt>h</tt>| <b>h</b>am|-| {{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>| <b>wh</b>ich|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />| <tt>dZ</tt>| <b>j</b>oy, a<b>j</b>ar, <b>g</b>in, a<b>g</b>ile, a<b>ge</b>, e<b>dge</b>|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| <tt>k</tt>| <b>c</b>at, <b>k</b>it, <b>q</b>ueen, pi<b>que</b>, <b>ch</b>oir, a<b>ch</b>e, ta<b>ck</b>|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| <tt>x</tt>| (<em>Scottish</em>) lo<b>ch</b>|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| <tt>l</tt>| <b>l</b>eft (<em>before vowel of syllable</em>)|-| {{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>| litt<b>le</b>|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| <tt>m</tt>| <b>m</b>an, ani<b>m</b>al, hi<b>m</b>|-| {{enPRchar|m}}| {{IPAchar|m̩ (əm)}}<ref name="cons"/>| <tt>m=</tt>| spas<b>m</b>, pris<b>m</b>|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| <tt>n</tt>| <b>n</b>ote, a<b>n</b>t, pa<b>n</b>|-| {{enPRchar|n}}| {{IPAchar|n̩ (ən)}}<ref name="cons"/>| <tt>n=</tt>| hidd<b>en</b>|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| <tt>N</tt>| si<b>ng</b>er, ri<b>ng</b>|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| <tt>p</tt>| <b>p</b>en, s<b>p</b>in, to<b>p</b>, a<b>pp</b>le|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>| <tt>r\</tt>| <b>r</b>un, ve<b>r</b>y|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| <tt>s</tt>| <b>s</b>et, li<b>s</b>t, pa<b>ss</b>, <b>c</b>ity, i<b>ce</b>|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| <tt>S</tt>| <b>sh</b>e, a<b>sh</b>, <b>s</b>ure, ra<b>t</b>ion|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| <tt>t</tt>| <b>t</b>on, s<b>t</b>ab, ma<b>t</b>, a<b>tt</b>end, bu<b>tt</b>, ou<b>ght</b>|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| <tt>T</tt>| <b>th</b>in, no<b>th</b>ing, mo<b>th</b>|-| {{enPRchar|<em>th</em>}}| {{IPAchar2|voiced dental fricative.ogg|ð}}| <tt>D</tt>| <b>th</b>is, fa<b>th</b>er, clo<b>the</b>|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| <tt>v</tt>| <b>v</b>oice, na<b>v</b>el, sa<b>ve</b>, o<b>f</b>|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| <tt>w</tt>| <b>w</b>et|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| <tt>j</tt>| <b>y</b>es|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| <tt>z</tt>| <b>z</b>oo, qui<b>z</b>, fu<b>zz</b>, ro<b>s</b>e, <b>x</b>ylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| <tt>Z</tt>| vi<b>s</b>ion, trea<b>s</b>ure, bei<b>ge</b>|}<references/>
+{| {wikitable}! enPR&lt;br&gt;(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| &lt;tt&gt;b&lt;/tt&gt;| <b>b</b>ut, a<b>b</b>le, ca<b>b</b>, wo<b>bb</b>le, e<b>bb</b>|-| {{enPRchar|ch}}| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}&lt;ref name=tiebar&gt;May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}&lt;/ref&gt;| &lt;tt&gt;tS&lt;/tt&gt;| <b>ch</b>at, tea<b>ch</b>er, in<b>ch</b>, ca<b>tch</b>, na<b>t</b>ure|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| &lt;tt&gt;d&lt;/tt&gt;| <b>d</b>ot, i<b>d</b>ea, no<b>d</b>, fo<b>dd</b>er, o<b>dd</b>|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| &lt;tt&gt;f&lt;/tt&gt;| <b>f</b>an, le<b>f</b>t, lea<b>f</b>, enou<b>gh</b>, <b>ph</b>ase, gra<b>ph</b>ic, epita<b>ph</b>|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}| &lt;tt&gt;g&lt;/tt&gt;| <b>g</b>et, ma<b>g</b>net, ba<b>g</b>|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| &lt;tt&gt;h&lt;/tt&gt;| <b>h</b>am|-| {{enPRchar|hw}}| {{IPAchar2|voiceless labio-velar fricative.ogg|ʍ (hw)}}&lt;ref&gt;Phonologists may deny that {{IPAchar|/ʍ/}} is a distinct phoneme, and instead use {{IPAchar|/hw/}}.&lt;/ref&gt;| &lt;tt&gt;W&lt;/tt&gt;| <b>wh</b>ich|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}&lt;ref name=tiebar /&gt;| &lt;tt&gt;dZ&lt;/tt&gt;| <b>j</b>oy, a<b>j</b>ar, <b>g</b>in, a<b>g</b>ile, a<b>ge</b>, e<b>dge</b>|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| &lt;tt&gt;k&lt;/tt&gt;| <b>c</b>at, <b>k</b>it, <b>q</b>ueen, pi<b>que</b>, <b>ch</b>oir, a<b>ch</b>e, ta<b>ck</b>|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| &lt;tt&gt;x&lt;/tt&gt;| (<em>Scottish</em>) lo<b>ch</b>|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| &lt;tt&gt;l&lt;/tt&gt;| <b>l</b>eft (<em>before vowel of syllable</em>)|-| {{enPRchar|l}}| {{IPAchar|l̩ (əl)}}&lt;ref name=&quot;cons&quot;&gt;Phonologists may deny that {{IPAchar|/l̩, n̩, m̩/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.&lt;/ref&gt;| &lt;tt&gt;l=&lt;/tt&gt;| litt<b>le</b>|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| &lt;tt&gt;m&lt;/tt&gt;| <b>m</b>an, ani<b>m</b>al, hi<b>m</b>|-| {{enPRchar|m}}| {{IPAchar|m̩ (əm)}}&lt;ref name=&quot;cons&quot;/&gt;| &lt;tt&gt;m=&lt;/tt&gt;| spas<b>m</b>, pris<b>m</b>|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| &lt;tt&gt;n&lt;/tt&gt;| <b>n</b>ote, a<b>n</b>t, pa<b>n</b>|-| {{enPRchar|n}}| {{IPAchar|n̩ (ən)}}&lt;ref name=&quot;cons&quot;/&gt;| &lt;tt&gt;n=&lt;/tt&gt;| hidd<b>en</b>|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| &lt;tt&gt;N&lt;/tt&gt;| si<b>ng</b>er, ri<b>ng</b>|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| &lt;tt&gt;p&lt;/tt&gt;| <b>p</b>en, s<b>p</b>in, to<b>p</b>, a<b>pp</b>le|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}&lt;ref&gt;Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.&lt;/ref&gt;| &lt;tt&gt;r\&lt;/tt&gt;| <b>r</b>un, ve<b>r</b>y|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| &lt;tt&gt;s&lt;/tt&gt;| <b>s</b>et, li<b>s</b>t, pa<b>ss</b>, <b>c</b>ity, i<b>ce</b>|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| &lt;tt&gt;S&lt;/tt&gt;| <b>sh</b>e, a<b>sh</b>, <b>s</b>ure, ra<b>t</b>ion|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| &lt;tt&gt;t&lt;/tt&gt;| <b>t</b>on, s<b>t</b>ab, ma<b>t</b>, a<b>tt</b>end, bu<b>tt</b>, ou<b>ght</b>|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| &lt;tt&gt;T&lt;/tt&gt;| <b>th</b>in, no<b>th</b>ing, mo<b>th</b>|-| {{enPRchar|<em>th</em>}}| {{IPAchar2|voiced dental fricative.ogg|&eth;}}| &lt;tt&gt;D&lt;/tt&gt;| <b>th</b>is, fa<b>th</b>er, clo<b>the</b>|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| &lt;tt&gt;v&lt;/tt&gt;| <b>v</b>oice, na<b>v</b>el, sa<b>ve</b>, o<b>f</b>|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| &lt;tt&gt;w&lt;/tt&gt;| <b>w</b>et|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| &lt;tt&gt;j&lt;/tt&gt;| <b>y</b>es|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| &lt;tt&gt;z&lt;/tt&gt;| <b>z</b>oo, qui<b>z</b>, fu<b>zz</b>, ro<b>s</b>e, <b>x</b>ylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| &lt;tt&gt;Z&lt;/tt&gt;| vi<b>s</b>ion, trea<b>s</b>ure, bei<b>ge</b>|}&lt;references/&gt;
 <h3>Other symbols</h3>
-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|}<b>Note:</b> The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme.
+A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. {| {wikitable}! enPR&lt;br&gt;(AHD)! IPA! SAMPA! Indicates|-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)| &lt;tt&gt;&quot;&lt;/tt&gt; (&lt;tt&gt;&quot;&lt;/tt&gt;a)| primary stress|-| {{enPRchar|'}} (a{{enPRchar|'}})| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)| &lt;tt&gt;%&lt;/tt&gt; (&lt;tt&gt;%&lt;/tt&gt;a)| secondary stress, sometimes tertiary stress|-| a{{enPRchar|-}}a| a{{IPAchar|.}}a| a&lt;tt&gt;.&lt;/tt&gt;a| division between syllables|}<b>Note:</b> 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:
 
@@ -2831,7 +2831,7 @@ Wiktionary:Entry layout explained:
         
 <ul><li> <em>The Oxford Paperback Dictionary</em>       </li>
 </ul>
-</pre>
+&lt;/pre&gt;
 <h3>Variations for languages other than English</h3>
 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:
@@ -2903,8 +2903,8 @@ etymology:
 <h3>Etymology</h3>
 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}}).
 <h3>Pronunciation</h3>
-<ul><li> {{a|RP}} {{enPR|ĕt"ə-mŏl'ə-jē}}, {{IPA|/ˌɛt.ɪˈmɒl.ə.dʒi/}}, {{X-SAMPA|/%Et.I"mQl.@.dZi/}}</li>
-<li> {{a|GenAm}} {{enPR|ĕt"ə-mŏl'ə-jē}}, {{IPA|/ˌɛtəˈmɑlədʒi/}}, {{X-SAMPA|/%Et@"mAl@dZi/}}</li>
+<ul><li> {{a|RP}} {{enPR|ĕt&quot;ə-mŏl'ə-jē}}, {{IPA|/ˌɛt.ɪˈmɒl.ə.dʒi/}}, {{X-SAMPA|/%Et.I&quot;mQl.@.dZi/}}</li>
+<li> {{a|GenAm}} {{enPR|ĕt&quot;ə-mŏl'ə-jē}}, {{IPA|/ˌɛtəˈmɑlədʒi/}}, {{X-SAMPA|/%Et@&quot;mAl@dZi/}}</li>
 </ul>
 
 <h3>Noun</h3>
@@ -2965,7 +2965,7 @@ Wiktionary:Entry layout explained:
         
 <ul><li> <em>The Oxford Paperback Dictionary</em>       </li>
 </ul>
-</pre>
+&lt;/pre&gt;
 <h3>Variations for languages other than English</h3>
 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:
@@ -3047,12 +3047,12 @@ false friend:
 
 <h4>Usage notes</h4>
 <ul><li> Examples:</li>
-<ul><li> The French <em>nous demandons</em> means "<em>we ask</em>", but sounds like "<em>we demand</em>", which can turn negotiation into confrontation.</li>
-<li> The Spanish word <em>embarazada</em> means "<em>pregnant</em>", not "<em>embarrassed</em>" &mdash; "<em>Estoy embarazada</em>" means "<em>I am pregnant</em>", not "<em>I am embarrassed</em>".</li>
-<li> The German word <em>will</em> (want) is not a future tense marker &mdash; "<em>Ich will gehen</em>" means "<em>I want to go</em>", not "<em>I will go</em>".</li>
-<ul><li> Same for Dutch and Afrikaans, "<em>Ik wil gaan</em>" and "<em>Ek wil gaan</em>" mean "<em>I want to go</em>".</li>
+<ul><li> The French <em>nous demandons</em> means &quot;<em>we ask</em>&quot;, but sounds like &quot;<em>we demand</em>&quot;, which can turn negotiation into confrontation.</li>
+<li> The Spanish word <em>embarazada</em> means &quot;<em>pregnant</em>&quot;, not &quot;<em>embarrassed</em>&quot; &amp;mdash; &quot;<em>Estoy embarazada</em>&quot; means &quot;<em>I am pregnant</em>&quot;, not &quot;<em>I am embarrassed</em>&quot;.</li>
+<li> The German word <em>will</em> (want) is not a future tense marker &amp;mdash; &quot;<em>Ich will gehen</em>&quot; means &quot;<em>I want to go</em>&quot;, not &quot;<em>I will go</em>&quot;.</li>
+<ul><li> Same for Dutch and Afrikaans, &quot;<em>Ik wil gaan</em>&quot; and &quot;<em>Ek wil gaan</em>&quot; mean &quot;<em>I want to go</em>&quot;.</li>
 </ul>
-<li> The Italian word <em>triviale</em> (vulgar) is written almost like <em>trivial</em>, but the two words share only a common Latin root (<em>trivium</em> in Latin means crossroad) and no longer any meaning; "<em>Questo è triviale</em>" means "<em>This is in bad taste</em>", not "<em>This is obvious</em>".</li>
+<li> The Italian word <em>triviale</em> (vulgar) is written almost like <em>trivial</em>, but the two words share only a common Latin root (<em>trivium</em> in Latin means crossroad) and no longer any meaning; &quot;<em>Questo &egrave; triviale</em>&quot; means &quot;<em>This is in bad taste</em>&quot;, not &quot;<em>This is obvious</em>&quot;.</li>
 <li> The Danish word <em>gift</em> does not mean gift as in present, but can mean a verb form of to marry; <em>Han er gift</em> means <em>He is married</em>. The word for gift is gave, which is close to the past tense of the verb giver. If <em>du gav en gave</em>, you gave a gift. Likewise, if <em>du gav en gift</em>, you actually gave poison.</li>
 </ul>
 </ul>
@@ -3068,8 +3068,8 @@ false friend:
 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.
-<ul><li>Some more reasons why "==English==" is required:</li>
+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 &quot;all words.&quot;  Also, it reminds people that they can enter other languages.
+<ul><li>Some more reasons why &quot;==English==&quot; is required:</li>
 <ol><li> Introduces newcomers to wiki* syntax</li>
 <li> Indicates (by implication) to newcomers that a single entry can have more than one language</li>
 <li> Indicates <em>which</em> parts are English</li>
@@ -3079,7 +3079,7 @@ Q: I see a bunch of articles that have no language specified, but they are clear
 </ul>
 <ul><ol><li> The presence of the English heading makes it readily apparent how another language definition can be added to a page.</li>
 <li> 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.)</li>
-<li>The presence of the English heading makes parsing articles by internal "bots" easier/possible.</li>
+<li>The presence of the English heading makes parsing articles by internal &quot;bots&quot; easier/possible.</li>
 </ol>
 </ul>
 
@@ -3097,8 +3097,8 @@ February:
 <h3>Etymology</h3>
 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 <em>februa</em>, 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 *<em>dhegh-</em>, to burn.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˈfɛb.rʊ.ə.ɹi/|/ˈfɛb.j(ʊ.)ə.ɹi/}}; {{X-SAMPA|/"fEb.rU.@.ri/|/"fEb.j(U.)@.ri/}}</li>
-<li> {{a|US}} {{enPR|fĕbʹro͞o-ĕr'-ē|fĕbʹjo͞o-ĕr'-ē}}; {{IPA|/ˈfɛb.ɹuˌɛɹi/|/ˈfɛb.juˌɛɹi/|/ˈfɛb.juˌæɹi/}}; {{X-SAMPA|/"fEb.ru%Eri/|/"fEb.ju%Eri/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˈfɛb.rʊ.ə.ɹi/|/ˈfɛb.j(ʊ.)ə.ɹi/}}; {{X-SAMPA|/&quot;fEb.rU.@.ri/|/&quot;fEb.j(U.)@.ri/}}</li>
+<li> {{a|US}} {{enPR|fĕbʹro͞o-ĕr'-ē|fĕbʹjo͞o-ĕr'-ē}}; {{IPA|/ˈfɛb.ɹuˌɛɹi/|/ˈfɛb.juˌɛɹi/|/ˈfɛb.juˌ&aelig;ɹi/}}; {{X-SAMPA|/&quot;fEb.ru%Eri/|/&quot;fEb.ju%Eri/}}</li>
 <li> {{audio|en-us-February.ogg|Audio (US)}}</li>
 </ul>
 
@@ -3138,9 +3138,9 @@ ast:Februaryaz:Februaryzh-min-nan:Februarybe:Februarycs:Februaryco:Februarycy:Fe
 floccinaucinihilipilification:
 {wikiquote}
 <h3>Etymology</h3>
-A jocular coinage, apparently by pupils at Eton, combining a number of roughly synonymous Latin stems.  {{etyl|la}} <em>flocci</em>, from <em>floccus</em>, a wisp or piece of wool + <em>nauci</em>, from <em>naucum</em>, a trifle + <em>nihili</em>, from the {{etyl|la}} pronoun, {{term|nihil|nothing|lang=la}} + <em>pili</em>, from <em>pilus</em>, 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...".
+A jocular coinage, apparently by pupils at Eton, combining a number of roughly synonymous Latin stems.  {{etyl|la}} <em>flocci</em>, from <em>floccus</em>, a wisp or piece of wool + <em>nauci</em>, from <em>naucum</em>, a trifle + <em>nihili</em>, from the {{etyl|la}} pronoun, {{term|nihil|nothing|lang=la}} + <em>pili</em>, from <em>pilus</em>, a hair, something insignificant (all therefore having the sense of &quot;pettiness&quot; or &quot;nothing&quot;) + -fication.  &quot;Flocci non facio&quot; was a Latin expression of indifference, literally &quot;I do not make a straw of...&quot;.
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˌflɒksɪˌnɒsɪˌnɪhɪlɪˌpɪlɪfɪˈkeɪʃən/|/ˌflɒksɪˌnɔːsɪˌnaɪɪlɪˌpɪlɪfɪˈkeɪʃən/}}, {{X-SAMPA|/%flQksI%nQsI&nIhIlI%pIlIfI"keIS@n/|/%flQksI%nO:sI%naIIlI%pIlIfI"keIS@n/}}</li>
+<ul><li> {{IPA|/ˌflɒksɪˌnɒsɪˌnɪhɪlɪˌpɪlɪfɪˈkeɪʃən/|/ˌflɒksɪˌnɔːsɪˌnaɪɪlɪˌpɪlɪfɪˈkeɪʃən/}}, {{X-SAMPA|/%flQksI%nQsI&amp;nIhIlI%pIlIfI&quot;keIS@n/|/%flQksI%nO:sI%naIIlI%pIlIfI&quot;keIS@n/}}</li>
 <li> {{audio|en-us-floccinaucinihilipilification.ogg|Audio (US)}}</li>
 <li> {{audio|en-uk-floccinaucinihilipilification.ogg|Audio (UK)}}</li>
 </ul>
@@ -3174,7 +3174,7 @@ free:
 <li> {{audio|En-uk-free.ogg|Audio (UK)}}</li>
 <li> {{rhymes|iː}}</li>
 </ul>
-A sign advertising <b>free</b> beer (obtainable without payment).A "buy one get one <b>free</b>" sign at a flower stand (obtainable without additional payment).This food product is labelled "fat <b>free</b>", meaning it contains no fat.
+A sign advertising <b>free</b> beer (obtainable without payment).A &quot;buy one get one <b>free</b>&quot; sign at a flower stand (obtainable without additional payment).This food product is labelled &quot;fat <b>free</b>&quot;, meaning it contains no fat.
 <h3>Adjective</h3>
 {{en-adj|freer|freest}}
 <ol><li> Not {{l|en|imprisoned}} or {{l|en|enslaved}}.</li>
@@ -3193,7 +3193,7 @@ A sign advertising <b>free</b> beer (obtainable without payment).A "buy one get
 <ul><li> <em>The <b>free</b> group on three generators</em></li>
 </ul>
 <li> {{mathematics|logic}} Unconstrained by {{l|en|quantifier}}s.</li>
-<ul><li> z<em> is the <b>free</b> variable in "<math>\forall x\exists y:xy=z</math>".</em></li>
+<ul><li> z<em> is the <b>free</b> variable in &quot;&lt;math&gt;\forall x\exists y:xy=z&lt;/math&gt;&quot;.</em></li>
 </ul>
 <li> Unobstructed, without {{l|en|blockage}}s.</li>
 <ul><li> <em>The drain was <b>free</b>.</em></li>
@@ -3351,7 +3351,7 @@ freedom of speech:
 <li> {{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 <b>freedom of speech</b> more muscle than the First Amendment does. It may already have become literally impossible for a government to shut people up.}}</li>
 </ul>
 <li> {{&lit|freedom|speech}}</li>
-<ul><li> {{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 <b>freedom of speech</b> to freedom of thought. And therefore it is a good shrewd Proverb of the <em>Spaniard, Tell a lye, and find a Troth</em>; as if there were no way of discovery, but by <em>Simulation</em>.|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}}</li>
+<ul><li> {{quote-book|chapter=Of Simulation and Dissimulation|year=1625|title=The essays, or Counsels, civil &amp; 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 <b>freedom of speech</b> to freedom of thought. And therefore it is a good shrewd Proverb of the <em>Spaniard, Tell a lye, and find a Troth</em>; as if there were no way of discovery, but by <em>Simulation</em>.|url=http://books.google.com/books?id=xjQCAAAAQAAJ&amp;pg=PA20&amp;dq=%22freedom+of+speech%22&amp;hl=en&amp;sa=X&amp;ei=zTI-T9zcDYnr0gHcx_HOBw&amp;ved=0CNoBEOgBMBo#v=onepage&amp;q=%22freedom%20of%20speech%22&amp;f=false}}</li>
 </ul>
 </ol>
 
@@ -3374,9 +3374,9 @@ Category:en:Freedom of speechde:freedom of speechet:freedom of speechfr:freedom
 Friday:
 
 <h3>Etymology</h3>
-{{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 <em>dies Veneris</em>, via an association of the goddess Frigg with the Roman goddess of love Venus.
+{{etyl|ang}} {{term|friged&aelig;g|frīġed&aelig;ġ|lang=ang}}. Compound of frīġe and d&aelig;ġ &quot;day&quot;.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 &quot;wife.&quot;[5] The root also appears in Old Saxon fri which means &quot;beloved lady&quot;, in Swedish as fria (&quot;to propose for marriage&quot;) and in Icelandic as frj&aacute; which means &quot;to love.&quot;A calque of Latin <em>dies Veneris</em>, via an association of the goddess Frigg with the Roman goddess of love Venus.
 <h3>Pronunciation</h3>
-<ul><li> {{enPR|frīʹdā|frīʹdē}}; {{IPA|/ˈfɹaɪdeɪ/|/ˈfraɪdi/}}; {{X-SAMPA|/"fraIdeI/|/"fraIdi/}}</li>
+<ul><li> {{enPR|frīʹdā|frīʹdē}}; {{IPA|/ˈfɹaɪdeɪ/|/ˈfraɪdi/}}; {{X-SAMPA|/&quot;fraIdeI/|/&quot;fraIdi/}}</li>
 <li> {{audio|en-us-Friday.ogg|Audio (US)}}</li>
 <li> {{audio|En-uk-Friday.ogg|Audio (UK)}}</li>
 <li> {{rhymes|aɪdeɪ}}</li>
@@ -3385,7 +3385,7 @@ Friday:
 
 <h3>Noun</h3>
 {en-noun}
-<ol><li> The sixth day of the week in many religious traditions, and the fifth day of the week in systems using the ISO 8601 norm; the Biblical sixth day of a week, the day before the Sabbath, or "day of preparation" in preparation for the Sabbath; the Islamic sabbath; it follows Thursday and precedes Saturday.</li>
+<ol><li> The sixth day of the week in many religious traditions, and the fifth day of the week in systems using the ISO 8601 norm; the Biblical sixth day of a week, the day before the Sabbath, or &quot;day of preparation&quot; in preparation for the Sabbath; the Islamic sabbath; it follows Thursday and precedes Saturday.</li>
 </ol>
 
 <h4>Derived terms</h4>
@@ -3468,12 +3468,12 @@ false friend:
 
 <h4>Usage notes</h4>
 <ul><li> Examples:</li>
-<ul><li> The French <em>nous demandons</em> means "<em>we ask</em>", but sounds like "<em>we demand</em>", which can turn negotiation into confrontation.</li>
-<li> The Spanish word <em>embarazada</em> means "<em>pregnant</em>", not "<em>embarrassed</em>" &mdash; "<em>Estoy embarazada</em>" means "<em>I am pregnant</em>", not "<em>I am embarrassed</em>".</li>
-<li> The German word <em>will</em> (want) is not a future tense marker &mdash; "<em>Ich will gehen</em>" means "<em>I want to go</em>", not "<em>I will go</em>".</li>
-<ul><li> Same for Dutch and Afrikaans, "<em>Ik wil gaan</em>" and "<em>Ek wil gaan</em>" mean "<em>I want to go</em>".</li>
+<ul><li> The French <em>nous demandons</em> means &quot;<em>we ask</em>&quot;, but sounds like &quot;<em>we demand</em>&quot;, which can turn negotiation into confrontation.</li>
+<li> The Spanish word <em>embarazada</em> means &quot;<em>pregnant</em>&quot;, not &quot;<em>embarrassed</em>&quot; &amp;mdash; &quot;<em>Estoy embarazada</em>&quot; means &quot;<em>I am pregnant</em>&quot;, not &quot;<em>I am embarrassed</em>&quot;.</li>
+<li> The German word <em>will</em> (want) is not a future tense marker &amp;mdash; &quot;<em>Ich will gehen</em>&quot; means &quot;<em>I want to go</em>&quot;, not &quot;<em>I will go</em>&quot;.</li>
+<ul><li> Same for Dutch and Afrikaans, &quot;<em>Ik wil gaan</em>&quot; and &quot;<em>Ek wil gaan</em>&quot; mean &quot;<em>I want to go</em>&quot;.</li>
 </ul>
-<li> The Italian word <em>triviale</em> (vulgar) is written almost like <em>trivial</em>, but the two words share only a common Latin root (<em>trivium</em> in Latin means crossroad) and no longer any meaning; "<em>Questo è triviale</em>" means "<em>This is in bad taste</em>", not "<em>This is obvious</em>".</li>
+<li> The Italian word <em>triviale</em> (vulgar) is written almost like <em>trivial</em>, but the two words share only a common Latin root (<em>trivium</em> in Latin means crossroad) and no longer any meaning; &quot;<em>Questo &egrave; triviale</em>&quot; means &quot;<em>This is in bad taste</em>&quot;, not &quot;<em>This is obvious</em>&quot;.</li>
 <li> The Danish word <em>gift</em> does not mean gift as in present, but can mean a verb form of to marry; <em>Han er gift</em> means <em>He is married</em>. The word for gift is gave, which is close to the past tense of the verb giver. If <em>du gav en gave</em>, you gave a gift. Likewise, if <em>du gav en gift</em>, you actually gave poison.</li>
 </ul>
 </ul>
@@ -3497,7 +3497,7 @@ GDP:
 </ol>
 
 <h4>References</h4>
-<ul><li> {biochemistry} {{reference-book| last = Berg | first = Jeremy M.  | coauthors = Tymoczko, John; Stryer, Lubert  | title = Biochemistry  | url = http://www.ncbi.nlm.nih.gov/bookshelf/br.fcgi?book=stryer  | accessdate = 4 December 2009  | edition = Fifth eidtion | year = 2002  | publisher = W H Freeman and Company  | chapter = Common Abbreviations in Biochemistry  | chapterurl = http://www.ncbi.nlm.nih.gov/bookshelf/br.fcgi?book=stryer&part=A5607#A5649}} ISBN 0716730510</li>
+<ul><li> {biochemistry} {{reference-book| last = Berg | first = Jeremy M.  | coauthors = Tymoczko, John; Stryer, Lubert  | title = Biochemistry  | url = http://www.ncbi.nlm.nih.gov/bookshelf/br.fcgi?book=stryer  | accessdate = 4 December 2009  | edition = Fifth eidtion | year = 2002  | publisher = W H Freeman and Company  | chapter = Common Abbreviations in Biochemistry  | chapterurl = http://www.ncbi.nlm.nih.gov/bookshelf/br.fcgi?book=stryer&amp;part=A5607#A5649}} ISBN 0716730510</li>
 </ul>
 
 <h3>See also</h3>
@@ -3539,7 +3539,7 @@ gratis:
 <h3>Etymology</h3>
 From {{etyl|la}} <em>gratis</em>.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˈɡɹɑː.tɪs/}} {{X-SAMPA|/"grA:.tIs/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˈɡɹɑː.tɪs/}} {{X-SAMPA|/&quot;grA:.tIs/}}</li>
 </ul>
 
 <h3>Adverb</h3>
@@ -3553,7 +3553,7 @@ From {{etyl|la}} <em>gratis</em>.
 </ol>
 
 <h4>Synonyms</h4>
-<ul><li> free as in beer {{qualifier|used in the free software movement to distinguish from <em>libre</em>, "free as in speech"}}</li>
+<ul><li> free as in beer {{qualifier|used in the free software movement to distinguish from <em>libre</em>, &quot;free as in speech&quot;}}</li>
 </ul>
 
 <h4>Related terms</h4>
@@ -3581,7 +3581,7 @@ head:
 </ul>
 
 <h3>Etymology</h3>
-From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|lang=enm}}, {{term|heaved|lang=enm}}, from {{etyl|ang}} {{term|heafod|hēafod|head; top; source, origin; chief, leader; capital|lang=ang}}, from {{proto|Germanic|haubudan|head|lang=en}}, from {{proto|Indo-European|káput|head|lang=en}}, a variant of {{proto|Indo-European|kapōlo|head, bowl|title=|lang=en}}. Cognate with {{etyl|sco|-}} {{term|heid|lang=sco}}, {{term|hede|lang=sco}}, {{term|hevid|lang=sco}}, {{term|heved|head|lang=sco}}, {{etyl|ang|-}} {{term|hafola|head|lang=ang}}, {{etyl|frr|-}} {{term|hood|head|lang=frr}}, {{etyl|nl|-}} {{term|hoofd|head|lang=nl}}, {{etyl|de|-}} {{term|Haupt|head|lang=de}}, {{etyl|sv|-}} {{term|huvud|head|lang=sv}}, {{etyl|is|-}} {{term|höfuð|head|lang=is}}, {{etyl|la|-}} {{term|caput|head|lang=la}}, {{etyl|sa|-}} {{term|कपाल|कपालः|cup, bowl, skull|lang=sa|tr=kapāla}}, {{etyl|hi|-}} {{term|कपाल|skull|lang=hi|tr=kapāl}}, and (through borrowing from {{etyl|sa|-}}) {{etyl|ja|-}} {{term|骨|a covering bone: kneecap, skull|lang=ja|tr=kawara}}, {{term|瓦|a roof tile|lang=ja|tr=kawara}}.
+From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|lang=enm}}, {{term|heaved|lang=enm}}, from {{etyl|ang}} {{term|heafod|hēafod|head; top; source, origin; chief, leader; capital|lang=ang}}, from {{proto|Germanic|haubudan|head|lang=en}}, from {{proto|Indo-European|k&aacute;put|head|lang=en}}, a variant of {{proto|Indo-European|kapōlo|head, bowl|title=|lang=en}}. Cognate with {{etyl|sco|-}} {{term|heid|lang=sco}}, {{term|hede|lang=sco}}, {{term|hevid|lang=sco}}, {{term|heved|head|lang=sco}}, {{etyl|ang|-}} {{term|hafola|head|lang=ang}}, {{etyl|frr|-}} {{term|hood|head|lang=frr}}, {{etyl|nl|-}} {{term|hoofd|head|lang=nl}}, {{etyl|de|-}} {{term|Haupt|head|lang=de}}, {{etyl|sv|-}} {{term|huvud|head|lang=sv}}, {{etyl|is|-}} {{term|h&ouml;fu&eth;|head|lang=is}}, {{etyl|la|-}} {{term|caput|head|lang=la}}, {{etyl|sa|-}} {{term|कपाल|कपालः|cup, bowl, skull|lang=sa|tr=kapāla}}, {{etyl|hi|-}} {{term|कपाल|skull|lang=hi|tr=kapāl}}, and (through borrowing from {{etyl|sa|-}}) {{etyl|ja|-}} {{term|骨|a covering bone: kneecap, skull|lang=ja|tr=kawara}}, {{term|瓦|a roof tile|lang=ja|tr=kawara}}.
 <h3>Pronunciation</h3>
 <ul><li> {{enPR|hĕd}}, {{IPA|/hɛd/}}, {{X-SAMPA|/hEd/}}</li>
 <li> {{audio|en-us-head.ogg|Audio (US)}}</li>
@@ -3697,8 +3697,8 @@ From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|la
 <ul><li> <b>1936</b>, Lee Duncan, <em>Over The Wall</em>, Dutton</li>
 <ul><li> Then I saw the more advanced narcotic addicts, who shot unbelievable doses of powerful heroin in the main line – the vein of their arms; the hysien users; chloroform sniffers, who belonged to the riff-raff element of the dope chippeys, who mingled freely with others of their kind; canned heat stiffs, paragoric hounds, laudanum fiends, and last but not least, the veronal <b>heads</b>.</li>
 </ul>
-<li> {{quote-journal| year = 1968     | first = Fred     | last = Davis     | coauthors = Laura Munoz     | title = Heads and freaks: patterns and meanings of drug use among hippies     | journal = Journal of Health and Social Behavior     | volume = 9     | issue = 2     | url =    | page = 156-64     | passage = The term, "<b>head</b>," is, of course, not new with hippies. It has a long history among drug users generally, for whom it signified a regular, experienced user of any illegal drug—e.g., pot "head," meth "head," smack (heroin) "head."}}</li>
-<li> <b>2005</b>, Martin Torgoff, <em>Can't Find My Way Home</em>, Simon & Schuster, page 177,</li>
+<li> {{quote-journal| year = 1968     | first = Fred     | last = Davis     | coauthors = Laura Munoz     | title = Heads and freaks: patterns and meanings of drug use among hippies     | journal = Journal of Health and Social Behavior     | volume = 9     | issue = 2     | url =    | page = 156-64     | passage = The term, &quot;<b>head</b>,&quot; is, of course, not new with hippies. It has a long history among drug users generally, for whom it signified a regular, experienced user of any illegal drug—e.g., pot &quot;head,&quot; meth &quot;head,&quot; smack (heroin) &quot;head.&quot;}}</li>
+<li> <b>2005</b>, Martin Torgoff, <em>Can't Find My Way Home</em>, Simon &amp; Schuster, page 177,</li>
 <ul><li> The hutch now looks like a “Turkish bath,” and the <b>heads</b> have their arms around one another, passing the pipe and snapping their fingers as they sing Smokey Robinson's “Tracks of My Tears” into the night.</li>
 </ul>
 </ul>
@@ -3711,7 +3711,7 @@ From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|la
 </ul>
 
 <h4>See also</h4>
-<gallery>Image:Human head and brain diagram.svg|The human <b>head</b>.Image:Milk thistle flowerhead.jpg|A flower <b>head</b>.Image:Ikeya-zhang-comet-by-rhemann.png|<b>Head</b> of a comet.Image:MUO GTMO 2003.png|<b>Head</b> of the line.Image:Arrow and spear heads - from-DC1.jpg|Arrow and spear <b>heads</b>.Image:Head of a hammer.jpg|<b>Head</b> of a hammer.Image:Meetpunt.jpg|<b>Head</b> of a metal spike.Image:Hip_replacement_Image_3684-PH.jpg|<b>Head</b> of the hip bone.Image:MV Doulos in Keelung-2.jpg|<b>Head</b> of a ship.Image:Mainsail-edges.png|<b>Head</b> of a sail.Image:Diffuser Head.jpg|<b>Head</b> of a pressurized cylinder.Image:Malossi 70cc Morini cylinder head.jpg|<b>Head</b> of a two-stroke engine.Image:Hydraulic head.PNG|Hydraulic <b>head</b> between two points.Image:Floppy disk drive read-write head.jpg|A read-write <b>head</b>.Image:Fender Telecaster Head.jpg|<b>Head</b> of a guitar.Image:Drumhead.jpg|<b>Head</b> of a drum.</gallery>
+&lt;gallery&gt;Image:Human head and brain diagram.svg|The human <b>head</b>.Image:Milk thistle flowerhead.jpg|A flower <b>head</b>.Image:Ikeya-zhang-comet-by-rhemann.png|<b>Head</b> of a comet.Image:MUO GTMO 2003.png|<b>Head</b> of the line.Image:Arrow and spear heads - from-DC1.jpg|Arrow and spear <b>heads</b>.Image:Head of a hammer.jpg|<b>Head</b> of a hammer.Image:Meetpunt.jpg|<b>Head</b> of a metal spike.Image:Hip_replacement_Image_3684-PH.jpg|<b>Head</b> of the hip bone.Image:MV Doulos in Keelung-2.jpg|<b>Head</b> of a ship.Image:Mainsail-edges.png|<b>Head</b> of a sail.Image:Diffuser Head.jpg|<b>Head</b> of a pressurized cylinder.Image:Malossi 70cc Morini cylinder head.jpg|<b>Head</b> of a two-stroke engine.Image:Hydraulic head.PNG|Hydraulic <b>head</b> between two points.Image:Floppy disk drive read-write head.jpg|A read-write <b>head</b>.Image:Fender Telecaster Head.jpg|<b>Head</b> of a guitar.Image:Drumhead.jpg|<b>Head</b> of a drum.&lt;/gallery&gt;
 <h4>Synonyms</h4>
 <ul><li> {{sense|part of the body}} caput; (slang) noggin, {slang} loaf, (slang) nut, (slang) noodle, (slang) bonce</li>
 <li> {{sense|mental aptitude or talent}} mind</li>
@@ -3886,8 +3886,8 @@ From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|la
 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.
-<ul><li>Some more reasons why "==English==" is required:</li>
+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 &quot;all words.&quot;  Also, it reminds people that they can enter other languages.
+<ul><li>Some more reasons why &quot;==English==&quot; is required:</li>
 <ol><li> Introduces newcomers to wiki* syntax</li>
 <li> Indicates (by implication) to newcomers that a single entry can have more than one language</li>
 <li> Indicates <em>which</em> parts are English</li>
@@ -3897,7 +3897,7 @@ Q: I see a bunch of articles that have no language specified, but they are clear
 </ul>
 <ul><ol><li> The presence of the English heading makes it readily apparent how another language definition can be added to a page.</li>
 <li> 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.)</li>
-<li>The presence of the English heading makes parsing articles by internal "bots" easier/possible.</li>
+<li>The presence of the English heading makes parsing articles by internal &quot;bots&quot; easier/possible.</li>
 </ol>
 </ul>
 
@@ -3909,10 +3909,10 @@ hour:
 </ul>
 
 <h3>Etymology</h3>
-{{etyl|enm}} {{term|houre|houre, oure|lang=enm}}, from {{etyl|xno}} {{term|houre|lang=xno}}, from {{etyl|fro}} {{term|houre|houre, (h)ore|lang=fro}}, from {{etyl|la}} {{term|hora|hōra|hour|lang=la}}, from {{etyl|grc}} {{term|ὥρα|any time or period, whether of the year, month, or day|tr=hōrā|sc=polytonic|lang=grc}}, from {{proto|Indo-European|yer-|yor-|year, season}}. Akin to {ang} {{term|gear|ġēar|year|lang=ang}}. Displaced native {enm} {{term|stound|stunde, stound|hour, moment, stound|lang=enm}} (from {ang} {{term|stund|hour, time, moment|lang=ang}}), {enm} {{term|itid|ȝetid, tid|hour, time|lang=enm}} (from {ang} *<em>ġetīd</em>, compare {{etyl|osx|-}} <em>getīd</em> "hour, time").
+{{etyl|enm}} {{term|houre|houre, oure|lang=enm}}, from {{etyl|xno}} {{term|houre|lang=xno}}, from {{etyl|fro}} {{term|houre|houre, (h)ore|lang=fro}}, from {{etyl|la}} {{term|hora|hōra|hour|lang=la}}, from {{etyl|grc}} {{term|ὥρα|any time or period, whether of the year, month, or day|tr=hōrā|sc=polytonic|lang=grc}}, from {{proto|Indo-European|yer-|yor-|year, season}}. Akin to {ang} {{term|gear|ġēar|year|lang=ang}}. Displaced native {enm} {{term|stound|stunde, stound|hour, moment, stound|lang=enm}} (from {ang} {{term|stund|hour, time, moment|lang=ang}}), {enm} {{term|itid|ȝetid, tid|hour, time|lang=enm}} (from {ang} *<em>ġetīd</em>, compare {{etyl|osx|-}} <em>getīd</em> &quot;hour, time&quot;).
 <h3>Pronunciation</h3>
-<ul><li> {{a|RP|Australia}} {{enPR|owʹər}}, {{IPA|/ˈaʊə(ɹ)/}}, {{X-SAMPA|/"aU@(r)/}}</li>
-<li> {{a|US|Canada}} {{enPR|owr}}, {{IPA|/ˈaʊɚ/}}, {{X-SAMPA|/"aU@`/}}</li>
+<ul><li> {{a|RP|Australia}} {{enPR|owʹər}}, {{IPA|/ˈaʊə(ɹ)/}}, {{X-SAMPA|/&quot;aU@(r)/}}</li>
+<li> {{a|US|Canada}} {{enPR|owr}}, {{IPA|/ˈaʊɚ/}}, {{X-SAMPA|/&quot;aU@`/}}</li>
 <li> {{audio|en-us-hour.ogg|Audio (US)}}</li>
 <li> {{audio|En-uk-an hour.ogg|Audio (UK)}}</li>
 <li> {{rhymes|aʊər}}</li>
@@ -4002,7 +4002,7 @@ hyponym:
 <ol><li> {semantics} A more specific term; a subordinate grouping word or phrase.</li>
 <ul><li> {{usex|Dog is a <b>hyponym</b> of animal.}}</li>
 <li> {{usex|British is a <b>hyponym</b> of European.}}</li>
-<li> {{usex|"A is a <b>hyponym</b> of B" means that "A is a type of B."}}</li>
+<li> {{usex|&quot;A is a <b>hyponym</b> of B&quot; means that &quot;A is a type of B.&quot;}}</li>
 </ul>
 </ol>
 
@@ -4025,10 +4025,10 @@ hyponym:
 January:
 
 <h3>Etymology</h3>
-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 *<em>ei-</em>, "to go".
+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 *<em>ei-</em>, &quot;to go&quot;.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˈdʒænjʊəɹi/}}, {{X-SAMPA|/"dZ{nju@ri/}} <em>or as US</em></li>
-<li> {{a|US}} {{enPR|jănʹyo͞o-ĕr'ē}}, {{IPA|/ˈdʒænjuˌɛɹi/|/ˈdʒænjuˌæɹi/}}, {{X-SAMPA|/"dZ{nju%Eri/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˈdʒ&aelig;njʊəɹi/}}, {{X-SAMPA|/&quot;dZ{nju@ri/}} <em>or as US</em></li>
+<li> {{a|US}} {{enPR|jănʹyo͞o-ĕr'ē}}, {{IPA|/ˈdʒ&aelig;njuˌɛɹi/|/ˈdʒ&aelig;njuˌ&aelig;ɹi/}}, {{X-SAMPA|/&quot;dZ{nju%Eri/}}</li>
 <li> {{audio|en-us-January.ogg|Audio (US)}}</li>
 </ul>
 
@@ -4088,9 +4088,9 @@ Category:en:Card games
 July:
 
 <h3>Etymology</h3>
-{{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 *<em>Iovilios</em>, "descended from Jove", from {{etyl|la}} {{term|Iuppiter|lang=la}}, from Proto-Indo-European *<em>dyeu-pəter-</em>, vocative case of <b>godfather</b>, from Proto-Indo-European *<em>deiw-os</em>, god, + *<em>pəter</em>, father
+{{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 *<em>Iovilios</em>, &quot;descended from Jove&quot;, from {{etyl|la}} {{term|Iuppiter|lang=la}}, from Proto-Indo-European *<em>dyeu-pəter-</em>, vocative case of <b>godfather</b>, from Proto-Indo-European *<em>deiw-os</em>, god, + *<em>pəter</em>, father
 <h3>Pronunciation</h3>
-<ul><li> {{enPR|jo͝o-līʹ}}, {{IPA|/dʒʊˈlaɪ/}}, {{X-SAMPA|/dZU"laI/}}</li>
+<ul><li> {{enPR|jo͝o-līʹ}}, {{IPA|/dʒʊˈlaɪ/}}, {{X-SAMPA|/dZU&quot;laI/}}</li>
 <li> {{audio|en-us-July.ogg|Audio (US)}}</li>
 <li> {{rhymes|aɪ}}</li>
 </ul>
@@ -4137,7 +4137,7 @@ Category:English eponymsast:Julyaz:Julyzh-min-nan:Julycs:Julycy:Julyda:Julyde:Ju
 June:
 
 <h3>Etymology</h3>
-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=}}.
+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&oacute;s|lang=en}}, from {{proto|Indo-European|yew-|vital force, youthful vigor|lang=en|title=}}.
 <h3>Pronunciation</h3>
 <ul><li> {{enPR|jo͞on}}, {{IPA|/dʒuːn/|/dʒjuːn/}}, {{X-SAMPA|/dZu:n/}}</li>
 <li> {{audio|en-us-June.ogg|Audio (US)}}</li>
@@ -4197,7 +4197,7 @@ Wiktionary:Entry layout explained:
         
 <ul><li> <em>The Oxford Paperback Dictionary</em>       </li>
 </ul>
-</pre>
+&lt;/pre&gt;
 <h3>Variations for languages other than English</h3>
 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:
@@ -4306,13 +4306,13 @@ march:
 
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK}} {{IPA|/mɑːtʃ/}}, {{X-SAMPA|/mA:tS/}}</li>
-<li> {{a|US}} {{enPR|märch}}, {{IPA|/mɑrtʃ/}}, {{X-SAMPA|/mArtS/}}</li>
+<li> {{a|US}} {{enPR|m&auml;rch}}, {{IPA|/mɑrtʃ/}}, {{X-SAMPA|/mArtS/}}</li>
 <li> {{audio|en-us-March.ogg|Audio (US)}}</li>
 <li> {{rhymes|ɑː(r)tʃ}}</li>
 </ul>
 
 <h3>Etymology 1</h3>
-{{etyl|enm}} <em>marchen</em> from {{etyl|frm}} {{term|marcher|to march, to walk|lang=frm}}, from {{etyl|fro}} {{term|marchier|to stride, to march, to trample|lang=fro}}, of {{etyl|gem}} origin, from {{etyl|frk}} {{recons|markōn|to mark, mark out, to press with the foot}}, from {{proto|Germanic|markō|lang=en}}, from {{proto|Indo-European|mereg-|edge, boundary|lang=en}}. Akin to {{etyl|ang|-}} <em>mearc</em>, <em>ġemearc</em> "mark, boundary"
+{{etyl|enm}} <em>marchen</em> from {{etyl|frm}} {{term|marcher|to march, to walk|lang=frm}}, from {{etyl|fro}} {{term|marchier|to stride, to march, to trample|lang=fro}}, of {{etyl|gem}} origin, from {{etyl|frk}} {{recons|markōn|to mark, mark out, to press with the foot}}, from {{proto|Germanic|markō|lang=en}}, from {{proto|Indo-European|mereg-|edge, boundary|lang=en}}. Akin to {{etyl|ang|-}} <em>mearc</em>, <em>ġemearc</em> &quot;mark, boundary&quot;
 <h4>Noun</h4>
 {{en-noun|es}}
 <ol><li> A formal, rhythmic way of walking, used especially by soldiers, bands and in ceremonies.</li>
@@ -4365,7 +4365,7 @@ march:
 <li> in a full march</li>
 <li> in march</li>
 <li> Jacksonian march</li>
-<li> the Jäger March</li>
+<li> the J&auml;ger March</li>
 <li> Jarrow March</li>
 <li> Jarvis march</li>
 <li> July 1 Marches</li>
@@ -4424,7 +4424,7 @@ march:
 <li> protest march</li>
 <li> quick march</li>
 <li> Radetzky March</li>
-<li> Rákóczi March</li>
+<li> R&aacute;k&oacute;czi March</li>
 <li> recessional march</li>
 <li> recruitment marches</li>
 <li> rogue's march</li>
@@ -4446,7 +4446,7 @@ march:
 </ul>
 {rel-bottom}
 <h5>Related terms</h5>
-<ul><li> démarche</li>
+<ul><li> d&eacute;marche</li>
 <li> volksmarch</li>
 </ul>
 
@@ -4536,7 +4536,7 @@ may:
 </ul>
 
 <h3>Etymology 1</h3>
-{{etyl|ang|en}} {{term|magan|lang=ang}}, from Germanic.  Cognate with Dutch {{term|mogen}}, Low German {{term|mægen}}, German {{term|mögen}}, Icelandic {{term|megum|lang=is}}.
+{{etyl|ang|en}} {{term|magan|lang=ang}}, from Germanic.  Cognate with Dutch {{term|mogen}}, Low German {{term|m&aelig;gen}}, German {{term|m&ouml;gen}}, Icelandic {{term|megum|lang=is}}.
 <h4>Verb</h4>
 {{en-verb|may|-|might|-|head=-}}
 <ol><li> {{obsolete|intransitive}} To be strong; to have power (over). {{defdate|8th-17th c.}}</li>
@@ -4556,7 +4556,7 @@ may:
 </ul>
 <li> {{context|modal auxiliary verb|defective}} Expressing a present possibility; possibly. {{defdate|from 13th c.}}</li>
 <ul><li> <em>He <b>may</b> be lying.</em></li>
-<li> <em>Schrödinger's cat <b>may</b> or <b>may not</b> be in the box.</em></li>
+<li> <em>Schr&ouml;dinger's cat <b>may</b> or <b>may not</b> be in the box.</em></li>
 <li> {{quote-news|year=2011|date=October 1|author=Phil Dawkes|title=Sunderland   2 - 2   West Brom|work=BBC Sport|url=http://news.bbc.co.uk/sport2/hi/football/eng_prem/15045630.stm|page=|passage=The result <b>may</b> not quite give the Wearsiders a sweet ending to what has been a sour week, following allegations of sexual assault and drug possession against defender Titus Bramble, but it does at least demonstrate that their spirit remains strong in the face of adversity.}}</li>
 </ul>
 <li> {{context|subjunctive present|defective}} Expressing a wish (with present subjunctive effect). {{defdate|from 16th c.}}</li>
@@ -4589,7 +4589,7 @@ may:
 </ul>
 
 <h5>Derived terms</h5>
-{{rel-top3|term derived from "may"}}
+{{rel-top3|term derived from &quot;may&quot;}}
 <ul><li> as the case may be</li>
 <li> be it as it may, be that as it may, be this as it may</li>
 <li> come what may</li>
@@ -4663,7 +4663,7 @@ merchandise:
 <h3>Etymology</h3>
 From Anglo‐French <em>marchaundise</em>, from {{term|marchaunt|{{l|en|merchant}}|sc=polytonic}}.
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈmɝʧənˌdaɪz/}}, {{X-SAMPA|/"m3`tS@n%daIz/}}</li>
+<ul><li> {{IPA|/ˈmɝʧənˌdaɪz/}}, {{X-SAMPA|/&quot;m3`tS@n%daIz/}}</li>
 <li> {{audio|en-us-merchandise.ogg|Audio (US)}}</li>
 </ul>
 
@@ -4676,7 +4676,7 @@ From Anglo‐French <em>marchaundise</em>, from {{term|marchaunt|{{l|en|merchant
 </ol>
 
 <h4>Usage notes</h4>
-<ul><li> Adjectives often applied to "merchandise": returned, used, damaged, stolen, assorted, lost, promotional, industrial, cheap, expensive, imported, good, inferior.</li>
+<ul><li> Adjectives often applied to &quot;merchandise&quot;: returned, used, damaged, stolen, assorted, lost, promotional, industrial, cheap, expensive, imported, good, inferior.</li>
 </ul>
 
 <h4>Synonyms</h4>
@@ -4708,9 +4708,9 @@ From Anglo‐French <em>marchaundise</em>, from {{term|marchaunt|{{l|en|merchant
 minute:
 {wikipedia}
 <h3>Etymology 1</h3>
-From {{etyl|fro}} {{term|minute|lang=fro}}, from {{etyl|ML.}} {{term|minuta|minūta|60th of an hour", "note|lang=la}}
+From {{etyl|fro}} {{term|minute|lang=fro}}, from {{etyl|ML.}} {{term|minuta|minūta|60th of an hour&quot;, &quot;note|lang=la}}
 <h4>Pronunciation</h4>
-<ul><li> {{enPR|mĭn'ĭt}}, {{IPA|/ˈmɪnɪt/}}, {{X-SAMPA|/"mInIt/}}</li>
+<ul><li> {{enPR|mĭn'ĭt}}, {{IPA|/ˈmɪnɪt/}}, {{X-SAMPA|/&quot;mInIt/}}</li>
 <li> {{audio|en-uk-a minute.ogg|Audio (UK)}}</li>
 <li> {{audio|en-us-minute-noun.ogg|Audio (US)}}</li>
 <li> {{rhymes|ɪnɪt}}</li>
@@ -4748,23 +4748,23 @@ From {{etyl|fro}} {{term|minute|lang=fro}}, from {{etyl|ML.}} {{term|minuta|min
 {{en-verb|minut|ing}}
 <ol><li> {transitive} Of an event, to write in a memo or the minutes of a meeting.</li>
 <ul><li> <em>I’ll <b>minute</b> this evening’s meeting.</em></li>
-<li> <b>1995,</b> Edmund Dell, <em>The Schuman Plan and the British Abdication of Leadership in Europe</em> [http://print.google.com/print?hl=en&id=us6DpQrcaVEC&pg=PA74&lpg=PA74&sig=8WYGZFKFxIhE4WPCpVkzDvHpO1A]</li>
+<li> <b>1995,</b> Edmund Dell, <em>The Schuman Plan and the British Abdication of Leadership in Europe</em> [http://print.google.com/print?hl=en&amp;id=us6DpQrcaVEC&amp;pg=PA74&amp;lpg=PA74&amp;sig=8WYGZFKFxIhE4WPCpVkzDvHpO1A]</li>
 <ul><li> On 17 November 1949 Jay <b>minuted</b> Cripps, arguing that trade liberalization on inessentials was socially regressive.</li>
 </ul>
-<li> <b>1996,</b> Peter Hinchliffe, <em>The Other Battle</em> [http://print.google.com/print?hl=en&id=vxBK8kHLTyIC&pg=PA78&lpg=PA78&sig=lXg1Kvn_f1KsmB4gdOv51h5nu8I]</li>
+<li> <b>1996,</b> Peter Hinchliffe, <em>The Other Battle</em> [http://print.google.com/print?hl=en&amp;id=vxBK8kHLTyIC&amp;pg=PA78&amp;lpg=PA78&amp;sig=lXg1Kvn_f1KsmB4gdOv51h5nu8I]</li>
 <ul><li> The Commander-in-Chief of Bomber Command, Sir Richard Peirse, was sceptical of its findings, <b>minuting,</b> ‘I don’t think at this rate we could have hoped to produce the damage which is known to have been achieved.’</li>
 </ul>
-<li> <b>2003,</b> David Roberts, <em>Four Against the Arctic</em> [http://print.google.com/print?hl=en&id=yPsgKV7zo_kC&pg=PA18&lpg=PA18&sig=WNGXG6bM-ja8NDueqgtdNrCkslM]</li>
+<li> <b>2003,</b> David Roberts, <em>Four Against the Arctic</em> [http://print.google.com/print?hl=en&amp;id=yPsgKV7zo_kC&amp;pg=PA18&amp;lpg=PA18&amp;sig=WNGXG6bM-ja8NDueqgtdNrCkslM]</li>
 <ul><li> [...] Mr. Klingstadt, chief Auditor of the Admiralty of that city, sent for and examined them very particularly concerning the events which had befallen them; <b>minuting</b> down their answers in writing, with an intention of publishing himself an account of their extraordinary adventures.</li>
 </ul>
 </ul>
 </ol>
 
 <h3>Etymology 2</h3>
-From {{etyl|la}} {{term|minutus|minūtus|small", "petty|lang=la}}, perfect passive participle of {{term|minuo|minuō|make smaller|lang=la}}.
+From {{etyl|la}} {{term|minutus|minūtus|small&quot;, &quot;petty|lang=la}}, perfect passive participle of {{term|minuo|minuō|make smaller|lang=la}}.
 <h4>Pronunciation</h4>
 <ul><li> {{a|UK}} {{enPR|mīnyo͞ot'}}, {{IPA|/maɪˈnjuːt/}}, {{X-SAMPA|/maI'nju:t/}}</li>
-<li> {{a|US}} {{enPR|mīn(y)o͞ot'}}, {{IPA|/maɪˈn(j)ut/}}, {{X-SAMPA|/maI"n(j)ut/}}</li>
+<li> {{a|US}} {{enPR|mīn(y)o͞ot'}}, {{IPA|/maɪˈn(j)ut/}}, {{X-SAMPA|/maI&quot;n(j)ut/}}</li>
 <li> {{audio|en-us-minute-adjective.ogg|Audio (US)}}</li>
 <li> {{rhymes|uːt}}</li>
 </ul>
@@ -4799,11 +4799,11 @@ Category:1000 English basic wordsCategory:English heteronymsCategory:en:TimeCate
 Monday:
 
 <h3>Etymology</h3>
-<ul><li> {{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}}</li>
+<ul><li> {{etyl|ang}} {{term|monand&aelig;g|mōnand&aelig;ġ|day of the moon|lang=ang}}, from {{term|mona|mōna|moon|lang=ang}} + {{term|d&aelig;g|day|lang=ang}}, a translation of {{etyl|la}} {{term|dies lunae|lang=la}}</li>
 </ul>
 
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈmʌn.deɪ/|/ˈmʌn.di/}}, {{X-SAMPA|/"mVn.deI/|/"mVn.di/}}</li>
+<ul><li> {{IPA|/ˈmʌn.deɪ/|/ˈmʌn.di/}}, {{X-SAMPA|/&quot;mVn.deI/|/&quot;mVn.di/}}</li>
 <li> {{audio|en-us-Monday.ogg|Audio (US)}}</li>
 <li> {{audio|En-uk-Monday.ogg|Audio (UK)}}</li>
 <li> {{rhymes|ʌndeɪ}} <em>or</em> {{rhymes|ʌndi}}</li>
@@ -4812,7 +4812,7 @@ Monday:
 <h3>Noun</h3>
 {en-noun}
 <ol><li> The first day of the week in systems using the ISO 8601 norm and second day of the week in many religious traditions. It follows Sunday and precedes Tuesday.</li>
-<ul><li> <em>Solomon Grundy,<br>Born on a <b>Monday</b>,<br>Christened on Tuesday,<br>Married on Wednesday<br>ill on Thursday,<br>worse on Friday,<br>Died on Saturday,<br>Buried on Sunday.<br>Such was the life<br>Of Solomon Grundy.</em></li>
+<ul><li> <em>Solomon Grundy,&lt;br&gt;Born on a <b>Monday</b>,&lt;br&gt;Christened on Tuesday,&lt;br&gt;Married on Wednesday&lt;br&gt;ill on Thursday,&lt;br&gt;worse on Friday,&lt;br&gt;Died on Saturday,&lt;br&gt;Buried on Sunday.&lt;br&gt;Such was the life&lt;br&gt;Of Solomon Grundy.</em></li>
 </ul>
 </ol>
 
@@ -4889,7 +4889,7 @@ month:
 </ul>
 
 <h3>Etymology</h3>
-From {{etyl|enm}} {{term|month|lang=enm}}, {{term|moneth|lang=enm}}, from {{etyl|ang}} {{term|monaþ|mōnað|month|lang=ang}}, from {{proto|Germanic|mēnōþs|month|lang=en}}, from {{proto|Indo-European|me(n)ses|moon, month|lang=en}}, probably from {{proto|Indo-European|mê-|to measure|lang=en}}, referring to the moon's phases as the measure of time, equivalent to {{suffix|moon|th}}. Cognate with {{etyl|sco|-}} {{term|moneth|month|lang=sco}}, {{etyl|frr|-}} {{term|muunt|month|lang=frr}}, {{etyl|nl|-}} {{term|maand|month|lang=nl}}, {{etyl|nds|-}} {{term|maand|month|lang=nds}}, {{etyl|de|-}} {{term|Monat|month|lang=de}}, {{etyl|da|-}} {{term|måned|month|lang=da}}, {{etyl|sv|-}} {{term|månad|month|lang=sv}}, {{etyl|is|-}} {{term|mánuði|month|lang=is}}, Ancient Greek {{term|μήν|tr=mḗn|lang=grc|sc=polytonic}}, Armenian {{term|ամիս|tr=amis|lang=hy}}, Old Irish {{term|mí|lang=sga}}, Old Church Slavonic {{term|мѣсѧць|tr=měsęcĭ|lang=cu|sc=Glag}}. See also {{l|en|moon}}.
+From {{etyl|enm}} {{term|month|lang=enm}}, {{term|moneth|lang=enm}}, from {{etyl|ang}} {{term|mona&thorn;|mōna&eth;|month|lang=ang}}, from {{proto|Germanic|mēnō&thorn;s|month|lang=en}}, from {{proto|Indo-European|me(n)ses|moon, month|lang=en}}, probably from {{proto|Indo-European|m&ecirc;-|to measure|lang=en}}, referring to the moon's phases as the measure of time, equivalent to {{suffix|moon|th}}. Cognate with {{etyl|sco|-}} {{term|moneth|month|lang=sco}}, {{etyl|frr|-}} {{term|muunt|month|lang=frr}}, {{etyl|nl|-}} {{term|maand|month|lang=nl}}, {{etyl|nds|-}} {{term|maand|month|lang=nds}}, {{etyl|de|-}} {{term|Monat|month|lang=de}}, {{etyl|da|-}} {{term|m&aring;ned|month|lang=da}}, {{etyl|sv|-}} {{term|m&aring;nad|month|lang=sv}}, {{etyl|is|-}} {{term|m&aacute;nu&eth;i|month|lang=is}}, Ancient Greek {{term|μήν|tr=mḗn|lang=grc|sc=polytonic}}, Armenian {{term|ամիս|tr=amis|lang=hy}}, Old Irish {{term|m&iacute;|lang=sga}}, Old Church Slavonic {{term|мѣсѧць|tr=měsęcĭ|lang=cu|sc=Glag}}. See also {{l|en|moon}}.
 <h3>Pronunciation</h3>
 <ul><li> {{enPR|mŭnth}}, {{IPA|/mʌnθ/}}, {{X-SAMPA|/mVnT/}}</li>
 <li> {{audio|en-us-month.ogg|Audio (US)}}</li>
@@ -4943,12 +4943,12 @@ From {{suffix|multicultural|ism}}.
 {en-noun}
 <ol><li> The characteristics of a society, city etc. which has many different ethnic or national cultures mingling freely; political or social policies which support or encourage such coexistence. {{defdate|from 20th c.}}</li>
 <ul><li> <b>1991</b>, Barbara Ehrenreich, <em>Time</em>, 8 Apr 1991:</li>
-<ul><li> Something had to replace the threat of communism, and at last a workable substitute is at hand. "<b>Multiculturalism</b>," as the new menace is known, has been denounced in the media recently as the new McCarthyism, the new fundamentalism, even the new totalitarianism -- take your choice.</li>
+<ul><li> Something had to replace the threat of communism, and at last a workable substitute is at hand. &quot;<b>Multiculturalism</b>,&quot; as the new menace is known, has been denounced in the media recently as the new McCarthyism, the new fundamentalism, even the new totalitarianism -- take your choice.</li>
 </ul>
 <li> <b>2005</b>, David Davis MP, <em>Daily Telegraph</em>, 3 Aug 2005:</li>
 <ul><li> Britain has pursued a policy of <b>multiculturalism</b> - allowing people of different cultures to settle without expecting them to integrate into society.</li>
 </ul>
-<li> <b>2011</b>, "On a mat and a prayer", <em>The Economist</em>, 7 Apr 2011:</li>
+<li> <b>2011</b>, &quot;On a mat and a prayer&quot;, <em>The Economist</em>, 7 Apr 2011:</li>
 <ul><li> Earlier this year he said <b>multiculturalism</b> had “failed”, that immigrants needed to “melt” into French society, and that “we do not want ostentatious prayers in the street in France.”</li>
 </ul>
 </ul>
@@ -4982,7 +4982,7 @@ nonsense:
 <ul><li> <em>He says that I stole his computer, but that's just <b>nonsense</b>.</em></li>
 </ul>
 <li> Something foolish.</li>
-<ul><li> <b>2008</b>, "Nick Leeson has some lessons for this collapse", Telegraph.co.uk, Oct 9, 2008</li>
+<ul><li> <b>2008</b>, &quot;Nick Leeson has some lessons for this collapse&quot;, Telegraph.co.uk, Oct 9, 2008</li>
 <ul><li> and central banks lend vast sums against marshmallow backed securities, or other <b>nonsenses</b> creative bankers dreamed up.</li>
 </ul>
 </ul>
@@ -4999,7 +4999,7 @@ nonsense:
 </ul>
 
 <h4>Derived terms</h4>
-{{rel-top3|Terms derived from the noun "nonsense"}}
+{{rel-top3|Terms derived from the noun &quot;nonsense&quot;}}
 <ul><li> nonsensical</li>
 </ul>
 {rel-mid3}
@@ -5016,16 +5016,16 @@ nonsense:
 <h3>Verb</h3>
 {{en-verb|nonsens|es}}
 <ol><li> To make nonsense of</li>
-<ul><li> {{ante|1909}} Bernard Shaw, "The Red Robe", in James Huneker ed., <em>Dramatic Opinions and Essays by G. Bernard Shaw</em>, volume II, page 73:</li>
+<ul><li> {{ante|1909}} Bernard Shaw, &quot;The Red Robe&quot;, in James Huneker ed., <em>Dramatic Opinions and Essays by G. Bernard Shaw</em>, volume II, page 73:</li>
 <ul><li> At the Haymarket all this is <b>nonsensed</b> by an endeavor to steer between Mr. Stanley Weyman's rights as author of the story and the prescriptive right of the leading actor to fight popularly and heroically against heavy odds.</li>
 </ul>
 </ul>
 <li> To attempt to dismiss as nonsense.</li>
-<ul><li> <b>1997</b>, "Rockies respond to whip", <em>Denver Post</em>, Jun 3, 1997:</li>
-<ul><li> "They haven't <b>nonsensed</b> these workouts. They've taken them and used them very well. I didn't know how they'd respond, but they've responded."</li>
+<ul><li> <b>1997</b>, &quot;Rockies respond to whip&quot;, <em>Denver Post</em>, Jun 3, 1997:</li>
+<ul><li> &quot;They haven't <b>nonsensed</b> these workouts. They've taken them and used them very well. I didn't know how they'd respond, but they've responded.&quot;</li>
 </ul>
 <li> <b>2000</b>, Leon Garfield, Jason Cockcroft, <em>Jack Holborn</em>, page 131:</li>
-<ul><li> Very commanding: very much 'end of this <b>nonsensing</b><nowiki/>'. Mister Fared spread his hands and shook his thin head imperceptibly, as if to say he understood</li>
+<ul><li> Very commanding: very much 'end of this <b>nonsensing</b>&lt;nowiki/&gt;'. Mister Fared spread his hands and shook his thin head imperceptibly, as if to say he understood</li>
 </ul>
 <li> <b>2006</b>, <em>Sierra Leone: Petroleum Unit Calls for Auditing</em>, AllAfrica.com, Mar 17, 2006:</li>
 <ul><li> He further <b>nonsensed</b> press suggestions that the Petroleum Unit was set up to assist in the administration of sporting activities.</li>
@@ -5033,7 +5033,7 @@ nonsense:
 </ul>
 <li> {intransitive} To joke around, to waste time</li>
 <ul><li> <b>1963</b>, C. F. Griffin, <em>The Impermanence of Heroes</em>, page 170:</li>
-<ul><li> When he meant "go and get one" he said to go and get one, with no <b>nonsensing</b> around about "liking" to get one.</li>
+<ul><li> When he meant &quot;go and get one&quot; he said to go and get one, with no <b>nonsensing</b> around about &quot;liking&quot; to get one.</li>
 </ul>
 </ul>
 </ol>
@@ -5049,7 +5049,7 @@ noun:
 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}}.
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK|US}} {{IPA|/naʊn/}}, {{X-SAMPA|/naUn/}}</li>
-<li> {en-SoE}: {{IPA|/næːn/}}</li>
+<li> {en-SoE}: {{IPA|/n&aelig;ːn/}}</li>
 <li> {{audio|en-us-inlandnorth-noun.ogg|Audio (US-Inland North)}}</li>
 <li> {{rhymes|aʊn}}</li>
 </ul>
@@ -5125,10 +5125,10 @@ November:
 </ul>
 
 <h3>Etymology</h3>
-{{etyl|enm}}, from {{etyl|fro}} {{term|novembre|lang=fro}}, from {{etyl|la}} {{term|november|ninth month|lang=la}}, from Latin {{term|novem|lang=la}}, from {{proto|Indo-European|h₁néwn̥|nine}}; + {{etyl|la}} {{term|-ber|lang=la}}, from adjectival suffix {{term|-bris|lang=la}}; November was the ninth month in the Roman calendar
+{{etyl|enm}}, from {{etyl|fro}} {{term|novembre|lang=fro}}, from {{etyl|la}} {{term|november|ninth month|lang=la}}, from Latin {{term|novem|lang=la}}, from {{proto|Indo-European|h₁n&eacute;wn̥|nine}}; + {{etyl|la}} {{term|-ber|lang=la}}, from adjectival suffix {{term|-bris|lang=la}}; November was the ninth month in the Roman calendar
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/nəʊˈvɛmbə/}}, {{X-SAMPA|/n@U"vEmb@/}}</li>
-<li> {{a|US}} {{enPR|nō-vĕmʹbər}}, {{IPA|/noʊˈvɛmbəɹ/}}, {{X-SAMPA|/noU"vEmb@r/}}</li>
+<ul><li> {{a|UK}} {{IPA|/nəʊˈvɛmbə/}}, {{X-SAMPA|/n@U&quot;vEmb@/}}</li>
+<li> {{a|US}} {{enPR|nō-vĕmʹbər}}, {{IPA|/noʊˈvɛmbəɹ/}}, {{X-SAMPA|/noU&quot;vEmb@r/}}</li>
 <li> {{hyphenation|No|vem|ber}}</li>
 <li> {{audio|en-us-November.ogg|Audio (US)}}</li>
 <li> {{rhymes|ɛmbə(r)}}</li>
@@ -5175,8 +5175,8 @@ October:
 <h3>Etymology</h3>
 From {{etyl|enm}}, from {{etyl|ang}}, from {{etyl|la}} {{term|october|octōber|eighth month|lang=la}}, from Latin {{term|octo|octō|eight|lang=la}}, from {{proto|Indo-European|oḱtṓw|twice four}}. October was the eighth month in the Roman calendar.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ɒkˈtəʊbə/}}, {{X-SAMPA|/Qk"t@Ub@/}}</li>
-<li> {{a|US}} {{enPR|äk-tōʹbər}}, {{IPA|/ɑkˈtoʊbəɹ/}}, {{X-SAMPA|/Ak"toUb@r/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ɒkˈtəʊbə/}}, {{X-SAMPA|/Qk&quot;t@Ub@/}}</li>
+<li> {{a|US}} {{enPR|&auml;k-tōʹbər}}, {{IPA|/ɑkˈtoʊbəɹ/}}, {{X-SAMPA|/Ak&quot;toUb@r/}}</li>
 <li> {{audio|en-us-October.ogg|Audio (US)}}</li>
 </ul>
 
@@ -5249,7 +5249,7 @@ freedom of speech:
 <li> {{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 <b>freedom of speech</b> more muscle than the First Amendment does. It may already have become literally impossible for a government to shut people up.}}</li>
 </ul>
 <li> {{&lit|freedom|speech}}</li>
-<ul><li> {{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 <b>freedom of speech</b> to freedom of thought. And therefore it is a good shrewd Proverb of the <em>Spaniard, Tell a lye, and find a Troth</em>; as if there were no way of discovery, but by <em>Simulation</em>.|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}}</li>
+<ul><li> {{quote-book|chapter=Of Simulation and Dissimulation|year=1625|title=The essays, or Counsels, civil &amp; 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 <b>freedom of speech</b> to freedom of thought. And therefore it is a good shrewd Proverb of the <em>Spaniard, Tell a lye, and find a Troth</em>; as if there were no way of discovery, but by <em>Simulation</em>.|url=http://books.google.com/books?id=xjQCAAAAQAAJ&amp;pg=PA20&amp;dq=%22freedom+of+speech%22&amp;hl=en&amp;sa=X&amp;ei=zTI-T9zcDYnr0gHcx_HOBw&amp;ved=0CNoBEOgBMBo#v=onepage&amp;q=%22freedom%20of%20speech%22&amp;f=false}}</li>
 </ul>
 </ol>
 
@@ -5289,24 +5289,24 @@ patronage:
 <h3>Verb</h3>
 {{en-verb|patronag|es}}
 <ol><li> {transitive} To support by being a patron of.</li>
-<ul><li> <b>2003</b>, Hubert Michael Seiwert, <em>Popular Religious Movements and Heterodox Sects in Chinese History</em>, BRILL, ISBN 9789004131460, [http://books.google.com/books?id=Xg-gcQq1TGQC&pg=PA62&dq=patronaged page 62]:</li>
+<ul><li> <b>2003</b>, Hubert Michael Seiwert, <em>Popular Religious Movements and Heterodox Sects in Chinese History</em>, BRILL, ISBN 9789004131460, [http://books.google.com/books?id=Xg-gcQq1TGQC&amp;pg=PA62&amp;dq=patronaged page 62]:</li>
 <ul><li> Mingdi continued the policy of his father who had <b>patronaged</b> Confucian learning.</li>
 </ul>
-<li> <b>2004</b>, C.K. Gandhirajan, <em>Organized Crime</em>, APH Publishing Corporation, ISBN 978-81-7648-481-7, [http://books.google.com/books?id=ohyhsmWmelAC&pg=PA147&dq=patronaged page 147]:</li>
+<li> <b>2004</b>, C.K. Gandhirajan, <em>Organized Crime</em>, APH Publishing Corporation, ISBN 978-81-7648-481-7, [http://books.google.com/books?id=ohyhsmWmelAC&amp;pg=PA147&amp;dq=patronaged page 147]:</li>
 <ul><li> Table 5.4 reveals the role of criminal gangs’ patron under each crime category. From this, we can understand that 74 percent of the mercenaries are <b>patronaged</b> and supported by the politicians either of the ruling or opposition party.</li>
 </ul>
-<li> <b>2007</b>, Stefaan Fiers and Ineke Secker, “A Career through the Party”, chapter 6 of Maurizio Cotta and Heinrich Best (editors), <em>Democratic Representation in Europe</em>, Oxford University Press, ISBN 978-0-19-923420-2, [http://books.google.com/books?id=EtetpwF-xHMC&pg=PA138&dq=patronaged page 138]:</li>
+<li> <b>2007</b>, Stefaan Fiers and Ineke Secker, “A Career through the Party”, chapter 6 of Maurizio Cotta and Heinrich Best (editors), <em>Democratic Representation in Europe</em>, Oxford University Press, ISBN 978-0-19-923420-2, [http://books.google.com/books?id=EtetpwF-xHMC&amp;pg=PA138&amp;dq=patronaged page 138]:</li>
 <ul><li> To summarize: a person with a party political background is thus defined as ‘a person that has served in (a) {...} and/or (b) a non-elective position inside the party administration of <b>patronaged</b> position in another organisation, i.e. <em>the political functionary</em>’.</li>
 </ul>
 </ul>
 <li> {transitive} To be a regular customer or client of; to patronize; to patronise; to support; to keep going.</li>
-<ul><li> {{circa|1880}} in <em>The Primary Teacher</em> (magazine), Volume III, Number ??, New-England Publishing Company, [http://books.google.com/books?id=sxgVAAAAIAAJ&pg=PA33&dq=patronaged page 63]:</li>
+<ul><li> {{circa|1880}} in <em>The Primary Teacher</em> (magazine), Volume III, Number ??, New-England Publishing Company, [http://books.google.com/books?id=sxgVAAAAIAAJ&amp;pg=PA33&amp;dq=patronaged page 63]:</li>
 <ul><li> This house is largely <b>patronaged</b> by the professors and students of many of the Educational Institutions of New England and the Middle States; and all perons visiting New York, either for business or pleasure, will find this an excellent place at which to stop.</li>
 </ul>
-<li> <b>1902</b> May, in <em>Oregon Poultry Journal</em>, [http://books.google.com/books?id=flRMAAAAYAAJ&pg=PA27&dq=patronage page 27]:</li>
+<li> <b>1902</b> May, in <em>Oregon Poultry Journal</em>, [http://books.google.com/books?id=flRMAAAAYAAJ&amp;pg=PA27&amp;dq=patronage page 27]:</li>
 <ul><li> Mr. F. A. Welch, of the Oak View Poultry Farm, Salem, starts an add with us this issue. {...} Our readers will be treated well, if they <b>patronage</b> Mr. Welch.</li>
 </ul>
-<li> <b>2002</b>, Kevin Fox Gotham, <em>Race, Real Estate, and Uneven Development</em>, SUNY Press, ISBN 978-0-7914-5377-3, [http://books.google.com/books?id=CRG0QOEw9wAC&pg=PA28&dq=patronaged page 28]:</li>
+<li> <b>2002</b>, Kevin Fox Gotham, <em>Race, Real Estate, and Uneven Development</em>, SUNY Press, ISBN 978-0-7914-5377-3, [http://books.google.com/books?id=CRG0QOEw9wAC&amp;pg=PA28&amp;dq=patronaged page 28]:</li>
 <ul><li> Most public establishments catered to Blacks, and Whites actively <b>patronaged</b> some black-owned businesses (Martin 1982, 6, 9–11; Slingsby 1980, 31–32).</li>
 </ul>
 </ul>
@@ -5343,7 +5343,7 @@ From {{etyl|enm}}, unknown origin.
 </ul>
 <li> {{context|Northeastern US}} Pizza.</li>
 <li> {figuratively} The whole of a wealth or resource, to be divided in parts.</li>
-<ul><li> <em>It is easier to get along when everyone, more or less, is getting ahead. But when the <b>pie</b> is shrinking, social groups are more likely to turn on each other.</em> &mdash; Evan Thomas, <em>[http://www.newsweek.com/2010/12/04/the-deepest-dangers-facing-the-united-states.html Why It’s Time to Worry]</em>, Newsweek 2010-12-04</li>
+<ul><li> <em>It is easier to get along when everyone, more or less, is getting ahead. But when the <b>pie</b> is shrinking, social groups are more likely to turn on each other.</em> &amp;mdash; Evan Thomas, <em>[http://www.newsweek.com/2010/12/04/the-deepest-dangers-facing-the-united-states.html Why It’s Time to Worry]</em>, Newsweek 2010-12-04</li>
 </ul>
 <li> {letterpress} A disorderly mess of spilt type.</li>
 <li> {cricket} An especially badly bowled ball.</li>
@@ -5416,7 +5416,7 @@ From {{etyl|hi}} {{term|पाई|quarter|tr=pāī}}, from {{etyl|sa}} {{term|
 </ol>
 
 <h3>Anagrams</h3>
-<ul><li> EIP, ipe, ipé, PEI</li>
+<ul><li> EIP, ipe, ip&eacute;, PEI</li>
 </ul>
 Category:English terms with unknown etymologiesCategory:en:CurrencyCategory:en:FoodsCategory:en:Pies----
 ***pies***
@@ -5457,26 +5457,26 @@ Coined by Everett K Smith, President of the National Puzzlers’ League, at thei
 </ul>
 {{rel-top|Pronunciatory transcriptions and hyphenation}}
 <ul><li> {{a|RP}}:</li>
-<ul><li> {{IPA|/njuːˌmɒnəʊʌltrəmaɪkrəʊˈskɒpɪkˌsɪlɪkəʊvɒlkeɪnəʊkəʊniˈəʊsɪs/}}<ref name="OED-pronstress&usage">The <b>Oxford English Dictionary</b> [Second Edition]</ref>;</li>
-<li> {{X-SAMPA|/nju:%mQn@UVltr/@maIkr/@U"skQpIk%sIlIk@UvQlkeIn@Uk@Uni"@UsIs/}}</li>
+<ul><li> {{IPA|/njuːˌmɒnəʊʌltrəmaɪkrəʊˈskɒpɪkˌsɪlɪkəʊvɒlkeɪnəʊkəʊniˈəʊsɪs/}}&lt;ref name=&quot;OED-pronstress&amp;usage&quot;&gt;The <b>Oxford English Dictionary</b> [Second Edition]&lt;/ref&gt;;</li>
+<li> {{X-SAMPA|/nju:%mQn@UVltr/@maIkr/@U&quot;skQpIk%sIlIk@UvQlkeIn@Uk@Uni&quot;@UsIs/}}</li>
 </ul>
 <li> {{a|US}}:</li>
-<ul><li> {{enPR|no͞o-män'ō-ŭl-trə-mī-krə-skäpʹĭk-sĭl'ē-kō-väl-kā-nō-kō-nē-ōʹsĭs}};</li>
+<ul><li> {{enPR|no͞o-m&auml;n'ō-ŭl-trə-mī-krə-sk&auml;pʹĭk-sĭl'ē-kō-v&auml;l-kā-nō-kō-nē-ōʹsĭs}};</li>
 <li> {{IPA|/nuˌmɑːnoʊʌltrəmaɪkroʊˈskɑːpɪkˌsɪlɪkoʊvɑːlkeɪnoʊkoʊniˈoʊsɪs/}};</li>
-<li> {{X-SAMPA|/nu%mA:noUVltr@maIkroU"skA:pIk%sIlIkoUvA:lkeInoUkoUni"oUsIs/}}</li>
+<li> {{X-SAMPA|/nu%mA:noUVltr@maIkroU&quot;skA:pIk%sIlIkoUvA:lkeInoUkoUni&quot;oUsIs/}}</li>
 </ul>
 <li> {{audio|en-us-pneumonoultramicroscopicsilicovolcanoconiosis.ogg|Audio (US)}}</li>
 <li> Hyphenation</li>
-<li> pneu<b>·</b>mon<b>·</b>o<b>·</b>ul<b>·</b>tra<b>·</b>mi<b>·</b>cro<b>·</b>scop<b>·</b>ic<b>·</b>sil<b>·</b>i<b>·</b>co<b>·</b>vol<b>·</b>ca<b>·</b>no<b>·</b>co<b>·</b>ni<b>·</b>o<b>·</b>sis</li>
+<li> pneu<b>&middot;</b>mon<b>&middot;</b>o<b>&middot;</b>ul<b>&middot;</b>tra<b>&middot;</b>mi<b>&middot;</b>cro<b>&middot;</b>scop<b>&middot;</b>ic<b>&middot;</b>sil<b>&middot;</b>i<b>&middot;</b>co<b>&middot;</b>vol<b>&middot;</b>ca<b>&middot;</b>no<b>&middot;</b>co<b>&middot;</b>ni<b>&middot;</b>o<b>&middot;</b>sis</li>
 </ul>
 {rel-bottom}
 <h3>Noun</h3>
 {{en-noun|pneumonoultramicroscopicsilicovolcanoconioses}}
 <ol><li> {{context|nonce}} A factitious disease of the lungs, allegedly caused by inhaling microscopic silicate particles originating from eruption of a volcano.</li>
 <ul><li> {{quote-journal| year = 1980      | month = March      | title = Black Lung      | first = Lorin E.      | last = Kerr      | journal = Journal of Public Health Policy      | volume = 1      | issue = 1      | page = 50      | jstor = 3342357      | passage = Call it miner's asthma, silicosis, <b>pneumonoultramicroscopicsilicovolcanoconiosis</b>, coal workers' pneumoconiosis, or black lung—they are all dust diseases with the same symptoms.}}</li>
-<li> {{quote-newsgroup| date = 1998-08-27      | title = Lament for a Lung Disease      | author = Smokey      | newsgroup = talk.bizarre      | id = 6s3r8o$brt$1@camel15.mindspring.com      | url = http://groups.google.com/group/talk.bizarre/browse_thread/thread/3db7020dcb5b531e/cbd79ebd7c266219?q=pneumonoultramicroscopicsilicovolcanoconiosis      | passage = I say that it must be the silica dust<br />That we breathed through our mouths and our noses<br />That brought <b>pneumonoultramicroscopicsilicovolcanoconiosis</b>.}}</li>
+<li> {{quote-newsgroup| date = 1998-08-27      | title = Lament for a Lung Disease      | author = Smokey      | newsgroup = talk.bizarre      | id = 6s3r8o$brt$1@camel15.mindspring.com      | url = http://groups.google.com/group/talk.bizarre/browse_thread/thread/3db7020dcb5b531e/cbd79ebd7c266219?q=pneumonoultramicroscopicsilicovolcanoconiosis      | passage = I say that it must be the silica dust&lt;br /&gt;That we breathed through our mouths and our noses&lt;br /&gt;That brought <b>pneumonoultramicroscopicsilicovolcanoconiosis</b>.}}</li>
 <li> {{quote-newsgroup| date = 2002-12-18T04:19:52      | group = alt.fan.scarecrow      | author = Pod      | title = Pneumonoultramicroscopicsilicovolcanoconiosis      | id = iHSL9.2091$h43.295898@stones      | url = http://groups.google.com/group/alt.fan.scarecrow/msg/39876843908f9513      | passage = It's either <b>pneumonoultramicroscopicsilicovolcanoconiosis</b>, or a bad cough.}}</li>
-<li> {{quote-book| date = 2011-04-28      | title = Am I the Person My Mother Warned Me About?: A Four-year College Experience ... Only the Good Parts      | first = Kurt D.      | last = Stradtman      | publisher = Xlibris      | isbn = 9781462862887      | lccn = 2011906469      | page = 90      | pageurl = http://books.google.com/books?id=06v2Q_rL_dAC&pg=PA90&dq=pneumonoultramicroscopicsilicovolcanoconiosis      | passage = I still can't watch <em>House M.D.</em> and not have my mind wonder{...} Even I can fear of having <b><em>Pneumonoultramicroscopicsilicovolcanoconiosis</b></em> after watching it.}}</li>
+<li> {{quote-book| date = 2011-04-28      | title = Am I the Person My Mother Warned Me About?: A Four-year College Experience ... Only the Good Parts      | first = Kurt D.      | last = Stradtman      | publisher = Xlibris      | isbn = 9781462862887      | lccn = 2011906469      | page = 90      | pageurl = http://books.google.com/books?id=06v2Q_rL_dAC&amp;pg=PA90&amp;dq=pneumonoultramicroscopicsilicovolcanoconiosis      | passage = I still can't watch <em>House M.D.</em> and not have my mind wonder{...} Even I can fear of having <b><em>Pneumonoultramicroscopicsilicovolcanoconiosis</b></em> after watching it.}}</li>
 </ul>
 </ol>
 
@@ -5495,7 +5495,7 @@ Coined by Everett K Smith, President of the National Puzzlers’ League, at thei
 
 <h4>Usage notes</h4>
 {{rel-top|Usage notes}}
-<ul><li> The Oxford English Dictionary lists <em>pneumonoultramicroscopicsilicovolcanoconiosis</em> as “a factitious word alleged to mean ‘a lung disease caused by inhalation of very fine silica dust usually found in volcanos’ but occurring chiefly as an instance of a very long word”.<ref name="OED-pronstress&usage"/></li>
+<ul><li> The Oxford English Dictionary lists <em>pneumonoultramicroscopicsilicovolcanoconiosis</em> as “a factitious word alleged to mean ‘a lung disease caused by inhalation of very fine silica dust usually found in volcanos’ but occurring chiefly as an instance of a very long word”.&lt;ref name=&quot;OED-pronstress&amp;usage&quot;/&gt;</li>
 </ul>
 <ul><li> This word was invented purely to be a contender for the title of the longest word in the English language, comprising forty-five letters. The word is not in official medical usage, and textbooks refer to this disease as pneumonoconiosis, pneumoconiosis, or silicosis.</li>
 </ul>
@@ -5508,7 +5508,7 @@ Coined by Everett K Smith, President of the National Puzzlers’ League, at thei
 </ul>
 {rel-bottom}
 <h4>References</h4>
-<references/>Category:Long English wordsCategory:English words suffixed with -osisde:pneumonoultramicroscopicsilicovolcanoconiosisfr:pneumonoultramicroscopicsilicovolcanoconiosisko:pneumonoultramicroscopicsilicovolcanoconiosistl:pneumonoultramicroscopicsilicovolcanoconiosiszh:pneumonoultramicroscopicsilicovolcanoconiosis
+&lt;references/&gt;Category:Long English wordsCategory:English words suffixed with -osisde:pneumonoultramicroscopicsilicovolcanoconiosisfr:pneumonoultramicroscopicsilicovolcanoconiosisko:pneumonoultramicroscopicsilicovolcanoconiosistl:pneumonoultramicroscopicsilicovolcanoconiosiszh:pneumonoultramicroscopicsilicovolcanoconiosis
 ***polysemic***
 polysemic:
 
@@ -5537,7 +5537,7 @@ pond:
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK}} {{enPR|pŏnd}}, {{IPA|/pɒnd/}}, {{X-SAMPA|/pQnd/}}</li>
 <li> {{rhymes|ɒnd}}</li>
-<li> {{a|US}} {{enPR|pänd}}, {{IPA|/pɑnd/}}, {{X-SAMPA|/pAnd/}}</li>
+<li> {{a|US}} {{enPR|p&auml;nd}}, {{IPA|/pɑnd/}}, {{X-SAMPA|/pAnd/}}</li>
 <li> {{audio|en-us-pond.ogg|Audio (US)}}</li>
 </ul>
 
@@ -5605,8 +5605,8 @@ portmanteau:
 </ul>
 
 <h3>Pronunciation</h3>
-<ul><li> {{a|RP}} {{IPA|/pɔːtˈmæn.təʊ/}}, {{X-SAMPA|/pO:t"m{nt@U/}}</li>
-<li> {{a|US}} {{enPR|pôrt'măntō}}, {{IPA|/pɔːrtˈmæntoʊ/}}, {{X-SAMPA|/pO:rt"m{ntou/}}</li>
+<ul><li> {{a|RP}} {{IPA|/pɔːtˈm&aelig;n.təʊ/}}, {{X-SAMPA|/pO:t&quot;m{nt@U/}}</li>
+<li> {{a|US}} {{enPR|p&ocirc;rt'măntō}}, {{IPA|/pɔːrtˈm&aelig;ntoʊ/}}, {{X-SAMPA|/pO:rt&quot;m{ntou/}}</li>
 <li> {{audio|en-us-portmanteau-1.ogg|Audio 1 (US)}}</li>
 <li> {{audio|en-us-portmanteau-2.ogg|Audio 2 (US)}}</li>
 </ul>
@@ -5645,7 +5645,7 @@ Coined by Lewis Carroll in Through The Looking Glass to describe the words he co
 <ul><li> The overall narrator of this <b>portmanteau</b> story - for Dickens co-wrote it with five collaborators on his weekly periodical, <em>All the Year Round</em> - expresses deep, rational scepticism about the whole business of haunting.</li>
 </ul>
 <li> <b>2002</b>, Nick Bradshaw, <em>One day in September</em> in <em>Time Out</em> (December 11, 2002) Page 71:</li>
-<ul><li> We're so bombarded with images, it's a struggle to preserve our imaginations.' In response, he's turned to cinema, commissioning 11 film-makers to contribute to a <b>portmanteau</b> film, entitled '11'09"01' and composed of short films each running 11 minutes, nine seconds and one frame.</li>
+<ul><li> We're so bombarded with images, it's a struggle to preserve our imaginations.' In response, he's turned to cinema, commissioning 11 film-makers to contribute to a <b>portmanteau</b> film, entitled '11'09&quot;01' and composed of short films each running 11 minutes, nine seconds and one frame.</li>
 </ul>
 </ul>
 </ol>
@@ -5682,14 +5682,14 @@ From {{etyl|enm}}, from {{etyl|ang}} {{term|pund|a pound, weight|lang=ang}}, fro
 </ol>
 
 <h5>Usage notes</h5>
-<ul><li> Internationally, the "pound" has most commonly referred to the UK pound (Pound Sterling). The other currencies were usually distinguished in some way, e.g., the "Irish pound" or the "punt".</li>
-<li> In the vicinity of each other country calling its currency the pound among English speakers the local currency would be the "pound", with all others distinguished, e.g., the "British pound".</li>
+<ul><li> Internationally, the &quot;pound&quot; has most commonly referred to the UK pound (Pound Sterling). The other currencies were usually distinguished in some way, e.g., the &quot;Irish pound&quot; or the &quot;punt&quot;.</li>
+<li> In the vicinity of each other country calling its currency the pound among English speakers the local currency would be the &quot;pound&quot;, with all others distinguished, e.g., the &quot;British pound&quot;.</li>
 </ul>
 
 <h5>Synonyms</h5>
 <ul><li> {{sense|16 avoirdupois ounces}} lb</li>
 <li> {{sense|12 troy ounces}} lb t</li>
-<li> {{sense|UK unit of currency}} <big>£</big>, pound sterling</li>
+<li> {{sense|UK unit of currency}} &lt;big&gt;&pound;&lt;/big&gt;, pound sterling</li>
 <li> {{sense|Other units of currency}} punt {{qualifier|the former Irish currency}}</li>
 <li> {{sense|# symbol}} hash {{qualifier|UK}}, sharp</li>
 </ul>
@@ -5711,7 +5711,7 @@ From {{etyl|enm}} {{term|pounde|lang=enm}}, from {{etyl|ang}} {{term|pyndan|to e
 {en-noun}
 <ol><li> A place for the detention of stray or wandering animals.</li>
 <ul><li> <b>2002</b>, 25th Hour, 00:27:30</li>
-<ul><li> (a policemant saying to a dog owner) "He better stay calm or I'll have the <b>pound</b> come get him." </li>
+<ul><li> (a policemant saying to a dog owner) &quot;He better stay calm or I'll have the <b>pound</b> come get him.&quot; </li>
 </ul>
 </ul>
 <li> A place for the detention of automobiles that have been illegally parked, abandoned, etc.</li>
@@ -5766,7 +5766,7 @@ Category:en:CanalsCategory:en:CurrencyCategory:en:Units of measurede:poundet:pou
 quid pro quo:
 {{was wotd|2009|August|17}}{rfc}
 <h3>Etymology</h3>
-From {{etyl|la|en}} : "what for what" . See quid, pro, and quo
+From {{etyl|la|en}} : &quot;what for what&quot; . See quid, pro, and quo
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK}} {{IPA|/ˌkwɪd.pɹəʊˈkwəʊ/}}</li>
 <li> {{a|US}} {{IPA|/ˌkwɪd.pɹoʊˈkwoʊ/}}</li>
@@ -5779,7 +5779,7 @@ From {{etyl|la|en}} : "what for what" . See quid, pro, and quo
 <ul><li> The misunderstanding of the word or the <b>quid pro quo</b> is the unintentional pun, and is related to it exactly as folly is to wit.</li>
 </ul>
 <li> <b>1912</b>, Fyodor Dostoevsky, translated by Constance Garnett, <em>The Brothers Karamazov</em>, part II, book V, chapter 5:</li>
-<ul><li> &ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &mdash; some impossible <b>quid pro quo</b>?&rdquo;</li>
+<ul><li> &amp;ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &amp;mdash; some impossible <b>quid pro quo</b>?&amp;rdquo;</li>
 </ul>
 </ul>
 <li> {legal} This for that; giving something to receive something else ; something equivalent ; something in return.</li>
@@ -5813,9 +5813,9 @@ product:
 <h3>Etymology</h3>
 {{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.
 <h3>Pronunciation</h3>
-<ul><li> {{enPR|prŏdʹ-ŭkt}}, {{IPA|/ˈprɒdˌʌkt/}}, {{X-SAMPA|/"prQd%Vkt/}}</li>
-<ul><li> {{a|UK}} {{IPA|[ˈpɹɒd.ˌʌkt]}}, {{X-SAMPA|["pr\Qd.%Vkt]}}</li>
-<li> {{a|US}} {{IPA|[ˈpɹɑd.ˌʌkt]}}, {{X-SAMPA|["pr\Ad.%Vkt]}}</li>
+<ul><li> {{enPR|prŏdʹ-ŭkt}}, {{IPA|/ˈprɒdˌʌkt/}}, {{X-SAMPA|/&quot;prQd%Vkt/}}</li>
+<ul><li> {{a|UK}} {{IPA|[ˈpɹɒd.ˌʌkt]}}, {{X-SAMPA|[&quot;pr\Qd.%Vkt]}}</li>
+<li> {{a|US}} {{IPA|[ˈpɹɑd.ˌʌkt]}}, {{X-SAMPA|[&quot;pr\Ad.%Vkt]}}</li>
 <li> {{audio|en-us-product.ogg|Audio (US)}}</li>
 </ul>
 </ul>
@@ -5842,7 +5842,7 @@ product:
 <li> {category theory} categorical product</li>
 <li> Any tangible or intangible good or service that is a result of a process and that is intended for delivery to a customer or end user.</li>
 <ul><li> {{quote-book|title=The future of retail banking in Europe|page=146|author=Oonagh McDonald|coauthors=Kevin Keasey|year=2002|passage=Product innovation is needed to meet changes in society and its requirements for particular types of banking <b>product</b>.}}</li>
-<li> {{quote-book|title=E-business and e-challenges|page=133|author=Veljko Milutinović|coauthors=Frédéric Patricelli|year=2002|passage=This sort of relationship can improve quality of transportation and can help in negotiations between transportation providers and transportation <b>product</b> users.}}</li>
+<li> {{quote-book|title=E-business and e-challenges|page=133|author=Veljko Milutinović|coauthors=Fr&eacute;d&eacute;ric Patricelli|year=2002|passage=This sort of relationship can improve quality of transportation and can help in negotiations between transportation providers and transportation <b>product</b> users.}}</li>
 <li> {{quote-book|title=Software project management for dummies|page=55|author=Teresa Luckey|coauthors=Joseph Phillips|year=2006|passage=You can't create a stellar software <b>product</b> unless you know what it is supposed to do. You must work with the stakeholders to create the <b>product</b> scope.}}</li>
 </ul>
 <li> The outcome or 'thingness' of an activity, especially in contrast to a process by which it was created or altered.</li>
@@ -5854,7 +5854,7 @@ product:
 </ol>
 
 <h4>Usage notes</h4>
-<ul><li> Adjectives often applied to "product": excellent, good, great, inferior, crappy, broken, defective, cheap, expensive, reliable, safe, dangerous, useful, valuable, useless, domestic, national, agricultural, industrial, financial.</li>
+<ul><li> Adjectives often applied to &quot;product&quot;: excellent, good, great, inferior, crappy, broken, defective, cheap, expensive, reliable, safe, dangerous, useful, valuable, useless, domestic, national, agricultural, industrial, financial.</li>
 </ul>
 
 <h4>Synonyms</h4>
@@ -5879,18 +5879,18 @@ product:
 </ul>
 
 <h4>See also</h4>
-<ul><li> multiplication: (multiplier) × (multiplicand) = (product)</li>
+<ul><li> multiplication: (multiplier) &times; (multiplicand) = (product)</li>
 </ul>
 ----
 ===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.
 <h3>Vowels</h3>
-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>| b<b>a</b>d, c<b>a</b>t, r<b>a</b>n|-align="center"| {{enPRchar|ăr}}| colspan="2" | {{IPAchar|æɹ}}| colspan="2" | <tt>{r\</tt>| c<b>arr</b>y|-align="center"| {{enPRchar|ā}}| colspan="2" | {{IPAchar|eɪ}}| colspan="2" | <tt>eI</tt>| b<b>ai</b>t, pl<b>ay</b>, s<b>a</b>me|-align="center"| {{enPRchar|ä}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>A:</tt>| <tt>A</tt>| f<b>a</b>ther|-align="center"| {{enPRchar|är}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| <tt>A:</tt>| <tt>Ar\</tt>| <b>ar</b>m, b<b>ar</b>d, <b>ar</b>ia|-align="center"| {{enPRchar|âr}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| <tt>E@</tt>| <tt>Er\</tt>| h<b>air</b>, p<b>ear</b>, th<b>ere</b>, sc<b>ar</b>y|-align="center"| {{enPRchar|ĕ}}| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan="2" | <tt>E</tt>| b<b>e</b>d, b<b>e</b>t, <b>e</b>nd|-align="center"| {{enPRchar|ĕr}}| colspan="2" | {{IPAchar|ɛɹ}}| colspan="2" | <tt>Er\</tt>| m<b>err</b>y|-align="center"| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| <tt>i:</tt>| <tt>i</tt>| <b>ea</b>se, s<b>ee</b>|-align="center"| {{enPRchar|ĭ}}| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan="2" | <tt>I</tt>| c<b>i</b>ty, b<b>i</b>t|-align="center"| {{enPRchar|i}}<ref>Not an AHD symbol. Often written as AHD <em>ē</em> in Wiktionary entries.</ref>| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan="2" | <tt>i</tt>| cit<b>y</b>, ver<b>y</b>, read<b>y</b>|-align="center"| {{enPRchar|ĭr}}| colspan="2" | {{IPAchar|ɪɹ}}| colspan="2" | <tt>Ir\</tt>| s<b>yr</b>up, S<b>ir</b>ius|-align="center"| {{enPRchar|ī}}| colspan="2" | {{IPAchar|aɪ}}| colspan="2" | <tt>aI</tt>| m<b>y</b>, r<b>i</b>se|-align="center"| {{enPRchar|îr}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| <tt>I@</tt>| <tt>Ir\</tt>| h<b>ere</b>, n<b>ear</b>, p<b>eer</b>, s<b>er</b>ious|-align="center"| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| <tt>Q</tt>| <tt>A</tt>| n<b>o</b>t|-align="center"| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| <tt>@U</tt>| <tt>oU</tt>| g<b>o</b>, h<b>o</b>pe, kn<b>ow</b>|-align="center"| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| <tt>O@</tt>| <tt>or\, Or\</tt>| h<b>oar</b>se, gl<b>or</b>y|-align="center"| {{enPRchar|ô}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| <tt>O:</tt>| <tt>O</tt>| l<b>aw</b>, c<b>au</b>ght, s<b>aw</b>|-align="center"| {{enPRchar|ôr}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| <tt>O:</tt>| <tt>Or\</tt>| h<b>or</b>se, m<b>ore</b>, l<b>aur</b>eate|-align="center"| {{enPRchar|oi}}| colspan="2" | {{IPAchar|ɔɪ}}| colspan="2" | <tt>OI</tt>| b<b>oy</b>, n<b>oi</b>se|-align="center"| {{enPRchar|o͝o, ŏŏ}}| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan="2" | <tt>U</tt>| p<b>u</b>t, f<b>oo</b>t|-align="center"| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| <tt>U@</tt>| <tt>Ur\</tt>| p<b>oor</b>, t<b>our</b>, t<b>our</b>ism|-align="center"| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| <tt>u:</tt>| <tt>u</tt>| l<b>o</b>se, s<b>oo</b>n, thr<b>ou</b>gh|-align="center"| {{enPRchar|ou}}| colspan="2" | {{IPAchar|aʊ}}| colspan="2" | <tt>aU</tt>| h<b>ou</b>se, n<b>ow</b>|-align="center"| {{enPRchar|ŭ}}| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan="2" | <tt>V</tt>| r<b>u</b>n, en<b>ou</b>gh, <b>u</b>p|-align="center"| {{enPRchar|ûr}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| <tt>3:</tt>| <tt>3`</tt>| f<b>ur</b>, b<b>ir</b>d|-align="center"| {{enPRchar|ə}}| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}| colspan="2" | <tt>@</tt>| <b>a</b>bout|-align="center"| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| <tt>@</tt>| <tt>@`</tt>| ent<b>er</b>|}<references/>
+The vowel table lists both monophthongs and diphthongs.{| {wikitable}! rowspan=&quot;2&quot; | enPR&lt;br/&gt;(AHD)! colspan=&quot;2&quot; | IPA! colspan=&quot;2&quot; | SAMPA! rowspan=&quot;2&quot; | Examples|-! RP! GA! RP! GA|-align=&quot;center&quot;| {{enPRchar|ă}}| colspan=&quot;2&quot; | {{IPAchar2|Near-open front unrounded vowel.ogg|&aelig;}}| colspan=&quot;2&quot; | &lt;tt&gt;{&lt;/tt&gt;| b<b>a</b>d, c<b>a</b>t, r<b>a</b>n|-align=&quot;center&quot;| {{enPRchar|ăr}}| colspan=&quot;2&quot; | {{IPAchar|&aelig;ɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;{r\&lt;/tt&gt;| c<b>arr</b>y|-align=&quot;center&quot;| {{enPRchar|ā}}| colspan=&quot;2&quot; | {{IPAchar|eɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;eI&lt;/tt&gt;| b<b>ai</b>t, pl<b>ay</b>, s<b>a</b>me|-align=&quot;center&quot;| {{enPRchar|&auml;}}| {{IPAchar|ɑː}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| &lt;tt&gt;A:&lt;/tt&gt;| &lt;tt&gt;A&lt;/tt&gt;| f<b>a</b>ther|-align=&quot;center&quot;| {{enPRchar|&auml;r}}| {{IPAchar|ɑː(ɹ)}}| {{IPAchar|ɑɹ}}| &lt;tt&gt;A:&lt;/tt&gt;| &lt;tt&gt;Ar\&lt;/tt&gt;| <b>ar</b>m, b<b>ar</b>d, <b>ar</b>ia|-align=&quot;center&quot;| {{enPRchar|&acirc;r}}| {{IPAchar|ɛə(ɹ)}}| {{IPAchar|ɛɹ}}| &lt;tt&gt;E@&lt;/tt&gt;| &lt;tt&gt;Er\&lt;/tt&gt;| h<b>air</b>, p<b>ear</b>, th<b>ere</b>, sc<b>ar</b>y|-align=&quot;center&quot;| {{enPRchar|ĕ}}| colspan=&quot;2&quot; | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}| colspan=&quot;2&quot; | &lt;tt&gt;E&lt;/tt&gt;| b<b>e</b>d, b<b>e</b>t, <b>e</b>nd|-align=&quot;center&quot;| {{enPRchar|ĕr}}| colspan=&quot;2&quot; | {{IPAchar|ɛɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;Er\&lt;/tt&gt;| m<b>err</b>y|-align=&quot;center&quot;| {{enPRchar|ē}}| {{IPAchar|iː}}| {{IPAchar2|Close front unrounded vowel.ogg|i}}| &lt;tt&gt;i:&lt;/tt&gt;| &lt;tt&gt;i&lt;/tt&gt;| <b>ea</b>se, s<b>ee</b>|-align=&quot;center&quot;| {{enPRchar|ĭ}}| colspan=&quot;2&quot; | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;I&lt;/tt&gt;| c<b>i</b>ty, b<b>i</b>t|-align=&quot;center&quot;| {{enPRchar|i}}&lt;ref&gt;Not an AHD symbol. Often written as AHD <em>ē</em> in Wiktionary entries.&lt;/ref&gt;| colspan=&quot;2&quot; | {{IPAchar2|Close front unrounded vowel.ogg|i}}| colspan=&quot;2&quot; | &lt;tt&gt;i&lt;/tt&gt;| cit<b>y</b>, ver<b>y</b>, read<b>y</b>|-align=&quot;center&quot;| {{enPRchar|ĭr}}| colspan=&quot;2&quot; | {{IPAchar|ɪɹ}}| colspan=&quot;2&quot; | &lt;tt&gt;Ir\&lt;/tt&gt;| s<b>yr</b>up, S<b>ir</b>ius|-align=&quot;center&quot;| {{enPRchar|ī}}| colspan=&quot;2&quot; | {{IPAchar|aɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;aI&lt;/tt&gt;| m<b>y</b>, r<b>i</b>se|-align=&quot;center&quot;| {{enPRchar|&icirc;r}}| {{IPAchar|ɪə(ɹ)}}| {{IPAchar|ɪɹ}}| &lt;tt&gt;I@&lt;/tt&gt;| &lt;tt&gt;Ir\&lt;/tt&gt;| h<b>ere</b>, n<b>ear</b>, p<b>eer</b>, s<b>er</b>ious|-align=&quot;center&quot;| {{enPRchar|ŏ}}| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}| &lt;tt&gt;Q&lt;/tt&gt;| &lt;tt&gt;A&lt;/tt&gt;| n<b>o</b>t|-align=&quot;center&quot;| {{enPRchar|ō}}| {{IPAchar|əʊ}}| {{IPAchar|oʊ}}| &lt;tt&gt;@U&lt;/tt&gt;| &lt;tt&gt;oU&lt;/tt&gt;| g<b>o</b>, h<b>o</b>pe, kn<b>ow</b>|-align=&quot;center&quot;| {{enPRchar|ōr}}| {{IPAchar|ɔə(ɹ)}}| {{IPAchar|oɹ, ɔɹ}}| &lt;tt&gt;O@&lt;/tt&gt;| &lt;tt&gt;or\, Or\&lt;/tt&gt;| h<b>oar</b>se, gl<b>or</b>y|-align=&quot;center&quot;| {{enPRchar|&ocirc;}}| {{IPAchar|ɔː}}| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}| &lt;tt&gt;O:&lt;/tt&gt;| &lt;tt&gt;O&lt;/tt&gt;| l<b>aw</b>, c<b>au</b>ght, s<b>aw</b>|-align=&quot;center&quot;| {{enPRchar|&ocirc;r}}| {{IPAchar|ɔː(ɹ)}}| {{IPAchar|ɔɹ}}| &lt;tt&gt;O:&lt;/tt&gt;| &lt;tt&gt;Or\&lt;/tt&gt;| h<b>or</b>se, m<b>ore</b>, l<b>aur</b>eate|-align=&quot;center&quot;| {{enPRchar|oi}}| colspan=&quot;2&quot; | {{IPAchar|ɔɪ}}| colspan=&quot;2&quot; | &lt;tt&gt;OI&lt;/tt&gt;| b<b>oy</b>, n<b>oi</b>se|-align=&quot;center&quot;| {{enPRchar|o͝o, ŏŏ}}| colspan=&quot;2&quot; | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}| colspan=&quot;2&quot; | &lt;tt&gt;U&lt;/tt&gt;| p<b>u</b>t, f<b>oo</b>t|-align=&quot;center&quot;| {{enPRchar|o͝or, ŏŏr}}| {{IPAchar|ʊə(ɹ)}}| {{IPAchar|ʊɹ}}| &lt;tt&gt;U@&lt;/tt&gt;| &lt;tt&gt;Ur\&lt;/tt&gt;| p<b>oor</b>, t<b>our</b>, t<b>our</b>ism|-align=&quot;center&quot;| {{enPRchar|o͞o, ōō}}| {{IPAchar|uː}}| {{IPAchar2|Close back rounded vowel.ogg|u}}| &lt;tt&gt;u:&lt;/tt&gt;| &lt;tt&gt;u&lt;/tt&gt;| l<b>o</b>se, s<b>oo</b>n, thr<b>ou</b>gh|-align=&quot;center&quot;| {{enPRchar|ou}}| colspan=&quot;2&quot; | {{IPAchar|aʊ}}| colspan=&quot;2&quot; | &lt;tt&gt;aU&lt;/tt&gt;| h<b>ou</b>se, n<b>ow</b>|-align=&quot;center&quot;| {{enPRchar|ŭ}}| colspan=&quot;2&quot; | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}| colspan=&quot;2&quot; | &lt;tt&gt;V&lt;/tt&gt;| r<b>u</b>n, en<b>ou</b>gh, <b>u</b>p|-align=&quot;center&quot;| {{enPRchar|&ucirc;r}}| {{IPAchar|ɜː(ɹ)}}| {{IPAchar|ɝ}}| &lt;tt&gt;3:&lt;/tt&gt;| &lt;tt&gt;3`&lt;/tt&gt;| f<b>ur</b>, b<b>ir</b>d|-align=&quot;center&quot;| {{enPRchar|ə}}| colspan=&quot;2&quot; | {{IPAchar2|Schwa.ogg|ə}}| colspan=&quot;2&quot; | &lt;tt&gt;@&lt;/tt&gt;| <b>a</b>bout|-align=&quot;center&quot;| {{enPRchar|ər}}| {{IPAchar|ə(ɹ)}}| {{IPAchar|ɚ}}| &lt;tt&gt;@&lt;/tt&gt;| &lt;tt&gt;@`&lt;/tt&gt;| ent<b>er</b>|}&lt;references/&gt;
 <h3>Consonants</h3>
-{| {wikitable}! enPR<br>(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| <tt>b</tt>| <b>b</b>ut, a<b>b</b>le, ca<b>b</b>, wo<b>bb</b>le, e<b>bb</b>|-| {{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>| <b>ch</b>at, tea<b>ch</b>er, in<b>ch</b>, ca<b>tch</b>, na<b>t</b>ure|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| <tt>d</tt>| <b>d</b>ot, i<b>d</b>ea, no<b>d</b>, fo<b>dd</b>er, o<b>dd</b>|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| <tt>f</tt>| <b>f</b>an, le<b>f</b>t, lea<b>f</b>, enou<b>gh</b>, <b>ph</b>ase, gra<b>ph</b>ic, epita<b>ph</b>|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}| <tt>g</tt>| <b>g</b>et, ma<b>g</b>net, ba<b>g</b>|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| <tt>h</tt>| <b>h</b>am|-| {{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>| <b>wh</b>ich|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />| <tt>dZ</tt>| <b>j</b>oy, a<b>j</b>ar, <b>g</b>in, a<b>g</b>ile, a<b>ge</b>, e<b>dge</b>|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| <tt>k</tt>| <b>c</b>at, <b>k</b>it, <b>q</b>ueen, pi<b>que</b>, <b>ch</b>oir, a<b>ch</b>e, ta<b>ck</b>|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| <tt>x</tt>| (<em>Scottish</em>) lo<b>ch</b>|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| <tt>l</tt>| <b>l</b>eft (<em>before vowel of syllable</em>)|-| {{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>| litt<b>le</b>|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| <tt>m</tt>| <b>m</b>an, ani<b>m</b>al, hi<b>m</b>|-| {{enPRchar|m}}| {{IPAchar|m̩ (əm)}}<ref name="cons"/>| <tt>m=</tt>| spas<b>m</b>, pris<b>m</b>|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| <tt>n</tt>| <b>n</b>ote, a<b>n</b>t, pa<b>n</b>|-| {{enPRchar|n}}| {{IPAchar|n̩ (ən)}}<ref name="cons"/>| <tt>n=</tt>| hidd<b>en</b>|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| <tt>N</tt>| si<b>ng</b>er, ri<b>ng</b>|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| <tt>p</tt>| <b>p</b>en, s<b>p</b>in, to<b>p</b>, a<b>pp</b>le|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>| <tt>r\</tt>| <b>r</b>un, ve<b>r</b>y|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| <tt>s</tt>| <b>s</b>et, li<b>s</b>t, pa<b>ss</b>, <b>c</b>ity, i<b>ce</b>|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| <tt>S</tt>| <b>sh</b>e, a<b>sh</b>, <b>s</b>ure, ra<b>t</b>ion|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| <tt>t</tt>| <b>t</b>on, s<b>t</b>ab, ma<b>t</b>, a<b>tt</b>end, bu<b>tt</b>, ou<b>ght</b>|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| <tt>T</tt>| <b>th</b>in, no<b>th</b>ing, mo<b>th</b>|-| {{enPRchar|<em>th</em>}}| {{IPAchar2|voiced dental fricative.ogg|ð}}| <tt>D</tt>| <b>th</b>is, fa<b>th</b>er, clo<b>the</b>|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| <tt>v</tt>| <b>v</b>oice, na<b>v</b>el, sa<b>ve</b>, o<b>f</b>|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| <tt>w</tt>| <b>w</b>et|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| <tt>j</tt>| <b>y</b>es|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| <tt>z</tt>| <b>z</b>oo, qui<b>z</b>, fu<b>zz</b>, ro<b>s</b>e, <b>x</b>ylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| <tt>Z</tt>| vi<b>s</b>ion, trea<b>s</b>ure, bei<b>ge</b>|}<references/>
+{| {wikitable}! enPR&lt;br&gt;(AHD)! IPA! SAMPA! Examples|-| {{enPRchar|b}}| {{IPAchar2|Voiced bilabial plosive.ogg|b}}| &lt;tt&gt;b&lt;/tt&gt;| <b>b</b>ut, a<b>b</b>le, ca<b>b</b>, wo<b>bb</b>le, e<b>bb</b>|-| {{enPRchar|ch}}| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}&lt;ref name=tiebar&gt;May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}&lt;/ref&gt;| &lt;tt&gt;tS&lt;/tt&gt;| <b>ch</b>at, tea<b>ch</b>er, in<b>ch</b>, ca<b>tch</b>, na<b>t</b>ure|-| {{enPRchar|d}}| {{IPAchar2|Voiced alveolar plosive.ogg|d}}| &lt;tt&gt;d&lt;/tt&gt;| <b>d</b>ot, i<b>d</b>ea, no<b>d</b>, fo<b>dd</b>er, o<b>dd</b>|-| {{enPRchar|f}}| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}| &lt;tt&gt;f&lt;/tt&gt;| <b>f</b>an, le<b>f</b>t, lea<b>f</b>, enou<b>gh</b>, <b>ph</b>ase, gra<b>ph</b>ic, epita<b>ph</b>|-| {{enPRchar|g}}| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}| &lt;tt&gt;g&lt;/tt&gt;| <b>g</b>et, ma<b>g</b>net, ba<b>g</b>|-| {{enPRchar|h}}|{{IPAchar2|Voiceless glottal fricative.ogg|h}}| &lt;tt&gt;h&lt;/tt&gt;| <b>h</b>am|-| {{enPRchar|hw}}| {{IPAchar2|voiceless labio-velar fricative.ogg|ʍ (hw)}}&lt;ref&gt;Phonologists may deny that {{IPAchar|/ʍ/}} is a distinct phoneme, and instead use {{IPAchar|/hw/}}.&lt;/ref&gt;| &lt;tt&gt;W&lt;/tt&gt;| <b>wh</b>ich|-| {{enPRchar|j}}| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}&lt;ref name=tiebar /&gt;| &lt;tt&gt;dZ&lt;/tt&gt;| <b>j</b>oy, a<b>j</b>ar, <b>g</b>in, a<b>g</b>ile, a<b>ge</b>, e<b>dge</b>|-| {{enPRchar|k}}| {{IPAchar2|Voiceless velar plosive.ogg|k}}| &lt;tt&gt;k&lt;/tt&gt;| <b>c</b>at, <b>k</b>it, <b>q</b>ueen, pi<b>que</b>, <b>ch</b>oir, a<b>ch</b>e, ta<b>ck</b>|-| {{enPRchar|ᴋʜ}}| {{IPAchar2|voiceless velar fricative.ogg|x}}| &lt;tt&gt;x&lt;/tt&gt;| (<em>Scottish</em>) lo<b>ch</b>|-| {{enPRchar|l}}| {{IPAchar2|Alveolar lateral approximant.ogg|l}}| &lt;tt&gt;l&lt;/tt&gt;| <b>l</b>eft (<em>before vowel of syllable</em>)|-| {{enPRchar|l}}| {{IPAchar|l̩ (əl)}}&lt;ref name=&quot;cons&quot;&gt;Phonologists may deny that {{IPAchar|/l̩, n̩, m̩/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.&lt;/ref&gt;| &lt;tt&gt;l=&lt;/tt&gt;| litt<b>le</b>|-| {{enPRchar|m}}| {{IPAchar2|Bilabial nasal.ogg|m}}| &lt;tt&gt;m&lt;/tt&gt;| <b>m</b>an, ani<b>m</b>al, hi<b>m</b>|-| {{enPRchar|m}}| {{IPAchar|m̩ (əm)}}&lt;ref name=&quot;cons&quot;/&gt;| &lt;tt&gt;m=&lt;/tt&gt;| spas<b>m</b>, pris<b>m</b>|-| {{enPRchar|n}}| {{IPAchar2|Alveolar nasal.ogg|n}}| &lt;tt&gt;n&lt;/tt&gt;| <b>n</b>ote, a<b>n</b>t, pa<b>n</b>|-| {{enPRchar|n}}| {{IPAchar|n̩ (ən)}}&lt;ref name=&quot;cons&quot;/&gt;| &lt;tt&gt;n=&lt;/tt&gt;| hidd<b>en</b>|-| {{enPRchar|ng}}| {{IPAchar2|Retroflex nasal.ogg|ŋ}}| &lt;tt&gt;N&lt;/tt&gt;| si<b>ng</b>er, ri<b>ng</b>|-| {{enPRchar|p}}| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}| &lt;tt&gt;p&lt;/tt&gt;| <b>p</b>en, s<b>p</b>in, to<b>p</b>, a<b>pp</b>le|-| {{enPRchar|r}}| {{IPAchar2|Alveolar approximant.ogg|ɹ}}&lt;ref&gt;Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.&lt;/ref&gt;| &lt;tt&gt;r\&lt;/tt&gt;| <b>r</b>un, ve<b>r</b>y|-| {{enPRchar|s}}| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}| &lt;tt&gt;s&lt;/tt&gt;| <b>s</b>et, li<b>s</b>t, pa<b>ss</b>, <b>c</b>ity, i<b>ce</b>|-| {{enPRchar|sh}}| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}| &lt;tt&gt;S&lt;/tt&gt;| <b>sh</b>e, a<b>sh</b>, <b>s</b>ure, ra<b>t</b>ion|-| {{enPRchar|t}}| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}| &lt;tt&gt;t&lt;/tt&gt;| <b>t</b>on, s<b>t</b>ab, ma<b>t</b>, a<b>tt</b>end, bu<b>tt</b>, ou<b>ght</b>|-| {{enPRchar|th}}| {{IPAchar2|Voiceless dental fricative.ogg|θ}}| &lt;tt&gt;T&lt;/tt&gt;| <b>th</b>in, no<b>th</b>ing, mo<b>th</b>|-| {{enPRchar|<em>th</em>}}| {{IPAchar2|voiced dental fricative.ogg|&eth;}}| &lt;tt&gt;D&lt;/tt&gt;| <b>th</b>is, fa<b>th</b>er, clo<b>the</b>|-| {{enPRchar|v}}| {{IPAchar2|Voiced labiodental fricative.ogg|v}}| &lt;tt&gt;v&lt;/tt&gt;| <b>v</b>oice, na<b>v</b>el, sa<b>ve</b>, o<b>f</b>|-| {{enPRchar|w}}| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}| &lt;tt&gt;w&lt;/tt&gt;| <b>w</b>et|-| {{enPRchar|y}}| {{IPAchar2|Palatal approximant.ogg|j}}| &lt;tt&gt;j&lt;/tt&gt;| <b>y</b>es|-| {{enPRchar|z}}| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}| &lt;tt&gt;z&lt;/tt&gt;| <b>z</b>oo, qui<b>z</b>, fu<b>zz</b>, ro<b>s</b>e, <b>x</b>ylem|-| {{enPRchar|zh}}| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}| &lt;tt&gt;Z&lt;/tt&gt;| vi<b>s</b>ion, trea<b>s</b>ure, bei<b>ge</b>|}&lt;references/&gt;
 <h3>Other symbols</h3>
-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|}<b>Note:</b> The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme.
+A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. {| {wikitable}! enPR&lt;br&gt;(AHD)! IPA! SAMPA! Indicates|-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)| &lt;tt&gt;&quot;&lt;/tt&gt; (&lt;tt&gt;&quot;&lt;/tt&gt;a)| primary stress|-| {{enPRchar|'}} (a{{enPRchar|'}})| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)| &lt;tt&gt;%&lt;/tt&gt; (&lt;tt&gt;%&lt;/tt&gt;a)| secondary stress, sometimes tertiary stress|-| a{{enPRchar|-}}a| a{{IPAchar|.}}a| a&lt;tt&gt;.&lt;/tt&gt;a| division between syllables|}<b>Note:</b> 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:
 
 <h3>Noun</h3>
@@ -5911,7 +5911,7 @@ pumpkin:
 <h3>Etymology</h3>
 From {{etyl|frm}} {{term|pompon|lang=frm}}, from {{etyl|la}} {{term|pepo|pepō|lang=la}}, from {{etyl|grc}} {{term|πέπων|large melon|tr=pepōn|lang=grc}}, from {{term|πέπων|ripe|tr=pepōn|lang=grc}}, from {{term|πέπτω|ripen|tr=peptō|lang=grc}}.
 <h3>Pronunciation</h3>
-<ul><li> {{enPR|pŭmpʹkin}}, {{IPA|/ˈpʌmpkɪn/}}, {{X-SAMPA|/"pVmpkin/}}</li>
+<ul><li> {{enPR|pŭmpʹkin}}, {{IPA|/ˈpʌmpkɪn/}}, {{X-SAMPA|/&quot;pVmpkin/}}</li>
 <li> {{audio|en-us-pumpkin.ogg|Audio (US)}}</li>
 </ul>
 
@@ -5944,7 +5944,7 @@ Category:en:ColorsCategory:en:Terms of endearmentcs:pumpkinde:pumpkinet:pumpkine
 quid pro quo:
 {{was wotd|2009|August|17}}{rfc}
 <h3>Etymology</h3>
-From {{etyl|la|en}} : "what for what" . See quid, pro, and quo
+From {{etyl|la|en}} : &quot;what for what&quot; . See quid, pro, and quo
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK}} {{IPA|/ˌkwɪd.pɹəʊˈkwəʊ/}}</li>
 <li> {{a|US}} {{IPA|/ˌkwɪd.pɹoʊˈkwoʊ/}}</li>
@@ -5957,7 +5957,7 @@ From {{etyl|la|en}} : "what for what" . See quid, pro, and quo
 <ul><li> The misunderstanding of the word or the <b>quid pro quo</b> is the unintentional pun, and is related to it exactly as folly is to wit.</li>
 </ul>
 <li> <b>1912</b>, Fyodor Dostoevsky, translated by Constance Garnett, <em>The Brothers Karamazov</em>, part II, book V, chapter 5:</li>
-<ul><li> &ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &mdash; some impossible <b>quid pro quo</b>?&rdquo;</li>
+<ul><li> &amp;ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &amp;mdash; some impossible <b>quid pro quo</b>?&amp;rdquo;</li>
 </ul>
 </ul>
 <li> {legal} This for that; giving something to receive something else ; something equivalent ; something in return.</li>
@@ -5989,7 +5989,7 @@ Category:English borrowed termsda:quid pro quode:quid pro quoet:quid pro quofr:q
 quid pro quo:
 {{was wotd|2009|August|17}}{rfc}
 <h3>Etymology</h3>
-From {{etyl|la|en}} : "what for what" . See quid, pro, and quo
+From {{etyl|la|en}} : &quot;what for what&quot; . See quid, pro, and quo
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK}} {{IPA|/ˌkwɪd.pɹəʊˈkwəʊ/}}</li>
 <li> {{a|US}} {{IPA|/ˌkwɪd.pɹoʊˈkwoʊ/}}</li>
@@ -6002,7 +6002,7 @@ From {{etyl|la|en}} : "what for what" . See quid, pro, and quo
 <ul><li> The misunderstanding of the word or the <b>quid pro quo</b> is the unintentional pun, and is related to it exactly as folly is to wit.</li>
 </ul>
 <li> <b>1912</b>, Fyodor Dostoevsky, translated by Constance Garnett, <em>The Brothers Karamazov</em>, part II, book V, chapter 5:</li>
-<ul><li> &ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &mdash; some impossible <b>quid pro quo</b>?&rdquo;</li>
+<ul><li> &amp;ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &amp;mdash; some impossible <b>quid pro quo</b>?&amp;rdquo;</li>
 </ul>
 </ul>
 <li> {legal} This for that; giving something to receive something else ; something equivalent ; something in return.</li>
@@ -6052,13 +6052,13 @@ cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and
 raven:
 {wikipedia}A raven (bird).
 <h3>Pronunciation</h3>
-<ul><li> {{enPR|rāʹvən}}, {{IPA|/ˈreɪvən/}}, {{X-SAMPA|/"reIv@n/}}</li>
+<ul><li> {{enPR|rāʹvən}}, {{IPA|/ˈreɪvən/}}, {{X-SAMPA|/&quot;reIv@n/}}</li>
 <li> {{audio|en-us-raven.ogg|Audio (US)}}</li>
 <li> {{rhymes|eɪvən}}</li>
 </ul>
 
 <h3>Etymology 1</h3>
-{{etyl|ang}} {{term|hræfn|lang=ang}}, from {{proto|Germanic|hrabnaz}} (compare {{etyl|nl|-}} {{term|raaf|lang=nl}}, {{etyl|de|-}} {{term|Rabe|lang=de}}, {{etyl|da|-}} {{term|ravn|lang=da}}), from {{proto|Indo-European|ḱorh₂-}} (compare {{etyl|mga|-}} {{term|crú|lang=mga}}, {{etyl|la|-}}  {{term|corvus|lang=la}}, {{etyl|lt|-}} {{term|šárka|lang=lt}} ‘magpie’, Serbo-Croatian {{term|svrȁka}} ‘id.’, {{etyl|grc|-}} {{term|κόραξ|tr=kórax|sc=polytonic|lang=grc}}), from {{proto|Indo-European|ḱer|ḱor|title=}} (compare {{etyl|la|-}} {{term|crepare|lang=la}} ‘to creak, crack’, {{etyl|sa|-}} {{term|kṛ́patē}} ‘he laments, implores’).
+{{etyl|ang}} {{term|hr&aelig;fn|lang=ang}}, from {{proto|Germanic|hrabnaz}} (compare {{etyl|nl|-}} {{term|raaf|lang=nl}}, {{etyl|de|-}} {{term|Rabe|lang=de}}, {{etyl|da|-}} {{term|ravn|lang=da}}), from {{proto|Indo-European|ḱorh₂-}} (compare {{etyl|mga|-}} {{term|cr&uacute;|lang=mga}}, {{etyl|la|-}}  {{term|corvus|lang=la}}, {{etyl|lt|-}} {{term|š&aacute;rka|lang=lt}} ‘magpie’, Serbo-Croatian {{term|svrȁka}} ‘id.’, {{etyl|grc|-}} {{term|κόραξ|tr=k&oacute;rax|sc=polytonic|lang=grc}}), from {{proto|Indo-European|ḱer|ḱor|title=}} (compare {{etyl|la|-}} {{term|crepare|lang=la}} ‘to creak, crack’, {{etyl|sa|-}} {{term|kṛ́patē}} ‘he laments, implores’).
 <h4>Noun</h4>
 {en-noun}
 <ol><li> A common name for several, generally large and lustrous black species of birds in the genus <em>Corvus</em>, especially the common raven, <em>Corvus corax</em>.</li>
@@ -6082,8 +6082,8 @@ raven:
 <h3>Etymology 2</h3>
 From {{etyl|fro}} {{term|raviner|rush, seize by force|lang=fro}}, itself from {{term|ravine|rapine|lang=fro}}, from {{etyl|la}} {{term|rapina|plundering, loot|lang=la}}, itself from {{term|rapere|seize, plunder, abduct|lang=la}}
 <h4>Pronunciation</h4>
-<ul><li> {{enPR|răvʹən}}, {{IPA|/ˈrævən/}}, {{X-SAMPA|/"r{v@n/}}</li>
-<li> {{rhymes|ævən}}</li>
+<ul><li> {{enPR|răvʹən}}, {{IPA|/ˈr&aelig;vən/}}, {{X-SAMPA|/&quot;r{v@n/}}</li>
+<li> {{rhymes|&aelig;vən}}</li>
 </ul>
 
 <h4>Noun</h4>
@@ -6118,7 +6118,7 @@ From {{etyl|fro}} {{term|raviner|rush, seize by force|lang=fro}}, itself from {{
 
 <h3>References</h3>
 <ul><li> {R:Webster NCD 1967}</li>
-<li> {R:Online Etymology Dictionary} [http://www.etymonline.com/index.php?search=raven&searchmode=none]</li>
+<li> {R:Online Etymology Dictionary} [http://www.etymonline.com/index.php?search=raven&amp;searchmode=none]</li>
 </ul>
 
 <h3>Anagrams</h3>
@@ -6149,17 +6149,17 @@ et:grain of saltid:grain of salt
 Saturday:
 
 <h3>Etymology</h3>
-{{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}}
+{{etyl|ang}} {{term|s&aelig;ternd&aelig;g|S&aelig;ternesd&aelig;g|day of Saturn}}, from {{term|S&aelig;tern|Saturn}}, from {{etyl|la}} {{term|Saturnus|the god of agriculture}}, possibly from Etruscan, + {{etyl|ang}} {{term|d&aelig;g|day}}; a translation of {{etyl|la}} {{term|dies Saturni}}
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˈsætədeɪ/}}, {{X-SAMPA|/"s{t@deI/}} <em>or</em> {{IPA|/ˈsætədi/}}, {{X-SAMPA|/"s{t@di/}}</li>
-<li> {{a|US}} {{enPR|săʹtər-dā}}, {{IPA|/ˈsætɚdeɪ/}}, {{X-SAMPA|/"s{t@`deI/}} <em>or</em> {{enPR|săʹtər-di}}, {{IPA|/ˈsætɚdi/}}, {{X-SAMPA|/"s{t@`di/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˈs&aelig;tədeɪ/}}, {{X-SAMPA|/&quot;s{t@deI/}} <em>or</em> {{IPA|/ˈs&aelig;tədi/}}, {{X-SAMPA|/&quot;s{t@di/}}</li>
+<li> {{a|US}} {{enPR|săʹtər-dā}}, {{IPA|/ˈs&aelig;tɚdeɪ/}}, {{X-SAMPA|/&quot;s{t@`deI/}} <em>or</em> {{enPR|săʹtər-di}}, {{IPA|/ˈs&aelig;tɚdi/}}, {{X-SAMPA|/&quot;s{t@`di/}}</li>
 <li> {{audio|en-us-Saturday.ogg|Audio (US)}}</li>
 <li> {{audio|En-uk-Saturday.ogg|Audio (UK)}}</li>
 </ul>
 
 <h3>Noun</h3>
 {{en-noun|Saturdays}}
-<ol><li> The seventh day of the week in many religious traditions, and the sixth day of the week in systems using the ISO 8601 norm; the Biblical seventh day of the week, observed as Sabbath or "Day of Rest"; it follows Friday and precedes Sunday.</li>
+<ol><li> The seventh day of the week in many religious traditions, and the sixth day of the week in systems using the ISO 8601 norm; the Biblical seventh day of the week, observed as Sabbath or &quot;Day of Rest&quot;; it follows Friday and precedes Sunday.</li>
 </ol>
 
 <h4>Derived terms</h4>
@@ -6202,7 +6202,7 @@ af:Saturdayar:Saturdayast:Saturdayaz:Saturdaycs:Saturdaycy:Saturdayda:Saturdayde
 semantics:
 {wikipedia}
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/sɪˈmæntɪks/}}</li>
+<ul><li> {{IPA|/sɪˈm&aelig;ntɪks/}}</li>
 </ul>
 
 <h3>Noun</h3>
@@ -6211,8 +6211,8 @@ semantics:
 <ul><li> <b><em>Semantics</b> is a foundation of lexicography.</em></li>
 </ul>
 <li> The study of the relationship between words and their meanings.</li>
-<ul><li> <b>2006</b>, Patrick Blackburn · Johan Bos · Kristina Striegnitz, <em>[http://www.learnprolognow.org/lpnpage.php?pagetype=html&pageid=lpn-htmlse32 Learn Prolog Now!]</em>, &sect;8.1</li>
-<ul><li> <em>Extra arguments can also be used to build semantic representations. Now, we did not say anything about what the words in our little DCG mean. In fact, nowadays a lot is known about the semantics of natural languages, and it is surprisingly easy to build semantic representations which partially capture the meaning of sentences or even entire discourses. Such representations are usually expressions of some formal language (for example first-order logic, discourse representation structures, or a database query language) and they are usually built up compositionally. That is, the meaning of each word is expressed in the formal language; this meaning is given as an extra argument in the DCG entries for the individual words. Then, for each rule in the grammar, an extra argument shows how to combine the meaning of the two subcomponents. For example, to the rule s  -->  np,  vp we would add an extra argument stating how to combine the np meaning and the vp meaning to form the s meaning. Although somewhat more complex, the semantic construction process is quite like the way we built up the parse tree for the sentence from the parse tree of its subparts.<sup>1</sup></em></li>
+<ul><li> <b>2006</b>, Patrick Blackburn &middot; Johan Bos &middot; Kristina Striegnitz, <em>[http://www.learnprolognow.org/lpnpage.php?pagetype=html&amp;pageid=lpn-htmlse32 Learn Prolog Now!]</em>, &amp;sect;8.1</li>
+<ul><li> <em>Extra arguments can also be used to build semantic representations. Now, we did not say anything about what the words in our little DCG mean. In fact, nowadays a lot is known about the semantics of natural languages, and it is surprisingly easy to build semantic representations which partially capture the meaning of sentences or even entire discourses. Such representations are usually expressions of some formal language (for example first-order logic, discourse representation structures, or a database query language) and they are usually built up compositionally. That is, the meaning of each word is expressed in the formal language; this meaning is given as an extra argument in the DCG entries for the individual words. Then, for each rule in the grammar, an extra argument shows how to combine the meaning of the two subcomponents. For example, to the rule s  --&gt;  np,  vp we would add an extra argument stating how to combine the np meaning and the vp meaning to form the s meaning. Although somewhat more complex, the semantic construction process is quite like the way we built up the parse tree for the sentence from the parse tree of its subparts.&lt;sup&gt;1&lt;/sup&gt;</em></li>
 </ul>
 </ul>
 <li> The individual meanings of words, as opposed to the overall meaning of a passage.</li>
@@ -6262,8 +6262,8 @@ September:
 <h3>Etymology</h3>
 Late {{etyl|ang}}, {{etyl|la}} {{term|september|seventh month|lang=la}}, from Latin {{term|septem|seven|lang=la}}, from {{proto|Indo-European|septḿ̥|seven}}; September was the seventh month in the Roman calendar.
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/sɛpˈtɛmbə/}}, {{X-SAMPA|/sEp"tEmb@/}}</li>
-<li> {{a|US}} {{enPR|sĕp-tĕmʹbər}} {{IPA|/sɛpˈtɛmbəɹ/}}, {{X-SAMPA|/sEp"tEmb@r/}}</li>
+<ul><li> {{a|UK}} {{IPA|/sɛpˈtɛmbə/}}, {{X-SAMPA|/sEp&quot;tEmb@/}}</li>
+<li> {{a|US}} {{enPR|sĕp-tĕmʹbər}} {{IPA|/sɛpˈtɛmbəɹ/}}, {{X-SAMPA|/sEp&quot;tEmb@r/}}</li>
 <li> {{audio|en-us-September.ogg|Audio (US)}}</li>
 <li> {{rhymes|ɛmbə(r)}}</li>
 </ul>
@@ -6327,17 +6327,17 @@ Late {{etyl|ang}}, {{etyl|la}} {{term|september|seventh month|lang=la}}, from La
 sesquipedalianism:
 
 <h3>Etymology</h3>
-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 <em>A New and Copious Lexicon of the Latin Language</em>, Compiled Chiefly from the Magnum Totius Latinitatis Lexicon of Facciolati and Forcellini, and the German Works of Scheller and Luenemann<em>, edited by F. P. Leverett, Wilkins, Carter & Co., Boston, 1849.</ref>
+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}}.&lt;ref&gt;From <em>A New and Copious Lexicon of the Latin Language</em>, Compiled Chiefly from the Magnum Totius Latinitatis Lexicon of Facciolati and Forcellini, and the German Works of Scheller and Luenemann<em>, edited by F. P. Leverett, Wilkins, Carter &amp; Co., Boston, 1849.&lt;/ref&gt;
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/sɛz.kwɪ.pəˈdɛl.i.ən.ɪsm̩/}}, {{X-SAMPA|1=/sEz.kwI.p@"dEk.i.@n.Ism=/}}</li>
-<li> {{a|US}} {{IPA|/ˌʃɛs.kwɪ.pɛˈdɑɫ.i.ɑn.ɪsm̩/}}, {{X-SAMPA|[%SEs.kwI.pE."dA5.i.An.Is'm]}}</li>
+<ul><li> {{a|UK}} {{IPA|/sɛz.kwɪ.pəˈdɛl.i.ən.ɪsm̩/}}, {{X-SAMPA|1=/sEz.kwI.p@&quot;dEk.i.@n.Ism=/}}</li>
+<li> {{a|US}} {{IPA|/ˌʃɛs.kwɪ.pɛˈdɑɫ.i.ɑn.ɪsm̩/}}, {{X-SAMPA|[%SEs.kwI.pE.&quot;dA5.i.An.Is'm]}}</li>
 <li> {{audio|en-us-sesquipedalianism.ogg|Audio (US)}}</li>
 </ul>
 
 <h3>Noun</h3>
 {en-noun}
 <ol><li> {uncountable} The practice of using long, sometimes obscure, words in speech or writing.</li>
-<ul><li> {{quote-book|year=1995|author=Michael Cart|title=From Romance to Realism|isbn=0060242892|page=257|passage=His voice here is a marvelous juxtaposition of cool elegance, unaffected hipness, unabashed <b>sesquipedalianism</b> ("the rich bouquet of exuded sebaceousness") and swell conversational slang (...)}}</li>
+<ul><li> {{quote-book|year=1995|author=Michael Cart|title=From Romance to Realism|isbn=0060242892|page=257|passage=His voice here is a marvelous juxtaposition of cool elegance, unaffected hipness, unabashed <b>sesquipedalianism</b> (&quot;the rich bouquet of exuded sebaceousness&quot;) and swell conversational slang (...)}}</li>
 </ul>
 <li> {countable} A very long word.</li>
 </ol>
@@ -6350,7 +6350,7 @@ Surface form analyzed as {{suffix|sesquipedalian|ism}}, from {{prefix|sesqui|ped
 </ul>
 
 <h4>References</h4>
-<references/>et:sesquipedalianism
+&lt;references/&gt;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 <em>A New English Dictionary on Historical Principles</em> 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].
@@ -6374,7 +6374,7 @@ freedom of speech:
 <li> {{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 <b>freedom of speech</b> more muscle than the First Amendment does. It may already have become literally impossible for a government to shut people up.}}</li>
 </ul>
 <li> {{&lit|freedom|speech}}</li>
-<ul><li> {{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 <b>freedom of speech</b> to freedom of thought. And therefore it is a good shrewd Proverb of the <em>Spaniard, Tell a lye, and find a Troth</em>; as if there were no way of discovery, but by <em>Simulation</em>.|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}}</li>
+<ul><li> {{quote-book|chapter=Of Simulation and Dissimulation|year=1625|title=The essays, or Counsels, civil &amp; 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 <b>freedom of speech</b> to freedom of thought. And therefore it is a good shrewd Proverb of the <em>Spaniard, Tell a lye, and find a Troth</em>; as if there were no way of discovery, but by <em>Simulation</em>.|url=http://books.google.com/books?id=xjQCAAAAQAAJ&amp;pg=PA20&amp;dq=%22freedom+of+speech%22&amp;hl=en&amp;sa=X&amp;ei=zTI-T9zcDYnr0gHcx_HOBw&amp;ved=0CNoBEOgBMBo#v=onepage&amp;q=%22freedom%20of%20speech%22&amp;f=false}}</li>
 </ul>
 </ol>
 
@@ -6400,9 +6400,9 @@ substantive:
 From {{etyl|fro}} <em>substantif</em>.
 <h3>Adjective</h3>
 {en-adj}
-<ol><li> Of the essence or essential element of a thing; as, "substantive information".</li>
+<ol><li> Of the essence or essential element of a thing; as, &quot;substantive information&quot;.</li>
 <li> Having substance and prompting thought.</li>
-<li> {legal} Applying to essential legal principles and rules of right; as, "substantive law".</li>
+<li> {legal} Applying to essential legal principles and rules of right; as, &quot;substantive law&quot;.</li>
 <li> {chemistry} Of a dye that does not need the use of a mordant to be made fast to that which is being dyed.</li>
 </ol>
 
@@ -6440,9 +6440,9 @@ From {{etyl|fro}} <em>substantif</em>.
 Sunday:
 
 <h3>Etymology</h3>
-{{etyl|enm}} <em>sunnenday</em> 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}} <em>dies solis</em>; declared the "venerable day of the sun" by Roman Emperor Constantine on March 7, 321 {C.E.}.
+{{etyl|enm}} <em>sunnenday</em> from {{etyl|ang}} {{term|sunnand&aelig;g|day of the sun|lang=ang}}, from {{term|sunne|sun|lang=ang}}, + {{term|d&aelig;g|day|lang=ang}}, as a translation of {{etyl|la}} <em>dies solis</em>; declared the &quot;venerable day of the sun&quot; by Roman Emperor Constantine on March 7, 321 {C.E.}.
 <h3>Pronunciation</h3>
-<ul><li> {{enPR|sŭnʹdā}}, {{IPA|/ˈsʌndeɪ/}}, {{X-SAMPA|/"sVndeI/}} <em>or</em> {{enPR|sŭnʹdē}}, {{IPA|/ˈsʌndi/}}, {{X-SAMPA|/"sVndi/}}</li>
+<ul><li> {{enPR|sŭnʹdā}}, {{IPA|/ˈsʌndeɪ/}}, {{X-SAMPA|/&quot;sVndeI/}} <em>or</em> {{enPR|sŭnʹdē}}, {{IPA|/ˈsʌndi/}}, {{X-SAMPA|/&quot;sVndi/}}</li>
 <li> {{audio|en-us-Sunday.ogg|Audio (US)}}</li>
 <li> {{audio|En-uk-Sunday.ogg|Audio (UK)}}</li>
 <ul><li> {{rhymes|ʌndeɪ}}, {{rhymes|ʌndi}}</li>
@@ -6690,7 +6690,7 @@ From {{etyl|enm}} {{term|sinonyme|lang=enm}}, from {{etyl|la}} {{term|synonymum|
 <h3>Noun</h3>
 {en-noun}
 <ol><li> {{semantics|with respect to a given word or phrase}} A word or phrase with a meaning that is the same as, or very similar to, another word or phrase.</li>
-<ul><li> <em>"Happy" is a <b>synonym</b> of "glad".</em></li>
+<ul><li> <em>&quot;Happy&quot; is a <b>synonym</b> of &quot;glad&quot;.</em></li>
 <li> {{quote-book|passage=The proportion of English words that have an exact <b>synonym</b> is small.|author=William T. Parry, Edward A. Hacker|title=Aristotelian Logic|year=1991|url=http://books.google.com/books?id=rJceFowdGEAC}}</li>
 </ul>
 <li> {{zoology|with respect to a name for a given taxon}} Any of the formal names for the taxon, including the valid name (i.e. the senior synonym).</li>
@@ -6733,14 +6733,14 @@ thesaurus:
 <h3>Etymology</h3>
 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 <em>Thesaurus of English Words and Phrases</em> in 1852
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/θɪˈsɔːɹəs/}}, {{X-SAMPA|/TI"sO:r@s/}}</li>
+<ul><li> {{IPA|/θɪˈsɔːɹəs/}}, {{X-SAMPA|/TI&quot;sO:r@s/}}</li>
 <li> {{rhymes|ɔːrəs}}</li>
 </ul>
 
 <h3>Noun</h3>
 {{en-noun|thesauri|pl2=thesauruses}}
 <ol><li> A publication, usually in the form of a book, that provides synonyms (and sometimes antonyms) for the words of a given language.</li>
-<ul><li> <em>"Roget" is the leading brand name for a print English <b>thesaurus</b></em> that lists words under general concepts rather than just close synonyms.</li>
+<ul><li> <em>&quot;Roget&quot; is the leading brand name for a print English <b>thesaurus</b></em> that lists words under general concepts rather than just close synonyms.</li>
 </ul>
 <li> {archaic} A dictionary or encyclopedia.</li>
 <li> {information science} A hierarchy of subject headings—canonic titles of themes and topics, the titles serving as search keys.</li>
@@ -6770,10 +6770,10 @@ Category:en:Reference works----
 Thursday:
 
 <h3>Etymology</h3>
-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 <em>dies Iovis (dies Jovis)</em>, via an association of the god Thor with the Roman god of thunder Jove (Jupiter).
+From {{etyl|enm}}, from {{etyl|ang}} {{term|&thorn;ursd&aelig;g|&thorn;ursd&aelig;ġ|lang=ang}}, {{term|&thorn;urresd&aelig;g|&thorn;urresd&aelig;ġ|Thursday|lang=ang}}, possibly from a contraction of {{etyl|ang}} {{term|&thorn;unresd&aelig;g|&thorn;unresd&aelig;ġ|Thursday|lit=Thor's day|lang=ang}}, but more likely of {{etyl|gmq}} origin, from {{etyl|non}} {{term|&thorn;&oacute;rsdagr|&thorn;ōrsdagr|lang=non}} or Old {{etyl|da}} {{term|&thorn;ursdag|&thorn;ūrsdag|Thursday|lang=da}}; all from {{proto|Germanic|&THORN;unras dagaz|Thor's day|lang=en}}. More at {{l|en|thunder}}, {{l|en|day}}.A calque of Latin <em>dies Iovis (dies Jovis)</em>, via an association of the god Thor with the Roman god of thunder Jove (Jupiter).
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˈθɜːzdeɪ/}}, {{X-SAMPA|/"T3:zdeI/}} <em>or</em> {{IPA|/ˈθɜːzdi/}}, {{X-SAMPA|/"T3:zdi/}}</li>
-<li> {{a|US}} {{IPA|/ˈθɝzdeɪ/}}, {{X-SAMPA|/"T3`zdeI/}} <em>or</em> {{IPA|/ˈθɝzdi/}}, {{X-SAMPA|/"T3`zdi/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˈθɜːzdeɪ/}}, {{X-SAMPA|/&quot;T3:zdeI/}} <em>or</em> {{IPA|/ˈθɜːzdi/}}, {{X-SAMPA|/&quot;T3:zdi/}}</li>
+<li> {{a|US}} {{IPA|/ˈθɝzdeɪ/}}, {{X-SAMPA|/&quot;T3`zdeI/}} <em>or</em> {{IPA|/ˈθɝzdi/}}, {{X-SAMPA|/&quot;T3`zdi/}}</li>
 <li> {{audio|en-us-Thursday.ogg|Audio (US)}}</li>
 <li> {{audio|En-uk-Thursday.ogg|Audio (UK)}}</li>
 <ul><li> {{rhymes|ɜː(r)zdeɪ}}, {{rhymes|ɜː(r)zdi}}</li>
@@ -6833,7 +6833,7 @@ Category:en:Timeaf:Thursdayast:Thursdayaz:Thursdayca:Thursdaycs:Thursdaycy:Thurs
 trade:
 {{wikipedia|trade|dab=trade (disambiguation)}}
 <h3>Etymology</h3>
-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]
+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&amp;searchmode=none Online Etymology Dictionary]
 <h3>Pronunciation</h3>
 <ul><li> {{audio|En-uk-trade.ogg|Audio (UK)}}</li>
 <li> {{IPA|/tɹeɪd/}}, {{X-SAMPA|/'treId/}}</li>
@@ -6848,10 +6848,10 @@ From {{etyl|enm|en}} {{term|trade|path, course of conduct|lang=enm}}, cognate wi
 <ul><li> <em>I did no <b>trades</b> with them once the rumors started.</em></li>
 </ul>
 <li> {countable} An instance of bartering items in exchange for one another.</li>
-<ul><li> <b>1989</b>, Bruce Pandolfini, <em>Chess Openings: Traps and Zaps</em>, ISBN 0671656902, "Glossary" section, page 225&nbsp;[http://books.google.com/books?id=pocVITTr8tMC&pg=PA225&dq=trade]:</li>
+<ul><li> <b>1989</b>, Bruce Pandolfini, <em>Chess Openings: Traps and Zaps</em>, ISBN 0671656902, &quot;Glossary&quot; section, page 225&amp;nbsp;[http://books.google.com/books?id=pocVITTr8tMC&amp;pg=PA225&amp;dq=trade]:</li>
 <ul><li> EXCHANGE — A <b>trade</b> or swap of no material profit to either side.</li>
 </ul>
-<li> <b>2009</b>, Elliott Kalb and Mark Weinstein, <em>The 30 Greatest Sports Conspiracy Theories of All Time</em>, ISBN 9781602396784, page 60&nbsp;[http://books.google.com/books?id=nQd8MHuaXysC&pg=PA60&dq=trade]:</li>
+<li> <b>2009</b>, Elliott Kalb and Mark Weinstein, <em>The 30 Greatest Sports Conspiracy Theories of All Time</em>, ISBN 9781602396784, page 60&amp;nbsp;[http://books.google.com/books?id=nQd8MHuaXysC&amp;pg=PA60&amp;dq=trade]:</li>
 <ul><li> When Golden State matched the Knicks' offer sheet, the Warriors and Knicks worked out a <b>trade</b> that sent King to New York for Richardson.</li>
 </ul>
 </ul>
@@ -6970,7 +6970,7 @@ From {{etyl|enm|en}} {{term|trade|path, course of conduct|lang=enm}}, cognate wi
 </ul>
 
 <h4>Derived terms</h4>
-{{rel-top3|Terms derived from the verb "trade"}}
+{{rel-top3|Terms derived from the verb &quot;trade&quot;}}
 <ul><li> insider trading</li>
 </ul>
 {rel-mid3}
@@ -7025,10 +7025,10 @@ Category:en:Windio:trade windja:trade windro:trade windfi:trade windta:trade win
 Tuesday:
 
 <h3>Etymology</h3>
-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 <em>{{w|interpretatio germanica}}</em>), itself a translation of {{etyl|grc|-}} {{term|tr=Areos hemera|lang=grc}} (see <em>{{w|interpretatio romana}}</em>)), 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 <em>dies Martis</em>, via an association of the god Tiw with the Roman god of war Mars.
+From {{etyl|enm}} {{term|Tewesday|lang=enm}}, from {{etyl|ang}} {{term|Tiwesd&aelig;g|Tīwesd&aelig;ġ|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 <em>{{w|interpretatio germanica}}</em>), itself a translation of {{etyl|grc|-}} {{term|tr=Areos hemera|lang=grc}} (see <em>{{w|interpretatio romana}}</em>)), 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&oacute;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 <em>dies Martis</em>, via an association of the god Tiw with the Roman god of war Mars.
 <h3>Pronunciation</h3>
-<ul><li> {{a|RP}} {{IPA|/ˈtjuːzdeɪ/}}, {{X-SAMPA|/"tju:zdeI/}} <em>or</em> {{IPA|/ˈtjuːzdɪ/}}, {{X-SAMPA|/"tju:zdI/}}</li>
-<li> {{a|US}} {{enPR|to͞ozʹdā}}, {{IPA|/ˈtuːzdeɪ/}}, {{X-SAMPA|/"tu:zdeI/}}</li>
+<ul><li> {{a|RP}} {{IPA|/ˈtjuːzdeɪ/}}, {{X-SAMPA|/&quot;tju:zdeI/}} <em>or</em> {{IPA|/ˈtjuːzdɪ/}}, {{X-SAMPA|/&quot;tju:zdI/}}</li>
+<li> {{a|US}} {{enPR|to͞ozʹdā}}, {{IPA|/ˈtuːzdeɪ/}}, {{X-SAMPA|/&quot;tu:zdeI/}}</li>
 <li> {{audio|en-us-Tuesday.ogg|Audio (US)}}</li>
 <li> {{audio|En-uk-Tuesday.ogg|Audio (UK)}}</li>
 </ul>
@@ -7154,7 +7154,7 @@ Verbs compose a fundamental category of words in most languages.  In an English
 <ul><li> a. <b>1981</b> Feb 22, unknown Guardian editor as quoted by William Safire, <em>On Language</em>, in <em>New York Times</em>, pSM3</li>
 <ul><li> Haig, in congressional hearings before his confirmatory, paradoxed his auditioners by abnormalling his responds so that verbs were nouned, nouns <b>verbed</b> and adjectives adverbised. He techniqued a new way to vocabulary his thoughts so as to informationally uncertain anybody listening about what he had actually implicationed... .</li>
 </ul>
-<li> <b>1997</b>, David. F. Griffiths, Desmond J. Higham, <em>learning L<sup>A</sup>T<sub>E</sub>X</em>, p8</li>
+<li> <b>1997</b>, David. F. Griffiths, Desmond J. Higham, <em>learning L&lt;sup&gt;A&lt;/sup&gt;T&lt;sub&gt;E&lt;/sub&gt;X</em>, p8</li>
 <ul><li> Nouns should <em>never</em> be <b>verbed</b>.</li>
 </ul>
 <li> <b>2005</b> Oct 5, Jeffrey Mattison, <em>Letters</em>, in <em>The Christian Science Monitor</em>, p8</li>
@@ -7163,7 +7163,7 @@ Verbs compose a fundamental category of words in most languages.  In an English
 </ul>
 <li> {{context|used as a neutral, unspecific verb|often in|_|linguistics|_|and the social sciences}} To perform any action that is normally expressed by a verb.</li>
 <ul><li> <b>1946</b>: Rand Corporation, <em>The Rand Paper Series</em></li>
-<ul><li> <em>For example, one-part versions of the proposition "The doctor pursued the lawyer" were "The doctor <b>verbed</b> the object,"</em> ...</li>
+<ul><li> <em>For example, one-part versions of the proposition &quot;The doctor pursued the lawyer&quot; were &quot;The doctor <b>verbed</b> the object,&quot;</em> ...</li>
 </ul>
 <li> <b>1964</b>: <em>Journal of Mathematical Psychology</em></li>
 <ul><li> <em>Each sentence had the same basic structure: </em>The subject transitive <b>verbed</b> the object who intransitive <b>verbed</b> in the location<em>.</em></li>
@@ -7219,13 +7219,13 @@ Category:English terms with homophonesfr:waresko:waresio:wareskn:wareshu:waresmy
 Wednesday:
 {{wikipedia|wednesday|dab=wednesday (disambiguation)}}
 <h3>Etymology</h3>
-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}}
+From {{etyl|enm}} {{term|Wednesdai|lang=enm}}, {{term|Wodnesdei|lang=enm}}, from {{etyl|ang}} {{term|wodnesd&aelig;g|wōdnesd&aelig;ġ|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}}
 <ul><li>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}}.</li>
 </ul>
 {rel-bottom}
 <h3>Pronunciation</h3>
-<ul><li> {{a|UK}} {{IPA|/ˈwɛdənzdeɪ/}}, {{X-SAMPA|/"wEd@nzdeI/}} <em>or</em> {{IPA|/ˈwɛnzdeɪ/}}, {{X-SAMPA|/"wEnzdeI/}} <em>or</em> {{IPA|/ˈwɛdənzdi/}}, {{X-SAMPA|/"wEd@nzdi/}} <em>or</em> {{IPA|/ˈwɛnzdi/}}, {{X-SAMPA|/"wEnzdi/}}</li>
-<li> {{a|US}} {{IPA|/ˈwɛnzdeɪ/}}, {{X-SAMPA|/"wEnzdeI/}} <em>or</em> {{IPA|/ˈwɛnzdi/}}, {{X-SAMPA|/"wEnzdi/}}</li>
+<ul><li> {{a|UK}} {{IPA|/ˈwɛdənzdeɪ/}}, {{X-SAMPA|/&quot;wEd@nzdeI/}} <em>or</em> {{IPA|/ˈwɛnzdeɪ/}}, {{X-SAMPA|/&quot;wEnzdeI/}} <em>or</em> {{IPA|/ˈwɛdənzdi/}}, {{X-SAMPA|/&quot;wEd@nzdi/}} <em>or</em> {{IPA|/ˈwɛnzdi/}}, {{X-SAMPA|/&quot;wEnzdi/}}</li>
+<li> {{a|US}} {{IPA|/ˈwɛnzdeɪ/}}, {{X-SAMPA|/&quot;wEnzdeI/}} <em>or</em> {{IPA|/ˈwɛnzdi/}}, {{X-SAMPA|/&quot;wEnzdi/}}</li>
 <li> {{audio|en-us-Wednesday.ogg|Audio (US)}}</li>
 <li> {{audio|En-uk-Wednesday.ogg|Audio (UK)}}</li>
 </ul>
@@ -7281,7 +7281,7 @@ Wiktionary:Entry layout explained:
         
 <ul><li> <em>The Oxford Paperback Dictionary</em>       </li>
 </ul>
-</pre>
+&lt;/pre&gt;
 <h3>Variations for languages other than English</h3>
 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:
@@ -7377,10 +7377,10 @@ Category:en:Windio:trade windja:trade windro:trade windfi:trade windta:trade win
 word:
 {{wikipedia|word|dab=word (disambiguation)}}
 <h3>Etymology</h3>
-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}}.
+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&eth;|word|lang=is}}, {{etyl|la|-}} {{term|verbum|word|lang=la}}, {{etyl|lt|-}} {{term|vardas|name|lang=lt}}, Albanian {{term|urt&euml;|sage, wise, silent|lang=sq}}.
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK}} {{IPA|/wɜː(ɹ)d/}}</li>
-<li> {{a|US}} {{enPR|wûrd}}, {{IPA|/wɝd/}}, {{X-SAMPA|/w3`d/}}</li>
+<li> {{a|US}} {{enPR|w&ucirc;rd}}, {{IPA|/wɝd/}}, {{X-SAMPA|/w3`d/}}</li>
 <li> {{audio|en-us-word.ogg|Audio (US)}}</li>
 <li> {{rhymes|ɜː(ɹ)d}}</li>
 </ul>
@@ -7400,7 +7400,7 @@ From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word,
 <ul><li> And Peter remembered the <b>word</b> of Jesus, which said unto him, Before the cock crow, thou shalt deny me thrice.</li>
 </ul>
 <li> <b>1945</b>, Sebastian Haffner, <em>The Observer</em>, 1 Apr 1945:</li>
-<ul><li> "The Kaiser laid down his arms at a quarter to twelve. In me, however, they have an opponent who ceases fighting only at five minutes past twelve," said Hitler some time ago. He has never spoken a truer <b>word</b>.</li>
+<ul><li> &quot;The Kaiser laid down his arms at a quarter to twelve. In me, however, they have an opponent who ceases fighting only at five minutes past twelve,&quot; said Hitler some time ago. He has never spoken a truer <b>word</b>.</li>
 </ul>
 </ul>
 <li> A distinct  unit  of language (sounds in speech or written letters) with a particular meaning, composed of one or more morphemes, and also of one or more phonemes that determine its sound pattern. {{defdate|from 10th c.}}</li>
@@ -7449,7 +7449,7 @@ From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word,
 </ol>
 
 <h4>Usage notes</h4>
-<ul><li> {{sense|distinct unit of language}} In English and other space-delimited languages, it is customary to treat "word" as referring to any sequence of characters delimited by spaces. However, this is not applicable to languages such as Chinese and Japanese, which are normally written without spaces, or to languages such as Vietnamese, which are written with a space between each syllable.</li>
+<ul><li> {{sense|distinct unit of language}} In English and other space-delimited languages, it is customary to treat &quot;word&quot; as referring to any sequence of characters delimited by spaces. However, this is not applicable to languages such as Chinese and Japanese, which are normally written without spaces, or to languages such as Vietnamese, which are written with a space between each syllable.</li>
 </ul>
 {{wikipedia|word (computing)}}
 <ul><li> {{sense|computing}} The size (length) of a word, while being fixed in a particular machine or processor family design, can be different in different designs, for many reasons. See Wikipedia:Word_(computing) for a full explanation.</li>
@@ -7476,18 +7476,18 @@ From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word,
 
 <h3>Interjection</h3>
 {en-interj}
-<ol><li> {{slang|AAVE}} truth, to tell or speak the truth; the shortened form of the statement, "My word is my bond," an expression eventually shortened to "Word is bond," before it finally got cut to just "Word," which is its most commonly used form.</li>
-<ul><li> "Yo, that movie was epic!" / "<b>Word</b>?" ("You speak the truth?") / "<b>Word</b>." ("I speak the truth.")</li>
+<ol><li> {{slang|AAVE}} truth, to tell or speak the truth; the shortened form of the statement, &quot;My word is my bond,&quot; an expression eventually shortened to &quot;Word is bond,&quot; before it finally got cut to just &quot;Word,&quot; which is its most commonly used form.</li>
+<ul><li> &quot;Yo, that movie was epic!&quot; / &quot;<b>Word</b>?&quot; (&quot;You speak the truth?&quot;) / &quot;<b>Word</b>.&quot; (&quot;I speak the truth.&quot;)</li>
 </ul>
 <li> {{slang|emphatic|stereotypically|AAVE}} An abbreviated form of {{term|word up}}; a statement of the acknowledgment of fact with a hint of nonchalant approval.</li>
 <ul><li> <b>2004</b>, Shannon Holmes, <em>Never Go Home Again: A Novel</em>, page 218</li>
-<ul><li> "{...} Know what I'm sayin'?" / "<b>Word</b>!" the other man strongly agreed. "Let's do this — "</li>
+<ul><li> &quot;{...} Know what I'm sayin'?&quot; / &quot;<b>Word</b>!&quot; the other man strongly agreed. &quot;Let's do this — &quot;</li>
 </ul>
 <li> <b>2007</b>, Gabe Rotter, <em>Duck Duck Wally: A Novel</em>, page 105</li>
-<ul><li> "{...} Not bad at all, man. Worth da wait, dawg. <b>Word</b>." / "You liked it?" I asked dumbly, stoned still, and feeling victorious. / "Yeah, man," said Oral B. "<b>Word</b> up. {...}"</li>
+<ul><li> &quot;{...} Not bad at all, man. Worth da wait, dawg. <b>Word</b>.&quot; / &quot;You liked it?&quot; I asked dumbly, stoned still, and feeling victorious. / &quot;Yeah, man,&quot; said Oral B. &quot;<b>Word</b> up. {...}&quot;</li>
 </ul>
 <li> <b>2007</b>, Relentless Aaron <em>The Last Kingpin</em>, page 34</li>
-<ul><li> "{...} I mean, I don't blame you... <b>Word</b>! {...}"</li>
+<ul><li> &quot;{...} I mean, I don't blame you... <b>Word</b>! {...}&quot;</li>
 </ul>
 </ul>
 </ol>
@@ -7583,7 +7583,7 @@ word:
 </ul>
 
 <h3>Etymology</h3>
-From {{proto|Germanic|wurdan|lang=ang}}, from {{proto|Indo-European|werdʰo-|word|lang=ang}}, from {{proto|Indo-European|wer-|speak|lang=ang}}; cognate with Old Frisian {{term|word}}, Old Saxon {{term|word}} (Dutch {{term|woord}}), Old High German {{term|wort}} (German {{term|Wort}}), Old Norse {{term|orð}} (Icelandic {{term|orð|lang=is}}, Swedish {{term|ord|lang=sv}}), Gothic {{term|𐍅𐌰𐌿𐍂𐌳|sc=Goth|tr=waurd}}. The Proto-Indo-European root is also the source of Latin {{term|verbum}}, Lithuanian {{term|vardas}}, and, more distantly, of Ancient Greek {{term|εἴρω|I say|sc=polytonic|tr=eirō}} and Old Slavonic {{term|rotiti sę|to swear}} (Russian {{term|ротиться|to vow|sc=Cyrl|tr=rotit’cja}}).
+From {{proto|Germanic|wurdan|lang=ang}}, from {{proto|Indo-European|werdʰo-|word|lang=ang}}, from {{proto|Indo-European|wer-|speak|lang=ang}}; cognate with Old Frisian {{term|word}}, Old Saxon {{term|word}} (Dutch {{term|woord}}), Old High German {{term|wort}} (German {{term|Wort}}), Old Norse {{term|or&eth;}} (Icelandic {{term|or&eth;|lang=is}}, Swedish {{term|ord|lang=sv}}), Gothic {{term|𐍅𐌰𐌿𐍂𐌳|sc=Goth|tr=waurd}}. The Proto-Indo-European root is also the source of Latin {{term|verbum}}, Lithuanian {{term|vardas}}, and, more distantly, of Ancient Greek {{term|εἴρω|I say|sc=polytonic|tr=eirō}} and Old Slavonic {{term|rotiti sę|to swear}} (Russian {{term|ротиться|to vow|sc=Cyrl|tr=rotit’cja}}).
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|/word/|lang=ang}}</li>
 </ul>
index 4440e2f10e6df6f38aa096c180969602f7ff17e1..2ad7ccc8293b950492b9bce26eba87cb392f6c35 100644 (file)
@@ -159,7 +159,7 @@ abrade:
 
 <h3>Anagrams</h3>
 <ul><li> badare</li>
-<li> baderà</li>
+<li> bader&agrave;</li>
 </ul>
 Category:Italian verb forms----
 ***abrase***
@@ -175,7 +175,7 @@ abrase:
 
 <h3>Anagrams</h3>
 <ul><li> basare</li>
-<li> baserà</li>
+<li> baser&agrave;</li>
 </ul>
 Category:Italian past participle formsCategory:Italian verb forms----
 ***abrasive***
@@ -256,7 +256,7 @@ acclive:
 </ol>
 
 <h4>Derived terms</h4>
-<ul><li> {{l|it|acclività}}</li>
+<ul><li> {{l|it|acclivit&agrave;}}</li>
 </ul>
 
 <h3>Anagrams</h3>
@@ -293,7 +293,7 @@ AD:
 </ol>
 
 <h3>Anagrams</h3>
-<ul><li> da, da', dà</li>
+<ul><li> da, da', d&agrave;</li>
 </ul>
 Category:Italian initialisms----
 ***Afghanistan***
@@ -471,7 +471,7 @@ Metathesis from {{etyl|la|it}} {{term|aerem|lang=la}}, accusative of {{term|aer|
 <ul><li> {{audio|It-l'aria.ogg|Audio}}</li>
 <li> {{audio|It-aria.ogg|Audio}}</li>
 </ul>
-ària, /ˈarja/, /<tt>"arja</tt>/
+&agrave;ria, /ˈarja/, /&lt;tt&gt;&quot;arja&lt;/tt&gt;/
 <h3>Noun</h3>
 {{it-noun|ari|f|a|e}}
 <ol><li> air</li>
@@ -525,7 +525,7 @@ Armenia:
 <h3>Anagrams</h3>
 <ul><li> amareni</li>
 <li> animare</li>
-<li> animerà</li>
+<li> animer&agrave;</li>
 <li> maniera</li>
 <li> mariane</li>
 </ul>
@@ -534,7 +534,7 @@ Category:it:CountriesCategory:it:Exonyms----
 Austria:
 {{wikipedia|lang=it}}
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈaustrja/|lang=it}}, {{X-SAMPA|/"austrja/|lang=it}}</li>
+<ul><li> {{IPA|/ˈaustrja/|lang=it}}, {{X-SAMPA|/&quot;austrja/|lang=it}}</li>
 </ul>
 
 <h3>Proper noun</h3>
@@ -616,7 +616,7 @@ Category:Italian adjective forms----
 Bulgaria:
 {{wikipedia|lang=it}}
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/bulɡaˈri.a/|lang=it}}, {{X-SAMPA|/bulga"ri.a/|lang=it}}</li>
+<ul><li> {{IPA|/bulɡaˈri.a/|lang=it}}, {{X-SAMPA|/bulga&quot;ri.a/|lang=it}}</li>
 </ul>
 
 <h3>Proper noun</h3>
@@ -665,7 +665,7 @@ centavo:
 ci:
 
 <h3>Etymology</h3>
-<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}}
+&lt;small&gt;For the pronoun&lt;/small&gt;&lt;br&gt;From {{etyl|la|it}} {{term|ecce|look|lang=la}} + {{term|hic|here|lang=la}}&lt;small&gt;For the adverb&lt;/small&gt;&lt;br&gt;{{etyl|la|it}} {{term|ecce|look|lang=la}} + {{term|ibi|there|lang=la}}
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|/tʃi/|lang=it}}, {{X-SAMPA|/tSi/}}</li>
 <li> {{homophones|C|lang=it}} {{qualifier|name of letter}}</li>
@@ -695,7 +695,7 @@ ci:
 
 <h4>See also</h4>
 <ul><li> ivi</li>
-<li> là</li>
+<li> l&agrave;</li>
 <li> qua</li>
 <li> qui</li>
 </ul>
@@ -755,7 +755,7 @@ de:
 <h3>Contraction</h3>
 {{head|it|contraction}}
 <ol><li> {{apocopic form of|del|lang=it}}</li>
-<ul><li> <em>Michael Radford è il regista <b>de</b> "Il postino".</em> &mdash; "Michael Radford is the director of "Il Postino".</li>
+<ul><li> <em>Michael Radford &egrave; il regista <b>de</b> &quot;Il postino&quot;.</em> &amp;mdash; &quot;Michael Radford is the director of &quot;Il Postino&quot;.</li>
 </ul>
 </ol>
 
@@ -858,8 +858,8 @@ f:
 fa:
 
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|[ˈfa]|lang=it}}, {{X-SAMPA|/"fa/}}</li>
-<li> {{hyphenation|fà}}</li>
+<ul><li> {{IPA|[ˈfa]|lang=it}}, {{X-SAMPA|/&quot;fa/}}</li>
+<li> {{hyphenation|f&agrave;}}</li>
 </ul>
 
 <h3>Adverb</h3>
@@ -920,7 +920,7 @@ guerra:
 <h3>Etymology</h3>
 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}}.
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈɡwɛr.ra/|lang=it}}, {{X-SAMPA|/"gwEr.ra/|lang=it}}</li>
+<ul><li> {{IPA|/ˈɡwɛr.ra/|lang=it}}, {{X-SAMPA|/&quot;gwEr.ra/|lang=it}}</li>
 <li> {{audio|It-la guerra.ogg|Audio}}</li>
 <li> {{audio|It-guerra.ogg|Audio}}</li>
 </ul>
@@ -952,14 +952,14 @@ From {{etyl|roa-oit|it}} {{term|guerra|lang=it}}, from {{etyl|LL.|it}} {{recons|
 </ul>
 
 <h3>Anagrams</h3>
-<ul><li> urgerà</li>
+<ul><li> urger&agrave;</li>
 </ul>
 ----
 ***i***
 i:
 
 <h3>Etymology 1</h3>
-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>
+Reduced form of {{term|gli|lang=it}}.&lt;ref&gt;{{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 = }}&lt;/ref&gt;
 <h4>Article</h4>
 {Italian definite articles}{{head|it|article|singular|il|g=m|g2=p}}
 <ol><li> the (<em>see the usage notes</em>)</li>
@@ -985,7 +985,7 @@ Reduced form of {{term|gli|lang=it}}.<ref>{{reference-book| last = Patota | firs
 </ul>
 
 <h3>References</h3>
-<references/>Category:it:Latin letter names----
+&lt;references/&gt;Category:it:Latin letter names----
 ***in***
 in:
 
@@ -1005,7 +1005,7 @@ in:
 </ol>
 
 <h4>Usage notes</h4>
-<em>When followed by a definite article</em>, <b>in</b> <em>is combined with the article to give the following combined forms</em>:<table border="1" align="center" cellpadding="5"><tr><th>In + article<th>Combined form</tr><tr><td align="center">in + il<td align="center">nel</tr><tr><td align="center">in + lo<td align="center">nello</tr><tr><td align="center">in + l'<td align="center">nell'</tr><tr><td align="center">in + i<td align="center">nei</tr><tr><td align="center">in + gli<td align="center">negli</tr><tr><td align="center">in + la<td align="center">nella</tr><tr><td align="center">in + le<td align="center">nelle</tr></table>
+<em>When followed by a definite article</em>, <b>in</b> <em>is combined with the article to give the following combined forms</em>:&lt;table border=&quot;1&quot; align=&quot;center&quot; cellpadding=&quot;5&quot;&gt;&lt;tr&gt;&lt;th&gt;In + article&lt;th&gt;Combined form&lt;/tr&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;in + il&lt;td align=&quot;center&quot;&gt;nel&lt;/tr&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;in + lo&lt;td align=&quot;center&quot;&gt;nello&lt;/tr&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;in + l'&lt;td align=&quot;center&quot;&gt;nell'&lt;/tr&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;in + i&lt;td align=&quot;center&quot;&gt;nei&lt;/tr&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;in + gli&lt;td align=&quot;center&quot;&gt;negli&lt;/tr&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;in + la&lt;td align=&quot;center&quot;&gt;nella&lt;/tr&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;in + le&lt;td align=&quot;center&quot;&gt;nelle&lt;/tr&gt;&lt;/table&gt;
 <h3>Anagrams</h3>
 <ul><li> ni</li>
 </ul>
@@ -1088,7 +1088,7 @@ From {{etyl|la|it}} {{term|liber|līber}}
 <ul><li> <b>Free</b> admission.</li>
 </ul>
 </ul>
-<li> free (<em>as in "free software"</em>)</li>
+<li> free (<em>as in &quot;free software&quot;</em>)</li>
 <ul><li> <em>Software <b>libero</b>.</em></li>
 <ul><li> <b>Free</b> software.</li>
 </ul>
@@ -1101,7 +1101,7 @@ From {{etyl|la|it}} {{term|liber|līber}}
 <li> liberismo</li>
 <li> liberista</li>
 <li> libero professionista</li>
-<li> libertà</li>
+<li> libert&agrave;</li>
 <li> via libera</li>
 </ul>
 
@@ -1182,7 +1182,7 @@ From {{etyl|la|it}} <em>mobilis</em>.
 <ul><li> mobilia / mobilio</li>
 <li> mobiliare</li>
 <li> mobilificio</li>
-<li> mobilità</li>
+<li> mobilit&agrave;</li>
 <li> mobilitare</li>
 </ul>
 
@@ -1218,7 +1218,7 @@ nu:
 o:
 
 <h3>Etymology 1</h3>
-From {{etyl|la|it}} {{term|aut|lang=la}}.<ref>Angelo Prati, "Vocabolario Etimologico Italiano", Torino, 1951</ref>
+From {{etyl|la|it}} {{term|aut|lang=la}}.&lt;ref&gt;Angelo Prati, &quot;Vocabolario Etimologico Italiano&quot;, Torino, 1951&lt;/ref&gt;
 <h4>Alternative forms</h4>
 <ul><li> od {{qualifier|used optionally before words beginning with a vowel}}</li>
 </ul>
@@ -1236,7 +1236,7 @@ From {{etyl|la|it}} {{term|aut|lang=la}}.<ref>Angelo Prati, "Vocabolario Etimolo
 </ol>
 
 <h3>References</h3>
-<references/>----
+&lt;references/&gt;----
 ***OMC***
 OMC:
 
@@ -1283,7 +1283,7 @@ parole:
 </ul>
 
 <h3>Anagrams</h3>
-<ul><li> palerò, polare</li>
+<ul><li> paler&ograve;, polare</li>
 </ul>
 ----
 ***peso***
@@ -1373,7 +1373,7 @@ radio:
 <h3>Etymology</h3>
 Borrowed from {{etyl|la|it}} <em>radius</em>.
 <h3>Pronunciation</h3>
-<ul><li> {{enPR|ràdio}}, {{IPA|/ˈradjo/|lang=it}}, {{X-SAMPA|/"radjo/}}</li>
+<ul><li> {{enPR|r&agrave;dio}}, {{IPA|/ˈradjo/|lang=it}}, {{X-SAMPA|/&quot;radjo/}}</li>
 </ul>
 
 <h3>Noun</h3>
@@ -1402,7 +1402,7 @@ Borrowed from {{etyl|la|it}} <em>radius</em>.
 </ol>
 
 <h3>Anagrams</h3>
-<ul><li> adiro, adirò</li>
+<ul><li> adiro, adir&ograve;</li>
 <li> adori</li>
 <li> Adrio</li>
 <li> arido</li>
@@ -1416,8 +1416,8 @@ Category:Italian nouns with irregular genderCategory:it:Chemical elements----
 rape:
 
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈrape/|[ˈraː.pe]|lang=it}}, {{X-SAMPA|/"rape/}}</li>
-<li> {{hyphenation|rà|pe}}</li>
+<ul><li> {{IPA|/ˈrape/|[ˈraː.pe]|lang=it}}, {{X-SAMPA|/&quot;rape/}}</li>
+<li> {{hyphenation|r&agrave;|pe}}</li>
 </ul>
 
 <h3>Noun</h3>
@@ -1434,7 +1434,7 @@ relegate:
 
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|/re.leˈɡa.te/|lang=it}}</li>
-<li> {{hyphenation|re|le|gà|te}}</li>
+<li> {{hyphenation|re|le|g&agrave;|te}}</li>
 </ul>
 
 <h3>Verb</h3>
@@ -1461,9 +1461,9 @@ robot:
 sabato:
 
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈsabato/|[ˈsaː.ba.t̪o]|lang=it}}, {{X-SAMPA|/"sabato/}}</li>
+<ul><li> {{IPA|/ˈsabato/|[ˈsaː.ba.t̪o]|lang=it}}, {{X-SAMPA|/&quot;sabato/}}</li>
 <li> {{audio|It-sabato.ogg|audio}}</li>
-<li> {{hyphenation|sà|ba|to}}</li>
+<li> {{hyphenation|s&agrave;|ba|to}}</li>
 </ul>
 
 <h3>Etymology</h3>
@@ -1486,7 +1486,7 @@ seme:
 {{wikipedia|lang=it}}
 <h3>Pronunciation</h3>
 <ul><li> {{IPA|[ˈseme]|lang=it}}</li>
-<li> {{enPR|séme}}, {{IPA|/ˈseme/|lang=it}}, {{X-SAMPA|/"seme/}}</li>
+<li> {{enPR|s&eacute;me}}, {{IPA|/ˈseme/|lang=it}}, {{X-SAMPA|/&quot;seme/}}</li>
 </ul>
 
 <h3>Etymology</h3>
@@ -1516,13 +1516,13 @@ SpA:
 
 <h3>Noun</h3>
 {{head|it|noun}} {{f|inv}}
-<ol><li> {{abbreviation of|società per azioni|lang=it}} {{gloss|public limited company, PLC}}</li>
+<ol><li> {{abbreviation of|societ&agrave; per azioni|lang=it}} {{gloss|public limited company, PLC}}</li>
 </ol>
 
 <h4>Coordinate terms</h4>
-<ul><li> società per azioni</li>
+<ul><li> societ&agrave; per azioni</li>
 <li> LLC {{qualifier|English}}</li>
-<li> {{sense|Canada}} Ltd. {{qualifier|English}} , Ltée. {{qualifier|French}}</li>
+<li> {{sense|Canada}} Ltd. {{qualifier|English}} , Lt&eacute;e. {{qualifier|French}}</li>
 <li> {{sense|Germany}} GmbH {{qualifier|German}}</li>
 <li> {{sense|Netherlands}} N.V. {{qualifier|Dutch}}</li>
 <li> {{sense|UK}} PLC {{qualifier|English}}</li>
@@ -1561,7 +1561,7 @@ From {{etyl|la|it}} {{term|te|tē|lang=la}}, from {{term|tu|tū|lang=la}}.
 
 <h4>See also</h4>
 <ul><li> ti</li>
-<li> tè</li>
+<li> t&egrave;</li>
 </ul>
 ----
 ***transfinite***
@@ -1623,8 +1623,8 @@ y:
 zero:
 {{cardinalbox|it|0|1|uno|ord=zeresimo}}
 <h3>Pronunciation</h3>
-<ul><li> {{IPA|/ˈdzɛro/|[ˈd̪͡z̪ɛː.ro]|lang=it}}, {{X-SAMPA|/"dzEro/}}</li>
-<li> {{hyphenation|zè|ro}}</li>
+<ul><li> {{IPA|/ˈdzɛro/|[ˈd̪͡z̪ɛː.ro]|lang=it}}, {{X-SAMPA|/&quot;dzEro/}}</li>
+<li> {{hyphenation|z&egrave;|ro}}</li>
 </ul>
 
 <h3>Adjective</h3>
index 7be6386c3ef7b9b025fed986e80bd22cc6edba7e..3f34a4e0d8f87910147a922021c7c47a1dcefa3c 100644 (file)
--- a/todo.txt
+++ b/todo.txt
@@ -1,38 +1,33 @@
-get rid of Appendix:....  sections from EN.data in split.
+make sure word is sticky when you change dictionaries.
 
+get rid of Appendix:....  sections from EN.data in split.
 
+- on small device it would be great to be able to hide the system status bar and the title bar
+- an history list of the searched words per dictionary with the possibility of having a rudimentary flash card game from it to memorise new words
+- space between clear text button and language button is to big (my screen is 320x240, Galaxy Mini)
 
 fix update screen.
 
-download latest wiktionaries
-split
-DictionaryBuilderTest
-rebuild dictionaries.
-zip -9
-rebuild Check
-publish.
+To republish:
+* download latest wiktionaries
+* split
+* DictionaryBuilderTest
+* rebuild dictionaries.
+* zip -9
+* rebuild Check
+* publish.
 
 
 anytime there's a tr= or a head=, make sure to file under that!
 for i in res/raw*/*.html; do echo $i; tidy --input-encoding utf8  --output-file $i $i; done
 
 SpannableText persisted class with a list of spans with span types. (might need its own builder.)
-Choosable flags for: German, Spanish, English, Portuguese, Arabic (with defaults).
-Hide uninstalled dictionaries.
 Update DictionaryBuilder.jar
 For next release:
 flag images
-test/fix return to last-used dictionary
-downloads stability
 history dialog
-random word jump
 italian verbs... (show conjugation, pulled from a linked place....--would lower size a lot!)
 
-Handle other sections:
-  Pronunciation
-  Synonyms
-  Usage notes.
-  Chinese: handle "Compounds" section
 
 handle enwiktionary examples like "asdf (asdf)"
 better example splitting
@@ -45,6 +40,7 @@ check arabic UI fix
 
 
 done:
+Hide uninstalled dictionaries.
 * sorting of entries
 * better Row/Entry classes?
 * wiktionary
@@ -62,7 +58,6 @@ icons inside dictionaries
 
 
 **** PC:
-handle word-info in English.
 {{count page|[[Wiktionary:Page count]]}}
 
 Bad filing: under Arab?
@@ -127,4 +122,11 @@ fix up dictionary manager:
   check over UI.
 * multi word search
 change sorting to put your locale first
+Handle other sections:
+  Pronunciation
+  Synonyms
+  Usage notes.
+  Chinese: handle "Compounds" section
+handle word-info in English.
+random word jump
   
\ No newline at end of file