]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
Baseline HTML parsing done, goldens updated!
authorthadh <thadh@192.168.100.123>
Tue, 24 Jul 2012 00:18:29 +0000 (17:18 -0700)
committerthadh <thadh@192.168.100.123>
Tue, 24 Jul 2012 00:18:29 +0000 (17:18 -0700)
src/com/hughes/android/dictionary/parser/WikiTokenizer.java
src/com/hughes/android/dictionary/parser/wiktionary/AbstractWiktionaryParser.java
src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java
testdata/goldens/wiktionary.WholeSection.DE.quickdic.text
testdata/goldens/wiktionary.WholeSection.EN.quickdic.text
testdata/goldens/wiktionary.WholeSection.IT.quickdic.text

index 111f131be2308cb40ab8e8d5739314fc0a6dde89..cdf2f0428fc9f2048b8d5f3efaf27124d7415e7d 100644 (file)
@@ -233,6 +233,13 @@ public final class WikiTokenizer {
     assert isListItem();
     return wikiText.substring(start, listPrefixEnd);
   }
+  
+  public static String getListTag(char c) {
+    if (c == '#') {
+      return "ol";
+    }
+    return "ul";
+  }
 
   public String listItemWikiText() {
     assert isListItem();
index 0512bad403d5b1b9c444ec57ba5d8762290241e7..623e1821975b3fd7795dabc5fa5c48b1d9fe31ae 100644 (file)
@@ -87,6 +87,7 @@ public abstract class AbstractWiktionaryParser implements Parser {
       }
     }
     } finally {
+      dis.close();
       LOG.info("***COUNTERS***");
       for (final Map.Entry<String, AtomicInteger> entry : counters.entrySet()) {
         LOG.info(entry.getKey() + ": " + entry.getValue());
@@ -214,17 +215,17 @@ public abstract class AbstractWiktionaryParser implements Parser {
     }
 
     @Override
-    public final void onNewline(WikiTokenizer wikiTokenizer) {
+    public void onNewline(WikiTokenizer wikiTokenizer) {
       assert false;
     }
 
     @Override
-    public final void onHeading(WikiTokenizer wikiTokenizer) {
+    public void onHeading(WikiTokenizer wikiTokenizer) {
       assert false;
     }
 
     @Override
-    public final void onListItem(WikiTokenizer wikiTokenizer) {
+    public void onListItem(WikiTokenizer wikiTokenizer) {
       assert false;
     }
   }
index b51f24ed497ac7abd832fb7ece1ae126c7eade3d..d0a4908f10ccad4962dc5ce47ebcb2af5b10daa3 100644 (file)
@@ -1,18 +1,22 @@
 package com.hughes.android.dictionary.parser.wiktionary;
 
+import java.util.ArrayList;
+import java.util.List;
 import java.util.Map;
+import java.util.regex.Pattern;
 
 import com.hughes.android.dictionary.engine.EntryTypeName;
 import com.hughes.android.dictionary.engine.HtmlEntry;
 import com.hughes.android.dictionary.engine.IndexBuilder;
 import com.hughes.android.dictionary.engine.IndexedEntry;
+import com.hughes.android.dictionary.parser.WikiTokenizer;
 
 public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
   
   public static final String NAME = "WholeSectionToHtmlParser";
+  public static final Pattern skipSections = Pattern.compile(".*Translations.*");
   
   final IndexBuilder titleIndexBuilder;
-
   
   public  WholeSectionToHtmlParser(final IndexBuilder titleIndexBuilder) {
     this.titleIndexBuilder = titleIndexBuilder;
@@ -20,8 +24,15 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
 
   @Override
   void parseSection(String heading, String text) {
-    HtmlEntry htmlEntry = new HtmlEntry(entrySource, title, text);
+    HtmlEntry htmlEntry = new HtmlEntry(entrySource, title);
     IndexedEntry indexedEntry = new IndexedEntry(htmlEntry);
+
+    final AppendAndIndexWikiCallback<WholeSectionToHtmlParser> callback = new AppendCallback(this);
+    callback.builder = new StringBuilder();
+    callback.indexedEntry = indexedEntry;
+    callback.dispatch(text, null);
+
+    htmlEntry.html = callback.builder.toString();
     indexedEntry.isValid = true;
     titleIndexBuilder.addEntryWithString(indexedEntry, title, EntryTypeName.WIKTIONARY_TITLE_MULTI_DETAIL);
   }
@@ -29,5 +40,114 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
   @Override
   void removeUselessArgs(Map<String, String> namedArgs) {
   }
+  
+  class AppendCallback extends AppendAndIndexWikiCallback<WholeSectionToHtmlParser> {
+    public AppendCallback(WholeSectionToHtmlParser parser) {
+      super(parser);
+    }
+
+    @Override
+    public void onPlainText(String plainText) {
+      super.onPlainText(plainText);
+    }
+
+    @Override
+    public void onWikiLink(WikiTokenizer wikiTokenizer) {
+      super.onWikiLink(wikiTokenizer);
+    }
+
+    @Override
+    public void onFunction(WikiTokenizer wikiTokenizer, String name,
+        List<String> args, Map<String, String> namedArgs) {
+      super.onFunction(wikiTokenizer, name, args, namedArgs);
+    }
+
+    @Override
+    public void onHtml(WikiTokenizer wikiTokenizer) {
+      super.onHtml(wikiTokenizer);
+    }
+    
+    @Override
+    public void onNewline(WikiTokenizer wikiTokenizer) {
+    }
+
+    @Override
+    public void onHeading(WikiTokenizer wikiTokenizer) {
+      final String headingText = wikiTokenizer.headingWikiText();
+      final int depth = wikiTokenizer.headingDepth();
+      if (skipSections.matcher(headingText).matches()) {
+        while ((wikiTokenizer = wikiTokenizer.nextToken()) != null) {
+          if (wikiTokenizer.isHeading() && wikiTokenizer.headingDepth() <= depth) {
+            wikiTokenizer.returnToLineStart();
+            return;
+          }
+        }
+        return;
+      }
+      onPlainText(String.format("\n<h%d>", depth));
+      dispatch(headingText, null);
+      onPlainText(String.format("</h%d>\n", depth));
+    }
+
+    final List<Character> listPrefixStack = new ArrayList<Character>();
+    @Override
+    public void onListItem(WikiTokenizer wikiTokenizer) {
+      if (builder.length() != 0 && builder.charAt(builder.length() - 1) != '\n') {
+        builder.append("\n");
+      }
+      final String prefix = wikiTokenizer.listItemPrefix();
+      while (listPrefixStack.size() < prefix.length()) {
+        onPlainText(String.format("<%s>", WikiTokenizer.getListTag(prefix.charAt(listPrefixStack.size()))));
+        listPrefixStack.add(prefix.charAt(listPrefixStack.size()));
+      }
+      onPlainText("<li>");
+      dispatch(wikiTokenizer.listItemWikiText(), null);
+      onPlainText("</li>\n");
+      
+      WikiTokenizer nextToken = wikiTokenizer.nextToken();
+      boolean returnToLineStart = false;
+      if (nextToken != null && nextToken.isNewline()) {
+        nextToken = nextToken.nextToken();
+        returnToLineStart = true;
+      }
+      final String nextListHeader;
+      if (nextToken == null || !nextToken.isListItem()) {
+        nextListHeader = "";
+      } else {
+        nextListHeader = nextToken.listItemPrefix();
+      }
+      if (returnToLineStart) {
+        wikiTokenizer.returnToLineStart();
+      }
+      while (listPrefixStack.size() > nextListHeader.length()) {
+        final char prefixChar = listPrefixStack.remove(listPrefixStack.size() - 1);
+        onPlainText(String.format("</%s>\n", WikiTokenizer.getListTag(prefixChar)));
+      }
+    }
+
+    boolean boldOn = false;
+    boolean italicOn = false;
+    @Override
+    public void onMarkup(WikiTokenizer wikiTokenizer) {
+      if ("'''".equals(wikiTokenizer.token())) {
+        if (!boldOn) {
+          onPlainText("<b>");
+        } else {
+          onPlainText("</b>");
+        }
+        boldOn = !boldOn;
+      } else if ("''".equals(wikiTokenizer.token())) {
+        if (!italicOn) {
+          onPlainText("<em>");
+        } else {
+          onPlainText("</em>");
+        }
+        italicOn = !italicOn;
+      } else {
+        assert false;
+      }
+    }
+    
+  }
 
 }
index db11ce85cbc4c13fc170828e25069d24857118f7..ea2d91bfd38f631c72afaaa7f673838edc3f845a 100644 (file)
@@ -3,8533 +3,1826 @@ EntrySource: wiktionary.WholeSection.DE.quickdic 108
 
 Index: DE DE->EN
 ***A***
-A: 
+A:
 
-===Pronunciation===
-* {{IPA|/ʔaː/|lang=de}}
-* {{audio|De-A.OGG|Audio}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ʔaː/|lang=de}}</li>
+<li> {{audio|De-A.OGG|Audio}}</li>
+</ul>
 
-===Letter===
+<h3>Letter</h3>
 {{de-letter|upper=A|lower=a}}
-
-# {{Latn-def|de|letter|1}}
-
-===Noun===
-{{de-noun|g=n|A's|A's}}
-
-# {{l|en|A}}
-#: Von '''A''' bis Z.
-#:: From '''A''' to Z.
-#: Wer '''A''' sagt, muss auch B sagen.
-#:: One who says '''A''' shall also say B.
-
+<ol><li> {{Latn-def|de|letter|1}}</li>
+</ol>
+
+<h3>Noun</h3>
+{{de-noun|A's|A's|g=n}}
+<ol><li> {{l|en|A}}</li>
+<ul><li> Von <b>A</b> bis Z.</li>
+<ul><li> From <b>A</b> to Z.</li>
+</ul>
+<li> Wer <b>A</b> sagt, muss auch B sagen.</li>
+<ul><li> One who says <b>A</b> shall also say B.</li>
+</ul>
+</ul>
+</ol>
 ----
-
-
 ***ab***
-ab-: 
+ab-:
 
-===Pronunciation===
-* {{IPA|[ʔap]|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|[ʔap]|lang=de}}</li>
+</ul>
 
-===Prefix===
+<h3>Prefix</h3>
 {{head|de|prefix}}
-
-# Separable verb prefix, [[from]].
-#: ''abfahren'' (to depart from).
-# Separable verb prefix that indicates removal or quitting, [[off]].
-#: ''abspülen'' (to rinse off, to wash off).
-# Separable verb prefix that indicates a downward movement, [[down]].
-# Separable verb prefix that indicates [[from]] or [[of]].
-
-====Synonyms====
-* {{sense|off}} [[aus-]]
-* {{sense|down}} [[hinab-]], [[herab-]], [[runter-]], [[herunter-]], [[hinunter-]]
-
-====Antonyms====
-* {{sense|on}} [[an-]]
-* {{sense|up}} [[auf-]], [[rauf-]], [[hinauf-]], [[herauf-]]
-
-====Derived terms====
-{{der-top}}
-* [[abändern]]
-* [[abarbeiten]]
-* [[abbauen]]
-* [[abbilden]]
-* [[abbinden]]
-* [[abbrechen]]
-* [[abfallen]]
-* [[abführen]]
-* [[abgeben]]
-* [[abhalten]]
-* [[abhängen]]
-* [[abklären]]
-* [[abkürzen]]
-* [[ablehnen]]
-* [[ableiten]]
-* [[ablesen]]
-{{der-mid}}
-* [[abnehmen]]
-* [[abschalten]]
-* [[abschlagen]]
-* [[abschließen]]
-* [[abschneiden]]
-* [[absetzen]]
-* [[abstammen]]
-* [[abstehen]]
-* [[absteigen]]
-* [[abstellen]]
-* [[abwarten]]
-* [[abwechseln]]
-* [[abweichen]]
-* [[abwerfen]]
-* [[abzielen]]
-{{der-bottom}}
-
-====See also====
-* [[ab]]
-
-----
-
-
-ab: 
-
-===Etymology===
+<ol><li> Separable verb prefix, from.</li>
+<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> Separable verb prefix that indicates a downward movement, down.</li>
+<li> Separable verb prefix that indicates from or of.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|off}} aus-</li>
+<li> {{sense|down}} hinab-, herab-, runter-, herunter-, hinunter-</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> {{sense|on}} an-</li>
+<li> {{sense|up}} auf-, rauf-, hinauf-, herauf-</li>
+</ul>
+
+<h4>Derived terms</h4>
+{der-top}
+<ul><li> abä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> abgeben</li>
+<li> abhalten</li>
+<li> abhängen</li>
+<li> abklären</li>
+<li> abkürzen</li>
+<li> ablehnen</li>
+<li> ableiten</li>
+<li> ablesen</li>
+</ul>
+{der-mid}
+<ul><li> abnehmen</li>
+<li> abschalten</li>
+<li> abschlagen</li>
+<li> abschließen</li>
+<li> abschneiden</li>
+<li> absetzen</li>
+<li> abstammen</li>
+<li> abstehen</li>
+<li> absteigen</li>
+<li> abstellen</li>
+<li> abwarten</li>
+<li> abwechseln</li>
+<li> abweichen</li>
+<li> abwerfen</li>
+<li> abzielen</li>
+</ul>
+{der-bottom}
+<h4>See also</h4>
+<ul><li> ab</li>
+</ul>
+----
+ab:
+
+<h3>Etymology</h3>
 From {{etyl|goh|de}} {{term|ab|lang=goh}}, from {{proto|Germanic|ab|lang=de}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ap/|lang=de}}</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/ap/|lang=de}}
-
-===Preposition===
+<h3>Preposition</h3>
 {{head|de|preposition}}
-
-# Beginning at that time or location; [[from]].
-#: '''''ab''' heute verfügbar'' (available from today on)
-
-====Derived terms====
-* [[ab und zu]]
-
-[[Category:2000 German basic words]]
-
-----
-
-
-ab: 
-
-===Etymology===
+<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>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> ab und zu</li>
+</ul>
+Category:2000 German basic words----
+ab:
+
+<h3>Etymology</h3>
 From {{proto|Germanic|ab|lang=goh}}.
-
-===Preposition===
-{{goh-prep}}
-
-# [[of]]
-
+<h3>Preposition</h3>
+{goh-prep}
+<ol><li> of</li>
+</ol>
 ----
-
-
 ***aberrant***
-aberrant: 
+aberrant:
 
-===Pronunciation===
-* {{audio|De-aberrant.ogg|Audio}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-aberrant.ogg|Audio}}</li>
+</ul>
 
-===Adjective===
+<h3>Adjective</h3>
 {{de-adj|aberranter|aberrantesten}}
-
-# [[#English|aberrant]]
-
+<ol><li> aberrant</li>
+</ol>
 ----
-
-
 ***abnormal***
-abnormal: 
+abnormal:
 
-===Pronunciation===
-* {{audio|De-abnormal.ogg|Audio}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-abnormal.ogg|Audio}}</li>
+</ul>
 
-===Adjective===
+<h3>Adjective</h3>
 {{de-adj|comparative=abnormaler|superlative=abnormalsten}}
-
-# {{l|en|abnormal}}
-
-[[am:abnormal]]
-[[ar:abnormal]]
-[[be:abnormal]]
-[[cy:abnormal]]
-[[de:abnormal]]
-[[et:abnormal]]
-[[el:abnormal]]
-[[es:abnormal]]
-[[fa:abnormal]]
-[[fr:abnormal]]
-[[gl:abnormal]]
-[[ko:abnormal]]
-[[hi:abnormal]]
-[[io:abnormal]]
-[[id:abnormal]]
-[[it:abnormal]]
-[[kn:abnormal]]
-[[ku:abnormal]]
-[[hu:abnormal]]
-[[ml:abnormal]]
-[[ms:abnormal]]
-[[my:abnormal]]
-[[nl:abnormal]]
-[[ja:abnormal]]
-[[no:abnormal]]
-[[ps:abnormal]]
-[[pl:abnormal]]
-[[pt:abnormal]]
-[[ru:abnormal]]
-[[simple:abnormal]]
-[[fi:abnormal]]
-[[sv:abnormal]]
-[[ta:abnormal]]
-[[te:abnormal]]
-[[th:abnormal]]
-[[chr:abnormal]]
-[[tr:abnormal]]
-[[uk:abnormal]]
-[[vi:abnormal]]
-[[vo:abnormal]]
-[[zh:abnormal]]
+<ol><li> {{l|en|abnormal}}</li>
+</ol>
+am:abnormalar:abnormalbe:abnormalcy:abnormalde:abnormalet:abnormalel:abnormales:abnormalfa:abnormalfr:abnormalgl:abnormalko:abnormalhi:abnormalio:abnormalid:abnormalit:abnormalkn:abnormalku:abnormalhu:abnormalml:abnormalms:abnormalmy:abnormalnl:abnormalja:abnormalno:abnormalps:abnormalpl:abnormalpt:abnormalru:abnormalsimple:abnormalfi:abnormalsv:abnormalta:abnormalte:abnormalth:abnormalchr:abnormaltr:abnormaluk:abnormalvi:abnormalvo:abnormalzh:abnormal
 ***abstinent***
-abstinent: 
+abstinent:
 
-===Adjective===
+<h3>Adjective</h3>
 {{de-adj|comparative=abstinenter|superlative=abstinentesten}}
+<ol><li> abstinent</li>
+</ol>
 
-# [[abstinent#English|abstinent]]
-
-====Related terms====
-* [[Abstinenz]]
-* [[Abstinenzler]]
-
+<h4>Related terms</h4>
+<ul><li> Abstinenz</li>
+<li> Abstinenzler</li>
+</ul>
 ----
-
-
 ***Afghanistan***
-Afghanistan: 
+Afghanistan:
 {{wikipedia|lang=de}}
-
-===Pronunciation===
-* {{audio|De-Afghanistan.ogg|audio}}
-
-===Proper noun===
-'''Afghanistan''' {{n}}
-
-# [[Afghanistan#English|Afghanistan]]
-
-====Derived terms====
-* [[Afghane]], [[Afghani]], [[Afghanin]], [[afghanisch]]
-
-[[Category:German proper nouns]]
-[[Category:de:Countries]]
-
-----
-
-
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-Afghanistan.ogg|audio}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+<b>Afghanistan</b> {n}
+<ol><li> Afghanistan</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Afghane, Afghani, Afghanin, afghanisch</li>
+</ul>
+Category:German proper nounsCategory:de:Countries----
 ***also***
-also: 
-
-===Pronunciation===
-* {{audio|De-also.ogg|Audio}}
-
-===Interjection===
-'''also!'''
-
-# [[so]]!
-
-===Adverb===
-'''also'''
-
-# [[so]]
-# [[thus]]
-
-[[Category:2000 German basic words]]
-[[Category:German adverbs]]
-[[Category:German interjections]]
-
-----
-
-
+also:
+
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-also.ogg|Audio}}</li>
+</ul>
+
+<h3>Interjection</h3>
+<b>also!</b>
+<ol><li> so!</li>
+</ol>
+
+<h3>Adverb</h3>
+<b>also</b>
+<ol><li> so</li>
+<li> thus</li>
+</ol>
+Category:2000 German basic wordsCategory:German adverbsCategory:German interjections----
 ***Andorra***
-Andorra: 
+Andorra:
 {{wikipedia|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-Andorra.ogg|Audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{audio|De-Andorra.ogg|Audio}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun|g=n}}
-
-# {{l|en|Andorra}}
-
-====Derived terms====
-* [[Andorraner]] / [[Andorranerin]]
-* [[andorranisch]]
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Andorra}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Andorraner / Andorranerin</li>
+<li> andorranisch</li>
+</ul>
+Category:de:Countries----
 ***Angola***
-Angola: 
+Angola:
 
-===Pronunciation===
-* {{audio|De-Angola.ogg|Audio}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-Angola.ogg|Audio}}</li>
+</ul>
 
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun}}
-
-# {{l|en|Angola}}
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Angola}}</li>
+</ol>
+Category:de:Countries----
 ===Appendix===
-Appendix:Proto-Germanic/frijaz: 
-===Etymology===
-From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|lang=gem-pro||to be fond of}}. The original meaning was probably something like ''from the own clan'', from which a meaning ''being a free man, not a [[serf]]'' developed.
+Appendix:Proto-Germanic/frijaz:
 
-===Pronunciation===
-* {{IPA|lang=gem-pro|/ˈɸri.jɑz/}}
+<h3>Etymology</h3>
+From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond of|lang=gem-pro}}. The original meaning was probably something like <em>from the own clan</em>, from which a meaning <em>being a free man, not a serf</em> developed.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈɸri.jɑz/|lang=gem-pro}}</li>
+</ul>
 
-===Adjective===
-{{gem-adj}}
+<h3>Adjective</h3>
+{gem-adj}
+<ol><li> free</li>
+</ol>
 
-# [[free]]
-
-====Declension====
+<h4>Declension</h4>
 {{gem-decl-adj-a|frij}}
-
-====Related terms====
-* {{lx|gem-pro|frijōnan|frijōną}}
-
-====Descendants====
-* Old English: {{l|ang|freo|frēo}}
-** English: {{l|en|free}}
-* Old Frisian: {{l|ofs|fri|frī}}
-** West Frisian: {{l|fy|frij}}
-* Old Saxon: {{l|osx|fri|frī}}
-** Middle Low German: {{l|gml|vri}}
-*** Norwegian: {{l|no|fri}}
-*** Swedish: {{l|sv|fri}}
-*** Danish: {{l|da|fri}}
-* Old Dutch: *frī
-** Middle Dutch: {{l|dum|vri}}
-*** Dutch: {{l|nl|vrij}}
-**** Afrikaans: {{l|af|vry}}
-* Old High German: {{l|goh|fri|frī}}
-** German: {{l|de|frei}}
-* Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}
-Appendix:Swadesh lists: 
-The words from Swadesh's original 100-word list are designated by an asterisk (*). In the composite list on this page, there are actually 207 words, since seven of the words in the 100-word list (''breast'', ''fingernail'', ''full'', ''horn'', ''knee'', ''moon'', ''round'') were not in the original 200-word list. 
-
-{|  align=center class="wikitable sortable"
-|  i=No | No
-!  c=en | [[English]]
-!  c=fr | [[French]]
-!  c=de | [[German]]
-!  c=it | [[Italian]]
-!  c=es | [[Spanish]]
-!  c=nl | [[Dutch]]
-!  c=sw | [[Swedish]]
-!  c=la | [[Latin]]
-|- 
-|  i=No | 1
-|  c=en | [[I]] *
-|  c=fr | [[je]]
-|  c=de | [[ich]]
-|  c=it | [[io]]
-|  c=es | [[yo]]
-|  c=nl | [[ik]]
-|  c=sw | [[jag]]
-|  c=la | [[ego]]
-|- 
-|  i=No | 2
-|  c=en | [[you]] ''sing.'', [[thou]]
-|  c=fr | [[tu]], [[vous]] (formal)
-|  c=de | [[du]], [[Sie]] (formal)
-|  c=it | [[tu]], [[Lei]] (formal)
-|  c=es | [[tú]], [[usted]] (formal)
-|  c=nl | [[jij]], [[je]], [[U]] (formal)
-|  c=sw | [[du]]
-|  c=la | [[tu]]
-|- 
-|  i=No | 3
-|  c=en | [[he]]
-|  c=fr | [[il]]
-|  c=de | [[er]]
-|  c=it | [[lui]], [[egli]]
-|  c=es | [[él]]
-|  c=nl | [[hij]]
-|  c=sw | [[han]]
-|  c=la | [[is]], [[ea]]
-|- 
-|  i=No | 4
-|  c=en | [[we]] *
-|  c=fr | [[nous]]
-|  c=de | [[wir]]
-|  c=it | [[noi]]
-|  c=es | [[nosotros]]
-|  c=nl | [[wij]], [[we]]
-|  c=sw | [[vi]]
-|  c=la | [[nos]]
-|- 
-|  i=No | 5
-|  c=en | [[you]] ''pl.''
-|  c=fr | [[vous]]
-|  c=de | [[ihr]], [[Sie]] (formal)
-|  c=it | [[voi]]
-|  c=es | [[vosotros]], [[ustedes]] (formal)
-|  c=nl | [[jullie]]
-|  c=sw | [[ni]]
-|  c=la | [[vos]]
-|- 
-|  i=No | 6
-|  c=en | [[they]]
-|  c=fr | [[ils]], [[elles]]
-|  c=de | [[sie]]
-|  c=it | [[loro]], [[essi]]
-|  c=es | [[ellos]], [[ellas]]
-|  c=nl | [[zij]], [[ze]]
-|  c=sw | [[de]]
-|  c=la | [[ii]], [[eae]]
-|- 
-|  i=No | 7
-|  c=en | [[this]] *
-|  c=fr | [[ceci]]
-|  c=de | [[dieses]]
-|  c=it | [[questo]]
-|  c=es | [[este]]
-|  c=nl | [[deze]], [[dit]]
-|  c=sw | [[det här]]
-|  c=la | [[hic]], [[is]]
-|- 
-|  i=No | 8
-|  c=en | [[that]] *
-|  c=fr | [[cela]]
-|  c=de | [[jenes]], [[das]]
-|  c=it | [[quello]]
-|  c=es | [[ese]], [[aquel]]
-|  c=nl | [[die]], [[dat]]
-|  c=sw | [[det där]]
-|  c=la | [[ille]]
-|- 
-|  i=No | 9
-|  c=en | [[here]]
-|  c=fr | [[ici]]
-|  c=de | [[hier]]
-|  c=it | [[qui]], [[qua]]
-|  c=es | [[aquí]], [[acá]]
-|  c=nl | [[hier]]
-|  c=sw | [[här]]
-|  c=la | [[hic]]
-|- 
-|  i=No | 10
-|  c=en | [[there]]
-|  c=fr | [[là]]
-|  c=de | [[dort]]
-|  c=it | [[là]]
-|  c=es | [[ahí]], [[allí]], [[allá]]
-|  c=nl | [[daar]]
-|  c=sw | [[där]]
-|  c=la | [[ibi]]
-|- 
-|  i=No | 11
-|  c=en | [[who]] *
-|  c=fr | [[qui]]
-|  c=de | [[wer]]
-|  c=it | [[chi]]
-|  c=es | [[quien]]
-|  c=nl | [[wie]]
-|  c=sw | [[vem]]
-|  c=la | [[quis]]
-|- 
-|  i=No | 12
-|  c=en | [[what]] *
-|  c=fr | [[quoi]]
-|  c=de | [[was]]
-|  c=it | [[che]]
-|  c=es | [[que]]
-|  c=nl | [[wat]]
-|  c=sw | [[vad]]
-|  c=la | [[quid]]
-|- 
-|  i=No | 13
-|  c=en | [[where]]
-|  c=fr | [[où]]
-|  c=de | [[wo]]
-|  c=it | [[dove]]
-|  c=es | [[donde]]
-|  c=nl | [[waar]]
-|  c=sw | [[var]]
-|  c=la | [[ubi]]
-|- 
-|  i=No | 14
-|  c=en | [[when]]
-|  c=fr | [[quand]]
-|  c=de | [[wann]]
-|  c=it | [[quando]]
-|  c=es | [[cuando]]
-|  c=nl | [[wanneer]]
-|  c=sw | [[när]]
-|  c=la | [[quando]]
-|- 
-|  i=No | 15
-|  c=en | [[how]]
-|  c=fr | [[comment]]
-|  c=de | [[wie]]
-|  c=it | [[come]]
-|  c=es | [[como]]
-|  c=nl | [[hoe]]
-|  c=sw | [[hur]]
-|  c=la | [[quam]], [[quomodo]]
-|- 
-|  i=No | 16
-|  c=en | [[not]] *
-|  c=fr | [[ne]]...[[pas]]
-|  c=de | [[nicht]]
-|  c=it | [[non]]
-|  c=es | [[no]]
-|  c=nl | [[niet]]
-|  c=sw | [[inte]], [[ej]]
-|  c=la | [[non]]
-|- 
-|  i=No | 17
-|  c=en | [[all]] *
-|  c=fr | [[tout]]
-|  c=de | [[alle]]
-|  c=it | [[tutto]]
-|  c=es | [[todo]]
-|  c=nl | [[al]], [[alle]]
-|  c=sw | [[alla]]
-|  c=la | [[omnis]]
-|- 
-|  i=No | 18
-|  c=en | [[many]] *
-|  c=fr | [[plusieurs]]
-|  c=de | [[viele]]
-|  c=it | [[molti]]
-|  c=es | [[muchos]]
-|  c=nl | [[veel]]
-|  c=sw | [[många]]
-|  c=la | [[multi]]
-|- 
-|  i=No | 19
-|  c=en | [[some]]
-|  c=fr | [[quelques]]
-|  c=de | [[einige]]
-|  c=it | [[alcuni]]
-|  c=es | [[algunos]], [[unos]]
-|  c=nl | [[enkele]], [[sommige]]
-|  c=sw | [[några]], [[vissa]]
-|  c=la | [[aliqui]], [[aliquot]]
-|- 
-|  i=No | 20
-|  c=en | [[few]]
-|  c=fr | [[peu]]
-|  c=de | [[wenige]]
-|  c=it | [[pochi]]
-|  c=es | [[poco]]
-|  c=nl | [[weinig]]
-|  c=sw | [[få]]
-|  c=la | [[pauci]]
-|- 
-|  i=No | 21
-|  c=en | [[other]]
-|  c=fr | [[autre]]
-|  c=de | [[andere]]
-|  c=it | [[altro]]
-|  c=es | [[otro]]
-|  c=nl | [[ander]]
-|  c=sw | [[annan]]
-|  c=la | [[alter]], [[alius]]
-|- 
-|  i=No | 22
-|  c=en | [[one]] *
-|  c=fr | [[un]]
-|  c=de | [[eins]]
-|  c=it | [[uno]]
-|  c=es | [[uno]]
-|  c=nl | [[een]]
-|  c=sw | [[ett]]
-|  c=la | [[unus]]
-|- 
-|  i=No | 23
-|  c=en | [[two]] *
-|  c=fr | [[deux]]
-|  c=de | [[zwei]]
-|  c=it | [[due]]
-|  c=es | [[dos]]
-|  c=nl | [[twee]]
-|  c=sw | [[två]]
-|  c=la | [[duo]]
-|- 
-|  i=No | 24
-|  c=en | [[three]]
-|  c=fr | [[trois]]
-|  c=de | [[drei]]
-|  c=it | [[tre]]
-|  c=es | [[tres]]
-|  c=nl | [[drie]]
-|  c=sw | [[tre]]
-|  c=la | [[tres]]
-|- 
-|  i=No | 25
-|  c=en | [[four]]
-|  c=fr | [[quatre]]
-|  c=de | [[vier]]
-|  c=it | [[quattro]]
-|  c=es | [[cuatro]]
-|  c=nl | [[vier]]
-|  c=sw | [[fyra]]
-|  c=la | [[quattuor]]
-|- 
-|  i=No | 26
-|  c=en | [[five]]
-|  c=fr | [[cinq]]
-|  c=de | [[fünf]]
-|  c=it | [[cinque]]
-|  c=es | [[cinco]]
-|  c=nl | [[vijf]]
-|  c=sw | [[fem]]
-|  c=la | [[quinque]]
-|- 
-|  i=No | 27
-|  c=en | [[big]] *
-|  c=fr | [[grand]]
-|  c=de | [[groß]]
-|  c=it | [[grande]]
-|  c=es | [[grande]]
-|  c=nl | [[groot]]
-|  c=sw | [[stor]]
-|  c=la | [[magnus]], [[grandis]]
-|- 
-|  i=No | 28
-|  c=en | [[long]] *
-|  c=fr | [[long]]
-|  c=de | [[lang]]
-|  c=it | [[lungo]]
-|  c=es | [[largo]]
-|  c=nl | [[lang]]
-|  c=sw | [[lång]]
-|  c=la | [[longus]]
-|- 
-|  i=No | 29
-|  c=en | [[wide]]
-|  c=fr | [[large]]
-|  c=de | [[breit]], [[weit]]
-|  c=it | [[largo]]
-|  c=es | [[ancho]]
-|  c=nl | [[breed]], [[wijd]]
-|  c=sw | [[bred]], [[vid]]
-|  c=la | [[latus]]
-|- 
-|  i=No | 30
-|  c=en | [[thick]]
-|  c=fr | [[épais]]
-|  c=de | [[dick]]
-|  c=it | [[spesso]]
-|  c=es | [[grueso]]
-|  c=nl | [[dik]]
-|  c=sw | [[tjock]]
-|  c=la | [[creber]]
-|- 
-|  i=No | 31
-|  c=en | [[heavy]]
-|  c=fr | [[lourd]]
-|  c=de | [[schwer]]
-|  c=it | [[pesante]]
-|  c=es | [[pesado]]
-|  c=nl | [[zwaar]]
-|  c=sw | [[tung]]
-|  c=la | [[gravis]]
-|- 
-|  i=No | 32
-|  c=en | [[small]] *
-|  c=fr | [[petit]]
-|  c=de | [[klein]]
-|  c=it | [[piccolo]]
-|  c=es | [[pequeño]]
-|  c=nl | [[smal]]
-|  c=sw | [[liten]]
-|  c=la | [[parvus]]
-|- 
-|  i=No | 33
-|  c=en | [[short]]
-|  c=fr | [[court]]
-|  c=de | [[kurz]]
-|  c=it | [[corto]]
-|  c=es | [[corto]]
-|  c=nl | [[kort]]
-|  c=sw | [[kort]]
-|  c=la | [[brevis]]
-|- 
-|  i=No | 34
-|  c=en | [[narrow]]
-|  c=fr | [[étroit]]
-|  c=de | [[eng]]
-|  c=it | [[stretto]]
-|  c=es | [[estrecho]], [[angosto]]
-|  c=nl | [[klein]]
-|  c=sw | [[trång]]
-|  c=la | [[angustus]]
-|- 
-|  i=No | 35
-|  c=en | [[thin]]
-|  c=fr | [[mince]]
-|  c=de | [[dünn]]
-|  c=it | [[sottile]]
-|  c=es | [[delgado]], [[flaco]]
-|  c=nl | [[dun]]
-|  c=sw | [[tunn]]
-|  c=la | [[macer]]
-|- 
-|  i=No | 36
-|  c=en | [[woman]] *
-|  c=fr | [[femme]]
-|  c=de | [[Frau]]
-|  c=it | [[donna]]
-|  c=es | [[mujer]]
-|  c=nl | [[vrouw]]
-|  c=sw | [[kvinna]]
-|  c=la | [[femina]]
-|- 
-|  i=No | 37
-|  c=en | [[man]] (adult male)
-|  c=fr | [[homme]]
-|  c=de | [[Mann]]
-|  c=it | [[uomo]]
-|  c=es | [[hombre]]
-|  c=nl | [[man]]
-|  c=sw | [[man]]
-|  c=la | [[vir]]
-|- 
-|  i=No | 38
-|  c=en | [[man]] * (human being)
-|  c=fr | [[homme]]
-|  c=de | [[Mensch]]
-|  c=it | [[uomo]]
-|  c=es | [[hombre]]
-|  c=nl | [[mens]]
-|  c=sw | [[människa]]
-|  c=la | [[homo]]
-|- 
-|  i=No | 39
-|  c=en | [[kid]]
-|  c=fr | [[enfant]]
-|  c=de | [[Kind]]
-|  c=it | [[bambino]]
-|  c=es | [[niño]]
-|  c=nl | [[kind]]
-|  c=sw | [[barn]]
-|  c=la | [[puer]]
-|- 
-|  i=No | 40
-|  c=en | [[wife]]
-|  c=fr | [[femme]], [[épouse]]
-|  c=de | [[Frau]], [[Ehefrau]]
-|  c=it | [[moglie]]
-|  c=es | [[esposa]], [[mujer]]
-|  c=nl | [[vrouw]], [[echtgenote]]
-|  c=sw | [[hustru]], [[maka]], [[fru]]
-|  c=la | [[uxor]], [[mulier]]
-|- 
-|  i=No | 41
-|  c=en | [[husband]]
-|  c=fr | [[mari]], [[époux]]
-|  c=de | [[Mann]], [[Ehemann]]
-|  c=it | [[marito]]
-|  c=es | [[esposo]], [[marido]]
-|  c=nl | [[man]], [[echtgenoot]]
-|  c=sw | [[man]], [[make]]
-|  c=la | [[maritus]]
-|- 
-|  i=No | 42
-|  c=en | [[mother]]
-|  c=fr | [[mère]]
-|  c=de | [[Mutter]]
-|  c=it | [[madre]]
-|  c=es | [[madre]]
-|  c=nl | [[moeder]]
-|  c=sw | [[mamma]], [[mor]]
-|  c=la | [[mater]]
-|- 
-|  i=No | 43
-|  c=en | [[father]]
-|  c=fr | [[père]]
-|  c=de | [[Vater]]
-|  c=it | [[padre]]
-|  c=es | [[padre]]
-|  c=nl | [[vader]]
-|  c=sw | [[pappa]], [[far]]
-|  c=la | [[pater]]
-|- 
-|  i=No | 44
-|  c=en | [[animal]]
-|  c=fr | [[animal]]
-|  c=de | [[Tier]]
-|  c=it | [[animale]]
-|  c=es | [[animal]]
-|  c=nl | [[dier]]
-|  c=sw | [[djur]]
-|  c=la | [[animal]]
-|- 
-|  i=No | 45
-|  c=en | [[fish]] *
-|  c=fr | [[poisson]]
-|  c=de | [[Fisch]]
-|  c=it | [[pesce]]
-|  c=es | [[pez]], [[pescado]]
-|  c=nl | [[vis]]
-|  c=sw | [[fisk]]
-|  c=la | [[piscis]]
-|- 
-|  i=No | 46
-|  c=en | [[bird]] *
-|  c=fr | [[oiseau]]
-|  c=de | [[Vogel]]
-|  c=it | [[uccello]]
-|  c=es | [[ave]], [[pájaro]]
-|  c=nl | [[vogel]]
-|  c=sw | [[fågel]]
-|  c=la | [[avis]]
-|- 
-|  i=No | 47
-|  c=en | [[hound]] *
-|  c=fr | [[chien]]
-|  c=de | [[Hund]]
-|  c=it | [[cane]]
-|  c=es | [[perro]]
-|  c=nl | [[hond]]
-|  c=sw | [[hund]]
-|  c=la | [[canis]]
-|- 
-|  i=No | 48
-|  c=en | [[louse]] *
-|  c=fr | [[pou]]
-|  c=de | [[Laus]]
-|  c=it | [[pidocchio]]
-|  c=es | [[piojo]]
-|  c=nl | [[luis]]
-|  c=sw | [[lus]]
-|  c=la | [[pedis]]
-|- 
-|  i=No | 49
-|  c=en | [[snake]]
-|  c=fr | [[serpent]]
-|  c=de | [[Schlange]]
-|  c=it | [[serpente]]
-|  c=es | [[serpiente]], [[culebra]]
-|  c=nl | [[slang]]
-|  c=sw | [[orm]]
-|  c=la | [[serpens]]
-|- 
-|  i=No | 50
-|  c=en | [[worm]]
-|  c=fr | [[ver]]
-|  c=de | [[Wurm]]
-|  c=it | [[verme]]
-|  c=es | [[gusano]]
-|  c=nl | [[worm]]
-|  c=sw | [[mask]]
-|  c=la | [[vermis]]
-|- 
-|  i=No | 51
-|  c=en | [[beam]] *
-|  c=fr | [[arbre]]
-|  c=de | [[Baum]]
-|  c=it | [[albero]]
-|  c=es | [[árbol]]
-|  c=nl | [[boom]]
-|  c=sw | [[träd]]
-|  c=la | [[arbor]]
-|- 
-|  i=No | 52
-|  c=en | [[forest]]
-|  c=fr | [[forêt]]
-|  c=de | [[Wald]]
-|  c=it | [[foresta]]
-|  c=es | [[bosque]]
-|  c=nl | [[woud]]
-|  c=sw | [[skog]]
-|  c=la | [[silva]]
-|- 
-|  i=No | 53
-|  c=en | [[stick]]
-|  c=fr | [[bâton]]
-|  c=de | [[Stock]]
-|  c=it | [[bastone]]
-|  c=es | [[palo]]
-|  c=nl | [[stok]]
-|  c=sw | [[pinne]]
-|  c=la | [[fustis]]
-|- 
-|  i=No | 54
-|  c=en | [[fruit]]
-|  c=fr | [[fruit]]
-|  c=de | [[Frucht]]
-|  c=it | [[frutta]]
-|  c=es | [[fruta]]
-|  c=nl | [[fruit]], [[vrucht]]
-|  c=sw | [[frukt]]
-|  c=la | [[fructus]]
-|- 
-|  i=No | 55
-|  c=en | [[seed]] *
-|  c=fr | [[graine]]
-|  c=de | [[Samen]]
-|  c=it | [[seme]]
-|  c=es | [[semilla]]
-|  c=nl | [[zaad]]
-|  c=sw | [[frö]]
-|  c=la | [[semen]]
-|- 
-|  i=No | 56
-|  c=en | [[leaf]] *
-|  c=fr | [[feuille]]
-|  c=de | [[Blatt]]
-|  c=it | [[foglia]]
-|  c=es | [[hoja]]
-|  c=nl | [[blad]]
-|  c=sw | [[löv]], [[blad]]
-|  c=la | [[folium]]
-|- 
-|  i=No | 57
-|  c=en | [[root]] *
-|  c=fr | [[racine]]
-|  c=de | [[Wurzel]]
-|  c=it | [[radice]]
-|  c=es | [[raíz]]
-|  c=nl | [[root]]
-|  c=sw | [[rot]]
-|  c=la | [[radix]]
-|- 
-|  i=No | 58
-|  c=en | [[bark]] * (from tree)
-|  c=fr | [[écorce]]
-|  c=de | [[Rinde]]
-|  c=it | [[corteccia]]
-|  c=es | [[corteza]]
-|  c=nl | [[bark]]
-|  c=sw | [[bark]]
-|  c=la | [[cortex]]
-|- 
-|  i=No | 59
-|  c=en | [[flower]]
-|  c=fr | [[fleur]]
-|  c=de | [[Blume]]
-|  c=it | [[fiore]]
-|  c=es | [[flor]]
-|  c=nl | [[bloem]]
-|  c=sw | [[blomma]]
-|  c=la | [[flos]]
-|- 
-|  i=No | 60
-|  c=en | [[grass]]
-|  c=fr | [[herbe]]
-|  c=de | [[Gras]]
-|  c=it | [[erba]]
-|  c=es | [[hierba]], [[pasto]]
-|  c=nl | [[gras]]
-|  c=sw | [[gräs]]
-|  c=la | [[herba]]
-|- 
-|  i=No | 61
-|  c=en | [[rope]]
-|  c=fr | [[corde]]
-|  c=de | [[Seil]]
-|  c=it | [[corda]]
-|  c=es | [[cuerda]]
-|  c=nl | [[reep]], [[koord]]
-|  c=sw | [[rep]]
-|  c=la | [[funis]]
-|- 
-|  i=No | 62
-|  c=en | [[skin]] *
-|  c=fr | [[peau]]
-|  c=de | [[Haut]]
-|  c=it | [[pelle]]
-|  c=es | [[piel]]
-|  c=nl | [[huid]]
-|  c=sw | [[hud]]
-|  c=la | [[cutis]]
-|- 
-|  i=No | 63
-|  c=en | [[meat]]
-|  c=fr | [[viande]]
-|  c=de | [[Fleisch]]
-|  c=it | [[carne]]
-|  c=es | [[carne]]
-|  c=nl | [[vlees]]
-|  c=sw | [[kött]]
-|  c=la | [[caro]]
-|- 
-|  i=No | 64
-|  c=en | [[blood]] *
-|  c=fr | [[sang]]
-|  c=de | [[Blut]]
-|  c=it | [[sangue]]
-|  c=es | [[sangre]]
-|  c=nl | [[bloed]]
-|  c=sw | [[blod]]
-|  c=la | [[sanguis]]
-|- 
-|  i=No | 65
-|  c=en | [[bone]] *
-|  c=fr | [[os]]
-|  c=de | [[Knochen]]
-|  c=it | [[osso]]
-|  c=es | [[hueso]]
-|  c=nl | [[been]], [[bot]]
-|  c=sw | [[ben]]
-|  c=la | [[os]]
-|- 
-|  i=No | 66
-|  c=en | [[fat]] * (n.)
-|  c=fr | [[graisse]]
-|  c=de | [[Fett]]
-|  c=it | [[grasso]]
-|  c=es | [[grasa]]
-|  c=nl | [[vet]]
-|  c=sw | [[fett]]
-|  c=la | [[adeps]]
-|- 
-|  i=No | 67
-|  c=en | [[egg]] *
-|  c=fr | [[œuf]]
-|  c=de | [[Ei]]
-|  c=it | [[uovo]]
-|  c=es | [[huevo]]
-|  c=nl | [[ei]]
-|  c=sw | [[ägg]]
-|  c=la | [[ovum]]
-|- 
-|  i=No | 68
-|  c=en | [[horn]] *
-|  c=fr | [[corne]]
-|  c=de | [[Horn]]
-|  c=it | [[corno]]
-|  c=es | [[cuerno]]
-|  c=nl | [[horn]]
-|  c=sw | [[horn]]
-|  c=la | [[cornu]]
-|- 
-|  i=No | 69
-|  c=en | [[tail]] *
-|  c=fr | [[queue]]
-|  c=de | [[Schwanz]]
-|  c=it | [[coda]]
-|  c=es | [[cola]]
-|  c=nl | [[staart]]
-|  c=sw | [[svans]]
-|  c=la | [[cauda]]
-|- 
-|  i=No | 70
-|  c=en | [[feather]] *
-|  c=fr | [[plume]]
-|  c=de | [[Feder]]
-|  c=it | [[piuma]]
-|  c=es | [[pluma]]
-|  c=nl | [[veder]]
-|  c=sw | [[fjäder]]
-|  c=la | [[penna]]
-|- 
-|  i=No | 71
-|  c=en | [[hair]] *
-|  c=fr | [[cheveu]]
-|  c=de | [[Haar]]
-|  c=it | [[capelli]]
-|  c=es | [[cabello]], [[pelo]]
-|  c=nl | [[haar]]
-|  c=sw | [[hår]]
-|  c=la | [[capillus]], [[coma]], [[crinis]]
-|- 
-|  i=No | 72
-|  c=en | [[head]] *
-|  c=fr | [[tête]]
-|  c=de | [[Kopf]], [[Haupt]]
-|  c=it | [[testa]]
-|  c=es | [[cabeza]]
-|  c=nl | [[hoofd]], [[kop]]
-|  c=sw | [[huvud]]
-|  c=la | [[caput]]
-|- 
-|  i=No | 73
-|  c=en | [[ear]] *
-|  c=fr | [[oreille]]
-|  c=de | [[Ohr]]
-|  c=it | [[orecchio]]
-|  c=es | [[oreja]]
-|  c=nl | [[aar]]
-|  c=sw | [[öra]]
-|  c=la | [[auris]]
-|- 
-|  i=No | 74
-|  c=en | [[eye]] *
-|  c=fr | [[œil]]
-|  c=de | [[Auge]]
-|  c=it | [[occhio]]
-|  c=es | [[ojo]]
-|  c=nl | [[oog]]
-|  c=sw | [[öga]]
-|  c=la | [[oculus]]
-|- 
-|  i=No | 75
-|  c=en | [[nose]] *
-|  c=fr | [[nez]]
-|  c=de | [[Nase]]
-|  c=it | [[naso]]
-|  c=es | [[nariz]]
-|  c=nl | [[neus]]
-|  c=sw | [[näsa]]
-|  c=la | [[nasus]]
-|- 
-|  i=No | 76
-|  c=en | [[mouth]] *
-|  c=fr | [[bouche]]
-|  c=de | [[Mund]]
-|  c=it | [[bocca]]
-|  c=es | [[boca]]
-|  c=nl | [[mond]]
-|  c=sw | [[mun]]
-|  c=la | [[os]]
-|- 
-|  i=No | 77
-|  c=en | [[tooth]] *
-|  c=fr | [[dent]]
-|  c=de | [[Zahn]]
-|  c=it | [[dente]]
-|  c=es | [[diente]]
-|  c=nl | [[tand]]
-|  c=sw | [[tand]]
-|  c=la | [[dens]]
-|- 
-|  i=No | 78
-|  c=en | [[tongue]] *
-|  c=fr | [[langue]]
-|  c=de | [[Zunge]]
-|  c=it | [[lingua]]
-|  c=es | [[lengua]]
-|  c=nl | [[tong]]
-|  c=sw | [[tunga]]
-|  c=la | [[lingua]]
-|- 
-|  i=No | 79
-|  c=en | [[fingernail]]
-|  c=fr | [[ongle]]
-|  c=de | [[Fingernagel]]
-|  c=it | [[unghia]]
-|  c=es | [[uña]]
-|  c=nl | [[vingernagel]]
-|  c=sw | [[nagel]]
-|  c=la | [[unguis]]
-|- 
-|  i=No | 80
-|  c=en | [[foot]] *
-|  c=fr | [[pied]]
-|  c=de | [[Fuß]]
-|  c=it | [[piede]]
-|  c=es | [[pie]]
-|  c=nl | [[voet]]
-|  c=sw | [[fot]]
-|  c=la | [[pes]]
-|- 
-|  i=No | 81
-|  c=en | [[leg]]
-|  c=fr | [[jambe]]
-|  c=de | [[Bein]]
-|  c=it | [[gamba]]
-|  c=es | [[pierna]]
-|  c=nl | [[been]]
-|  c=sw | [[ben]]
-|  c=la | [[crus]]
-|- 
-|  i=No | 82
-|  c=en | [[knee]] *
-|  c=fr | [[genou]]
-|  c=de | [[Knie]]
-|  c=it | [[ginocchio]]
-|  c=es | [[rodilla]]
-|  c=nl | [[knie]]
-|  c=sw | [[knä]]
-|  c=la | [[genu]]
-|- 
-|  i=No | 83
-|  c=en | [[hand]] *
-|  c=fr | [[main]]
-|  c=de | [[Hand]]
-|  c=it | [[mano]]
-|  c=es | [[mano]]
-|  c=nl | [[hand]]
-|  c=sw | [[hand]]
-|  c=la | [[manus]]
-|- 
-|  i=No | 84
-|  c=en | [[wing]]
-|  c=fr | [[aile]]
-|  c=de | [[Flügel]]
-|  c=it | [[ala]]
-|  c=es | [[ala]]
-|  c=nl | [[vleugel]]
-|  c=sw | [[vinge]]
-|  c=la | [[ala]]
-|- 
-|  i=No | 85
-|  c=en | [[belly]] *
-|  c=fr | [[ventre]]
-|  c=de | [[Bauch]]
-|  c=it | [[pancia]]
-|  c=es | [[barriga]], [[vientre]], [[panza]]
-|  c=nl | [[buik]]
-|  c=sw | [[mage]]
-|  c=la | [[venter]]
-|- 
-|  i=No | 86
-|  c=en | [[guts]]
-|  c=fr | [[entrailles]]
-|  c=de | [[Eingeweide]], [[Innereien]]
-|  c=it | [[intestino]]
-|  c=es | [[entrañas]], [[tripas]]
-|  c=nl | [[ingewanden]]
-|  c=sw | [[inälvor]]
-|  c=la | [[intestina]]
-|- 
-|  i=No | 87
-|  c=en | [[neck]] *
-|  c=fr | [[cou]]
-|  c=de | [[Hals]]
-|  c=it | [[collo]]
-|  c=es | [[cuello]]
-|  c=nl | [[nek]]
-|  c=sw | [[hals]], [[nacke]]
-|  c=la | [[collum]], [[cervix]]
-|- 
-|  i=No | 88
-|  c=en | [[back]]
-|  c=fr | [[dos]]
-|  c=de | [[Rücken]]
-|  c=it | [[schiena]]
-|  c=es | [[espalda]]
-|  c=nl | [[rug]]
-|  c=sw | [[rygg]]
-|  c=la | [[tergum]]
-|- 
-|  i=No | 89
-|  c=en | [[breast]] *
-|  c=fr | [[sein]], [[poitrine]]
-|  c=de | [[Brust]]
-|  c=it | [[petto]]
-|  c=es | [[pecho]], [[seno]]
-|  c=nl | [[borst]]
-|  c=sw | [[bröst]]
-|  c=la | [[pectus]], [[mamma]]
-|- 
-|  i=No | 90
-|  c=en | [[heart]] *
-|  c=fr | [[cœur]]
-|  c=de | [[Herz]]
-|  c=it | [[cuore]]
-|  c=es | [[corazón]]
-|  c=nl | [[hart]]
-|  c=sw | [[hjärta]]
-|  c=la | [[cor]]
-|- 
-|  i=No | 91
-|  c=en | [[liver]] *
-|  c=fr | [[foie]]
-|  c=de | [[Leber]]
-|  c=it | [[fegato]]
-|  c=es | [[hígado]]
-|  c=nl | [[lever]]
-|  c=sw | [[lever]]
-|  c=la | [[iecur]]
-|- 
-|  i=No | 92
-|  c=en | [[drink]] *
-|  c=fr | [[boire]]
-|  c=de | [[trinken]]
-|  c=it | [[bere]]
-|  c=es | [[beber]], [[tomar]]
-|  c=nl | [[drinken]]
-|  c=sw | [[dricka]]
-|  c=la | [[bibere]]
-|- 
-|  i=No | 93
-|  c=en | [[eat]] *
-|  c=fr | [[manger]]
-|  c=de | [[essen]]
-|  c=it | [[mangiare]]
-|  c=es | [[comer]]
-|  c=nl | [[eten]]
-|  c=sw | [[äta]]
-|  c=la | [[edere]]
-|- 
-|  i=No | 94
-|  c=en | [[bite]] *
-|  c=fr | [[mordre]]
-|  c=de | [[beißen]]
-|  c=it | [[mordere]]
-|  c=es | [[morder]]
-|  c=nl | [[bijten]]
-|  c=sw | [[bita]]
-|  c=la | [[mordere]]
-|- 
-|  i=No | 95
-|  c=en | [[suck]]
-|  c=fr | [[sucer]]
-|  c=de | [[saugen]]
-|  c=it | [[succhiare]]
-|  c=es | [[chupar]]
-|  c=nl | [[zuigen]]
-|  c=sw | [[suga]]
-|  c=la | [[sugere]]
-|- 
-|  i=No | 96
-|  c=en | [[spit]]
-|  c=fr | [[cracher]]
-|  c=de | [[spucken]]
-|  c=it | [[sputare]]
-|  c=es | [[escupir]]
-|  c=nl | [[spugen]]
-|  c=sw | [[spotta]]
-|  c=la | [[sputare]]
-|- 
-|  i=No | 97
-|  c=en | [[vomit]]
-|  c=fr | [[vomir]]
-|  c=de | [[erbrechen]]
-|  c=it | [[vomitare]]
-|  c=es | [[vomitar]]
-|  c=nl | [[braken]], [[overgeven]]
-|  c=sw | [[kräkas]], [[spy]]
-|  c=la | [[vomere]]
-|- 
-|  i=No | 98
-|  c=en | [[blow]]
-|  c=fr | [[souffler]]
-|  c=de | [[blasen]]
-|  c=it | [[soffiare]]
-|  c=es | [[soplar]]
-|  c=nl | [[blazen]]
-|  c=sw | [[blåsa]]
-|  c=la | [[flare]]
-|- 
-|  i=No | 99
-|  c=en | [[breathe]]
-|  c=fr | [[respirer]]
-|  c=de | [[atmen]]
-|  c=it | [[respirare]]
-|  c=es | [[respirar]]
-|  c=nl | [[ademen]]
-|  c=sw | [[andas]]
-|  c=la | [[spirare]]
-|- 
-|  i=No | 100
-|  c=en | [[laugh]]
-|  c=fr | [[rire]]
-|  c=de | [[lachen]]
-|  c=it | [[ridere]]
-|  c=es | [[reír]]
-|  c=nl | [[lachen]]
-|  c=sw | [[skratta]]
-|  c=la | [[ridere]]
-|- 
-|  i=No | 101
-|  c=en | [[see]] *
-|  c=fr | [[voir]]
-|  c=de | [[sehen]]
-|  c=it | [[vedere]]
-|  c=es | [[ver]]
-|  c=nl | [[zien]]
-|  c=sw | [[se]]
-|  c=la | [[videre]]
-|- 
-|  i=No | 102
-|  c=en | [[hear]] *
-|  c=fr | [[entendre]]
-|  c=de | [[hören]]
-|  c=it | [[udire]], [[sentire]]
-|  c=es | [[oír]]
-|  c=nl | [[horen]]
-|  c=sw | [[höra]]
-|  c=la | [[audire]]
-|- 
-|  i=No | 103
-|  c=en | [[know]] * (a fact)
-|  c=fr | [[savoir]]
-|  c=de | [[wissen]]
-|  c=it | [[sapere]]
-|  c=es | [[saber]]
-|  c=nl | [[kennen]]
-|  c=sw | [[veta]]
-|  c=la | [[scire]]
-|- 
-|  i=No | 104
-|  c=en | [[think]]
-|  c=fr | [[penser]]
-|  c=de | [[denken]]
-|  c=it | [[pensare]]
-|  c=es | [[pensar]]
-|  c=nl | [[denken]]
-|  c=sw | [[tänka]]
-|  c=la | [[putare]]
-|- 
-|  i=No | 105
-|  c=en | [[smell]]
-|  c=fr | [[sentir]]
-|  c=de | [[riechen]]
-|  c=it | [[odorare]], [[annusare]]
-|  c=es | [[oler]]
-|  c=nl | [[smelten]]
-|  c=sw | [[lukta]]
-|  c=la | [[olere]]
-|- 
-|  i=No | 106
-|  c=en | [[fear]]
-|  c=fr | [[craindre]], [[avoir]] [[peur]]
-|  c=de | [[fürchten]]
-|  c=it | [[temere]]
-|  c=es | [[temer]]
-|  c=nl | [[vrezen]], [[angst]]
-|  c=sw | [[frukta]], [[rädas]]
-|  c=la | [[timere]]
-|- 
-|  i=No | 107
-|  c=en | [[sleep]] *
-|  c=fr | [[dormir]]
-|  c=de | [[schlafen]]
-|  c=it | [[dormire]]
-|  c=es | [[dormir]]
-|  c=nl | [[slapen]]
-|  c=sw | [[sova]]
-|  c=la | [[dormire]]
-|- 
-|  i=No | 108
-|  c=en | [[live]]
-|  c=fr | [[vivre]]
-|  c=de | [[leben]]
-|  c=it | [[vivere]]
-|  c=es | [[vivir]]
-|  c=nl | [[leven]]
-|  c=sw | [[leva]]
-|  c=la | [[vivere]]
-|- 
-|  i=No | 109
-|  c=en | [[die]] *
-|  c=fr | [[mourir]]
-|  c=de | [[sterben]]
-|  c=it | [[morire]]
-|  c=es | [[morir]]
-|  c=nl | [[doden]]
-|  c=sw | [[dö]]
-|  c=la | [[mori]]
-|- 
-|  i=No | 110
-|  c=en | [[kill]] *
-|  c=fr | [[tuer]]
-|  c=de | [[töten]]
-|  c=it | [[uccidere]]
-|  c=es | [[matar]]
-|  c=nl | [[doden]]
-|  c=sw | [[döda]]
-|  c=la | [[necare]]
-|- 
-|  i=No | 111
-|  c=en | [[fight]]
-|  c=fr | [[se]] [[battre]]
-|  c=de | [[kämpfen]]
-|  c=it | [[combattere]]
-|  c=es | [[pelear]]
-|  c=nl | [[vechten]]
-|  c=sw | [[strida]]
-|  c=la | [[pugnare]]
-|- 
-|  i=No | 112
-|  c=en | [[hunt]]
-|  c=fr | [[chasser]]
-|  c=de | [[jagen]]
-|  c=it | [[cacciare]]
-|  c=es | [[cazar]]
-|  c=nl | [[jagen]]
-|  c=sw | [[jaga]]
-|  c=la | [[venari]]
-|- 
-|  i=No | 113
-|  c=en | [[hit]]
-|  c=fr | [[frapper]]
-|  c=de | [[schlagen]]
-|  c=it | [[colpire]]
-|  c=es | [[golpear]]
-|  c=nl | [[slaan]]
-|  c=sw | [[slå]]
-|  c=la | [[pellere]]
-|- 
-|  i=No | 114
-|  c=en | [[cut]]
-|  c=fr | [[couper]]
-|  c=de | [[schneiden]]
-|  c=it | [[tagliare]]
-|  c=es | [[cortar]]
-|  c=nl | [[snijden]]
-|  c=sw | [[skära]]
-|  c=la | [[secare]]
-|- 
-|  i=No | 115
-|  c=en | [[split]]
-|  c=fr | [[fendre]]
-|  c=de | [[spalten]]
-|  c=it | [[dividere]], [[separare]]
-|  c=es | [[partir]]
-|  c=nl | [[splijten]]
-|  c=sw | [[dela]], [[klyva]]
-|  c=la | [[scindere]], [[partiri]]
-|- 
-|  i=No | 116
-|  c=en | [[stab]]
-|  c=fr | [[poignarder]]
-|  c=de | [[stechen]]
-|  c=it | [[pugnalare]]
-|  c=es | [[apuñalar]]
-|  c=nl | [[steken]]
-|  c=sw | [[sticka]]
-|  c=la | [[traicere]]
-|- 
-|  i=No | 117
-|  c=en | [[scratch]]
-|  c=fr | [[gratter]]
-|  c=de | [[kratzen]]
-|  c=it | [[graffiare]]
-|  c=es | [[arañar]], [[rascar]]
-|  c=nl | [[krabben]]
-|  c=sw | [[klia]]
-|  c=la | [[radere]]
-|- 
-|  i=No | 118
-|  c=en | [[dig]]
-|  c=fr | [[creuser]]
-|  c=de | [[graben]]
-|  c=it | [[scavare]]
-|  c=es | [[cavar]]
-|  c=nl | [[delven]]
-|  c=sw | [[gräva]]
-|  c=la | [[fodere]]
-|- 
-|  i=No | 119
-|  c=en | [[swim]] *
-|  c=fr | [[nager]]
-|  c=de | [[schwimmen]]
-|  c=it | [[nuotare]]
-|  c=es | [[nadar]]
-|  c=nl | [[zwemmen]]
-|  c=sw | [[simma]]
-|  c=la | [[natare]]
-|- 
-|  i=No | 120
-|  c=en | [[fly]] * (v.)
-|  c=fr | [[voler]]
-|  c=de | [[fliegen]]
-|  c=it | [[volare]]
-|  c=es | [[volar]]
-|  c=nl | [[vliegen]]
-|  c=sw | [[flyga]]
-|  c=la | [[volare]]
-|- 
-|  i=No | 121
-|  c=en | [[walk]] *
-|  c=fr | [[marcher]]
-|  c=de | [[gehen]]
-|  c=it | [[camminare]]
-|  c=es | [[caminar]]
-|  c=nl | [[lopen]], [[wandelen]]
-|  c=sw | [[gå]]
-|  c=la | [[gradi]]
-|- 
-|  i=No | 122
-|  c=en | [[come]] *
-|  c=fr | [[venir]]
-|  c=de | [[kommen]]
-|  c=it | [[venire]]
-|  c=es | [[venir]]
-|  c=nl | [[komen]]
-|  c=sw | [[komma]]
-|  c=la | [[venire]]
-|- 
-|  i=No | 123
-|  c=en | [[lie]] *
-|  c=fr | [[s]]'[[étendre]]
-|  c=de | [[liegen]]
-|  c=it | [[distendersi]]
-|  c=es | [[echarse]], [[acostarse]], [[tenderse]]
-|  c=nl | [[liegen]]
-|  c=sw | [[ligga]]
-|  c=la | [[iacere]]
-|- 
-|  i=No | 124
-|  c=en | [[sit]] *
-|  c=fr | [[s'asseoir]]
-|  c=de | [[setzen]]
-|  c=it | [[sedere]]
-|  c=es | [[sentarse]]
-|  c=nl | [[zitten]]
-|  c=sw | [[sitta]]
-|  c=la | [[sedere]]
-|- 
-|  i=No | 125
-|  c=en | [[stand]] *
-|  c=fr | [[se lever]]
-|  c=de | [[stehen]]
-|  c=it | [[stare]] [[in]] [[piedi]]
-|  c=es | [[estar de pie]]
-|  c=nl | [[staan]]
-|  c=sw | [[stå]]
-|  c=la | [[stare]]
-|- 
-|  i=No | 126
-|  c=en | [[turn]]
-|  c=fr | [[tourner]]
-|  c=de | [[drehen]]
-|  c=it | [[girare]]
-|  c=es | [[voltear]]
-|  c=nl | [[draaien]]
-|  c=sw | [[svänga]]
-|  c=la | [[vertere]]
-|- 
-|  i=No | 127
-|  c=en | [[fall]]
-|  c=fr | [[tomber]]
-|  c=de | [[fallen]]
-|  c=it | [[cadere]]
-|  c=es | [[caer]]
-|  c=nl | [[vallen]]
-|  c=sw | [[falla]]
-|  c=la | [[cadere]]
-|- 
-|  i=No | 128
-|  c=en | [[give]] *
-|  c=fr | [[donner]]
-|  c=de | [[geben]]
-|  c=it | [[dare]]
-|  c=es | [[dar]]
-|  c=nl | [[geven]]
-|  c=sw | [[ge]]
-|  c=la | [[dare]]
-|- 
-|  i=No | 129
-|  c=en | [[hold]]
-|  c=fr | [[tenir]]
-|  c=de | [[halten]]
-|  c=it | [[tenere]]
-|  c=es | [[sostener]]
-|  c=nl | [[houden]]
-|  c=sw | [[hålla]]
-|  c=la | [[tenere]]
-|- 
-|  i=No | 130
-|  c=en | [[squeeze]]
-|  c=fr | [[serrer]]
-|  c=de | [[quetschen]]
-|  c=it | [[spremere]]
-|  c=es | [[apretar]]
-|  c=nl | [[knijpen]]
-|  c=sw | [[klämma]]
-|  c=la | [[premere]]
-|- 
-|  i=No | 131
-|  c=en | [[rub]]
-|  c=fr | [[frotter]]
-|  c=de | [[reiben]]
-|  c=it | [[strofinare]]
-|  c=es | [[frotar]], [[restregar]]
-|  c=nl | [[wrijven]]
-|  c=sw | [[gnida]]
-|  c=la | [[fricare]]
-|- 
-|  i=No | 132
-|  c=en | [[wash]]
-|  c=fr | [[laver]]
-|  c=de | [[waschen]]
-|  c=it | [[lavare]]
-|  c=es | [[lavar]]
-|  c=nl | [[wassen]]
-|  c=sw | [[tvätta]]
-|  c=la | [[lavare]]
-|- 
-|  i=No | 133
-|  c=en | [[wipe]]
-|  c=fr | [[essuyer]]
-|  c=de | [[wischen]]
-|  c=it | [[asciugare]]
-|  c=es | [[limpiar]]
-|  c=nl | [[vegen]]
-|  c=sw | [[rensa]]
-|  c=la | [[tergere]]
-|- 
-|  i=No | 134
-|  c=en | [[pull]]
-|  c=fr | [[tirer]]
-|  c=de | [[ziehen]]
-|  c=it | [[tirare]]
-|  c=es | [[tirar]]
-|  c=nl | [[trekken]]
-|  c=sw | [[dra]]
-|  c=la | [[trahere]]
-|- 
-|  i=No | 135
-|  c=en | [[push]]
-|  c=fr | [[pousser]]
-|  c=de | [[drücken]]
-|  c=it | [[spingere]]
-|  c=es | [[empujar]]
-|  c=nl | [[duwen]]
-|  c=sw | [[trycka]]
-|  c=la | [[pellere]], [[urgere]]
-|- 
-|  i=No | 136
-|  c=en | [[throw]]
-|  c=fr | [[jeter]]
-|  c=de | [[werfen]]
-|  c=it | [[tirare]]
-|  c=es | [[tirar]]
-|  c=nl | [[werpen]], [[gooien]]
-|  c=sw | [[kasta]]
-|  c=la | [[iacere]]
-|- 
-|  i=No | 137
-|  c=en | [[tie]]
-|  c=fr | [[lier]]
-|  c=de | [[binden]]
-|  c=it | [[legare]]
-|  c=es | [[atar]]
-|  c=nl | [[binden]]
-|  c=sw | [[knyta]], [[binda]]
-|  c=la | [[stringere]], [[ligare]]
-|- 
-|  i=No | 138
-|  c=en | [[sew]]
-|  c=fr | [[coudre]]
-|  c=de | [[nähen]]
-|  c=it | [[cucire]]
-|  c=es | [[coser]]
-|  c=nl | [[naaien]]
-|  c=sw | [[sy]]
-|  c=la | [[suere]]
-|- 
-|  i=No | 139
-|  c=en | [[count]]
-|  c=fr | [[compter]]
-|  c=de | [[zählen]]
-|  c=it | [[contare]]
-|  c=es | [[contar]]
-|  c=nl | [[tellen]]
-|  c=sw | [[räkna]]
-|  c=la | [[numerare]]
-|- 
-|  i=No | 140
-|  c=en | [[say]] *
-|  c=fr | [[dire]]
-|  c=de | [[sagen]]
-|  c=it | [[dire]]
-|  c=es | [[decir]]
-|  c=nl | [[zeggen]]
-|  c=sw | [[säga]]
-|  c=la | [[dicere]]
-|- 
-|  i=No | 141
-|  c=en | [[sing]]
-|  c=fr | [[chanter]]
-|  c=de | [[singen]]
-|  c=it | [[cantare]]
-|  c=es | [[cantar]]
-|  c=nl | [[zingen]]
-|  c=sw | [[sjunga]]
-|  c=la | [[canere]]
-|- 
-|  i=No | 142
-|  c=en | [[play]]
-|  c=fr | [[jouer]]
-|  c=de | [[spielen]]
-|  c=it | [[giocare]]
-|  c=es | [[jugar]]
-|  c=nl | [[spelen]]
-|  c=sw | [[leka]], [[spela]]
-|  c=la | [[ludere]]
-|- 
-|  i=No | 143
-|  c=en | [[float]]
-|  c=fr | [[flotter]]
-|  c=de | [[schweben]]
-|  c=it | [[galleggiare]]
-|  c=es | [[flotar]]
-|  c=nl | [[zweven]]
-|  c=sw | [[flyta]]
-|  c=la | [[fluctuare]]
-|- 
-|  i=No | 144
-|  c=en | [[flow]]
-|  c=fr | [[couler]]
-|  c=de | [[fließen]]
-|  c=it | [[fluire]]
-|  c=es | [[fluir]]
-|  c=nl | [[vloeien]]
-|  c=sw | [[rinna]]
-|  c=la | [[fluere]]
-|- 
-|  i=No | 145
-|  c=en | [[freeze]]
-|  c=fr | [[geler]]
-|  c=de | [[frieren]]
-|  c=it | [[gelare]]
-|  c=es | [[helar]]
-|  c=nl | [[vriezen]]
-|  c=sw | [[frysa]]
-|  c=la | [[gelare]]
-|- 
-|  i=No | 146
-|  c=en | [[swell]]
-|  c=fr | [[gonfler]]
-|  c=de | [[schwellen]]
-|  c=it | [[gonfiare]]
-|  c=es | [[hincharse]]
-|  c=nl | [[zwellen]]
-|  c=sw | [[svälla]]
-|  c=la | [[inflare]]
-|- 
-|  i=No | 147
-|  c=en | [[sun]] *
-|  c=fr | [[soleil]]
-|  c=de | [[Sonne]]
-|  c=it | [[sole]]
-|  c=es | [[sol]]
-|  c=nl | [[zon]]
-|  c=sw | [[sol]]
-|  c=la | [[sol]]
-|- 
-|  i=No | 148
-|  c=en | [[moon]] *
-|  c=fr | [[lune]]
-|  c=de | [[Mond]]
-|  c=it | [[luna]]
-|  c=es | [[luna]]
-|  c=nl | [[maan]]
-|  c=sw | [[måne]]
-|  c=la | [[luna]]
-|- 
-|  i=No | 149
-|  c=en | [[star]] *
-|  c=fr | [[étoile]]
-|  c=de | [[Stern]]
-|  c=it | [[stella]]
-|  c=es | [[estrella]]
-|  c=nl | [[ster]]
-|  c=sw | [[stjärna]]
-|  c=la | [[stella]]
-|- 
-|  i=No | 150
-|  c=en | [[water]] *
-|  c=fr | [[eau]]
-|  c=de | [[Wasser]]
-|  c=it | [[acqua]]
-|  c=es | [[agua]]
-|  c=nl | [[water]]
-|  c=sw | [[vatten]]
-|  c=la | [[aqua]]
-|- 
-|  i=No | 151
-|  c=en | [[rain]] *
-|  c=fr | [[pluie]]
-|  c=de | [[Regen]]
-|  c=it | [[pioggia]]
-|  c=es | [[lluvia]]
-|  c=nl | [[regen]]
-|  c=sw | [[regn]]
-|  c=la | [[pluvia]]
-|- 
-|  i=No | 152
-|  c=en | [[river]]
-|  c=fr | [[rivière]]
-|  c=de | [[Fluß]]
-|  c=it | [[fiume]]
-|  c=es | [[río]]
-|  c=nl | [[rivier]]
-|  c=sw | [[flod]]
-|  c=la | [[fluvius]]
-|- 
-|  i=No | 153
-|  c=en | [[lake]]
-|  c=fr | [[lac]]
-|  c=de | [[See]]
-|  c=it | [[lago]]
-|  c=es | [[lago]]
-|  c=nl | [[lak]]
-|  c=sw | [[sjö]]
-|  c=la | [[lacus]]
-|- 
-|  i=No | 154
-|  c=en | [[sea]]
-|  c=fr | [[mer]]
-|  c=de | [[Meer]], [[See]]
-|  c=it | [[mare]]
-|  c=es | [[mar]]
-|  c=nl | [[zee]]
-|  c=sw | [[hav]]
-|  c=la | [[mare]]
-|- 
-|  i=No | 155
-|  c=en | [[salt]]
-|  c=fr | [[sel]]
-|  c=de | [[Salz]]
-|  c=it | [[sale]]
-|  c=es | [[sal]]
-|  c=nl | [[zout]]
-|  c=sw | [[salt]]
-|  c=la | [[sal]]
-|- 
-|  i=No | 156
-|  c=en | [[stone]] *
-|  c=fr | [[pierre]]
-|  c=de | [[Stein]]
-|  c=it | [[pietra]]
-|  c=es | [[piedra]]
-|  c=nl | [[steen]]
-|  c=sw | [[sten]]
-|  c=la | [[lapis]], [[petra]]
-|- 
-|  i=No | 157
-|  c=en | [[sand]] *
-|  c=fr | [[sable]]
-|  c=de | [[Sand]]
-|  c=it | [[sabbia]]
-|  c=es | [[arena]]
-|  c=nl | [[zand]]
-|  c=sw | [[sand]]
-|  c=la | [[arena]]
-|- 
-|  i=No | 158
-|  c=en | [[dust]]
-|  c=fr | [[poussière]]
-|  c=de | [[Staub]]
-|  c=it | [[polvere]]
-|  c=es | [[polvo]]
-|  c=nl | [[stof]]
-|  c=sw | [[damm]]
-|  c=la | [[pulvis]]
-|- 
-|  i=No | 159
-|  c=en | [[earth]] *
-|  c=fr | [[terre]]
-|  c=de | [[Erde]]
-|  c=it | [[terra]]
-|  c=es | [[tierra]]
-|  c=nl | [[aarde]]
-|  c=sw | [[jord]]
-|  c=la | [[terra]]
-|- 
-|  i=No | 160
-|  c=en | [[cloud]] *
-|  c=fr | [[nuage]]
-|  c=de | [[Wolke]]
-|  c=it | [[nuvola]]
-|  c=es | [[nube]]
-|  c=nl | [[wolk]]
-|  c=sw | [[moln]]
-|  c=la | [[nimbus]], [[nubes]]
-|- 
-|  i=No | 161
-|  c=en | [[fog]]
-|  c=fr | [[brouillard]]
-|  c=de | [[Nebel]]
-|  c=it | [[nebbia]]
-|  c=es | [[niebla]]
-|  c=nl | [[mist]], [[nevel]]
-|  c=sw | [[dimma]]
-|  c=la | [[caligo]], [[nebula]]
-|- 
-|  i=No | 162
-|  c=en | [[sky]]
-|  c=fr | [[ciel]]
-|  c=de | [[Himmel]]
-|  c=it | [[cielo]]
-|  c=es | [[cielo]]
-|  c=nl | [[lucht]]
-|  c=sw | [[himmel]]
-|  c=la | [[caelum]]
-|- 
-|  i=No | 163
-|  c=en | [[wind]]
-|  c=fr | [[vent]]
-|  c=de | [[Wind]]
-|  c=it | [[vento]]
-|  c=es | [[viento]]
-|  c=nl | [[wind]]
-|  c=sw | [[vind]]
-|  c=la | [[ventus]]
-|- 
-|  i=No | 164
-|  c=en | [[snow]]
-|  c=fr | [[neige]]
-|  c=de | [[Schnee]]
-|  c=it | [[neve]]
-|  c=es | [[nieve]]
-|  c=nl | [[sneeuw]]
-|  c=sw | [[snö]]
-|  c=la | [[nix]]
-|- 
-|  i=No | 165
-|  c=en | [[ice]]
-|  c=fr | [[glace]]
-|  c=de | [[Eis]]
-|  c=it | [[ghiaccio]]
-|  c=es | [[hielo]]
-|  c=nl | [[ijs]]
-|  c=sw | [[is]]
-|  c=la | [[glacies]]
-|- 
-|  i=No | 166
-|  c=en | [[smoke]] *
-|  c=fr | [[fumée]]
-|  c=de | [[Rauch]]
-|  c=it | [[fumo]]
-|  c=es | [[humo]]
-|  c=nl | [[rook]]
-|  c=sw | [[rök]]
-|  c=la | [[fumus]]
-|- 
-|  i=No | 167
-|  c=en | [[fire]] *
-|  c=fr | [[feu]]
-|  c=de | [[Feuer]]
-|  c=it | [[fuoco]]
-|  c=es | [[fuego]]
-|  c=nl | [[vuur]]
-|  c=sw | [[eld]]
-|  c=la | [[ignis]]
-|- 
-|  i=No | 168
-|  c=en | [[ashes]] *
-|  c=fr | [[cendres]]
-|  c=de | [[Asche]]
-|  c=it | [[ceneri]]
-|  c=es | [[cenizas]]
-|  c=nl | [[as]]
-|  c=sw | [[aska]]
-|  c=la | [[cineres]]
-|- 
-|  i=No | 169
-|  c=en | [[burn]] *
-|  c=fr | [[brûler]]
-|  c=de | [[brennen]]
-|  c=it | [[bruciare]]
-|  c=es | [[quemar]]
-|  c=nl | [[branden]]
-|  c=sw | [[brinna]]
-|  c=la | [[ardere]]
-|- 
-|  i=No | 170
-|  c=en | [[road]] *
-|  c=fr | [[route]]
-|  c=de | [[Straße]]
-|  c=it | [[strada]]
-|  c=es | [[camino]]
-|  c=nl | [[weg]]
-|  c=sw | [[väg]]
-|  c=la | [[via]]
-|- 
-|  i=No | 171
-|  c=en | [[mountain]] *
-|  c=fr | [[montagne]]
-|  c=de | [[Berg]]
-|  c=it | [[montagna]]
-|  c=es | [[montaña]]
-|  c=nl | [[berg]]
-|  c=sw | [[berg]]
-|  c=la | [[mons]]
-|- 
-|  i=No | 172
-|  c=en | [[red]] *
-|  c=fr | [[rouge]]
-|  c=de | [[rot]]
-|  c=it | [[rosso]]
-|  c=es | [[rojo]]
-|  c=nl | [[rode]]
-|  c=sw | [[röd]]
-|  c=la | [[ruber]]
-|- 
-|  i=No | 173
-|  c=en | [[green]] *
-|  c=fr | [[vert]]
-|  c=de | [[grün]]
-|  c=it | [[verde]]
-|  c=es | [[verde]]
-|  c=nl | [[groen]]
-|  c=sw | [[grön]]
-|  c=la | [[viridis]]
-|- 
-|  i=No | 174
-|  c=en | [[yellow]] *
-|  c=fr | [[jaune]]
-|  c=de | [[gelb]]
-|  c=it | [[giallo]]
-|  c=es | [[amarillo]]
-|  c=nl | [[geel]]
-|  c=sw | [[gul]]
-|  c=la | [[flavus]]
-|- 
-|  i=No | 175
-|  c=en | [[white]] *
-|  c=fr | [[blanc]]
-|  c=de | [[weiß]]
-|  c=it | [[bianco]]
-|  c=es | [[blanco]]
-|  c=nl | [[witte]]
-|  c=sw | [[vit]]
-|  c=la | [[albus]], [[candidus]]
-|- 
-|  i=No | 176
-|  c=en | [[black]] *
-|  c=fr | [[noir]]
-|  c=de | [[schwarz]]
-|  c=it | [[nero]]
-|  c=es | [[negro]]
-|  c=nl | [[zwart]]
-|  c=sw | [[svart]]
-|  c=la | [[niger]], [[ater]], [[fuscus]]
-|- 
-|  i=No | 177
-|  c=en | [[night]] *
-|  c=fr | [[nuit]]
-|  c=de | [[Nacht]]
-|  c=it | [[notte]]
-|  c=es | [[noche]]
-|  c=nl | [[nacht]]
-|  c=sw | [[natt]]
-|  c=la | [[nox]]
-|- 
-|  i=No | 178
-|  c=en | [[day]]
-|  c=fr | [[jour]]
-|  c=de | [[Tag]]
-|  c=it | [[giorno]]
-|  c=es | [[día]]
-|  c=nl | [[dag]]
-|  c=sw | [[dag]]
-|  c=la | [[dies]]
-|- 
-|  i=No | 179
-|  c=en | [[year]]
-|  c=fr | [[an]], [[année]]
-|  c=de | [[Jahr]]
-|  c=it | [[anno]]
-|  c=es | [[año]]
-|  c=nl | [[jaar]]
-|  c=sw | [[år]]
-|  c=la | [[annus]]
-|- 
-|  i=No | 180
-|  c=en | [[warm]] *
-|  c=fr | [[chaud]]
-|  c=de | [[warm]]
-|  c=it | [[caldo]]
-|  c=es | [[cálido]], [[tibio]]
-|  c=nl | [[warm]]
-|  c=sw | [[varm]]
-|  c=la | [[calidus]]
-|- 
-|  i=No | 181
-|  c=en | [[cold]] *
-|  c=fr | [[froid]]
-|  c=de | [[kalt]]
-|  c=it | [[freddo]]
-|  c=es | [[frío]]
-|  c=nl | [[koud]]
-|  c=sw | [[kall]]
-|  c=la | [[frigidus]]
-|- 
-|  i=No | 182
-|  c=en | [[full]] *
-|  c=fr | [[plein]]
-|  c=de | [[volle]]
-|  c=it | [[pieno]]
-|  c=es | [[lleno]]
-|  c=nl | [[volle]]
-|  c=sw | [[full]]
-|  c=la | [[plenus]]
-|- 
-|  i=No | 183
-|  c=en | [[new]] *
-|  c=fr | [[nouveau]]
-|  c=de | [[neu]]
-|  c=it | [[nuovo]]
-|  c=es | [[nuevo]]
-|  c=nl | [[nieuw]]
-|  c=sw | [[ny]]
-|  c=la | [[novus]]
-|- 
-|  i=No | 184
-|  c=en | [[old]]
-|  c=fr | [[vieux]]
-|  c=de | [[alt]]
-|  c=it | [[vecchio]]
-|  c=es | [[viejo]]
-|  c=nl | [[oud]]
-|  c=sw | [[gammal]]
-|  c=la | [[vetus]]
-|- 
-|  i=No | 185
-|  c=en | [[good]] *
-|  c=fr | [[bon]]
-|  c=de | [[gut]]
-|  c=it | [[buono]]
-|  c=es | [[bueno]]
-|  c=nl | [[goed]]
-|  c=sw | [[bra]]
-|  c=la | [[bonus]]
-|- 
-|  i=No | 186
-|  c=en | [[bad]]
-|  c=fr | [[mauvais]]
-|  c=de | [[schlecht]]
-|  c=it | [[cattivo]]
-|  c=es | [[malo]]<br>
-|  c=nl | [[slecht]]
-|  c=sw | [[dålig]]
-|  c=la | [[malus]]
-|- 
-|  i=No | 187
-|  c=en | [[rotten]]
-|  c=fr | [[pourri]]
-|  c=de | [[verrottet]]
-|  c=it | [[marcio]]
-|  c=es | [[podrido]]
-|  c=nl | [[rotten]]
-|  c=sw | [[rutten]]
-|  c=la | [[puter]], [[putridus]]
-|- 
-|  i=No | 188
-|  c=en | [[dirty]]
-|  c=fr | [[sale]]
-|  c=de | [[schmutzig]]
-|  c=it | [[sporco]]
-|  c=es | [[sucio]]
-|  c=nl | [[vies]]
-|  c=sw | [[smutsig]]
-|  c=la | [[sordidus]]
-|- 
-|  i=No | 189
-|  c=en | [[straight]]
-|  c=fr | [[droit]]
-|  c=de | [[gerade]]
-|  c=it | [[diritto]]
-|  c=es | [[recto]]
-|  c=nl | [[recht]]
-|  c=sw | [[rak]]
-|  c=la | [[rectus]]
-|- 
-|  i=No | 190
-|  c=en | [[round]] *
-|  c=fr | [[rond]]
-|  c=de | [[rund]]
-|  c=it | [[rotondo]]
-|  c=es | [[redondo]]
-|  c=nl | [[rond]]
-|  c=sw | [[rund]]
-|  c=la | [[rotundus]]
-|- 
-|  i=No | 191
-|  c=en | [[sharp]]
-|  c=fr | [[tranchant]], [[pointu]], [[aigu]]
-|  c=de | [[scharf]]
-|  c=it | [[aguzzo]], [[affilato]]
-|  c=es | [[afilado]]
-|  c=nl | [[scherp]]
-|  c=sw | [[vass]]
-|  c=la | [[acer]]
-|- 
-|  i=No | 192
-|  c=en | [[dull]]
-|  c=fr | [[émoussé]]
-|  c=de | [[stumpf]]
-|  c=it | [[noioso]]
-|  c=es | [[desafilado]]
-|  c=nl | [[stomp]], [[bot]]
-|  c=sw | [[slö]]
-|  c=la | [[hebes]]
-|- 
-|  i=No | 193
-|  c=en | [[smooth]]
-|  c=fr | [[lisse]]
-|  c=de | [[glatt]]
-|  c=it | [[liscio]]
-|  c=es | [[suave]], [[liso]]
-|  c=nl | [[glad]]
-|  c=sw | [[len]], [[slät]]
-|  c=la | [[levis]]
-|- 
-|  i=No | 194
-|  c=en | [[wet]]
-|  c=fr | [[mouillé]]
-|  c=de | [[nass]], [[feucht]]
-|  c=it | [[bagnato]]
-|  c=es | [[mojado]]
-|  c=nl | [[nat]]
-|  c=sw | [[våt]], [[blöt]]
-|  c=la | [[umidus]]
-|- 
-|  i=No | 195
-|  c=en | [[dry]] *
-|  c=fr | [[sec]]
-|  c=de | [[trocken]]
-|  c=it | [[asciutto]], [[secco]]
-|  c=es | [[seco]]
-|  c=nl | [[droog]]
-|  c=sw | [[torr]]
-|  c=la | [[siccus]]
-|- 
-|  i=No | 196
-|  c=en | [[correct]]
-|  c=fr | [[juste]], [[correct]]
-|  c=de | [[richtig]]
-|  c=it | [[corretto]]
-|  c=es | [[correcto]]
-|  c=nl | [[richting]], [[correct]]
-|  c=sw | [[rätt]], [[riktig]]
-|  c=la | [[rectus]]
-|- 
-|  i=No | 197
-|  c=en | [[near]]
-|  c=fr | [[proche]]
-|  c=de | [[nah]],<br>[[nahe]]
-|  c=it | [[vicino]]
-|  c=es | [[cerca]]
-|  c=nl | [[naar]]
-|  c=sw | [[nära]]
-|  c=la | [[propinquus]]
-|- 
-|  i=No | 198
-|  c=en | [[far]]
-|  c=fr | [[loin]]
-|  c=de | [[weit]], [[fern]]
-|  c=it | [[lontano]]
-|  c=es | [[lejos]]
-|  c=nl | [[ver]]
-|  c=sw | [[långt bort]], [[fjärran]]
-|  c=la | [[longinquus]]
-|- 
-|  i=No | 199
-|  c=en | [[right]]
-|  c=fr | [[à]] [[droite]]
-|  c=de | [[rechts]]
-|  c=it | [[destra]]
-|  c=es | [[derecha]]
-|  c=nl | [[rechts]]
-|  c=sw | [[höger]]
-|  c=la | [[dexter]]
-|- 
-|  i=No | 200
-|  c=en | [[left]]
-|  c=fr | [[à]] [[gauche]]
-|  c=de | [[links]]
-|  c=it | [[sinistra]]
-|  c=es | [[izquierda]]
-|  c=nl | [[links]]
-|  c=sw | [[vänster]]
-|  c=la | [[sinister]]
-|- 
-|  i=No | 201
-|  c=en | [[at]]
-|  c=fr | [[à]]
-|  c=de | [[bei]], [[an]]
-|  c=it | [[a]]
-|  c=es | [[a]], [[en]], [[ante]]
-|  c=nl | [[aan]], [[te]], [[bij]]
-|  c=sw | [[hos]], [[vid]]
-|  c=la | [[ad]]
-|- 
-|  i=No | 202
-|  c=en | [[in]]
-|  c=fr | [[dans]]
-|  c=de | [[in]]
-|  c=it | [[in]]
-|  c=es | [[en]]
-|  c=nl | [[in]]
-|  c=sw | [[i]]
-|  c=la | [[in]]
-|- 
-|  i=No | 203
-|  c=en | [[with]]
-|  c=fr | [[avec]]
-|  c=de | [[mit]]
-|  c=it | [[con]]
-|  c=es | [[con]]
-|  c=nl | [[met]]
-|  c=sw | [[med]]
-|  c=la | [[cum]]
-|- 
-|  i=No | 204
-|  c=en | [[and]]
-|  c=fr | [[et]]
-|  c=de | [[und]]
-|  c=it | [[e]]
-|  c=es | [[y]]
-|  c=nl | [[en]]
-|  c=sw | [[och]]
-|  c=la | [[et]]
-|- 
-|  i=No | 205
-|  c=en | [[if]]
-|  c=fr | [[si]]
-|  c=de | [[wenn]], [[falls]], [[ob]]
-|  c=it | [[se]]
-|  c=es | [[si]]
-|  c=nl | [[als]], [[indien]]
-|  c=sw | [[om]]
-|  c=la | [[si]]
-|- 
-|  i=No | 206
-|  c=en | [[because]]
-|  c=fr | [[parce que]]
-|  c=de | [[weil]]
-|  c=it | [[perché]]
-|  c=es | [[porque]]
-|  c=nl | [[omdat]]
-|  c=sw | [[eftersom]], [[ty]]
-|  c=la | [[quia]], [[quoniam]]
-|- 
-|  i=No | 207
-|  c=en | [[name]] *
-|  c=fr | [[nom]]
-|  c=de | [[Name]]
-|  c=it | [[nome]]
-|  c=es | [[nombre]]
-|  c=nl | [[naam]]
-|  c=sw | [[namn]]
-|  c=la | [[nomen]]
-|}
-
-
+<h4>Related terms</h4>
+<ul><li> {{lx|gem-pro|frijōnan|frijōną}}</li>
+</ul>
+
+<h4>Descendants</h4>
+<ul><li> Old English: {{l|ang|freo|frēo}}</li>
+<ul><li> English: {{l|en|free}}</li>
+</ul>
+<li> Old Frisian: {{l|ofs|fri|frī}}</li>
+<ul><li> West Frisian: {{l|fy|frij}}</li>
+</ul>
+<li> Old Saxon: {{l|osx|fri|frī}}</li>
+<ul><li> Middle Low German: {{l|gml|vri}}</li>
+<ul><li> Norwegian: {{l|no|fri}}</li>
+<li> Swedish: {{l|sv|fri}}</li>
+<li> Danish: {{l|da|fri}}</li>
+</ul>
+</ul>
+<li> Old Dutch: *frī</li>
+<ul><li> Middle Dutch: {{l|dum|vri}}</li>
+<ul><li> Dutch: {{l|nl|vrij}}</li>
+<ul><li> Afrikaans: {{l|af|vry}}</li>
+</ul>
+</ul>
+</ul>
+<li> Old High German: {{l|goh|fri|frī}}</li>
+<ul><li> German: {{l|de|frei}}</li>
+</ul>
+<li> Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}</li>
+</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|}
 ***April***
-April: 
+April:
 
-===Pronunciation===
-* {{audio|De-April.ogg|audio}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-April.ogg|audio}}</li>
+</ul>
 
-===Noun===
+<h3>Noun</h3>
 {{head|de|noun|g=m}}
-
-# {{l|en|April}}
-
-[[Category:2000 German basic words]]
-[[Category:de:Months]]
-
-----
-
-
+<ol><li> {{l|en|April}}</li>
+</ol>
+Category:2000 German basic wordsCategory:de:Months----
 ***Bahamas***
-Bahamas: 
-
-===Proper noun===
-{{de-proper noun}} {{p}}
-
-# {{l|en|Bahamas}}
-
-[[Category:de:Countries]]
-
-----
-
+Bahamas:
 
+<h3>Proper noun</h3>
+{de-proper noun} {p}
+<ol><li> {{l|en|Bahamas}}</li>
+</ol>
+Category:de:Countries----
 ***Bahrain***
-Bahrain: 
+Bahrain:
 
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun}}
-
-# {{l|en|Bahrain}}
-
-====Related terms====
-* {{l|de|Bahrainer}}
-* {{l|de|Bahrainerin}}
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Bahrain}}</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> {{l|de|Bahrainer}}</li>
+<li> {{l|de|Bahrainerin}}</li>
+</ul>
+Category:de:Countries----
 ***Bangladesh***
-Bangladesh: 
-
-===Proper noun===
-{{head|de|proper noun}} ''no gender''
-
-# {{alternative spelling of|Bangladesch|lang=de}}
-
-[[Category:de:Countries]]
-
-----
-
+Bangladesh:
 
+<h3>Proper noun</h3>
+{{head|de|proper noun}} <em>no gender</em>
+<ol><li> {{alternative spelling of|Bangladesch|lang=de}}</li>
+</ol>
+Category:de:Countries----
 ***Belize***
-Belize: 
+Belize:
 {{wikipedia|lang=de}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun|g=n}}
-
-# {{l|en|Belize}}
-
-====Derived terms====
-* {{l|de|Belizer}}
-* {{l|de|Belizerin}}
-* {{l|de|belizisch}}
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Belize}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> {{l|de|Belizer}}</li>
+<li> {{l|de|Belizerin}}</li>
+<li> {{l|de|belizisch}}</li>
+</ul>
+Category:de:Countries----
 ***Bhutan***
-Bhutan: 
+Bhutan:
 {{wikipedia|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/buˈtaːn/|lang=de}}</li>
+<li> {{homophones|Butan|lang=de}}</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/buˈtaːn/|lang=de}}
-* {{homophones|Butan|lang=de}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun}}
-
-# {{l|en|Bhutan}}
-
-====Derived terms====
-* {{l|de|bhutanisch}}
-* {{l|de|Bhutaner}}
-* {{l|de|Bhutanerin}}
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Bhutan}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> {{l|de|bhutanisch}}</li>
+<li> {{l|de|Bhutaner}}</li>
+<li> {{l|de|Bhutanerin}}</li>
+</ul>
+Category:de:Countries----
 ***blood***
-blood: 
+blood:
 
-===Noun===
+<h3>Noun</h3>
 {{nds-noun|n}}
-
-# {{form of|uncapitalized form|Blood|lang=nds|nodot=1}} : {{alternative spelling of|Bloot|lang=nds|nocap=1}}
-
+<ol><li> {{form of|uncapitalized form|Blood|lang=nds|nodot=1}} : {{alternative spelling of|Bloot|lang=nds|nocap=1}}</li>
+</ol>
 ----
-
-
 ***bot***
-bot: 
+bot:
 
-===Verb===
+<h3>Verb</h3>
 {{head|de|verb form}}
-
-# {{form of|First-person singular [[preterite]]|bieten|lang=de}}
-# {{form of|Third-person singular [[preterite]]|bieten|lang=de}}
-
+<ol><li> {{form of|First-person singular preterite|bieten|lang=de}}</li>
+<li> {{form of|Third-person singular preterite|bieten|lang=de}}</li>
+</ol>
 ----
-
-
 ***Burundi***
-Burundi: 
+Burundi:
 {{wikipedia|lang=de}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun|g=n}}
-
-# {{l|en|Burundi}}
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Burundi}}</li>
+</ol>
+Category:de:Countries----
 ***Chile***
-Chile: 
+Chile:
 
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun|g=n}}
-
-# [[#English|Chile]]
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> Chile</li>
+</ol>
+Category:de:Countries----
 ***China***
-China: 
+China:
 {{wikipedia|lang=de}}
-
-===Pronunciation===
-* {{audio|De-China.ogg|audio}}
-* {{IPA|lang=de|[ˈçiːnaː]}}, colloquially: {{IPAchar|[ˈʃiːnaː]}}
-* Austria, Switzerland: {{IPAchar|[ˈkiːnaː]}}
-* {{audio|De-at-China.ogg|Audio (Austria)}}
-
-===Proper noun===
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-China.ogg|audio}}</li>
+<li> {{IPA|[ˈç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>
+
+<h3>Proper noun</h3>
 {{head|de|proper noun|g=n}}
-
-# {{l|en|China}} {{gloss|country}}
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|China}} {{gloss|country}}</li>
+</ol>
+Category:de:Countries----
 ***dat***
-dat: 
-
-===Etymology===
+dat:
 
+<h3>Etymology</h3>
 From {{etyl|osx|nds}} {{term|that|lang=osx}}.
-
-===Pronunciation===
-
-* {{IPA|/dɑt/|lang=nds}}
-
-===Article===
-{{head|nds|article|g=n|definite article}}
-
-# [[the]]
-#* ''Dat Hus was trechtmakt.'' (The house was finished.)
-
-===Adjective===
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/dɑt/|lang=nds}}</li>
+</ul>
+
+<h3>Article</h3>
+{{head|nds|article|definite article|g=n}}
+<ol><li> the</li>
+<ul><li> <em>Dat Hus was trechtmakt.</em> (The house was finished.)</li>
+</ul>
+</ol>
+
+<h3>Adjective</h3>
 {{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>
+</ul>
+</ol>
 
-# {{demonstrative|lang=nds}} [[that]]
-#* ''Ik mag dat Bauk.'' (I like that book.)
-#* ''...un dat Schapp, weck ümmer leddig was.'' (...and that cabinet, which was always empty.)
-
-===Conjunction===
+<h3>Conjunction</h3>
 {{head|nds|conjunction}}
+<ol><li> that</li>
+<ul><li> <em>Sęd ik, dat ik Kauken hęw?</em> (Did I say [lit. <em>Said I</em>], that I have cake?)</li>
+</ul>
+</ol>
 
-# [[that]]
-#* ''Sęd ik, dat ik Kauken hęw?'' (Did I say [lit. ''Said I''], that I have cake?)
-
-===Pronoun===
+<h3>Pronoun</h3>
 {{head|nds|pronoun}}
+<ol><li> {{demonstrative|lang=nds}} that</li>
+<ul><li> <em>Kik Di dat an!</em> (Look at that!)</li>
+</ul>
+</ol>
 
-# {{demonstrative|lang=nds}} [[that]]
-#* ''Kik Di dat an!'' (Look at that!)
-
-===Pronoun===
+<h3>Pronoun</h3>
 {{head|nds|pronoun|g=n}}
+<ol><li> {{relative|lang=nds}} which, that</li>
+<ul><li> <em>Dat Schipp, <b>dat</b> wi sailt hębben.</em> (The ship, <b>which</b> we have sailed.)</li>
+</ul>
+</ol>
 
-# {{relative|lang=nds}} [[which]], [[that]]
-#* ''Dat Schipp, '''dat''' wi sailt hębben.'' (The ship, '''which''' we have sailed.)
-
-====Usage notes====
-* Use as a relative pronoun might not exist in all dialects.
-
-====Synonyms====
-* [[wat]]
+<h4>Usage notes</h4>
+<ul><li> Use as a relative pronoun might not exist in all dialects.</li>
+</ul>
 
+<h4>Synonyms</h4>
+<ul><li> wat</li>
+</ul>
 ----
-
-
 ***de***
-de: 
-
-===Etymology===
+de:
 
+<h3>Etymology</h3>
 From {{etyl|osx|nds}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/dɛɪ̯/|lang=nds}}</li>
+</ul>
 
-===Pronunciation===
-
-* {{IPA|/dɛɪ̯/|lang=nds}}
-
-===Article===
+<h3>Article</h3>
 {{head|nds|article|genitive|der|dative|den|accusative|de|definite article}}
-
-# [[the]]
-
-====Usage notes====
-* This is the only plural article and like English 'the' is used for nouns of every gender and class. Indefinite nouns in plural are used without article, again as in English.
-
-===Article===
-{{head|nds|article|g=f|genitive|der|dative|der|accusative|de|definite article}}
-
-# [[the]]
-#* ''De Fru gat hen.'' (The woman walks [lit. goes] there.)
-
-===Article===
-{{head|nds|article|g=m|genitive|des|dative|dęme|accusative|denne|definite article}}
-
-# [[the]]
-#* ''De Mann gat hen.'' (The man walks [lit. goes] there.)
-
-====Usage notes====
-* Dative or accusative are sometimes called 'object case'. However, most (if not all) dialects have not built a proper Objective case.
-* Dem (from Middle Low German 'deme') can be found as 'den' as well due to interchangeability of ''m'' and ''n'' in Middle Low German.
-
-===Pronoun===
-{{head|nds|pronoun|g=m|accusative|den}}
-
-# {{relative|lang=nds}} [[which]], [[that]]
-#* ''De Mann, '''de''' dår güng.'' (The man, '''which''' walked there.)
-#* ''De Mann, '''den''' wi hüert häbben.'' (The man, '''which''' we hired.)
-
-====Usage notes====
-* The use as a relative pronoun might not be present in all dialects.
-
-===Pronoun===
-{{head|nds|pronoun|g=f|accusative|de}}
-
-# {{relative|lang=nds}} [[which]], [[that]]
-#* ''De Fru, '''de''' wi hüert hębben.'' (The woman, '''which''' we have hired.)
-
-====Usage notes====
-* The use as a relative pronoun might not be present in all dialects.
-
+<ol><li> the</li>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> This is the only plural article and like English 'the' is used for nouns of every gender and class. Indefinite nouns in plural are used without article, again as in English.</li>
+</ul>
+
+<h3>Article</h3>
+{{head|nds|article|genitive|der|dative|der|accusative|de|definite article|g=f}}
+<ol><li> the</li>
+<ul><li> <em>De Fru gat hen.</em> (The woman walks [lit. goes] there.)</li>
+</ul>
+</ol>
+
+<h3>Article</h3>
+{{head|nds|article|genitive|des|dative|dęme|accusative|denne|definite article|g=m}}
+<ol><li> the</li>
+<ul><li> <em>De Mann gat hen.</em> (The man walks [lit. goes] there.)</li>
+</ul>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> Dative or accusative are sometimes called 'object case'. However, most (if not all) dialects have not built a proper Objective case.</li>
+<li> Dem (from Middle Low German 'deme') can be found as 'den' as well due to interchangeability of <em>m</em> and <em>n</em> in Middle Low German.</li>
+</ul>
+
+<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>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> The use as a relative pronoun might not be present in all dialects.</li>
+</ul>
+
+<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>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> The use as a relative pronoun might not be present in all dialects.</li>
+</ul>
 ----
-
-
 ***Dezember***
-Dezember: 
+Dezember:
 
-===Pronunciation===
-* {{IPA|lang=de|[deˈtsɛmbɐ]}}, {{X-SAMPA|[de"tsEmb6]}}
-* {{hyphenation|De-zem-ber}}
-* {{audio|De-Dezember.ogg|audio}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|[deˈtsɛmbɐ]|lang=de}}, {{X-SAMPA|[de"tsEmb6]}}</li>
+<li> {{hyphenation|De-zem-ber}}</li>
+<li> {{audio|De-Dezember.ogg|audio}}</li>
+</ul>
 
-===Noun===
+<h3>Noun</h3>
 {{head|de|noun}}
-
-# [[December]]
-
-[[Category:de:Months]]
-
-----
-
-
+<ol><li> December</li>
+</ol>
+Category:de:Months----
 ***dick***
-dick: 
+dick:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|goh|de}} {{term|dicchi|lang=goh}} akin to {{etyl|osx|-}} {{term|thikki|lang=osx}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/dɪk/|lang=de}}</li>
+<li> {{audio|De-dick.ogg|audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/dɪk/|lang=de}}
-* {{audio|De-dick.ogg|audio}}
-
-===Adjective===
+<h3>Adjective</h3>
 {{de-adj|dicker|dicksten}}
+<ol><li> thick</li>
+<li> fat</li>
+</ol>
 
-# [[thick]]
-# [[fat]]
-
-====Declension====
+<h4>Declension</h4>
 {{de-decl-adj|dick|dicker|dickst}}
-
-====Derived terms====
-* [[dicklich]]
-
-[[ar:dick]]
-[[cs:dick]]
-[[de:dick]]
-[[et:dick]]
-[[el:dick]]
-[[es:dick]]
-[[eu:dick]]
-[[fa:dick]]
-[[fr:dick]]
-[[ko:dick]]
-[[hr:dick]]
-[[io:dick]]
-[[it:dick]]
-[[ku:dick]]
-[[hu:dick]]
-[[mg:dick]]
-[[nl:dick]]
-[[ja:dick]]
-[[pl:dick]]
-[[pt:dick]]
-[[simple:dick]]
-[[fi:dick]]
-[[sv:dick]]
-[[tl:dick]]
-[[tr:dick]]
-[[vi:dick]]
-[[zh:dick]]
+<h4>Derived terms</h4>
+<ul><li> dicklich</li>
+</ul>
+ar:dickcs:dickde:dicket:dickel:dickes:dickeu:dickfa:dickfr:dickko:dickhr:dickio:dickit:dickku:dickhu:dickmg:dicknl:dickja:dickpl:dickpt:dicksimple:dickfi:dicksv:dicktl:dicktr:dickvi:dickzh:dick
 ***die***
-die: 
-
-===Pronunciation===
-* {{IPA|/diː/|lang=de}}
-* {{audio|De-die.ogg|audio}}
-* {{rhymes|iː|lang=de}}
-
-===Article===
-{{head|de|article|definite||feminine and plural form of|der}}
-
-# [[the|The]]; {{form of|declined form|der|lang=de}}
-#: '''''die''' Frau'' — “the woman”
-#: '''''die''' Männer'' — “the men”
-
-====Usage notes====
-The [[definite article]] {{term|die}} is the form of {{term|der|lang=de||the}} used with the following types of noun phrases:
-* nominative singular feminine
-* accusative singular feminine
-* nominative plural for all genders
-* accusative plural for all genders
-
-====Declension====
-{{de-decl-definite article}}
-
-===Pronoun===
+die:
+
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/diː/|lang=de}}</li>
+<li> {{audio|De-die.ogg|audio}}</li>
+<li> {{rhymes|iː|lang=de}}</li>
+</ul>
+
+<h3>Article</h3>
+{{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>
+</ul>
+</ol>
+
+<h4>Usage notes</h4>
+The definite article {{term|die}} is the form of {{term|der|the|lang=de}} used with the following types of noun phrases:
+<ul><li> nominative singular feminine</li>
+<li> accusative singular feminine</li>
+<li> nominative plural for all genders</li>
+<li> accusative plural for all genders</li>
+</ul>
+
+<h4>Declension</h4>
+{de-decl-definite article}
+<h3>Pronoun</h3>
 {{head|de|relative pronoun|relative or demonstrative}}
-
-# {{context|in a subordinate clause as a relative pronoun}} [[that|That]]; [[which]]; [[who]]; [[whom]]; [[whose]].
-#: ''Ich kenne eine Frau, '''die''' das kann.'' — “I know a woman who can do that.”
-# {{context|as a demonstrative pronoun}} [[this|This]] one; [[that]] one; [[these]] ones; [[those]] ones; [[she]]; [[her]]; [[it]]; [[they]]; [[them]]
-#: '''''die''' da'' — “that one (or she or they) there”
-
-====Usage notes====
+<ol><li> {{context|in a subordinate clause as a relative pronoun}} That; which; who; whom; whose.</li>
+<ul><li> <em>Ich kenne eine Frau, <b>die</b> das kann.</em> — “I know a woman who can do that.”</li>
+</ul>
+<li> {{context|as a demonstrative pronoun}} This one; that one; these ones; those ones; she; her; it; they; them</li>
+<ul><li> <b><em>die</b> da</em> — “that one (or she or they) there”</li>
+</ul>
+</ol>
+
+<h4>Usage notes</h4>
 In a subordinate clause, {{term|die}} indicates a person or thing referenced in the main clause. It is used with plural or feminine singular antecedents.
-
-====Declension====
-{{de-decl-relative pronoun}}
-
-----
-
-
+<h4>Declension</h4>
+{de-decl-relative pronoun}----
 ***dies***
-dies: 
-
-===Etymology===
-A shortening of ''[[dieses]]''
-
-===Pronoun===
-'''dies'''
-
-# [[this]]
-
-[[Category:German pronouns]]
-
-----
-
-
+dies:
+
+<h3>Etymology</h3>
+A shortening of <em>dieses</em>
+<h3>Pronoun</h3>
+<b>dies</b>
+<ol><li> this</li>
+</ol>
+Category:German pronouns----
 ***digital***
-digital: 
+digital:
 
-===Pronunciation===
-* {{audio|De-at-digital.ogg|Audio (Austria)}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-at-digital.ogg|Audio (Austria)}}</li>
+</ul>
 
-===Adjective===
+<h3>Adjective</h3>
 {{de-adj|-}}
-
-# {{computing|lang=de}} [[#English|digital]]
-# {{medicine|lang=de}} [[#English|digital]]
-
+<ol><li> {{computing|lang=de}} digital</li>
+<li> {{medicine|lang=de}} digital</li>
+</ol>
 ----
-
-
 ***Ecuador***
-Ecuador: 
+Ecuador:
 {{wikipedia|lang=de}}
-
-===Pronunciation===
-* {{rhymes|oːɐ̯|lang=de}}
-
-===Proper noun===
-'''Ecuador''' {{n}}
-
-# [[#English|Ecuador]]
-
-====Derived terms====
-* [[Ecuadorianer]]
-* [[Ecuadorianerin]]
-* [[ecuadorianisch]]
-
-[[Category:German proper nouns]]
-[[Category:de:Countries]]
-
-----
-
-
+<h3>Pronunciation</h3>
+<ul><li> {{rhymes|oːɐ̯|lang=de}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+<b>Ecuador</b> {n}
+<ol><li> Ecuador</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Ecuadorianer</li>
+<li> Ecuadorianerin</li>
+<li> ecuadorianisch</li>
+</ul>
+Category:German proper nounsCategory:de:Countries----
 ***een***
-een: 
-
-===Alternative forms===
-* {{qualifier|in other dialects, including Low Prussian}} {{l|nds|en}}
-* {{qualifier|in some dialects}} {{l|nds|ein}}
-* (''for others, see '''[[en]]''''')
-
-===Article===
-{{head|nds|article|g=m|indefinite article}}
-
-# {{context|in some dialects, including|_|Low Prussian|lang=nds}} {{alternative spelling of|en|lang=nds|nodot=1}} : [[a]], [[an]]
-
-===Article===
-{{head|nds|article|g=n|indefinite article}}
-
-# {{context|in some dialects, including|_|Low Prussian|lang=nds}} {{context|in some dialects|lang=nds}} {{alternative spelling of|en|lang=nds|nodot=1}} : [[a]], [[an]]
-
-===Cardinal number===
-{{head|nds|cardinal number}}
+een:
 
-# {{context|in some dialects|lang=nds}} {{context|in some dialects|lang=nds}} {{alternative spelling of|en|lang=nds|nodot=1}} : [[one]] (1)
+<h3>Alternative forms</h3>
+<ul><li> {{qualifier|in other dialects, including Low Prussian}} {{l|nds|en}}</li>
+<li> {{qualifier|in some dialects}} {{l|nds|ein}}</li>
+<li> (<em>for others, see <b>en</b></em>)</li>
+</ul>
 
-----
-
-
-***en***
-en: 
-
-===Etymology===
-Cognate to {{etyl|de|-}} [[ein]], {{etyl|en|-}} [[an]].
-
-===Pronunciation===
-* {{IPA|/ˈɛɪ̯n/|lang=nds}}
-
-===Alternative forms===
-* {{qualifier|in other dialects, including Low Prussian}} {{l|nds|een}}
-* {{qualifier|in some dialects}} {{l|nds|ein}}
-* {{qualifier|{{pdt}}}} [[een]], {{qualifier|cardinal number}} [[eent]]
-
-===Article===
+<h3>Article</h3>
 {{head|nds|article|indefinite article|g=m}}
-# {{context|in some dialects|lang=nds}} [[a]], [[an]]
+<ol><li> {{context|in some dialects, including|_|Low Prussian|lang=nds}} {{alternative spelling of|en|lang=nds|nodot=1}} : a, an</li>
+</ol>
 
-===Article===
+<h3>Article</h3>
 {{head|nds|article|indefinite article|g=n}}
-# {{context|in some dialects|lang=nds}} [[a]], [[an]]
+<ol><li> {{context|in some dialects, including|_|Low Prussian|lang=nds}} {{context|in some dialects|lang=nds}} {{alternative spelling of|en|lang=nds|nodot=1}} : a, an</li>
+</ol>
 
-===Cardinal number===
+<h3>Cardinal number</h3>
 {{head|nds|cardinal number}}
-# {{context|in some dialects, including|_|Low Prussian|lang=nds}} [[one]] (1)
-
-----
-
-
-***Esperanto***
-Esperanto: 
-
-===Pronunciation===
-* {{audio|De-Esperanto.ogg|audio}}
-
-===Noun===
-{{head|de|noun|g=n}}
-
-# [[#English|Esperanto]]
-
-[[Category:de:Languages]]
-
-----
-
-
-***Fabian***
-Fabian: 
-
-===Proper noun===
-{{head|de|proper noun}}
-
-# {{given name|male|lang=de}}
-
+<ol><li> {{context|in some dialects|lang=nds}} {{context|in some dialects|lang=nds}} {{alternative spelling of|en|lang=nds|nodot=1}} : one (1)</li>
+</ol>
 ----
+***en***
+en:
 
+<h3>Etymology</h3>
+Cognate to {{etyl|de|-}} ein, {{etyl|en|-}} an.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈɛɪ̯n/|lang=nds}}</li>
+</ul>
 
-***Fanny***
-Fanny: 
-
-===Proper noun===
-{{head|de|proper noun}}
-
-# {{given name|female|lang=de}} borrowed from English.
-
-----
-
-
-===for===
-Wiktionary:Resources for translators: 
-* [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
-* [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
-
-***frei***
-frei: 
-
-===Etymology===
-{{etyl|goh|de}} {{term|fri|frī|lang=goh}}
-
-===Pronunciation===
-* {{IPA|lang=de|/fʁaɪ̯/}}
-
-===Adjective===
-{{de-adj|comparative=freier|superlative=freisten}}
-
-# [[free]]
-# [[released]], [[unimprisoned]], [[unenslaved]]
-#: ''[[w:Stadtluft macht frei|Stadtluft macht '''frei''']].''
-#:: ''City air makes one '''free'''.'' (German [[serfs]] who escaped to and lived in cities for a certain period of time were legally freed.)
-# [[unblocked]]
-# [[liberal]]
-# [[free of charge]], [[gratis]]
-# [[unlimited]], [[unconstrained]]
-# [[licentious]], [[unrestrained]]
-
-====Synonyms====
-* (''unbound''): [[ungebunden]]
-* (''unconstrained''): [[ungezwungen]]
-* (''liberal''): [[liberal#German|liberal]], [[freiheitlich]]
-* (''free of charge''): [[kostenlos]]
-
-====Derived terms====
-* [[befreien]], [[Befreiung]]
-* [[bleifrei]]
-* [[Freiheit]]
-* [[freimütig]]
-* [[Freizeit]]
-
-----
-
-
-===frijaz===
-Appendix:Proto-Germanic/frijaz: 
-===Etymology===
-From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|lang=gem-pro||to be fond of}}. The original meaning was probably something like ''from the own clan'', from which a meaning ''being a free man, not a [[serf]]'' developed.
-
-===Pronunciation===
-* {{IPA|lang=gem-pro|/ˈɸri.jɑz/}}
-
-===Adjective===
-{{gem-adj}}
-
-# [[free]]
-
-====Declension====
-{{gem-decl-adj-a|frij}}
-
-====Related terms====
-* {{lx|gem-pro|frijōnan|frijōną}}
-
-====Descendants====
-* Old English: {{l|ang|freo|frēo}}
-** English: {{l|en|free}}
-* Old Frisian: {{l|ofs|fri|frī}}
-** West Frisian: {{l|fy|frij}}
-* Old Saxon: {{l|osx|fri|frī}}
-** Middle Low German: {{l|gml|vri}}
-*** Norwegian: {{l|no|fri}}
-*** Swedish: {{l|sv|fri}}
-*** Danish: {{l|da|fri}}
-* Old Dutch: *frī
-** Middle Dutch: {{l|dum|vri}}
-*** Dutch: {{l|nl|vrij}}
-**** Afrikaans: {{l|af|vry}}
-* Old High German: {{l|goh|fri|frī}}
-** German: {{l|de|frei}}
-* Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}
-***Gambia***
-Gambia: 
-{{wikipedia|lang=de}}
-
-===Proper noun===
-{{head|de|proper noun|g=n}}
-
-# {{l|en|Gambia}}
-
-====Derived terms====
-* [[Gambier]]
-* [[Gambierin]]
-* [[gambisch]]
-* [[Senegambia]]
-
-[[Category:de:Countries]]
-
-----
-
-
-===Germanic===
-Appendix:Proto-Germanic/frijaz: 
-===Etymology===
-From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|lang=gem-pro||to be fond of}}. The original meaning was probably something like ''from the own clan'', from which a meaning ''being a free man, not a [[serf]]'' developed.
-
-===Pronunciation===
-* {{IPA|lang=gem-pro|/ˈɸri.jɑz/}}
-
-===Adjective===
-{{gem-adj}}
-
-# [[free]]
-
-====Declension====
-{{gem-decl-adj-a|frij}}
-
-====Related terms====
-* {{lx|gem-pro|frijōnan|frijōną}}
-
-====Descendants====
-* Old English: {{l|ang|freo|frēo}}
-** English: {{l|en|free}}
-* Old Frisian: {{l|ofs|fri|frī}}
-** West Frisian: {{l|fy|frij}}
-* Old Saxon: {{l|osx|fri|frī}}
-** Middle Low German: {{l|gml|vri}}
-*** Norwegian: {{l|no|fri}}
-*** Swedish: {{l|sv|fri}}
-*** Danish: {{l|da|fri}}
-* Old Dutch: *frī
-** Middle Dutch: {{l|dum|vri}}
-*** Dutch: {{l|nl|vrij}}
-**** Afrikaans: {{l|af|vry}}
-* Old High German: {{l|goh|fri|frī}}
-** German: {{l|de|frei}}
-* Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}
-***Ghana***
-Ghana: 
-{{wikipedia|lang=de}}
-
-===Pronunciation===
-* {{IPA|/ˈgaːna/|lang=de}}
-
-===Proper noun===
-{{head|de|proper noun|g=n}}
-
-# [[#English|Ghana]]
-
-====Derived terms====
-* [[ghanaisch]]
-* [[Ghanaer]]
-* [[Ghanaerin]]
-* [[Ghanese]]
-* [[Ghanesin]]
-
-[[Category:de:Countries]]
-
-----
-
-
-***global***
-global: 
-
-===Adjective===
-{{de-adj|-}}
-
-# [[#English|global]] {{gloss|worldwide}}
-
-====Synonyms====
-* {{sense|worldwide}} [[weltweit]]
-
-====Antonyms====
-* {{sense|worldwide}} [[lokal]], [[regional]]
-
-----
-
-
-***google***
-google: 
-
-===Verb===
-'''google'''
-
-# {{de-verb form of|googeln|1|s|g}}
-# {{de-verb form of|googeln|i|s}}
-# {{de-verb form of|googeln|1|s|k1}}
-# {{de-verb form of|googeln|3|s|k1}}
-
-----
-
-
-***gratis***
-gratis: 
-
-===Adverb===
-'''gratis'''
-
-# [[free]], without [[charge]]
-
-[[Category:German adverbs]]
-
-----
-
-
-***Guatemala***
-Guatemala: 
-
-===Proper noun===
-{{head|de|proper noun|g=n}}
-
-# {{l|en|Guatemala}}
-
-====Related terms====
-* {{l|de|Guatemalteke}}
-* {{l|de|Guatemaltekin}}
-* {{l|de|guatemaltekisch}}
-
-[[Category:de:Countries]]
-
-----
-
-
-***Guyana***
-Guyana: 
-{{wikipedia|lang=de}}
-
-===Proper noun===
-'''Guyana''' {{n}}
-
-# [[#English|Guyana]]
-
-====Derived terms====
-* [[Französisch-Guyana]]
-* [[Guyaner]]
-* [[Guyanerin]]
-* [[guyanisch]]
-
-[[Category:German proper nouns]]
-[[Category:de:Countries]]
-
-----
-
-
-***Haiti***
-Haiti: 
-{{wikipedia|lang=de}}
-
-===Pronunciation===
-* {{IPA|/haˈiːti/|lang=de}}
-
-===Proper noun===
-{{head|de|proper noun|g=n}}
-
-# {{l|en|Haiti}}
-
-====Derived terms====
-* {{l|de|Haitianer}}
-* {{l|de|Haitianerin}}
-* {{l|de|haitianisch}}
-
-[[Category:de:Countries]]
-
-----
-
-
-***Haus***
-Haus: 
-
-===Etymology===
-From {{etyl|goh|de}} {{term|hus|hūs|lang=goh}}, from {{proto|Germanic|hūsan|lang=de}}.  Cognate with Dutch ''[[huis]]'', English ''[[house]]''.
-
-===Pronunciation===
-* {{IPA|[haʊ̯s]|lang=de}}
-* {{audio|De-Haus.ogg|audio}}
-
-===Noun===
-{{de-noun|g=n|genitive=Hauses|plural=Häuser}}
-
-# [[house]]
-# [[theatre]]
-
-====Declension====
-{{de-noun-n|es|pl=Häuser}}
-
-====Derived terms====
-* [[Armenhaus]]
-* [[Haustier]]
-* [[Herrenhaus]]
-* [[Haushalt]]
-----
-
-
-***hell***
-hell: 
-
-===Pronunciation===
-* {{IPA|/hɛl/|lang=de}}
-* {{audio|De-hell.ogg|audio (Germany)}}
-* {{audio|De-at-hell.ogg|audio (Austria)}}
-
-===Adjective===
-{{head|de|adjective|comparative|heller|superlative|am hellsten}}
-
-# [[clear]], [[bright]], [[light]]
-
-----
-
-
-***Honduras***
-Honduras: 
-{{wikipedia|lang=de}}
-
-===Proper noun===
-'''Honduras''' {{n}}
-
-# [[#English|Honduras]]
-
-====Derived terms====
-* [[Britisch-Honduras]] (today [[Belize]])
-* [[Honduraner]]
-* [[Honduranerin]]
-* [[honduranisch]]
-
-[[Category:German proper nouns]]
-[[Category:de:Countries]]
-
-----
-
-
-***ik***
-ik: 
-
-===Alternative forms===
-* {{qualifier|Low Prussian}} [[öck]], [[eck]]
-
-===Etymology===
-From {{etyl|osx|nds}} {{term|ik|lang=osx}}, from {{proto|Germanic|ek|lang=nds}}, from {{proto|Indo-European|éǵh₂|lang=nds}}.
-
-===Pronunciation===
-* {{IPA|/ik/|lang=nds}}
-
-===Pronoun===
-{{head|nds|pronoun}}
-
-# {{context|in some dialects|lang=nds}} [[I]] {{n-g|(first person singular pronoun)}}
-#: ''Ik kem, ik seg, ik wünd'' ({{nds}}) / ''Ik keem, ik keek, ik wun'' ({{pdt}})
-#:: I came, I saw, I conquered. (''veni, vidi, vici'', attributed to [[w:Julius Caesar]].)
-
-====Related terms====
-* [[mien]] (''possessive'': my, mine); [[mi]] (''dative'' (also generally used in place of the accusative): me); [[wi]] (''plural'': we)
-
-----
-
-
-***in***
-in: 
-
-===Pronunciation===
-* {{IPA|/ʔɪn/|lang=de}}
-* {{audio|DE-in.OGG|audio}}
-
-===Etymology 1===
-From {{etyl|goh|de}} {{term|in|lang=goh}}, from {{proto|Germanic|in|lang=de}}.
-
-====Preposition====
-{{head|de|preposition}}
-
-# ('''in''' + ''dative'') [[in]]; [[within]]; [[at]]; contained by
-#: ''Es ist '''im''' Haus.'' - "It is in the house."
-# ('''in''' + ''dative'') pertaining to
-# ('''in''' + ''accusative'') [[into]]
-#: ''Er geht '''ins''' Haus.'' - "He goes into the house."
-
-=====Usage notes=====
-The preposition {{term|in}} is used with accusative case if the verb shows movement from one place to another, whereas it is used with dative case if the verb shows location.
-
-=====Derived terms=====
-* ('''''in''' + dem'') [[im]] {{m|n}}
-* ('''''in''' + das'') [[ins]] {{n}}
-* [[in der Zwickmühle stecken]]
-
-===Etymology 2===
-From {{etyl|en|de}} {{term|in|lang=en}}.
-
-====Adjective====
-{{de-adj|-}}
-
-# [[in]], [[popular]]
-
-----
-
-
-in: 
-
-===Etymology===
-From {{proto|Germanic|in|lang=goh}}, whence also Old English ''in'', Old Norse ''[[í]]''
-
-===Preposition===
-{{head|goh|preposition}}
-
-# in
-
-----
-
-
-in: 
-
-===Preposition===
-{{head|pdc|preposition}}
-
-# [[#English|in]]
-
-----
-
-
-***Iran***
-Iran: 
-
-===Pronunciation===
-* {{rhymes|aːn|lang=de}}
-
-===Proper noun===
-{{head|de|proper noun|g=m}} (''[[genitive]]'' '''Irans''')
-
-# {{l|en|Iran}}
-
-===Usage notes===
-The article (''[[der]]'') is often used with the name of the country, thus one says ''er ist '''im''' Iran'' (''he is '''in''' Iran'') and not ''er ist '''in''' Iran''. However, one can say ''er ist in Irans Hauptstadt'', which has the same meaning as ''er ist in der Hauptstadt des Iran[s]'' &mdash; ''he is in the capital of Iran''. Similar examples: der: [[Irak#German|Irak]], [[Sudan#German|Sudan]], [[Kongo#German|Kongo]]; die: [[Türkei]], [[Schweiz#German|Schweiz]], [[Slowakei]].
-
-===See also===
-* [[Perser]]
-* [[Persien]]
-* [[Persisch]]
-
-[[Category:de:Countries]]
-
-----
-
-
-***is***
-is: 
-
-===Etymology===
-From {{proto|Germanic|īsan|lang=goh}}
-
-===Noun===
-'''īs'''
-
-# [[ice]]
-
-[[Category:Old High German nouns]]
-
-----
-
-
-***Israel***
-Israel: 
-
-===Pronunciation===
-* {{audio|De-Israel.ogg|Audio}}
-
-===Proper noun===
-{{head|de|proper noun|g=n}}
-
-# [[#English|Israel]]
-
-====Derived terms====
-* [[israelisch]]
-* [[israelitisch]]
-* [[Israelit]]
-* [[Israelitin]]
-* [[Israeli]]
-
-[[Category:de:Countries]]
-
-----
-
-
-***Japan***
-Japan: 
-
-===Pronunciation===
-* {{IPA|/ˈjaːpaːn/|lang=de}}
-* {{audio|De-Japan.ogg|audio}}
-
-===Proper noun===
-{{head|de|proper noun|g=n}}
-
-# {{l|en|Japan}}
-
-===See also===
-* [[Japaner]]
-* [[Japanerin]]
-* [[Japanisch]]
-* [[japanisch]]
-
-[[Category:de:Countries]]
-[[Category:de:Exonyms]]
-
-----
-
-
-***Kiribati***
-Kiribati: 
-{{wikipedia|lang=de}}
-
-===Proper noun===
-{{head|de|proper noun|g=n}}
-
-# {{l|en|Kiribati}}
-
-====Derived terms====
-* {{l|de|kiribatisch}}
-
-[[Category:de:Countries]]
-
-----
-
-
-***Kuwait***
-Kuwait: 
-{{wikipedia|lang=de}}
-
-===Proper noun===
-{{de-proper noun|g=n}}
-
-# {{l|en|Kuwait}}
-
-====Derived terms====
-* {{l|de|Kuwaiter}}
-* {{l|de|Kuwaiterin}}
-* {{l|de|kuwaitisch}}
-
-[[Category:de:Countries]]
-
-----
-
-
-***Laos***
-Laos: 
-{{wikipedia|lang=de}}
-
-===Proper noun===
-{{de-proper noun|g=n}}
-
-# {{l|en|Laos}}
-
-====Derived terms====
-* [[Laote]]
-* [[Laotin]]
-* [[laotisch]]
-
-[[Category:de:Countries]]
-[[Category:de:Exonyms]]
-
-----
-
-
-***last***
-last: 
-
-===Verb===
-{{head|de}}
-
-# {{de-verb form of|lesen|2|s|v}}
-# {{de-verb form of|lesen|2|p|v}}
-
-----
-
-
-***Liberia***
-Liberia: 
-{{wikipedia|lang=de}}
-
-===Pronunciation===
-* {{IPA|/liˈbeːʁia/|lang=de}}
-
-===Proper noun===
-{{de-proper noun|g=n}}
-
-# {{l|en|Liberia}}
-
-====Derived terms====
-* {{l|de|Liberianer}}
-* {{l|de|Liberianerin}}
-* {{l|de|liberianisch}}
-
-[[Category:de:Countries]]
-
-----
-
+<h3>Alternative forms</h3>
+<ul><li> {{qualifier|in other dialects, including Low Prussian}} {{l|nds|een}}</li>
+<li> {{qualifier|in some dialects}} {{l|nds|ein}}</li>
+<li> {{qualifier|{pdt}}} een, {{qualifier|cardinal number}} eent</li>
+</ul>
 
-***Liechtenstein***
-Liechtenstein: 
-{{wikipedia|lang=de}}
+<h3>Article</h3>
+{{head|nds|article|indefinite article|g=m}}
+<ol><li> {{context|in some dialects|lang=nds}} a, an</li>
+</ol>
 
-===Pronunciation===
-* {{IPA|/ˈlɪçtn̩ˌʃtaɪ̯n/|lang=de}}
-* {{audio|De-Liechtenstein.ogg|Audio}}
+<h3>Article</h3>
+{{head|nds|article|indefinite article|g=n}}
+<ol><li> {{context|in some dialects|lang=nds}} a, an</li>
+</ol>
 
-===Proper noun===
-{{de-proper noun|g=n}}
+<h3>Cardinal number</h3>
+{{head|nds|cardinal number}}
+<ol><li> {{context|in some dialects, including|_|Low Prussian|lang=nds}} one (1)</li>
+</ol>
+----
+***Esperanto***
+Esperanto:
 
-# Country in Europe. Official name: [[Fürstentum Liechtenstein]].
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-Esperanto.ogg|audio}}</li>
+</ul>
 
-====Derived terms====
-* {{l|de|Liechtensteiner}}
-* {{l|de|Liechtensteinerin}}
-* {{l|de|liechtensteinisch}}
+<h3>Noun</h3>
+{{head|de|noun|g=n}}
+<ol><li> Esperanto</li>
+</ol>
+Category:de:Languages----
+***Fabian***
+Fabian:
 
-[[Category:de:Countries]]
+<h3>Proper noun</h3>
+{{head|de|proper noun}}
+<ol><li> {{given name|male|lang=de}}</li>
+</ol>
+----
+***Fanny***
+Fanny:
 
+<h3>Proper noun</h3>
+{{head|de|proper noun}}
+<ol><li> {{given name|female|lang=de}} borrowed from English.</li>
+</ol>
 ----
+===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>
 
+***frei***
+frei:
 
-===lists===
-Appendix:Swadesh lists: 
-The words from Swadesh's original 100-word list are designated by an asterisk (*). In the composite list on this page, there are actually 207 words, since seven of the words in the 100-word list (''breast'', ''fingernail'', ''full'', ''horn'', ''knee'', ''moon'', ''round'') were not in the original 200-word list. 
-
-{|  align=center class="wikitable sortable"
-|  i=No | No
-!  c=en | [[English]]
-!  c=fr | [[French]]
-!  c=de | [[German]]
-!  c=it | [[Italian]]
-!  c=es | [[Spanish]]
-!  c=nl | [[Dutch]]
-!  c=sw | [[Swedish]]
-!  c=la | [[Latin]]
-|- 
-|  i=No | 1
-|  c=en | [[I]] *
-|  c=fr | [[je]]
-|  c=de | [[ich]]
-|  c=it | [[io]]
-|  c=es | [[yo]]
-|  c=nl | [[ik]]
-|  c=sw | [[jag]]
-|  c=la | [[ego]]
-|- 
-|  i=No | 2
-|  c=en | [[you]] ''sing.'', [[thou]]
-|  c=fr | [[tu]], [[vous]] (formal)
-|  c=de | [[du]], [[Sie]] (formal)
-|  c=it | [[tu]], [[Lei]] (formal)
-|  c=es | [[tú]], [[usted]] (formal)
-|  c=nl | [[jij]], [[je]], [[U]] (formal)
-|  c=sw | [[du]]
-|  c=la | [[tu]]
-|- 
-|  i=No | 3
-|  c=en | [[he]]
-|  c=fr | [[il]]
-|  c=de | [[er]]
-|  c=it | [[lui]], [[egli]]
-|  c=es | [[él]]
-|  c=nl | [[hij]]
-|  c=sw | [[han]]
-|  c=la | [[is]], [[ea]]
-|- 
-|  i=No | 4
-|  c=en | [[we]] *
-|  c=fr | [[nous]]
-|  c=de | [[wir]]
-|  c=it | [[noi]]
-|  c=es | [[nosotros]]
-|  c=nl | [[wij]], [[we]]
-|  c=sw | [[vi]]
-|  c=la | [[nos]]
-|- 
-|  i=No | 5
-|  c=en | [[you]] ''pl.''
-|  c=fr | [[vous]]
-|  c=de | [[ihr]], [[Sie]] (formal)
-|  c=it | [[voi]]
-|  c=es | [[vosotros]], [[ustedes]] (formal)
-|  c=nl | [[jullie]]
-|  c=sw | [[ni]]
-|  c=la | [[vos]]
-|- 
-|  i=No | 6
-|  c=en | [[they]]
-|  c=fr | [[ils]], [[elles]]
-|  c=de | [[sie]]
-|  c=it | [[loro]], [[essi]]
-|  c=es | [[ellos]], [[ellas]]
-|  c=nl | [[zij]], [[ze]]
-|  c=sw | [[de]]
-|  c=la | [[ii]], [[eae]]
-|- 
-|  i=No | 7
-|  c=en | [[this]] *
-|  c=fr | [[ceci]]
-|  c=de | [[dieses]]
-|  c=it | [[questo]]
-|  c=es | [[este]]
-|  c=nl | [[deze]], [[dit]]
-|  c=sw | [[det här]]
-|  c=la | [[hic]], [[is]]
-|- 
-|  i=No | 8
-|  c=en | [[that]] *
-|  c=fr | [[cela]]
-|  c=de | [[jenes]], [[das]]
-|  c=it | [[quello]]
-|  c=es | [[ese]], [[aquel]]
-|  c=nl | [[die]], [[dat]]
-|  c=sw | [[det där]]
-|  c=la | [[ille]]
-|- 
-|  i=No | 9
-|  c=en | [[here]]
-|  c=fr | [[ici]]
-|  c=de | [[hier]]
-|  c=it | [[qui]], [[qua]]
-|  c=es | [[aquí]], [[acá]]
-|  c=nl | [[hier]]
-|  c=sw | [[här]]
-|  c=la | [[hic]]
-|- 
-|  i=No | 10
-|  c=en | [[there]]
-|  c=fr | [[là]]
-|  c=de | [[dort]]
-|  c=it | [[là]]
-|  c=es | [[ahí]], [[allí]], [[allá]]
-|  c=nl | [[daar]]
-|  c=sw | [[där]]
-|  c=la | [[ibi]]
-|- 
-|  i=No | 11
-|  c=en | [[who]] *
-|  c=fr | [[qui]]
-|  c=de | [[wer]]
-|  c=it | [[chi]]
-|  c=es | [[quien]]
-|  c=nl | [[wie]]
-|  c=sw | [[vem]]
-|  c=la | [[quis]]
-|- 
-|  i=No | 12
-|  c=en | [[what]] *
-|  c=fr | [[quoi]]
-|  c=de | [[was]]
-|  c=it | [[che]]
-|  c=es | [[que]]
-|  c=nl | [[wat]]
-|  c=sw | [[vad]]
-|  c=la | [[quid]]
-|- 
-|  i=No | 13
-|  c=en | [[where]]
-|  c=fr | [[où]]
-|  c=de | [[wo]]
-|  c=it | [[dove]]
-|  c=es | [[donde]]
-|  c=nl | [[waar]]
-|  c=sw | [[var]]
-|  c=la | [[ubi]]
-|- 
-|  i=No | 14
-|  c=en | [[when]]
-|  c=fr | [[quand]]
-|  c=de | [[wann]]
-|  c=it | [[quando]]
-|  c=es | [[cuando]]
-|  c=nl | [[wanneer]]
-|  c=sw | [[när]]
-|  c=la | [[quando]]
-|- 
-|  i=No | 15
-|  c=en | [[how]]
-|  c=fr | [[comment]]
-|  c=de | [[wie]]
-|  c=it | [[come]]
-|  c=es | [[como]]
-|  c=nl | [[hoe]]
-|  c=sw | [[hur]]
-|  c=la | [[quam]], [[quomodo]]
-|- 
-|  i=No | 16
-|  c=en | [[not]] *
-|  c=fr | [[ne]]...[[pas]]
-|  c=de | [[nicht]]
-|  c=it | [[non]]
-|  c=es | [[no]]
-|  c=nl | [[niet]]
-|  c=sw | [[inte]], [[ej]]
-|  c=la | [[non]]
-|- 
-|  i=No | 17
-|  c=en | [[all]] *
-|  c=fr | [[tout]]
-|  c=de | [[alle]]
-|  c=it | [[tutto]]
-|  c=es | [[todo]]
-|  c=nl | [[al]], [[alle]]
-|  c=sw | [[alla]]
-|  c=la | [[omnis]]
-|- 
-|  i=No | 18
-|  c=en | [[many]] *
-|  c=fr | [[plusieurs]]
-|  c=de | [[viele]]
-|  c=it | [[molti]]
-|  c=es | [[muchos]]
-|  c=nl | [[veel]]
-|  c=sw | [[många]]
-|  c=la | [[multi]]
-|- 
-|  i=No | 19
-|  c=en | [[some]]
-|  c=fr | [[quelques]]
-|  c=de | [[einige]]
-|  c=it | [[alcuni]]
-|  c=es | [[algunos]], [[unos]]
-|  c=nl | [[enkele]], [[sommige]]
-|  c=sw | [[några]], [[vissa]]
-|  c=la | [[aliqui]], [[aliquot]]
-|- 
-|  i=No | 20
-|  c=en | [[few]]
-|  c=fr | [[peu]]
-|  c=de | [[wenige]]
-|  c=it | [[pochi]]
-|  c=es | [[poco]]
-|  c=nl | [[weinig]]
-|  c=sw | [[få]]
-|  c=la | [[pauci]]
-|- 
-|  i=No | 21
-|  c=en | [[other]]
-|  c=fr | [[autre]]
-|  c=de | [[andere]]
-|  c=it | [[altro]]
-|  c=es | [[otro]]
-|  c=nl | [[ander]]
-|  c=sw | [[annan]]
-|  c=la | [[alter]], [[alius]]
-|- 
-|  i=No | 22
-|  c=en | [[one]] *
-|  c=fr | [[un]]
-|  c=de | [[eins]]
-|  c=it | [[uno]]
-|  c=es | [[uno]]
-|  c=nl | [[een]]
-|  c=sw | [[ett]]
-|  c=la | [[unus]]
-|- 
-|  i=No | 23
-|  c=en | [[two]] *
-|  c=fr | [[deux]]
-|  c=de | [[zwei]]
-|  c=it | [[due]]
-|  c=es | [[dos]]
-|  c=nl | [[twee]]
-|  c=sw | [[två]]
-|  c=la | [[duo]]
-|- 
-|  i=No | 24
-|  c=en | [[three]]
-|  c=fr | [[trois]]
-|  c=de | [[drei]]
-|  c=it | [[tre]]
-|  c=es | [[tres]]
-|  c=nl | [[drie]]
-|  c=sw | [[tre]]
-|  c=la | [[tres]]
-|- 
-|  i=No | 25
-|  c=en | [[four]]
-|  c=fr | [[quatre]]
-|  c=de | [[vier]]
-|  c=it | [[quattro]]
-|  c=es | [[cuatro]]
-|  c=nl | [[vier]]
-|  c=sw | [[fyra]]
-|  c=la | [[quattuor]]
-|- 
-|  i=No | 26
-|  c=en | [[five]]
-|  c=fr | [[cinq]]
-|  c=de | [[fünf]]
-|  c=it | [[cinque]]
-|  c=es | [[cinco]]
-|  c=nl | [[vijf]]
-|  c=sw | [[fem]]
-|  c=la | [[quinque]]
-|- 
-|  i=No | 27
-|  c=en | [[big]] *
-|  c=fr | [[grand]]
-|  c=de | [[groß]]
-|  c=it | [[grande]]
-|  c=es | [[grande]]
-|  c=nl | [[groot]]
-|  c=sw | [[stor]]
-|  c=la | [[magnus]], [[grandis]]
-|- 
-|  i=No | 28
-|  c=en | [[long]] *
-|  c=fr | [[long]]
-|  c=de | [[lang]]
-|  c=it | [[lungo]]
-|  c=es | [[largo]]
-|  c=nl | [[lang]]
-|  c=sw | [[lång]]
-|  c=la | [[longus]]
-|- 
-|  i=No | 29
-|  c=en | [[wide]]
-|  c=fr | [[large]]
-|  c=de | [[breit]], [[weit]]
-|  c=it | [[largo]]
-|  c=es | [[ancho]]
-|  c=nl | [[breed]], [[wijd]]
-|  c=sw | [[bred]], [[vid]]
-|  c=la | [[latus]]
-|- 
-|  i=No | 30
-|  c=en | [[thick]]
-|  c=fr | [[épais]]
-|  c=de | [[dick]]
-|  c=it | [[spesso]]
-|  c=es | [[grueso]]
-|  c=nl | [[dik]]
-|  c=sw | [[tjock]]
-|  c=la | [[creber]]
-|- 
-|  i=No | 31
-|  c=en | [[heavy]]
-|  c=fr | [[lourd]]
-|  c=de | [[schwer]]
-|  c=it | [[pesante]]
-|  c=es | [[pesado]]
-|  c=nl | [[zwaar]]
-|  c=sw | [[tung]]
-|  c=la | [[gravis]]
-|- 
-|  i=No | 32
-|  c=en | [[small]] *
-|  c=fr | [[petit]]
-|  c=de | [[klein]]
-|  c=it | [[piccolo]]
-|  c=es | [[pequeño]]
-|  c=nl | [[smal]]
-|  c=sw | [[liten]]
-|  c=la | [[parvus]]
-|- 
-|  i=No | 33
-|  c=en | [[short]]
-|  c=fr | [[court]]
-|  c=de | [[kurz]]
-|  c=it | [[corto]]
-|  c=es | [[corto]]
-|  c=nl | [[kort]]
-|  c=sw | [[kort]]
-|  c=la | [[brevis]]
-|- 
-|  i=No | 34
-|  c=en | [[narrow]]
-|  c=fr | [[étroit]]
-|  c=de | [[eng]]
-|  c=it | [[stretto]]
-|  c=es | [[estrecho]], [[angosto]]
-|  c=nl | [[klein]]
-|  c=sw | [[trång]]
-|  c=la | [[angustus]]
-|- 
-|  i=No | 35
-|  c=en | [[thin]]
-|  c=fr | [[mince]]
-|  c=de | [[dünn]]
-|  c=it | [[sottile]]
-|  c=es | [[delgado]], [[flaco]]
-|  c=nl | [[dun]]
-|  c=sw | [[tunn]]
-|  c=la | [[macer]]
-|- 
-|  i=No | 36
-|  c=en | [[woman]] *
-|  c=fr | [[femme]]
-|  c=de | [[Frau]]
-|  c=it | [[donna]]
-|  c=es | [[mujer]]
-|  c=nl | [[vrouw]]
-|  c=sw | [[kvinna]]
-|  c=la | [[femina]]
-|- 
-|  i=No | 37
-|  c=en | [[man]] (adult male)
-|  c=fr | [[homme]]
-|  c=de | [[Mann]]
-|  c=it | [[uomo]]
-|  c=es | [[hombre]]
-|  c=nl | [[man]]
-|  c=sw | [[man]]
-|  c=la | [[vir]]
-|- 
-|  i=No | 38
-|  c=en | [[man]] * (human being)
-|  c=fr | [[homme]]
-|  c=de | [[Mensch]]
-|  c=it | [[uomo]]
-|  c=es | [[hombre]]
-|  c=nl | [[mens]]
-|  c=sw | [[människa]]
-|  c=la | [[homo]]
-|- 
-|  i=No | 39
-|  c=en | [[kid]]
-|  c=fr | [[enfant]]
-|  c=de | [[Kind]]
-|  c=it | [[bambino]]
-|  c=es | [[niño]]
-|  c=nl | [[kind]]
-|  c=sw | [[barn]]
-|  c=la | [[puer]]
-|- 
-|  i=No | 40
-|  c=en | [[wife]]
-|  c=fr | [[femme]], [[épouse]]
-|  c=de | [[Frau]], [[Ehefrau]]
-|  c=it | [[moglie]]
-|  c=es | [[esposa]], [[mujer]]
-|  c=nl | [[vrouw]], [[echtgenote]]
-|  c=sw | [[hustru]], [[maka]], [[fru]]
-|  c=la | [[uxor]], [[mulier]]
-|- 
-|  i=No | 41
-|  c=en | [[husband]]
-|  c=fr | [[mari]], [[époux]]
-|  c=de | [[Mann]], [[Ehemann]]
-|  c=it | [[marito]]
-|  c=es | [[esposo]], [[marido]]
-|  c=nl | [[man]], [[echtgenoot]]
-|  c=sw | [[man]], [[make]]
-|  c=la | [[maritus]]
-|- 
-|  i=No | 42
-|  c=en | [[mother]]
-|  c=fr | [[mère]]
-|  c=de | [[Mutter]]
-|  c=it | [[madre]]
-|  c=es | [[madre]]
-|  c=nl | [[moeder]]
-|  c=sw | [[mamma]], [[mor]]
-|  c=la | [[mater]]
-|- 
-|  i=No | 43
-|  c=en | [[father]]
-|  c=fr | [[père]]
-|  c=de | [[Vater]]
-|  c=it | [[padre]]
-|  c=es | [[padre]]
-|  c=nl | [[vader]]
-|  c=sw | [[pappa]], [[far]]
-|  c=la | [[pater]]
-|- 
-|  i=No | 44
-|  c=en | [[animal]]
-|  c=fr | [[animal]]
-|  c=de | [[Tier]]
-|  c=it | [[animale]]
-|  c=es | [[animal]]
-|  c=nl | [[dier]]
-|  c=sw | [[djur]]
-|  c=la | [[animal]]
-|- 
-|  i=No | 45
-|  c=en | [[fish]] *
-|  c=fr | [[poisson]]
-|  c=de | [[Fisch]]
-|  c=it | [[pesce]]
-|  c=es | [[pez]], [[pescado]]
-|  c=nl | [[vis]]
-|  c=sw | [[fisk]]
-|  c=la | [[piscis]]
-|- 
-|  i=No | 46
-|  c=en | [[bird]] *
-|  c=fr | [[oiseau]]
-|  c=de | [[Vogel]]
-|  c=it | [[uccello]]
-|  c=es | [[ave]], [[pájaro]]
-|  c=nl | [[vogel]]
-|  c=sw | [[fågel]]
-|  c=la | [[avis]]
-|- 
-|  i=No | 47
-|  c=en | [[hound]] *
-|  c=fr | [[chien]]
-|  c=de | [[Hund]]
-|  c=it | [[cane]]
-|  c=es | [[perro]]
-|  c=nl | [[hond]]
-|  c=sw | [[hund]]
-|  c=la | [[canis]]
-|- 
-|  i=No | 48
-|  c=en | [[louse]] *
-|  c=fr | [[pou]]
-|  c=de | [[Laus]]
-|  c=it | [[pidocchio]]
-|  c=es | [[piojo]]
-|  c=nl | [[luis]]
-|  c=sw | [[lus]]
-|  c=la | [[pedis]]
-|- 
-|  i=No | 49
-|  c=en | [[snake]]
-|  c=fr | [[serpent]]
-|  c=de | [[Schlange]]
-|  c=it | [[serpente]]
-|  c=es | [[serpiente]], [[culebra]]
-|  c=nl | [[slang]]
-|  c=sw | [[orm]]
-|  c=la | [[serpens]]
-|- 
-|  i=No | 50
-|  c=en | [[worm]]
-|  c=fr | [[ver]]
-|  c=de | [[Wurm]]
-|  c=it | [[verme]]
-|  c=es | [[gusano]]
-|  c=nl | [[worm]]
-|  c=sw | [[mask]]
-|  c=la | [[vermis]]
-|- 
-|  i=No | 51
-|  c=en | [[beam]] *
-|  c=fr | [[arbre]]
-|  c=de | [[Baum]]
-|  c=it | [[albero]]
-|  c=es | [[árbol]]
-|  c=nl | [[boom]]
-|  c=sw | [[träd]]
-|  c=la | [[arbor]]
-|- 
-|  i=No | 52
-|  c=en | [[forest]]
-|  c=fr | [[forêt]]
-|  c=de | [[Wald]]
-|  c=it | [[foresta]]
-|  c=es | [[bosque]]
-|  c=nl | [[woud]]
-|  c=sw | [[skog]]
-|  c=la | [[silva]]
-|- 
-|  i=No | 53
-|  c=en | [[stick]]
-|  c=fr | [[bâton]]
-|  c=de | [[Stock]]
-|  c=it | [[bastone]]
-|  c=es | [[palo]]
-|  c=nl | [[stok]]
-|  c=sw | [[pinne]]
-|  c=la | [[fustis]]
-|- 
-|  i=No | 54
-|  c=en | [[fruit]]
-|  c=fr | [[fruit]]
-|  c=de | [[Frucht]]
-|  c=it | [[frutta]]
-|  c=es | [[fruta]]
-|  c=nl | [[fruit]], [[vrucht]]
-|  c=sw | [[frukt]]
-|  c=la | [[fructus]]
-|- 
-|  i=No | 55
-|  c=en | [[seed]] *
-|  c=fr | [[graine]]
-|  c=de | [[Samen]]
-|  c=it | [[seme]]
-|  c=es | [[semilla]]
-|  c=nl | [[zaad]]
-|  c=sw | [[frö]]
-|  c=la | [[semen]]
-|- 
-|  i=No | 56
-|  c=en | [[leaf]] *
-|  c=fr | [[feuille]]
-|  c=de | [[Blatt]]
-|  c=it | [[foglia]]
-|  c=es | [[hoja]]
-|  c=nl | [[blad]]
-|  c=sw | [[löv]], [[blad]]
-|  c=la | [[folium]]
-|- 
-|  i=No | 57
-|  c=en | [[root]] *
-|  c=fr | [[racine]]
-|  c=de | [[Wurzel]]
-|  c=it | [[radice]]
-|  c=es | [[raíz]]
-|  c=nl | [[root]]
-|  c=sw | [[rot]]
-|  c=la | [[radix]]
-|- 
-|  i=No | 58
-|  c=en | [[bark]] * (from tree)
-|  c=fr | [[écorce]]
-|  c=de | [[Rinde]]
-|  c=it | [[corteccia]]
-|  c=es | [[corteza]]
-|  c=nl | [[bark]]
-|  c=sw | [[bark]]
-|  c=la | [[cortex]]
-|- 
-|  i=No | 59
-|  c=en | [[flower]]
-|  c=fr | [[fleur]]
-|  c=de | [[Blume]]
-|  c=it | [[fiore]]
-|  c=es | [[flor]]
-|  c=nl | [[bloem]]
-|  c=sw | [[blomma]]
-|  c=la | [[flos]]
-|- 
-|  i=No | 60
-|  c=en | [[grass]]
-|  c=fr | [[herbe]]
-|  c=de | [[Gras]]
-|  c=it | [[erba]]
-|  c=es | [[hierba]], [[pasto]]
-|  c=nl | [[gras]]
-|  c=sw | [[gräs]]
-|  c=la | [[herba]]
-|- 
-|  i=No | 61
-|  c=en | [[rope]]
-|  c=fr | [[corde]]
-|  c=de | [[Seil]]
-|  c=it | [[corda]]
-|  c=es | [[cuerda]]
-|  c=nl | [[reep]], [[koord]]
-|  c=sw | [[rep]]
-|  c=la | [[funis]]
-|- 
-|  i=No | 62
-|  c=en | [[skin]] *
-|  c=fr | [[peau]]
-|  c=de | [[Haut]]
-|  c=it | [[pelle]]
-|  c=es | [[piel]]
-|  c=nl | [[huid]]
-|  c=sw | [[hud]]
-|  c=la | [[cutis]]
-|- 
-|  i=No | 63
-|  c=en | [[meat]]
-|  c=fr | [[viande]]
-|  c=de | [[Fleisch]]
-|  c=it | [[carne]]
-|  c=es | [[carne]]
-|  c=nl | [[vlees]]
-|  c=sw | [[kött]]
-|  c=la | [[caro]]
-|- 
-|  i=No | 64
-|  c=en | [[blood]] *
-|  c=fr | [[sang]]
-|  c=de | [[Blut]]
-|  c=it | [[sangue]]
-|  c=es | [[sangre]]
-|  c=nl | [[bloed]]
-|  c=sw | [[blod]]
-|  c=la | [[sanguis]]
-|- 
-|  i=No | 65
-|  c=en | [[bone]] *
-|  c=fr | [[os]]
-|  c=de | [[Knochen]]
-|  c=it | [[osso]]
-|  c=es | [[hueso]]
-|  c=nl | [[been]], [[bot]]
-|  c=sw | [[ben]]
-|  c=la | [[os]]
-|- 
-|  i=No | 66
-|  c=en | [[fat]] * (n.)
-|  c=fr | [[graisse]]
-|  c=de | [[Fett]]
-|  c=it | [[grasso]]
-|  c=es | [[grasa]]
-|  c=nl | [[vet]]
-|  c=sw | [[fett]]
-|  c=la | [[adeps]]
-|- 
-|  i=No | 67
-|  c=en | [[egg]] *
-|  c=fr | [[œuf]]
-|  c=de | [[Ei]]
-|  c=it | [[uovo]]
-|  c=es | [[huevo]]
-|  c=nl | [[ei]]
-|  c=sw | [[ägg]]
-|  c=la | [[ovum]]
-|- 
-|  i=No | 68
-|  c=en | [[horn]] *
-|  c=fr | [[corne]]
-|  c=de | [[Horn]]
-|  c=it | [[corno]]
-|  c=es | [[cuerno]]
-|  c=nl | [[horn]]
-|  c=sw | [[horn]]
-|  c=la | [[cornu]]
-|- 
-|  i=No | 69
-|  c=en | [[tail]] *
-|  c=fr | [[queue]]
-|  c=de | [[Schwanz]]
-|  c=it | [[coda]]
-|  c=es | [[cola]]
-|  c=nl | [[staart]]
-|  c=sw | [[svans]]
-|  c=la | [[cauda]]
-|- 
-|  i=No | 70
-|  c=en | [[feather]] *
-|  c=fr | [[plume]]
-|  c=de | [[Feder]]
-|  c=it | [[piuma]]
-|  c=es | [[pluma]]
-|  c=nl | [[veder]]
-|  c=sw | [[fjäder]]
-|  c=la | [[penna]]
-|- 
-|  i=No | 71
-|  c=en | [[hair]] *
-|  c=fr | [[cheveu]]
-|  c=de | [[Haar]]
-|  c=it | [[capelli]]
-|  c=es | [[cabello]], [[pelo]]
-|  c=nl | [[haar]]
-|  c=sw | [[hår]]
-|  c=la | [[capillus]], [[coma]], [[crinis]]
-|- 
-|  i=No | 72
-|  c=en | [[head]] *
-|  c=fr | [[tête]]
-|  c=de | [[Kopf]], [[Haupt]]
-|  c=it | [[testa]]
-|  c=es | [[cabeza]]
-|  c=nl | [[hoofd]], [[kop]]
-|  c=sw | [[huvud]]
-|  c=la | [[caput]]
-|- 
-|  i=No | 73
-|  c=en | [[ear]] *
-|  c=fr | [[oreille]]
-|  c=de | [[Ohr]]
-|  c=it | [[orecchio]]
-|  c=es | [[oreja]]
-|  c=nl | [[aar]]
-|  c=sw | [[öra]]
-|  c=la | [[auris]]
-|- 
-|  i=No | 74
-|  c=en | [[eye]] *
-|  c=fr | [[œil]]
-|  c=de | [[Auge]]
-|  c=it | [[occhio]]
-|  c=es | [[ojo]]
-|  c=nl | [[oog]]
-|  c=sw | [[öga]]
-|  c=la | [[oculus]]
-|- 
-|  i=No | 75
-|  c=en | [[nose]] *
-|  c=fr | [[nez]]
-|  c=de | [[Nase]]
-|  c=it | [[naso]]
-|  c=es | [[nariz]]
-|  c=nl | [[neus]]
-|  c=sw | [[näsa]]
-|  c=la | [[nasus]]
-|- 
-|  i=No | 76
-|  c=en | [[mouth]] *
-|  c=fr | [[bouche]]
-|  c=de | [[Mund]]
-|  c=it | [[bocca]]
-|  c=es | [[boca]]
-|  c=nl | [[mond]]
-|  c=sw | [[mun]]
-|  c=la | [[os]]
-|- 
-|  i=No | 77
-|  c=en | [[tooth]] *
-|  c=fr | [[dent]]
-|  c=de | [[Zahn]]
-|  c=it | [[dente]]
-|  c=es | [[diente]]
-|  c=nl | [[tand]]
-|  c=sw | [[tand]]
-|  c=la | [[dens]]
-|- 
-|  i=No | 78
-|  c=en | [[tongue]] *
-|  c=fr | [[langue]]
-|  c=de | [[Zunge]]
-|  c=it | [[lingua]]
-|  c=es | [[lengua]]
-|  c=nl | [[tong]]
-|  c=sw | [[tunga]]
-|  c=la | [[lingua]]
-|- 
-|  i=No | 79
-|  c=en | [[fingernail]]
-|  c=fr | [[ongle]]
-|  c=de | [[Fingernagel]]
-|  c=it | [[unghia]]
-|  c=es | [[uña]]
-|  c=nl | [[vingernagel]]
-|  c=sw | [[nagel]]
-|  c=la | [[unguis]]
-|- 
-|  i=No | 80
-|  c=en | [[foot]] *
-|  c=fr | [[pied]]
-|  c=de | [[Fuß]]
-|  c=it | [[piede]]
-|  c=es | [[pie]]
-|  c=nl | [[voet]]
-|  c=sw | [[fot]]
-|  c=la | [[pes]]
-|- 
-|  i=No | 81
-|  c=en | [[leg]]
-|  c=fr | [[jambe]]
-|  c=de | [[Bein]]
-|  c=it | [[gamba]]
-|  c=es | [[pierna]]
-|  c=nl | [[been]]
-|  c=sw | [[ben]]
-|  c=la | [[crus]]
-|- 
-|  i=No | 82
-|  c=en | [[knee]] *
-|  c=fr | [[genou]]
-|  c=de | [[Knie]]
-|  c=it | [[ginocchio]]
-|  c=es | [[rodilla]]
-|  c=nl | [[knie]]
-|  c=sw | [[knä]]
-|  c=la | [[genu]]
-|- 
-|  i=No | 83
-|  c=en | [[hand]] *
-|  c=fr | [[main]]
-|  c=de | [[Hand]]
-|  c=it | [[mano]]
-|  c=es | [[mano]]
-|  c=nl | [[hand]]
-|  c=sw | [[hand]]
-|  c=la | [[manus]]
-|- 
-|  i=No | 84
-|  c=en | [[wing]]
-|  c=fr | [[aile]]
-|  c=de | [[Flügel]]
-|  c=it | [[ala]]
-|  c=es | [[ala]]
-|  c=nl | [[vleugel]]
-|  c=sw | [[vinge]]
-|  c=la | [[ala]]
-|- 
-|  i=No | 85
-|  c=en | [[belly]] *
-|  c=fr | [[ventre]]
-|  c=de | [[Bauch]]
-|  c=it | [[pancia]]
-|  c=es | [[barriga]], [[vientre]], [[panza]]
-|  c=nl | [[buik]]
-|  c=sw | [[mage]]
-|  c=la | [[venter]]
-|- 
-|  i=No | 86
-|  c=en | [[guts]]
-|  c=fr | [[entrailles]]
-|  c=de | [[Eingeweide]], [[Innereien]]
-|  c=it | [[intestino]]
-|  c=es | [[entrañas]], [[tripas]]
-|  c=nl | [[ingewanden]]
-|  c=sw | [[inälvor]]
-|  c=la | [[intestina]]
-|- 
-|  i=No | 87
-|  c=en | [[neck]] *
-|  c=fr | [[cou]]
-|  c=de | [[Hals]]
-|  c=it | [[collo]]
-|  c=es | [[cuello]]
-|  c=nl | [[nek]]
-|  c=sw | [[hals]], [[nacke]]
-|  c=la | [[collum]], [[cervix]]
-|- 
-|  i=No | 88
-|  c=en | [[back]]
-|  c=fr | [[dos]]
-|  c=de | [[Rücken]]
-|  c=it | [[schiena]]
-|  c=es | [[espalda]]
-|  c=nl | [[rug]]
-|  c=sw | [[rygg]]
-|  c=la | [[tergum]]
-|- 
-|  i=No | 89
-|  c=en | [[breast]] *
-|  c=fr | [[sein]], [[poitrine]]
-|  c=de | [[Brust]]
-|  c=it | [[petto]]
-|  c=es | [[pecho]], [[seno]]
-|  c=nl | [[borst]]
-|  c=sw | [[bröst]]
-|  c=la | [[pectus]], [[mamma]]
-|- 
-|  i=No | 90
-|  c=en | [[heart]] *
-|  c=fr | [[cœur]]
-|  c=de | [[Herz]]
-|  c=it | [[cuore]]
-|  c=es | [[corazón]]
-|  c=nl | [[hart]]
-|  c=sw | [[hjärta]]
-|  c=la | [[cor]]
-|- 
-|  i=No | 91
-|  c=en | [[liver]] *
-|  c=fr | [[foie]]
-|  c=de | [[Leber]]
-|  c=it | [[fegato]]
-|  c=es | [[hígado]]
-|  c=nl | [[lever]]
-|  c=sw | [[lever]]
-|  c=la | [[iecur]]
-|- 
-|  i=No | 92
-|  c=en | [[drink]] *
-|  c=fr | [[boire]]
-|  c=de | [[trinken]]
-|  c=it | [[bere]]
-|  c=es | [[beber]], [[tomar]]
-|  c=nl | [[drinken]]
-|  c=sw | [[dricka]]
-|  c=la | [[bibere]]
-|- 
-|  i=No | 93
-|  c=en | [[eat]] *
-|  c=fr | [[manger]]
-|  c=de | [[essen]]
-|  c=it | [[mangiare]]
-|  c=es | [[comer]]
-|  c=nl | [[eten]]
-|  c=sw | [[äta]]
-|  c=la | [[edere]]
-|- 
-|  i=No | 94
-|  c=en | [[bite]] *
-|  c=fr | [[mordre]]
-|  c=de | [[beißen]]
-|  c=it | [[mordere]]
-|  c=es | [[morder]]
-|  c=nl | [[bijten]]
-|  c=sw | [[bita]]
-|  c=la | [[mordere]]
-|- 
-|  i=No | 95
-|  c=en | [[suck]]
-|  c=fr | [[sucer]]
-|  c=de | [[saugen]]
-|  c=it | [[succhiare]]
-|  c=es | [[chupar]]
-|  c=nl | [[zuigen]]
-|  c=sw | [[suga]]
-|  c=la | [[sugere]]
-|- 
-|  i=No | 96
-|  c=en | [[spit]]
-|  c=fr | [[cracher]]
-|  c=de | [[spucken]]
-|  c=it | [[sputare]]
-|  c=es | [[escupir]]
-|  c=nl | [[spugen]]
-|  c=sw | [[spotta]]
-|  c=la | [[sputare]]
-|- 
-|  i=No | 97
-|  c=en | [[vomit]]
-|  c=fr | [[vomir]]
-|  c=de | [[erbrechen]]
-|  c=it | [[vomitare]]
-|  c=es | [[vomitar]]
-|  c=nl | [[braken]], [[overgeven]]
-|  c=sw | [[kräkas]], [[spy]]
-|  c=la | [[vomere]]
-|- 
-|  i=No | 98
-|  c=en | [[blow]]
-|  c=fr | [[souffler]]
-|  c=de | [[blasen]]
-|  c=it | [[soffiare]]
-|  c=es | [[soplar]]
-|  c=nl | [[blazen]]
-|  c=sw | [[blåsa]]
-|  c=la | [[flare]]
-|- 
-|  i=No | 99
-|  c=en | [[breathe]]
-|  c=fr | [[respirer]]
-|  c=de | [[atmen]]
-|  c=it | [[respirare]]
-|  c=es | [[respirar]]
-|  c=nl | [[ademen]]
-|  c=sw | [[andas]]
-|  c=la | [[spirare]]
-|- 
-|  i=No | 100
-|  c=en | [[laugh]]
-|  c=fr | [[rire]]
-|  c=de | [[lachen]]
-|  c=it | [[ridere]]
-|  c=es | [[reír]]
-|  c=nl | [[lachen]]
-|  c=sw | [[skratta]]
-|  c=la | [[ridere]]
-|- 
-|  i=No | 101
-|  c=en | [[see]] *
-|  c=fr | [[voir]]
-|  c=de | [[sehen]]
-|  c=it | [[vedere]]
-|  c=es | [[ver]]
-|  c=nl | [[zien]]
-|  c=sw | [[se]]
-|  c=la | [[videre]]
-|- 
-|  i=No | 102
-|  c=en | [[hear]] *
-|  c=fr | [[entendre]]
-|  c=de | [[hören]]
-|  c=it | [[udire]], [[sentire]]
-|  c=es | [[oír]]
-|  c=nl | [[horen]]
-|  c=sw | [[höra]]
-|  c=la | [[audire]]
-|- 
-|  i=No | 103
-|  c=en | [[know]] * (a fact)
-|  c=fr | [[savoir]]
-|  c=de | [[wissen]]
-|  c=it | [[sapere]]
-|  c=es | [[saber]]
-|  c=nl | [[kennen]]
-|  c=sw | [[veta]]
-|  c=la | [[scire]]
-|- 
-|  i=No | 104
-|  c=en | [[think]]
-|  c=fr | [[penser]]
-|  c=de | [[denken]]
-|  c=it | [[pensare]]
-|  c=es | [[pensar]]
-|  c=nl | [[denken]]
-|  c=sw | [[tänka]]
-|  c=la | [[putare]]
-|- 
-|  i=No | 105
-|  c=en | [[smell]]
-|  c=fr | [[sentir]]
-|  c=de | [[riechen]]
-|  c=it | [[odorare]], [[annusare]]
-|  c=es | [[oler]]
-|  c=nl | [[smelten]]
-|  c=sw | [[lukta]]
-|  c=la | [[olere]]
-|- 
-|  i=No | 106
-|  c=en | [[fear]]
-|  c=fr | [[craindre]], [[avoir]] [[peur]]
-|  c=de | [[fürchten]]
-|  c=it | [[temere]]
-|  c=es | [[temer]]
-|  c=nl | [[vrezen]], [[angst]]
-|  c=sw | [[frukta]], [[rädas]]
-|  c=la | [[timere]]
-|- 
-|  i=No | 107
-|  c=en | [[sleep]] *
-|  c=fr | [[dormir]]
-|  c=de | [[schlafen]]
-|  c=it | [[dormire]]
-|  c=es | [[dormir]]
-|  c=nl | [[slapen]]
-|  c=sw | [[sova]]
-|  c=la | [[dormire]]
-|- 
-|  i=No | 108
-|  c=en | [[live]]
-|  c=fr | [[vivre]]
-|  c=de | [[leben]]
-|  c=it | [[vivere]]
-|  c=es | [[vivir]]
-|  c=nl | [[leven]]
-|  c=sw | [[leva]]
-|  c=la | [[vivere]]
-|- 
-|  i=No | 109
-|  c=en | [[die]] *
-|  c=fr | [[mourir]]
-|  c=de | [[sterben]]
-|  c=it | [[morire]]
-|  c=es | [[morir]]
-|  c=nl | [[doden]]
-|  c=sw | [[dö]]
-|  c=la | [[mori]]
-|- 
-|  i=No | 110
-|  c=en | [[kill]] *
-|  c=fr | [[tuer]]
-|  c=de | [[töten]]
-|  c=it | [[uccidere]]
-|  c=es | [[matar]]
-|  c=nl | [[doden]]
-|  c=sw | [[döda]]
-|  c=la | [[necare]]
-|- 
-|  i=No | 111
-|  c=en | [[fight]]
-|  c=fr | [[se]] [[battre]]
-|  c=de | [[kämpfen]]
-|  c=it | [[combattere]]
-|  c=es | [[pelear]]
-|  c=nl | [[vechten]]
-|  c=sw | [[strida]]
-|  c=la | [[pugnare]]
-|- 
-|  i=No | 112
-|  c=en | [[hunt]]
-|  c=fr | [[chasser]]
-|  c=de | [[jagen]]
-|  c=it | [[cacciare]]
-|  c=es | [[cazar]]
-|  c=nl | [[jagen]]
-|  c=sw | [[jaga]]
-|  c=la | [[venari]]
-|- 
-|  i=No | 113
-|  c=en | [[hit]]
-|  c=fr | [[frapper]]
-|  c=de | [[schlagen]]
-|  c=it | [[colpire]]
-|  c=es | [[golpear]]
-|  c=nl | [[slaan]]
-|  c=sw | [[slå]]
-|  c=la | [[pellere]]
-|- 
-|  i=No | 114
-|  c=en | [[cut]]
-|  c=fr | [[couper]]
-|  c=de | [[schneiden]]
-|  c=it | [[tagliare]]
-|  c=es | [[cortar]]
-|  c=nl | [[snijden]]
-|  c=sw | [[skära]]
-|  c=la | [[secare]]
-|- 
-|  i=No | 115
-|  c=en | [[split]]
-|  c=fr | [[fendre]]
-|  c=de | [[spalten]]
-|  c=it | [[dividere]], [[separare]]
-|  c=es | [[partir]]
-|  c=nl | [[splijten]]
-|  c=sw | [[dela]], [[klyva]]
-|  c=la | [[scindere]], [[partiri]]
-|- 
-|  i=No | 116
-|  c=en | [[stab]]
-|  c=fr | [[poignarder]]
-|  c=de | [[stechen]]
-|  c=it | [[pugnalare]]
-|  c=es | [[apuñalar]]
-|  c=nl | [[steken]]
-|  c=sw | [[sticka]]
-|  c=la | [[traicere]]
-|- 
-|  i=No | 117
-|  c=en | [[scratch]]
-|  c=fr | [[gratter]]
-|  c=de | [[kratzen]]
-|  c=it | [[graffiare]]
-|  c=es | [[arañar]], [[rascar]]
-|  c=nl | [[krabben]]
-|  c=sw | [[klia]]
-|  c=la | [[radere]]
-|- 
-|  i=No | 118
-|  c=en | [[dig]]
-|  c=fr | [[creuser]]
-|  c=de | [[graben]]
-|  c=it | [[scavare]]
-|  c=es | [[cavar]]
-|  c=nl | [[delven]]
-|  c=sw | [[gräva]]
-|  c=la | [[fodere]]
-|- 
-|  i=No | 119
-|  c=en | [[swim]] *
-|  c=fr | [[nager]]
-|  c=de | [[schwimmen]]
-|  c=it | [[nuotare]]
-|  c=es | [[nadar]]
-|  c=nl | [[zwemmen]]
-|  c=sw | [[simma]]
-|  c=la | [[natare]]
-|- 
-|  i=No | 120
-|  c=en | [[fly]] * (v.)
-|  c=fr | [[voler]]
-|  c=de | [[fliegen]]
-|  c=it | [[volare]]
-|  c=es | [[volar]]
-|  c=nl | [[vliegen]]
-|  c=sw | [[flyga]]
-|  c=la | [[volare]]
-|- 
-|  i=No | 121
-|  c=en | [[walk]] *
-|  c=fr | [[marcher]]
-|  c=de | [[gehen]]
-|  c=it | [[camminare]]
-|  c=es | [[caminar]]
-|  c=nl | [[lopen]], [[wandelen]]
-|  c=sw | [[gå]]
-|  c=la | [[gradi]]
-|- 
-|  i=No | 122
-|  c=en | [[come]] *
-|  c=fr | [[venir]]
-|  c=de | [[kommen]]
-|  c=it | [[venire]]
-|  c=es | [[venir]]
-|  c=nl | [[komen]]
-|  c=sw | [[komma]]
-|  c=la | [[venire]]
-|- 
-|  i=No | 123
-|  c=en | [[lie]] *
-|  c=fr | [[s]]'[[étendre]]
-|  c=de | [[liegen]]
-|  c=it | [[distendersi]]
-|  c=es | [[echarse]], [[acostarse]], [[tenderse]]
-|  c=nl | [[liegen]]
-|  c=sw | [[ligga]]
-|  c=la | [[iacere]]
-|- 
-|  i=No | 124
-|  c=en | [[sit]] *
-|  c=fr | [[s'asseoir]]
-|  c=de | [[setzen]]
-|  c=it | [[sedere]]
-|  c=es | [[sentarse]]
-|  c=nl | [[zitten]]
-|  c=sw | [[sitta]]
-|  c=la | [[sedere]]
-|- 
-|  i=No | 125
-|  c=en | [[stand]] *
-|  c=fr | [[se lever]]
-|  c=de | [[stehen]]
-|  c=it | [[stare]] [[in]] [[piedi]]
-|  c=es | [[estar de pie]]
-|  c=nl | [[staan]]
-|  c=sw | [[stå]]
-|  c=la | [[stare]]
-|- 
-|  i=No | 126
-|  c=en | [[turn]]
-|  c=fr | [[tourner]]
-|  c=de | [[drehen]]
-|  c=it | [[girare]]
-|  c=es | [[voltear]]
-|  c=nl | [[draaien]]
-|  c=sw | [[svänga]]
-|  c=la | [[vertere]]
-|- 
-|  i=No | 127
-|  c=en | [[fall]]
-|  c=fr | [[tomber]]
-|  c=de | [[fallen]]
-|  c=it | [[cadere]]
-|  c=es | [[caer]]
-|  c=nl | [[vallen]]
-|  c=sw | [[falla]]
-|  c=la | [[cadere]]
-|- 
-|  i=No | 128
-|  c=en | [[give]] *
-|  c=fr | [[donner]]
-|  c=de | [[geben]]
-|  c=it | [[dare]]
-|  c=es | [[dar]]
-|  c=nl | [[geven]]
-|  c=sw | [[ge]]
-|  c=la | [[dare]]
-|- 
-|  i=No | 129
-|  c=en | [[hold]]
-|  c=fr | [[tenir]]
-|  c=de | [[halten]]
-|  c=it | [[tenere]]
-|  c=es | [[sostener]]
-|  c=nl | [[houden]]
-|  c=sw | [[hålla]]
-|  c=la | [[tenere]]
-|- 
-|  i=No | 130
-|  c=en | [[squeeze]]
-|  c=fr | [[serrer]]
-|  c=de | [[quetschen]]
-|  c=it | [[spremere]]
-|  c=es | [[apretar]]
-|  c=nl | [[knijpen]]
-|  c=sw | [[klämma]]
-|  c=la | [[premere]]
-|- 
-|  i=No | 131
-|  c=en | [[rub]]
-|  c=fr | [[frotter]]
-|  c=de | [[reiben]]
-|  c=it | [[strofinare]]
-|  c=es | [[frotar]], [[restregar]]
-|  c=nl | [[wrijven]]
-|  c=sw | [[gnida]]
-|  c=la | [[fricare]]
-|- 
-|  i=No | 132
-|  c=en | [[wash]]
-|  c=fr | [[laver]]
-|  c=de | [[waschen]]
-|  c=it | [[lavare]]
-|  c=es | [[lavar]]
-|  c=nl | [[wassen]]
-|  c=sw | [[tvätta]]
-|  c=la | [[lavare]]
-|- 
-|  i=No | 133
-|  c=en | [[wipe]]
-|  c=fr | [[essuyer]]
-|  c=de | [[wischen]]
-|  c=it | [[asciugare]]
-|  c=es | [[limpiar]]
-|  c=nl | [[vegen]]
-|  c=sw | [[rensa]]
-|  c=la | [[tergere]]
-|- 
-|  i=No | 134
-|  c=en | [[pull]]
-|  c=fr | [[tirer]]
-|  c=de | [[ziehen]]
-|  c=it | [[tirare]]
-|  c=es | [[tirar]]
-|  c=nl | [[trekken]]
-|  c=sw | [[dra]]
-|  c=la | [[trahere]]
-|- 
-|  i=No | 135
-|  c=en | [[push]]
-|  c=fr | [[pousser]]
-|  c=de | [[drücken]]
-|  c=it | [[spingere]]
-|  c=es | [[empujar]]
-|  c=nl | [[duwen]]
-|  c=sw | [[trycka]]
-|  c=la | [[pellere]], [[urgere]]
-|- 
-|  i=No | 136
-|  c=en | [[throw]]
-|  c=fr | [[jeter]]
-|  c=de | [[werfen]]
-|  c=it | [[tirare]]
-|  c=es | [[tirar]]
-|  c=nl | [[werpen]], [[gooien]]
-|  c=sw | [[kasta]]
-|  c=la | [[iacere]]
-|- 
-|  i=No | 137
-|  c=en | [[tie]]
-|  c=fr | [[lier]]
-|  c=de | [[binden]]
-|  c=it | [[legare]]
-|  c=es | [[atar]]
-|  c=nl | [[binden]]
-|  c=sw | [[knyta]], [[binda]]
-|  c=la | [[stringere]], [[ligare]]
-|- 
-|  i=No | 138
-|  c=en | [[sew]]
-|  c=fr | [[coudre]]
-|  c=de | [[nähen]]
-|  c=it | [[cucire]]
-|  c=es | [[coser]]
-|  c=nl | [[naaien]]
-|  c=sw | [[sy]]
-|  c=la | [[suere]]
-|- 
-|  i=No | 139
-|  c=en | [[count]]
-|  c=fr | [[compter]]
-|  c=de | [[zählen]]
-|  c=it | [[contare]]
-|  c=es | [[contar]]
-|  c=nl | [[tellen]]
-|  c=sw | [[räkna]]
-|  c=la | [[numerare]]
-|- 
-|  i=No | 140
-|  c=en | [[say]] *
-|  c=fr | [[dire]]
-|  c=de | [[sagen]]
-|  c=it | [[dire]]
-|  c=es | [[decir]]
-|  c=nl | [[zeggen]]
-|  c=sw | [[säga]]
-|  c=la | [[dicere]]
-|- 
-|  i=No | 141
-|  c=en | [[sing]]
-|  c=fr | [[chanter]]
-|  c=de | [[singen]]
-|  c=it | [[cantare]]
-|  c=es | [[cantar]]
-|  c=nl | [[zingen]]
-|  c=sw | [[sjunga]]
-|  c=la | [[canere]]
-|- 
-|  i=No | 142
-|  c=en | [[play]]
-|  c=fr | [[jouer]]
-|  c=de | [[spielen]]
-|  c=it | [[giocare]]
-|  c=es | [[jugar]]
-|  c=nl | [[spelen]]
-|  c=sw | [[leka]], [[spela]]
-|  c=la | [[ludere]]
-|- 
-|  i=No | 143
-|  c=en | [[float]]
-|  c=fr | [[flotter]]
-|  c=de | [[schweben]]
-|  c=it | [[galleggiare]]
-|  c=es | [[flotar]]
-|  c=nl | [[zweven]]
-|  c=sw | [[flyta]]
-|  c=la | [[fluctuare]]
-|- 
-|  i=No | 144
-|  c=en | [[flow]]
-|  c=fr | [[couler]]
-|  c=de | [[fließen]]
-|  c=it | [[fluire]]
-|  c=es | [[fluir]]
-|  c=nl | [[vloeien]]
-|  c=sw | [[rinna]]
-|  c=la | [[fluere]]
-|- 
-|  i=No | 145
-|  c=en | [[freeze]]
-|  c=fr | [[geler]]
-|  c=de | [[frieren]]
-|  c=it | [[gelare]]
-|  c=es | [[helar]]
-|  c=nl | [[vriezen]]
-|  c=sw | [[frysa]]
-|  c=la | [[gelare]]
-|- 
-|  i=No | 146
-|  c=en | [[swell]]
-|  c=fr | [[gonfler]]
-|  c=de | [[schwellen]]
-|  c=it | [[gonfiare]]
-|  c=es | [[hincharse]]
-|  c=nl | [[zwellen]]
-|  c=sw | [[svälla]]
-|  c=la | [[inflare]]
-|- 
-|  i=No | 147
-|  c=en | [[sun]] *
-|  c=fr | [[soleil]]
-|  c=de | [[Sonne]]
-|  c=it | [[sole]]
-|  c=es | [[sol]]
-|  c=nl | [[zon]]
-|  c=sw | [[sol]]
-|  c=la | [[sol]]
-|- 
-|  i=No | 148
-|  c=en | [[moon]] *
-|  c=fr | [[lune]]
-|  c=de | [[Mond]]
-|  c=it | [[luna]]
-|  c=es | [[luna]]
-|  c=nl | [[maan]]
-|  c=sw | [[måne]]
-|  c=la | [[luna]]
-|- 
-|  i=No | 149
-|  c=en | [[star]] *
-|  c=fr | [[étoile]]
-|  c=de | [[Stern]]
-|  c=it | [[stella]]
-|  c=es | [[estrella]]
-|  c=nl | [[ster]]
-|  c=sw | [[stjärna]]
-|  c=la | [[stella]]
-|- 
-|  i=No | 150
-|  c=en | [[water]] *
-|  c=fr | [[eau]]
-|  c=de | [[Wasser]]
-|  c=it | [[acqua]]
-|  c=es | [[agua]]
-|  c=nl | [[water]]
-|  c=sw | [[vatten]]
-|  c=la | [[aqua]]
-|- 
-|  i=No | 151
-|  c=en | [[rain]] *
-|  c=fr | [[pluie]]
-|  c=de | [[Regen]]
-|  c=it | [[pioggia]]
-|  c=es | [[lluvia]]
-|  c=nl | [[regen]]
-|  c=sw | [[regn]]
-|  c=la | [[pluvia]]
-|- 
-|  i=No | 152
-|  c=en | [[river]]
-|  c=fr | [[rivière]]
-|  c=de | [[Fluß]]
-|  c=it | [[fiume]]
-|  c=es | [[río]]
-|  c=nl | [[rivier]]
-|  c=sw | [[flod]]
-|  c=la | [[fluvius]]
-|- 
-|  i=No | 153
-|  c=en | [[lake]]
-|  c=fr | [[lac]]
-|  c=de | [[See]]
-|  c=it | [[lago]]
-|  c=es | [[lago]]
-|  c=nl | [[lak]]
-|  c=sw | [[sjö]]
-|  c=la | [[lacus]]
-|- 
-|  i=No | 154
-|  c=en | [[sea]]
-|  c=fr | [[mer]]
-|  c=de | [[Meer]], [[See]]
-|  c=it | [[mare]]
-|  c=es | [[mar]]
-|  c=nl | [[zee]]
-|  c=sw | [[hav]]
-|  c=la | [[mare]]
-|- 
-|  i=No | 155
-|  c=en | [[salt]]
-|  c=fr | [[sel]]
-|  c=de | [[Salz]]
-|  c=it | [[sale]]
-|  c=es | [[sal]]
-|  c=nl | [[zout]]
-|  c=sw | [[salt]]
-|  c=la | [[sal]]
-|- 
-|  i=No | 156
-|  c=en | [[stone]] *
-|  c=fr | [[pierre]]
-|  c=de | [[Stein]]
-|  c=it | [[pietra]]
-|  c=es | [[piedra]]
-|  c=nl | [[steen]]
-|  c=sw | [[sten]]
-|  c=la | [[lapis]], [[petra]]
-|- 
-|  i=No | 157
-|  c=en | [[sand]] *
-|  c=fr | [[sable]]
-|  c=de | [[Sand]]
-|  c=it | [[sabbia]]
-|  c=es | [[arena]]
-|  c=nl | [[zand]]
-|  c=sw | [[sand]]
-|  c=la | [[arena]]
-|- 
-|  i=No | 158
-|  c=en | [[dust]]
-|  c=fr | [[poussière]]
-|  c=de | [[Staub]]
-|  c=it | [[polvere]]
-|  c=es | [[polvo]]
-|  c=nl | [[stof]]
-|  c=sw | [[damm]]
-|  c=la | [[pulvis]]
-|- 
-|  i=No | 159
-|  c=en | [[earth]] *
-|  c=fr | [[terre]]
-|  c=de | [[Erde]]
-|  c=it | [[terra]]
-|  c=es | [[tierra]]
-|  c=nl | [[aarde]]
-|  c=sw | [[jord]]
-|  c=la | [[terra]]
-|- 
-|  i=No | 160
-|  c=en | [[cloud]] *
-|  c=fr | [[nuage]]
-|  c=de | [[Wolke]]
-|  c=it | [[nuvola]]
-|  c=es | [[nube]]
-|  c=nl | [[wolk]]
-|  c=sw | [[moln]]
-|  c=la | [[nimbus]], [[nubes]]
-|- 
-|  i=No | 161
-|  c=en | [[fog]]
-|  c=fr | [[brouillard]]
-|  c=de | [[Nebel]]
-|  c=it | [[nebbia]]
-|  c=es | [[niebla]]
-|  c=nl | [[mist]], [[nevel]]
-|  c=sw | [[dimma]]
-|  c=la | [[caligo]], [[nebula]]
-|- 
-|  i=No | 162
-|  c=en | [[sky]]
-|  c=fr | [[ciel]]
-|  c=de | [[Himmel]]
-|  c=it | [[cielo]]
-|  c=es | [[cielo]]
-|  c=nl | [[lucht]]
-|  c=sw | [[himmel]]
-|  c=la | [[caelum]]
-|- 
-|  i=No | 163
-|  c=en | [[wind]]
-|  c=fr | [[vent]]
-|  c=de | [[Wind]]
-|  c=it | [[vento]]
-|  c=es | [[viento]]
-|  c=nl | [[wind]]
-|  c=sw | [[vind]]
-|  c=la | [[ventus]]
-|- 
-|  i=No | 164
-|  c=en | [[snow]]
-|  c=fr | [[neige]]
-|  c=de | [[Schnee]]
-|  c=it | [[neve]]
-|  c=es | [[nieve]]
-|  c=nl | [[sneeuw]]
-|  c=sw | [[snö]]
-|  c=la | [[nix]]
-|- 
-|  i=No | 165
-|  c=en | [[ice]]
-|  c=fr | [[glace]]
-|  c=de | [[Eis]]
-|  c=it | [[ghiaccio]]
-|  c=es | [[hielo]]
-|  c=nl | [[ijs]]
-|  c=sw | [[is]]
-|  c=la | [[glacies]]
-|- 
-|  i=No | 166
-|  c=en | [[smoke]] *
-|  c=fr | [[fumée]]
-|  c=de | [[Rauch]]
-|  c=it | [[fumo]]
-|  c=es | [[humo]]
-|  c=nl | [[rook]]
-|  c=sw | [[rök]]
-|  c=la | [[fumus]]
-|- 
-|  i=No | 167
-|  c=en | [[fire]] *
-|  c=fr | [[feu]]
-|  c=de | [[Feuer]]
-|  c=it | [[fuoco]]
-|  c=es | [[fuego]]
-|  c=nl | [[vuur]]
-|  c=sw | [[eld]]
-|  c=la | [[ignis]]
-|- 
-|  i=No | 168
-|  c=en | [[ashes]] *
-|  c=fr | [[cendres]]
-|  c=de | [[Asche]]
-|  c=it | [[ceneri]]
-|  c=es | [[cenizas]]
-|  c=nl | [[as]]
-|  c=sw | [[aska]]
-|  c=la | [[cineres]]
-|- 
-|  i=No | 169
-|  c=en | [[burn]] *
-|  c=fr | [[brûler]]
-|  c=de | [[brennen]]
-|  c=it | [[bruciare]]
-|  c=es | [[quemar]]
-|  c=nl | [[branden]]
-|  c=sw | [[brinna]]
-|  c=la | [[ardere]]
-|- 
-|  i=No | 170
-|  c=en | [[road]] *
-|  c=fr | [[route]]
-|  c=de | [[Straße]]
-|  c=it | [[strada]]
-|  c=es | [[camino]]
-|  c=nl | [[weg]]
-|  c=sw | [[väg]]
-|  c=la | [[via]]
-|- 
-|  i=No | 171
-|  c=en | [[mountain]] *
-|  c=fr | [[montagne]]
-|  c=de | [[Berg]]
-|  c=it | [[montagna]]
-|  c=es | [[montaña]]
-|  c=nl | [[berg]]
-|  c=sw | [[berg]]
-|  c=la | [[mons]]
-|- 
-|  i=No | 172
-|  c=en | [[red]] *
-|  c=fr | [[rouge]]
-|  c=de | [[rot]]
-|  c=it | [[rosso]]
-|  c=es | [[rojo]]
-|  c=nl | [[rode]]
-|  c=sw | [[röd]]
-|  c=la | [[ruber]]
-|- 
-|  i=No | 173
-|  c=en | [[green]] *
-|  c=fr | [[vert]]
-|  c=de | [[grün]]
-|  c=it | [[verde]]
-|  c=es | [[verde]]
-|  c=nl | [[groen]]
-|  c=sw | [[grön]]
-|  c=la | [[viridis]]
-|- 
-|  i=No | 174
-|  c=en | [[yellow]] *
-|  c=fr | [[jaune]]
-|  c=de | [[gelb]]
-|  c=it | [[giallo]]
-|  c=es | [[amarillo]]
-|  c=nl | [[geel]]
-|  c=sw | [[gul]]
-|  c=la | [[flavus]]
-|- 
-|  i=No | 175
-|  c=en | [[white]] *
-|  c=fr | [[blanc]]
-|  c=de | [[weiß]]
-|  c=it | [[bianco]]
-|  c=es | [[blanco]]
-|  c=nl | [[witte]]
-|  c=sw | [[vit]]
-|  c=la | [[albus]], [[candidus]]
-|- 
-|  i=No | 176
-|  c=en | [[black]] *
-|  c=fr | [[noir]]
-|  c=de | [[schwarz]]
-|  c=it | [[nero]]
-|  c=es | [[negro]]
-|  c=nl | [[zwart]]
-|  c=sw | [[svart]]
-|  c=la | [[niger]], [[ater]], [[fuscus]]
-|- 
-|  i=No | 177
-|  c=en | [[night]] *
-|  c=fr | [[nuit]]
-|  c=de | [[Nacht]]
-|  c=it | [[notte]]
-|  c=es | [[noche]]
-|  c=nl | [[nacht]]
-|  c=sw | [[natt]]
-|  c=la | [[nox]]
-|- 
-|  i=No | 178
-|  c=en | [[day]]
-|  c=fr | [[jour]]
-|  c=de | [[Tag]]
-|  c=it | [[giorno]]
-|  c=es | [[día]]
-|  c=nl | [[dag]]
-|  c=sw | [[dag]]
-|  c=la | [[dies]]
-|- 
-|  i=No | 179
-|  c=en | [[year]]
-|  c=fr | [[an]], [[année]]
-|  c=de | [[Jahr]]
-|  c=it | [[anno]]
-|  c=es | [[año]]
-|  c=nl | [[jaar]]
-|  c=sw | [[år]]
-|  c=la | [[annus]]
-|- 
-|  i=No | 180
-|  c=en | [[warm]] *
-|  c=fr | [[chaud]]
-|  c=de | [[warm]]
-|  c=it | [[caldo]]
-|  c=es | [[cálido]], [[tibio]]
-|  c=nl | [[warm]]
-|  c=sw | [[varm]]
-|  c=la | [[calidus]]
-|- 
-|  i=No | 181
-|  c=en | [[cold]] *
-|  c=fr | [[froid]]
-|  c=de | [[kalt]]
-|  c=it | [[freddo]]
-|  c=es | [[frío]]
-|  c=nl | [[koud]]
-|  c=sw | [[kall]]
-|  c=la | [[frigidus]]
-|- 
-|  i=No | 182
-|  c=en | [[full]] *
-|  c=fr | [[plein]]
-|  c=de | [[volle]]
-|  c=it | [[pieno]]
-|  c=es | [[lleno]]
-|  c=nl | [[volle]]
-|  c=sw | [[full]]
-|  c=la | [[plenus]]
-|- 
-|  i=No | 183
-|  c=en | [[new]] *
-|  c=fr | [[nouveau]]
-|  c=de | [[neu]]
-|  c=it | [[nuovo]]
-|  c=es | [[nuevo]]
-|  c=nl | [[nieuw]]
-|  c=sw | [[ny]]
-|  c=la | [[novus]]
-|- 
-|  i=No | 184
-|  c=en | [[old]]
-|  c=fr | [[vieux]]
-|  c=de | [[alt]]
-|  c=it | [[vecchio]]
-|  c=es | [[viejo]]
-|  c=nl | [[oud]]
-|  c=sw | [[gammal]]
-|  c=la | [[vetus]]
-|- 
-|  i=No | 185
-|  c=en | [[good]] *
-|  c=fr | [[bon]]
-|  c=de | [[gut]]
-|  c=it | [[buono]]
-|  c=es | [[bueno]]
-|  c=nl | [[goed]]
-|  c=sw | [[bra]]
-|  c=la | [[bonus]]
-|- 
-|  i=No | 186
-|  c=en | [[bad]]
-|  c=fr | [[mauvais]]
-|  c=de | [[schlecht]]
-|  c=it | [[cattivo]]
-|  c=es | [[malo]]<br>
-|  c=nl | [[slecht]]
-|  c=sw | [[dålig]]
-|  c=la | [[malus]]
-|- 
-|  i=No | 187
-|  c=en | [[rotten]]
-|  c=fr | [[pourri]]
-|  c=de | [[verrottet]]
-|  c=it | [[marcio]]
-|  c=es | [[podrido]]
-|  c=nl | [[rotten]]
-|  c=sw | [[rutten]]
-|  c=la | [[puter]], [[putridus]]
-|- 
-|  i=No | 188
-|  c=en | [[dirty]]
-|  c=fr | [[sale]]
-|  c=de | [[schmutzig]]
-|  c=it | [[sporco]]
-|  c=es | [[sucio]]
-|  c=nl | [[vies]]
-|  c=sw | [[smutsig]]
-|  c=la | [[sordidus]]
-|- 
-|  i=No | 189
-|  c=en | [[straight]]
-|  c=fr | [[droit]]
-|  c=de | [[gerade]]
-|  c=it | [[diritto]]
-|  c=es | [[recto]]
-|  c=nl | [[recht]]
-|  c=sw | [[rak]]
-|  c=la | [[rectus]]
-|- 
-|  i=No | 190
-|  c=en | [[round]] *
-|  c=fr | [[rond]]
-|  c=de | [[rund]]
-|  c=it | [[rotondo]]
-|  c=es | [[redondo]]
-|  c=nl | [[rond]]
-|  c=sw | [[rund]]
-|  c=la | [[rotundus]]
-|- 
-|  i=No | 191
-|  c=en | [[sharp]]
-|  c=fr | [[tranchant]], [[pointu]], [[aigu]]
-|  c=de | [[scharf]]
-|  c=it | [[aguzzo]], [[affilato]]
-|  c=es | [[afilado]]
-|  c=nl | [[scherp]]
-|  c=sw | [[vass]]
-|  c=la | [[acer]]
-|- 
-|  i=No | 192
-|  c=en | [[dull]]
-|  c=fr | [[émoussé]]
-|  c=de | [[stumpf]]
-|  c=it | [[noioso]]
-|  c=es | [[desafilado]]
-|  c=nl | [[stomp]], [[bot]]
-|  c=sw | [[slö]]
-|  c=la | [[hebes]]
-|- 
-|  i=No | 193
-|  c=en | [[smooth]]
-|  c=fr | [[lisse]]
-|  c=de | [[glatt]]
-|  c=it | [[liscio]]
-|  c=es | [[suave]], [[liso]]
-|  c=nl | [[glad]]
-|  c=sw | [[len]], [[slät]]
-|  c=la | [[levis]]
-|- 
-|  i=No | 194
-|  c=en | [[wet]]
-|  c=fr | [[mouillé]]
-|  c=de | [[nass]], [[feucht]]
-|  c=it | [[bagnato]]
-|  c=es | [[mojado]]
-|  c=nl | [[nat]]
-|  c=sw | [[våt]], [[blöt]]
-|  c=la | [[umidus]]
-|- 
-|  i=No | 195
-|  c=en | [[dry]] *
-|  c=fr | [[sec]]
-|  c=de | [[trocken]]
-|  c=it | [[asciutto]], [[secco]]
-|  c=es | [[seco]]
-|  c=nl | [[droog]]
-|  c=sw | [[torr]]
-|  c=la | [[siccus]]
-|- 
-|  i=No | 196
-|  c=en | [[correct]]
-|  c=fr | [[juste]], [[correct]]
-|  c=de | [[richtig]]
-|  c=it | [[corretto]]
-|  c=es | [[correcto]]
-|  c=nl | [[richting]], [[correct]]
-|  c=sw | [[rätt]], [[riktig]]
-|  c=la | [[rectus]]
-|- 
-|  i=No | 197
-|  c=en | [[near]]
-|  c=fr | [[proche]]
-|  c=de | [[nah]],<br>[[nahe]]
-|  c=it | [[vicino]]
-|  c=es | [[cerca]]
-|  c=nl | [[naar]]
-|  c=sw | [[nära]]
-|  c=la | [[propinquus]]
-|- 
-|  i=No | 198
-|  c=en | [[far]]
-|  c=fr | [[loin]]
-|  c=de | [[weit]], [[fern]]
-|  c=it | [[lontano]]
-|  c=es | [[lejos]]
-|  c=nl | [[ver]]
-|  c=sw | [[långt bort]], [[fjärran]]
-|  c=la | [[longinquus]]
-|- 
-|  i=No | 199
-|  c=en | [[right]]
-|  c=fr | [[à]] [[droite]]
-|  c=de | [[rechts]]
-|  c=it | [[destra]]
-|  c=es | [[derecha]]
-|  c=nl | [[rechts]]
-|  c=sw | [[höger]]
-|  c=la | [[dexter]]
-|- 
-|  i=No | 200
-|  c=en | [[left]]
-|  c=fr | [[à]] [[gauche]]
-|  c=de | [[links]]
-|  c=it | [[sinistra]]
-|  c=es | [[izquierda]]
-|  c=nl | [[links]]
-|  c=sw | [[vänster]]
-|  c=la | [[sinister]]
-|- 
-|  i=No | 201
-|  c=en | [[at]]
-|  c=fr | [[à]]
-|  c=de | [[bei]], [[an]]
-|  c=it | [[a]]
-|  c=es | [[a]], [[en]], [[ante]]
-|  c=nl | [[aan]], [[te]], [[bij]]
-|  c=sw | [[hos]], [[vid]]
-|  c=la | [[ad]]
-|- 
-|  i=No | 202
-|  c=en | [[in]]
-|  c=fr | [[dans]]
-|  c=de | [[in]]
-|  c=it | [[in]]
-|  c=es | [[en]]
-|  c=nl | [[in]]
-|  c=sw | [[i]]
-|  c=la | [[in]]
-|- 
-|  i=No | 203
-|  c=en | [[with]]
-|  c=fr | [[avec]]
-|  c=de | [[mit]]
-|  c=it | [[con]]
-|  c=es | [[con]]
-|  c=nl | [[met]]
-|  c=sw | [[med]]
-|  c=la | [[cum]]
-|- 
-|  i=No | 204
-|  c=en | [[and]]
-|  c=fr | [[et]]
-|  c=de | [[und]]
-|  c=it | [[e]]
-|  c=es | [[y]]
-|  c=nl | [[en]]
-|  c=sw | [[och]]
-|  c=la | [[et]]
-|- 
-|  i=No | 205
-|  c=en | [[if]]
-|  c=fr | [[si]]
-|  c=de | [[wenn]], [[falls]], [[ob]]
-|  c=it | [[se]]
-|  c=es | [[si]]
-|  c=nl | [[als]], [[indien]]
-|  c=sw | [[om]]
-|  c=la | [[si]]
-|- 
-|  i=No | 206
-|  c=en | [[because]]
-|  c=fr | [[parce que]]
-|  c=de | [[weil]]
-|  c=it | [[perché]]
-|  c=es | [[porque]]
-|  c=nl | [[omdat]]
-|  c=sw | [[eftersom]], [[ty]]
-|  c=la | [[quia]], [[quoniam]]
-|- 
-|  i=No | 207
-|  c=en | [[name]] *
-|  c=fr | [[nom]]
-|  c=de | [[Name]]
-|  c=it | [[nome]]
-|  c=es | [[nombre]]
-|  c=nl | [[naam]]
-|  c=sw | [[namn]]
-|  c=la | [[nomen]]
-|}
+<h3>Etymology</h3>
+{{etyl|goh|de}} {{term|fri|frī|lang=goh}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/fʁaɪ̯/|lang=de}}</li>
+</ul>
 
+<h3>Adjective</h3>
+{{de-adj|comparative=freier|superlative=freisten}}
+<ol><li> free</li>
+<li> released, unimprisoned, unenslaved</li>
+<ul><li> <em>Stadtluft macht <b>frei</b>.</em></li>
+<ul><li> <em>City air makes one <b>free</b>.</em> (German serfs who escaped to and lived in cities for a certain period of time were legally freed.)</li>
+</ul>
+</ul>
+<li> unblocked</li>
+<li> liberal</li>
+<li> free of charge, gratis</li>
+<li> unlimited, unconstrained</li>
+<li> licentious, unrestrained</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> (<em>unbound</em>): ungebunden</li>
+<li> (<em>unconstrained</em>): ungezwungen</li>
+<li> (<em>liberal</em>): liberal, freiheitlich</li>
+<li> (<em>free of charge</em>): kostenlos</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> befreien, Befreiung</li>
+<li> bleifrei</li>
+<li> Freiheit</li>
+<li> freimütig</li>
+<li> Freizeit</li>
+</ul>
+----
+===frijaz===
+Appendix:Proto-Germanic/frijaz:
 
-***Malawi***
-Malawi: 
-{{wikipedia|lang=de}}
+<h3>Etymology</h3>
+From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond of|lang=gem-pro}}. The original meaning was probably something like <em>from the own clan</em>, from which a meaning <em>being a free man, not a serf</em> developed.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈɸri.jɑz/|lang=gem-pro}}</li>
+</ul>
 
-===Proper noun===
-'''Malawi''' {{n}}
+<h3>Adjective</h3>
+{gem-adj}
+<ol><li> free</li>
+</ol>
 
-# {{l|en|Malawi}}
+<h4>Declension</h4>
+{{gem-decl-adj-a|frij}}
+<h4>Related terms</h4>
+<ul><li> {{lx|gem-pro|frijōnan|frijōną}}</li>
+</ul>
+
+<h4>Descendants</h4>
+<ul><li> Old English: {{l|ang|freo|frēo}}</li>
+<ul><li> English: {{l|en|free}}</li>
+</ul>
+<li> Old Frisian: {{l|ofs|fri|frī}}</li>
+<ul><li> West Frisian: {{l|fy|frij}}</li>
+</ul>
+<li> Old Saxon: {{l|osx|fri|frī}}</li>
+<ul><li> Middle Low German: {{l|gml|vri}}</li>
+<ul><li> Norwegian: {{l|no|fri}}</li>
+<li> Swedish: {{l|sv|fri}}</li>
+<li> Danish: {{l|da|fri}}</li>
+</ul>
+</ul>
+<li> Old Dutch: *frī</li>
+<ul><li> Middle Dutch: {{l|dum|vri}}</li>
+<ul><li> Dutch: {{l|nl|vrij}}</li>
+<ul><li> Afrikaans: {{l|af|vry}}</li>
+</ul>
+</ul>
+</ul>
+<li> Old High German: {{l|goh|fri|frī}}</li>
+<ul><li> German: {{l|de|frei}}</li>
+</ul>
+<li> Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}</li>
+</ul>
 
-====Derived terms====
-* [[Malawier]]
-* [[Malawierin]]
-* [[malawisch]]
+***Gambia***
+Gambia:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=n}}
+<ol><li> {{l|en|Gambia}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Gambier</li>
+<li> Gambierin</li>
+<li> gambisch</li>
+<li> Senegambia</li>
+</ul>
+Category:de:Countries----
+===Germanic===
+Appendix:Proto-Germanic/frijaz:
 
-[[Category:German proper nouns]]
-[[Category:de:Countries]]
+<h3>Etymology</h3>
+From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond of|lang=gem-pro}}. The original meaning was probably something like <em>from the own clan</em>, from which a meaning <em>being a free man, not a serf</em> developed.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈɸri.jɑz/|lang=gem-pro}}</li>
+</ul>
 
-----
+<h3>Adjective</h3>
+{gem-adj}
+<ol><li> free</li>
+</ol>
 
+<h4>Declension</h4>
+{{gem-decl-adj-a|frij}}
+<h4>Related terms</h4>
+<ul><li> {{lx|gem-pro|frijōnan|frijōną}}</li>
+</ul>
+
+<h4>Descendants</h4>
+<ul><li> Old English: {{l|ang|freo|frēo}}</li>
+<ul><li> English: {{l|en|free}}</li>
+</ul>
+<li> Old Frisian: {{l|ofs|fri|frī}}</li>
+<ul><li> West Frisian: {{l|fy|frij}}</li>
+</ul>
+<li> Old Saxon: {{l|osx|fri|frī}}</li>
+<ul><li> Middle Low German: {{l|gml|vri}}</li>
+<ul><li> Norwegian: {{l|no|fri}}</li>
+<li> Swedish: {{l|sv|fri}}</li>
+<li> Danish: {{l|da|fri}}</li>
+</ul>
+</ul>
+<li> Old Dutch: *frī</li>
+<ul><li> Middle Dutch: {{l|dum|vri}}</li>
+<ul><li> Dutch: {{l|nl|vrij}}</li>
+<ul><li> Afrikaans: {{l|af|vry}}</li>
+</ul>
+</ul>
+</ul>
+<li> Old High German: {{l|goh|fri|frī}}</li>
+<ul><li> German: {{l|de|frei}}</li>
+</ul>
+<li> Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}</li>
+</ul>
 
-***Malaysia***
-Malaysia: 
+***Ghana***
+Ghana:
 {{wikipedia|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈgaːna/|lang=de}}</li>
+</ul>
 
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun|g=n}}
+<ol><li> Ghana</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> ghanaisch</li>
+<li> Ghanaer</li>
+<li> Ghanaerin</li>
+<li> Ghanese</li>
+<li> Ghanesin</li>
+</ul>
+Category:de:Countries----
+***global***
+global:
+
+<h3>Adjective</h3>
+{{de-adj|-}}
+<ol><li> global {{gloss|worldwide}}</li>
+</ol>
 
-# [[#English|Malaysia]]
+<h4>Synonyms</h4>
+<ul><li> {{sense|worldwide}} weltweit</li>
+</ul>
 
-[[Category:de:Countries]]
+<h4>Antonyms</h4>
+<ul><li> {{sense|worldwide}} lokal, regional</li>
+</ul>
+----
+***google***
+google:
 
+<h3>Verb</h3>
+<b>google</b>
+<ol><li> {{de-verb form of|googeln|1|s|g}}</li>
+<li> {{de-verb form of|googeln|i|s}}</li>
+<li> {{de-verb form of|googeln|1|s|k1}}</li>
+<li> {{de-verb form of|googeln|3|s|k1}}</li>
+</ol>
 ----
+***gratis***
+gratis:
 
+<h3>Adverb</h3>
+<b>gratis</b>
+<ol><li> free, without charge</li>
+</ol>
+Category:German adverbs----
+***Guatemala***
+Guatemala:
 
-***Mali***
-Mali: 
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=n}}
+<ol><li> {{l|en|Guatemala}}</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> {{l|de|Guatemalteke}}</li>
+<li> {{l|de|Guatemaltekin}}</li>
+<li> {{l|de|guatemaltekisch}}</li>
+</ul>
+Category:de:Countries----
+***Guyana***
+Guyana:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+<b>Guyana</b> {n}
+<ol><li> Guyana</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Französisch-Guyana</li>
+<li> Guyaner</li>
+<li> Guyanerin</li>
+<li> guyanisch</li>
+</ul>
+Category:German proper nounsCategory:de:Countries----
+***Haiti***
+Haiti:
 {{wikipedia|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/haˈiːti/|lang=de}}</li>
+</ul>
 
-===Pronunciation===
-* {{audio|De-Mali.ogg|Audio}}
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=n}}
+<ol><li> {{l|en|Haiti}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> {{l|de|Haitianer}}</li>
+<li> {{l|de|Haitianerin}}</li>
+<li> {{l|de|haitianisch}}</li>
+</ul>
+Category:de:Countries----
+***Haus***
+Haus:
 
-===Proper noun===
-'''Mali''' {{n}}
+<h3>Etymology</h3>
+From {{etyl|goh|de}} {{term|hus|hūs|lang=goh}}, from {{proto|Germanic|hūsan|lang=de}}.  Cognate with Dutch <em>huis</em>, English <em>house</em>.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|[haʊ̯s]|lang=de}}</li>
+<li> {{audio|De-Haus.ogg|audio}}</li>
+</ul>
 
-# [[#English|Mali]]
+<h3>Noun</h3>
+{{de-noun|g=n|genitive=Hauses|plural=Häuser}}
+<ol><li> house</li>
+<li> theatre</li>
+</ol>
 
-====Derived terms====
-* [[Malier]]
-* [[Malierin]]
-* [[malisch]]
+<h4>Declension</h4>
+{{de-noun-n|es|pl=Häuser}}
+<h4>Derived terms</h4>
+<ul><li> Armenhaus</li>
+<li> Haustier</li>
+<li> Herrenhaus</li>
+<li> Haushalt</li>
+</ul>
+----
+***hell***
+hell:
 
-[[Category:German proper nouns]]
-[[Category:de:Countries]]
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/hɛl/|lang=de}}</li>
+<li> {{audio|De-hell.ogg|audio (Germany)}}</li>
+<li> {{audio|De-at-hell.ogg|audio (Austria)}}</li>
+</ul>
 
+<h3>Adjective</h3>
+{{head|de|adjective|comparative|heller|superlative|am hellsten}}
+<ol><li> clear, bright, light</li>
+</ol>
 ----
+***Honduras***
+Honduras:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+<b>Honduras</b> {n}
+<ol><li> Honduras</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Britisch-Honduras (today Belize)</li>
+<li> Honduraner</li>
+<li> Honduranerin</li>
+<li> honduranisch</li>
+</ul>
+Category:German proper nounsCategory:de:Countries----
+***ik***
+ik:
 
+<h3>Alternative forms</h3>
+<ul><li> {{qualifier|Low Prussian}} öck, eck</li>
+</ul>
 
-***Malta***
-Malta: 
-{{wikipedia|lang=de}}
+<h3>Etymology</h3>
+From {{etyl|osx|nds}} {{term|ik|lang=osx}}, from {{proto|Germanic|ek|lang=nds}}, from {{proto|Indo-European|éǵh₂|lang=nds}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ik/|lang=nds}}</li>
+</ul>
 
-===Proper noun===
-{{head|de|proper noun|g=n}}
+<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> I came, I saw, I conquered. (<em>veni, vidi, vici</em>, attributed to w:Julius Caesar.)</li>
+</ul>
+</ul>
+</ol>
 
-# {{l|en|Malta}}
+<h4>Related terms</h4>
+<ul><li> mien (<em>possessive</em>: my, mine); mi (<em>dative</em> (also generally used in place of the accusative): me); wi (<em>plural</em>: we)</li>
+</ul>
+----
+***in***
+in:
 
-====Derived terms====
-* [[maltesisch]]
-* [[Malteser]]
-* [[Malteserin]]
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ʔɪn/|lang=de}}</li>
+<li> {{audio|DE-in.OGG|audio}}</li>
+</ul>
 
-[[Category:de:Countries]]
-[[Category:de:Islands]]
+<h3>Etymology 1</h3>
+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> (<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>
+</ol>
+
+<h5>Usage notes</h5>
+The preposition {{term|in}} is used with accusative case if the verb shows movement from one place to another, whereas it is used with dative case if the verb shows location.
+<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>
+</ul>
 
+<h3>Etymology 2</h3>
+From {{etyl|en|de}} {{term|in|lang=en}}.
+<h4>Adjective</h4>
+{{de-adj|-}}
+<ol><li> in, popular</li>
+</ol>
 ----
+in:
 
+<h3>Etymology</h3>
+From {{proto|Germanic|in|lang=goh}}, whence also Old English <em>in</em>, Old Norse <em>í</em>
+<h3>Preposition</h3>
+{{head|goh|preposition}}
+<ol><li> in</li>
+</ol>
+----
+in:
 
-***man***
-man: 
+<h3>Preposition</h3>
+{{head|pdc|preposition}}
+<ol><li> in</li>
+</ol>
+----
+***Iran***
+Iran:
+
+<h3>Pronunciation</h3>
+<ul><li> {{rhymes|aːn|lang=de}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=m}} (<em>genitive</em> <b>Irans</b>)
+<ol><li> {{l|en|Iran}}</li>
+</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.
+<h3>See also</h3>
+<ul><li> Perser</li>
+<li> Persien</li>
+<li> Persisch</li>
+</ul>
+Category:de:Countries----
+***is***
+is:
 
-===Etymology===
-From the same source as ''[[Mann]]'' ("adult male").<ref>Theo Stemmler: ''Wie das Eisbein ins Lexikon kam,'' page 15, ISBN 978-3-411-72291-4.</ref>
+<h3>Etymology</h3>
+From {{proto|Germanic|īsan|lang=goh}}
+<h3>Noun</h3>
+<b>īs</b>
+<ol><li> ice</li>
+</ol>
+Category:Old High German nouns----
+***Israel***
+Israel:
 
-===Pronunciation===
-* {{IPA|[man]|lang=de}}
-* {{audio|De-at-man.ogg|audio (Austria)}}
-* {{homophones|Mann|lang=de}}
-* {{rhymes|an|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-Israel.ogg|Audio}}</li>
+</ul>
 
-===Pronoun===
-{{head|de|indefinite pronoun}}
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=n}}
+<ol><li> Israel</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> israelisch</li>
+<li> israelitisch</li>
+<li> Israelit</li>
+<li> Israelitin</li>
+<li> Israeli</li>
+</ul>
+Category:de:Countries----
+***Japan***
+Japan:
 
-# {{indefinite|lang=de}} [[one]], [[they]] {{qualifier|indefinite third-person singular pronoun}}
-#: ''was '''man''' sehen kann'' &mdash; what one can see
-#* '''2008''', Frank Behmeta, ''Wenn ich die Augen öffne'', page 55:
-#*: Kann '''man''' es fühlen, wenn '''man''' schwanger ist?
-#*:: Can a person feel it when he is pregnant?
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈjaːpaːn/|lang=de}}</li>
+<li> {{audio|De-Japan.ogg|audio}}</li>
+</ul>
 
-====Usage notes====
-* Because ''man'' 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 ''man'' and ''[[frau#German|frau]]''. Compare the use of ''[[she]]'' vs ''[[he]]'' in English to refer to someone whose gender is unknown.
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=n}}
+<ol><li> {{l|en|Japan}}</li>
+</ol>
+
+<h3>See also</h3>
+<ul><li> Japaner</li>
+<li> Japanerin</li>
+<li> Japanisch</li>
+<li> japanisch</li>
+</ul>
+Category:de:CountriesCategory:de:Exonyms----
+***Kiribati***
+Kiribati:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=n}}
+<ol><li> {{l|en|Kiribati}}</li>
+</ol>
 
-====References====
-<references/>
+<h4>Derived terms</h4>
+<ul><li> {{l|de|kiribatisch}}</li>
+</ul>
+Category:de:Countries----
+***Kuwait***
+Kuwait:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+{{de-proper noun|g=n}}
+<ol><li> {{l|en|Kuwait}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> {{l|de|Kuwaiter}}</li>
+<li> {{l|de|Kuwaiterin}}</li>
+<li> {{l|de|kuwaitisch}}</li>
+</ul>
+Category:de:Countries----
+***Laos***
+Laos:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+{{de-proper noun|g=n}}
+<ol><li> {{l|en|Laos}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Laote</li>
+<li> Laotin</li>
+<li> laotisch</li>
+</ul>
+Category:de:CountriesCategory:de:Exonyms----
+***last***
+last:
 
+<h3>Verb</h3>
+{{head|de}}
+<ol><li> {{de-verb form of|lesen|2|s|v}}</li>
+<li> {{de-verb form of|lesen|2|p|v}}</li>
+</ol>
 ----
+***Liberia***
+Liberia:
+{{wikipedia|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/liˈbeːʁia/|lang=de}}</li>
+</ul>
 
+<h3>Proper noun</h3>
+{{de-proper noun|g=n}}
+<ol><li> {{l|en|Liberia}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> {{l|de|Liberianer}}</li>
+<li> {{l|de|Liberianerin}}</li>
+<li> {{l|de|liberianisch}}</li>
+</ul>
+Category:de:Countries----
+***Liechtenstein***
+Liechtenstein:
+{{wikipedia|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈlɪçtn̩ˌʃtaɪ̯n/|lang=de}}</li>
+<li> {{audio|De-Liechtenstein.ogg|Audio}}</li>
+</ul>
 
-man: 
-
-===Conjunction===
+<h3>Proper noun</h3>
+{{de-proper noun|g=n}}
+<ol><li> Country in Europe. Official name: Fürstentum Liechtenstein.</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> {{l|de|Liechtensteiner}}</li>
+<li> {{l|de|Liechtensteinerin}}</li>
+<li> {{l|de|liechtensteinisch}}</li>
+</ul>
+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|}
+***Malawi***
+Malawi:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+<b>Malawi</b> {n}
+<ol><li> {{l|en|Malawi}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Malawier</li>
+<li> Malawierin</li>
+<li> malawisch</li>
+</ul>
+Category:German proper nounsCategory:de:Countries----
+***Malaysia***
+Malaysia:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=n}}
+<ol><li> Malaysia</li>
+</ol>
+Category:de:Countries----
+***Mali***
+Mali:
+{{wikipedia|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-Mali.ogg|Audio}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+<b>Mali</b> {n}
+<ol><li> Mali</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Malier</li>
+<li> Malierin</li>
+<li> malisch</li>
+</ul>
+Category:German proper nounsCategory:de:Countries----
+***Malta***
+Malta:
+{{wikipedia|lang=de}}
+<h3>Proper noun</h3>
+{{head|de|proper noun|g=n}}
+<ol><li> {{l|en|Malta}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> maltesisch</li>
+<li> Malteser</li>
+<li> Malteserin</li>
+</ul>
+Category:de:CountriesCategory:de:Islands----
+***man***
+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>
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|[man]|lang=de}}</li>
+<li> {{audio|De-at-man.ogg|audio (Austria)}}</li>
+<li> {{homophones|Mann|lang=de}}</li>
+<li> {{rhymes|an|lang=de}}</li>
+</ul>
+
+<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> Can a person feel it when he is pregnant?</li>
+</ul>
+</ul>
+</ul>
+</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>
+
+<h4>References</h4>
+<references/>----
+man:
+
+<h3>Conjunction</h3>
 {{head|nds|conjunction}}
+<ol><li> {{context|in many dialects, including|_|Low Prussian}} only; but</li>
+</ol>
 
-# {{context|in many dialects, including|_|Low Prussian}} [[only]]; [[but]]
-
-====Synonyms====
-* {{qualifier|in various dialects}} [[avers]], [[awer]] (''and many variations thereof; for which, see those entries'')
-* {{qualifier|in some dialects}} [[bloots]]
-
+<h4>Synonyms</h4>
+<ul><li> {{qualifier|in various dialects}} avers, awer (<em>and many variations thereof; for which, see those entries</em>)</li>
+<li> {{qualifier|in some dialects}} bloots</li>
+</ul>
 ----
+man:
 
-
-man: 
-
-===Etymology===
+<h3>Etymology</h3>
 From {{proto|Germanic|mann-|lang=goh}}.
-
-===Noun===
+<h3>Noun</h3>
 {{goh-noun|g=m}}
-
-# [[#English|man]]
-
+<ol><li> man</li>
+</ol>
 ----
-
-
 ***Mauritius***
-Mauritius: 
+Mauritius:
 {{wikipedia|lang=de}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun|g=n}}
-
-# {{l|en|Mauritius}}
-
-====Derived terms====
-* [[Mauritier]]
-* [[Mauritierin]]
-* [[mauritisch]]
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Mauritius}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> Mauritier</li>
+<li> Mauritierin</li>
+<li> mauritisch</li>
+</ul>
+Category:de:Countries----
 ***Monaco***
-Monaco: 
+Monaco:
 
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|de|proper noun}}
-
-# {{l|en|Monaco}}
-
-[[Category:de:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Monaco}}</li>
+</ol>
+Category:de:Countries----
 ***most***
-most: 
+most:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|la|goh}} {{term|mustum|lang=la}}.
-
-===Noun===
+<h3>Noun</h3>
 {{goh-noun|g=m}}
-
-# [[must]]
-
+<ol><li> must</li>
+</ol>
 ----
-
-
 ***nine***
-nine: 
+nine:
 
-===Alternative forms===
-* [[nin]]
+<h3>Alternative forms</h3>
+<ul><li> nin</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/ˈninə/|lang=gsw}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈninə/|lang=gsw}}</li>
+</ul>
 
-===Cardinal number===
+<h3>Cardinal number</h3>
 {{head|gsw|cardinal number}}
-
-# {{context|Alsatian|lang=gsw}} {{l|en|nine}}
-
+<ol><li> {{context|Alsatian|lang=gsw}} {{l|en|nine}}</li>
+</ol>
 ----
-
-
 ***November***
-November: 
+November:
 
-===Pronunciation===
-* {{IPA|/noˈvɛmbɐ/|lang=de}}
-* {{audio|De-November.ogg|audio}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/noˈvɛmbɐ/|lang=de}}</li>
+<li> {{audio|De-November.ogg|audio}}</li>
+</ul>
 
-===Noun===
+<h3>Noun</h3>
 {{head|de|noun|g=m}}
-
-# {{l|en|November}}
-
-[[Category:de:Months]]
-
-----
-
-
+<ol><li> {{l|en|November}}</li>
+</ol>
+Category:de:Months----
 ***nu***
-nu: 
+nu:
 
-===Interjection===
+<h3>Interjection</h3>
 {{head|de|interjection}}
+<ol><li> well, well now</li>
+</ol>
 
-# [[well#Interjection|well]], well now
-
-====Synonyms====
-* [[na#German|na]]
-
+<h4>Synonyms</h4>
+<ul><li> na</li>
+</ul>
 ----
-
-
 ***o***
-o: 
+o:
 
-===Particle===
+<h3>Particle</h3>
 {{head|de|particle}}
-
-# [[O]]
-
+<ol><li> O</li>
+</ol>
 ----
+o:
 
-
-o: 
-
-===Etymology===
+<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}}).
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/øː/|lang=gml}}</li>
+</ul>
 
-===Pronunciation===
-
-* {{IPA|/øː/|lang=gml}}
-
-===Noun===
+<h3>Noun</h3>
 {{head|gml|noun}}
+<ol><li> island</li>
+</ol>
 
-# [[island]]
-
-====Usage notes====
-Since this is actually an Umlaut, some Middle Low German authors will have written this word as io, ø, ö etc. depending on the system of marking the Umlaut. The semi-standard used in the prime of Middle Low German did not mark the Umlaut.
-
-----
-
-
+<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.----
 ***on***
-on: 
-
-===Etymology===
-Ultimately cognate to {{etyl|de|-}} [[und]].
-
-===Conjunction===
-'''und'''
-
-# {{context|in several dialects, including|_|Low Prussian|coordinating|lang=nds}} [[and]]
-#: {{Low Prussian}} ''Melk '''on''' Brot''
-#:: ''milk '''and''' bread''
-
-[[Category:Low German conjunctions]]
-
-----
-
-
+on:
+
+<h3>Etymology</h3>
+Ultimately cognate to {{etyl|de|-}} und.
+<h3>Conjunction</h3>
+<b>und</b>
+<ol><li> {{context|in several dialects, including|_|Low Prussian|coordinating|lang=nds}} and</li>
+<ul><li> {Low Prussian} <em>Melk <b>on</b> Brot</em></li>
+<ul><li> <em>milk <b>and</b> bread</em></li>
+</ul>
+</ul>
+</ol>
+Category:Low German conjunctions----
 ***orange***
-orange: 
+orange:
 
-===Etymology===
+<h3>Etymology</h3>
 From the noun {{term|Orange|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|De-orange.ogg|Audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{audio|De-orange.ogg|Audio}}
-
-===Adjective===
+<h3>Adjective</h3>
 {{de-adj|-}}
-
-# [[#English|orange-coloured]]
-
-[[Category:de:Colors]]
-[[Category:de:Colors of the rainbow]]
-
-----
-
-
+<ol><li> orange-coloured</li>
+</ol>
+Category:de:ColorsCategory:de:Colors of the rainbow----
 ***planet***
-planet: 
+planet:
 
-===Verb===
+<h3>Verb</h3>
 {{head|de}}
-
-# {{de-verb form of|planen|2|p|k1}}
-
+<ol><li> {{de-verb form of|planen|2|p|k1}}</li>
+</ol>
 ----
-
-
 ***PM***
-PM: 
-
-==={{initialism|de}}===
-'''PM'''
-
-# [[Pressemitteilung]]
-#: ''Hier sind die '''PM''' von letztem Jahr.''
-#:: Here are the press releases from last year.
-# [[Papiermaschine]]
-
-[[cs:PM]]
-[[et:PM]]
-[[fr:PM]]
-[[he:PM]]
-[[li:PM]]
-[[hu:PM]]
-[[pl:PM]]
-[[pt:PM]]
-[[fi:PM]]
-[[sv:PM]]
-[[tr:PM]]
+PM:
+
+<h3>{{initialism|de}}</h3>
+<b>PM</b>
+<ol><li> Pressemitteilung</li>
+<ul><li> <em>Hier sind die <b>PM</b> von letztem Jahr.</em></li>
+<ul><li> Here are the press releases from last year.</li>
+</ul>
+</ul>
+<li> Papiermaschine</li>
+</ol>
+cs:PMet:PMfr:PMhe:PMli:PMhu:PMpl:PMpt:PMfi:PMsv:PMtr:PM
 ===Proto===
-Appendix:Proto-Germanic/frijaz: 
-===Etymology===
-From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|lang=gem-pro||to be fond of}}. The original meaning was probably something like ''from the own clan'', from which a meaning ''being a free man, not a [[serf]]'' developed.
+Appendix:Proto-Germanic/frijaz:
 
-===Pronunciation===
-* {{IPA|lang=gem-pro|/ˈɸri.jɑz/}}
+<h3>Etymology</h3>
+From {{proto|ine-pro|prei-|lang=gem-pro}}, compare {{termx|frijōnan|to be fond of|lang=gem-pro}}. The original meaning was probably something like <em>from the own clan</em>, from which a meaning <em>being a free man, not a serf</em> developed.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈɸri.jɑz/|lang=gem-pro}}</li>
+</ul>
 
-===Adjective===
-{{gem-adj}}
+<h3>Adjective</h3>
+{gem-adj}
+<ol><li> free</li>
+</ol>
 
-# [[free]]
-
-====Declension====
+<h4>Declension</h4>
 {{gem-decl-adj-a|frij}}
+<h4>Related terms</h4>
+<ul><li> {{lx|gem-pro|frijōnan|frijōną}}</li>
+</ul>
+
+<h4>Descendants</h4>
+<ul><li> Old English: {{l|ang|freo|frēo}}</li>
+<ul><li> English: {{l|en|free}}</li>
+</ul>
+<li> Old Frisian: {{l|ofs|fri|frī}}</li>
+<ul><li> West Frisian: {{l|fy|frij}}</li>
+</ul>
+<li> Old Saxon: {{l|osx|fri|frī}}</li>
+<ul><li> Middle Low German: {{l|gml|vri}}</li>
+<ul><li> Norwegian: {{l|no|fri}}</li>
+<li> Swedish: {{l|sv|fri}}</li>
+<li> Danish: {{l|da|fri}}</li>
+</ul>
+</ul>
+<li> Old Dutch: *frī</li>
+<ul><li> Middle Dutch: {{l|dum|vri}}</li>
+<ul><li> Dutch: {{l|nl|vrij}}</li>
+<ul><li> Afrikaans: {{l|af|vry}}</li>
+</ul>
+</ul>
+</ul>
+<li> Old High German: {{l|goh|fri|frī}}</li>
+<ul><li> German: {{l|de|frei}}</li>
+</ul>
+<li> Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}</li>
+</ul>
 
-====Related terms====
-* {{lx|gem-pro|frijōnan|frijōną}}
-
-====Descendants====
-* Old English: {{l|ang|freo|frēo}}
-** English: {{l|en|free}}
-* Old Frisian: {{l|ofs|fri|frī}}
-** West Frisian: {{l|fy|frij}}
-* Old Saxon: {{l|osx|fri|frī}}
-** Middle Low German: {{l|gml|vri}}
-*** Norwegian: {{l|no|fri}}
-*** Swedish: {{l|sv|fri}}
-*** Danish: {{l|da|fri}}
-* Old Dutch: *frī
-** Middle Dutch: {{l|dum|vri}}
-*** Dutch: {{l|nl|vrij}}
-**** Afrikaans: {{l|af|vry}}
-* Old High German: {{l|goh|fri|frī}}
-** German: {{l|de|frei}}
-* Gothic: {{l|got|𐍆𐍂𐌴𐌹𐍃|tr=freis}}
 ===Resources===
-Wiktionary:Resources for translators: 
-* [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
-* [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
+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>
 
 ***September***
-September: 
+September:
 
-===Pronunciation===
-* {{IPA|/zɛpˈtɛmbɐ/|lang=de}}
-* {{audio|September.ogg|September}}
-* {{audio|De-September.ogg|Audio}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/zɛpˈtɛmbɐ/|lang=de}}</li>
+<li> {{audio|September.ogg|September}}</li>
+<li> {{audio|De-September.ogg|Audio}}</li>
+</ul>
 
-===Noun===
+<h3>Noun</h3>
 {{head|de|noun|g=m}}
-
-# {{l|en|September}}
-
-[[Category:de:Months]]
-
-----
-
-
+<ol><li> {{l|en|September}}</li>
+</ol>
+Category:de:Months----
 ***SMS***
-SMS: 
+SMS:
 
-==={{initialism|German}}===
+<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>
 
-# {{nautical|military|lang=de}} [[#English|SMS]] &mdash; [[Seiner Majestät Schiff]], ''His Majesty's Ship''
-
-====Usage notes====
-Used for naval ships of the [[Austro-Hungarian Empire]] and the [[Second Reich]] of [[Imperial Germany]], for the [[Kaiserliche und Königliche Kriegsmarine]] and [[Kaiserliche Marine]], respectively.
-
-[[Category:de:Ship prefixes]]
-
-[[de:SMS]]
-[[es:SMS]]
-[[fr:SMS]]
-[[ko:SMS]]
-[[it:SMS]]
-[[he:SMS]]
-[[ku:SMS]]
-[[pl:SMS]]
-[[pt:SMS]]
-[[ru:SMS]]
-[[ta:SMS]]
-[[tr:SMS]]
-[[zh:SMS]]
+<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
 ***spring***
-spring: 
-
-===Pronunciation===
-* {{IPA|/ʃpʀɪŋ/|lang=de}}
+spring:
 
-===Verb===
-'''spring'''
-
-# {{de-verb form of|springen|i|s}}
-# {{colloquial}} {{de-verb form of|springen|1|s|g}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ʃpʀɪŋ/|lang=de}}</li>
+</ul>
 
+<h3>Verb</h3>
+<b>spring</b>
+<ol><li> {{de-verb form of|springen|i|s}}</li>
+<li> {colloquial} {{de-verb form of|springen|1|s|g}}</li>
+</ol>
 ----
-
-
 ===Swadesh===
-Appendix:Swadesh lists: 
-The words from Swadesh's original 100-word list are designated by an asterisk (*). In the composite list on this page, there are actually 207 words, since seven of the words in the 100-word list (''breast'', ''fingernail'', ''full'', ''horn'', ''knee'', ''moon'', ''round'') were not in the original 200-word list. 
-
-{|  align=center class="wikitable sortable"
-|  i=No | No
-!  c=en | [[English]]
-!  c=fr | [[French]]
-!  c=de | [[German]]
-!  c=it | [[Italian]]
-!  c=es | [[Spanish]]
-!  c=nl | [[Dutch]]
-!  c=sw | [[Swedish]]
-!  c=la | [[Latin]]
-|- 
-|  i=No | 1
-|  c=en | [[I]] *
-|  c=fr | [[je]]
-|  c=de | [[ich]]
-|  c=it | [[io]]
-|  c=es | [[yo]]
-|  c=nl | [[ik]]
-|  c=sw | [[jag]]
-|  c=la | [[ego]]
-|- 
-|  i=No | 2
-|  c=en | [[you]] ''sing.'', [[thou]]
-|  c=fr | [[tu]], [[vous]] (formal)
-|  c=de | [[du]], [[Sie]] (formal)
-|  c=it | [[tu]], [[Lei]] (formal)
-|  c=es | [[tú]], [[usted]] (formal)
-|  c=nl | [[jij]], [[je]], [[U]] (formal)
-|  c=sw | [[du]]
-|  c=la | [[tu]]
-|- 
-|  i=No | 3
-|  c=en | [[he]]
-|  c=fr | [[il]]
-|  c=de | [[er]]
-|  c=it | [[lui]], [[egli]]
-|  c=es | [[él]]
-|  c=nl | [[hij]]
-|  c=sw | [[han]]
-|  c=la | [[is]], [[ea]]
-|- 
-|  i=No | 4
-|  c=en | [[we]] *
-|  c=fr | [[nous]]
-|  c=de | [[wir]]
-|  c=it | [[noi]]
-|  c=es | [[nosotros]]
-|  c=nl | [[wij]], [[we]]
-|  c=sw | [[vi]]
-|  c=la | [[nos]]
-|- 
-|  i=No | 5
-|  c=en | [[you]] ''pl.''
-|  c=fr | [[vous]]
-|  c=de | [[ihr]], [[Sie]] (formal)
-|  c=it | [[voi]]
-|  c=es | [[vosotros]], [[ustedes]] (formal)
-|  c=nl | [[jullie]]
-|  c=sw | [[ni]]
-|  c=la | [[vos]]
-|- 
-|  i=No | 6
-|  c=en | [[they]]
-|  c=fr | [[ils]], [[elles]]
-|  c=de | [[sie]]
-|  c=it | [[loro]], [[essi]]
-|  c=es | [[ellos]], [[ellas]]
-|  c=nl | [[zij]], [[ze]]
-|  c=sw | [[de]]
-|  c=la | [[ii]], [[eae]]
-|- 
-|  i=No | 7
-|  c=en | [[this]] *
-|  c=fr | [[ceci]]
-|  c=de | [[dieses]]
-|  c=it | [[questo]]
-|  c=es | [[este]]
-|  c=nl | [[deze]], [[dit]]
-|  c=sw | [[det här]]
-|  c=la | [[hic]], [[is]]
-|- 
-|  i=No | 8
-|  c=en | [[that]] *
-|  c=fr | [[cela]]
-|  c=de | [[jenes]], [[das]]
-|  c=it | [[quello]]
-|  c=es | [[ese]], [[aquel]]
-|  c=nl | [[die]], [[dat]]
-|  c=sw | [[det där]]
-|  c=la | [[ille]]
-|- 
-|  i=No | 9
-|  c=en | [[here]]
-|  c=fr | [[ici]]
-|  c=de | [[hier]]
-|  c=it | [[qui]], [[qua]]
-|  c=es | [[aquí]], [[acá]]
-|  c=nl | [[hier]]
-|  c=sw | [[här]]
-|  c=la | [[hic]]
-|- 
-|  i=No | 10
-|  c=en | [[there]]
-|  c=fr | [[là]]
-|  c=de | [[dort]]
-|  c=it | [[là]]
-|  c=es | [[ahí]], [[allí]], [[allá]]
-|  c=nl | [[daar]]
-|  c=sw | [[där]]
-|  c=la | [[ibi]]
-|- 
-|  i=No | 11
-|  c=en | [[who]] *
-|  c=fr | [[qui]]
-|  c=de | [[wer]]
-|  c=it | [[chi]]
-|  c=es | [[quien]]
-|  c=nl | [[wie]]
-|  c=sw | [[vem]]
-|  c=la | [[quis]]
-|- 
-|  i=No | 12
-|  c=en | [[what]] *
-|  c=fr | [[quoi]]
-|  c=de | [[was]]
-|  c=it | [[che]]
-|  c=es | [[que]]
-|  c=nl | [[wat]]
-|  c=sw | [[vad]]
-|  c=la | [[quid]]
-|- 
-|  i=No | 13
-|  c=en | [[where]]
-|  c=fr | [[où]]
-|  c=de | [[wo]]
-|  c=it | [[dove]]
-|  c=es | [[donde]]
-|  c=nl | [[waar]]
-|  c=sw | [[var]]
-|  c=la | [[ubi]]
-|- 
-|  i=No | 14
-|  c=en | [[when]]
-|  c=fr | [[quand]]
-|  c=de | [[wann]]
-|  c=it | [[quando]]
-|  c=es | [[cuando]]
-|  c=nl | [[wanneer]]
-|  c=sw | [[när]]
-|  c=la | [[quando]]
-|- 
-|  i=No | 15
-|  c=en | [[how]]
-|  c=fr | [[comment]]
-|  c=de | [[wie]]
-|  c=it | [[come]]
-|  c=es | [[como]]
-|  c=nl | [[hoe]]
-|  c=sw | [[hur]]
-|  c=la | [[quam]], [[quomodo]]
-|- 
-|  i=No | 16
-|  c=en | [[not]] *
-|  c=fr | [[ne]]...[[pas]]
-|  c=de | [[nicht]]
-|  c=it | [[non]]
-|  c=es | [[no]]
-|  c=nl | [[niet]]
-|  c=sw | [[inte]], [[ej]]
-|  c=la | [[non]]
-|- 
-|  i=No | 17
-|  c=en | [[all]] *
-|  c=fr | [[tout]]
-|  c=de | [[alle]]
-|  c=it | [[tutto]]
-|  c=es | [[todo]]
-|  c=nl | [[al]], [[alle]]
-|  c=sw | [[alla]]
-|  c=la | [[omnis]]
-|- 
-|  i=No | 18
-|  c=en | [[many]] *
-|  c=fr | [[plusieurs]]
-|  c=de | [[viele]]
-|  c=it | [[molti]]
-|  c=es | [[muchos]]
-|  c=nl | [[veel]]
-|  c=sw | [[många]]
-|  c=la | [[multi]]
-|- 
-|  i=No | 19
-|  c=en | [[some]]
-|  c=fr | [[quelques]]
-|  c=de | [[einige]]
-|  c=it | [[alcuni]]
-|  c=es | [[algunos]], [[unos]]
-|  c=nl | [[enkele]], [[sommige]]
-|  c=sw | [[några]], [[vissa]]
-|  c=la | [[aliqui]], [[aliquot]]
-|- 
-|  i=No | 20
-|  c=en | [[few]]
-|  c=fr | [[peu]]
-|  c=de | [[wenige]]
-|  c=it | [[pochi]]
-|  c=es | [[poco]]
-|  c=nl | [[weinig]]
-|  c=sw | [[få]]
-|  c=la | [[pauci]]
-|- 
-|  i=No | 21
-|  c=en | [[other]]
-|  c=fr | [[autre]]
-|  c=de | [[andere]]
-|  c=it | [[altro]]
-|  c=es | [[otro]]
-|  c=nl | [[ander]]
-|  c=sw | [[annan]]
-|  c=la | [[alter]], [[alius]]
-|- 
-|  i=No | 22
-|  c=en | [[one]] *
-|  c=fr | [[un]]
-|  c=de | [[eins]]
-|  c=it | [[uno]]
-|  c=es | [[uno]]
-|  c=nl | [[een]]
-|  c=sw | [[ett]]
-|  c=la | [[unus]]
-|- 
-|  i=No | 23
-|  c=en | [[two]] *
-|  c=fr | [[deux]]
-|  c=de | [[zwei]]
-|  c=it | [[due]]
-|  c=es | [[dos]]
-|  c=nl | [[twee]]
-|  c=sw | [[två]]
-|  c=la | [[duo]]
-|- 
-|  i=No | 24
-|  c=en | [[three]]
-|  c=fr | [[trois]]
-|  c=de | [[drei]]
-|  c=it | [[tre]]
-|  c=es | [[tres]]
-|  c=nl | [[drie]]
-|  c=sw | [[tre]]
-|  c=la | [[tres]]
-|- 
-|  i=No | 25
-|  c=en | [[four]]
-|  c=fr | [[quatre]]
-|  c=de | [[vier]]
-|  c=it | [[quattro]]
-|  c=es | [[cuatro]]
-|  c=nl | [[vier]]
-|  c=sw | [[fyra]]
-|  c=la | [[quattuor]]
-|- 
-|  i=No | 26
-|  c=en | [[five]]
-|  c=fr | [[cinq]]
-|  c=de | [[fünf]]
-|  c=it | [[cinque]]
-|  c=es | [[cinco]]
-|  c=nl | [[vijf]]
-|  c=sw | [[fem]]
-|  c=la | [[quinque]]
-|- 
-|  i=No | 27
-|  c=en | [[big]] *
-|  c=fr | [[grand]]
-|  c=de | [[groß]]
-|  c=it | [[grande]]
-|  c=es | [[grande]]
-|  c=nl | [[groot]]
-|  c=sw | [[stor]]
-|  c=la | [[magnus]], [[grandis]]
-|- 
-|  i=No | 28
-|  c=en | [[long]] *
-|  c=fr | [[long]]
-|  c=de | [[lang]]
-|  c=it | [[lungo]]
-|  c=es | [[largo]]
-|  c=nl | [[lang]]
-|  c=sw | [[lång]]
-|  c=la | [[longus]]
-|- 
-|  i=No | 29
-|  c=en | [[wide]]
-|  c=fr | [[large]]
-|  c=de | [[breit]], [[weit]]
-|  c=it | [[largo]]
-|  c=es | [[ancho]]
-|  c=nl | [[breed]], [[wijd]]
-|  c=sw | [[bred]], [[vid]]
-|  c=la | [[latus]]
-|- 
-|  i=No | 30
-|  c=en | [[thick]]
-|  c=fr | [[épais]]
-|  c=de | [[dick]]
-|  c=it | [[spesso]]
-|  c=es | [[grueso]]
-|  c=nl | [[dik]]
-|  c=sw | [[tjock]]
-|  c=la | [[creber]]
-|- 
-|  i=No | 31
-|  c=en | [[heavy]]
-|  c=fr | [[lourd]]
-|  c=de | [[schwer]]
-|  c=it | [[pesante]]
-|  c=es | [[pesado]]
-|  c=nl | [[zwaar]]
-|  c=sw | [[tung]]
-|  c=la | [[gravis]]
-|- 
-|  i=No | 32
-|  c=en | [[small]] *
-|  c=fr | [[petit]]
-|  c=de | [[klein]]
-|  c=it | [[piccolo]]
-|  c=es | [[pequeño]]
-|  c=nl | [[smal]]
-|  c=sw | [[liten]]
-|  c=la | [[parvus]]
-|- 
-|  i=No | 33
-|  c=en | [[short]]
-|  c=fr | [[court]]
-|  c=de | [[kurz]]
-|  c=it | [[corto]]
-|  c=es | [[corto]]
-|  c=nl | [[kort]]
-|  c=sw | [[kort]]
-|  c=la | [[brevis]]
-|- 
-|  i=No | 34
-|  c=en | [[narrow]]
-|  c=fr | [[étroit]]
-|  c=de | [[eng]]
-|  c=it | [[stretto]]
-|  c=es | [[estrecho]], [[angosto]]
-|  c=nl | [[klein]]
-|  c=sw | [[trång]]
-|  c=la | [[angustus]]
-|- 
-|  i=No | 35
-|  c=en | [[thin]]
-|  c=fr | [[mince]]
-|  c=de | [[dünn]]
-|  c=it | [[sottile]]
-|  c=es | [[delgado]], [[flaco]]
-|  c=nl | [[dun]]
-|  c=sw | [[tunn]]
-|  c=la | [[macer]]
-|- 
-|  i=No | 36
-|  c=en | [[woman]] *
-|  c=fr | [[femme]]
-|  c=de | [[Frau]]
-|  c=it | [[donna]]
-|  c=es | [[mujer]]
-|  c=nl | [[vrouw]]
-|  c=sw | [[kvinna]]
-|  c=la | [[femina]]
-|- 
-|  i=No | 37
-|  c=en | [[man]] (adult male)
-|  c=fr | [[homme]]
-|  c=de | [[Mann]]
-|  c=it | [[uomo]]
-|  c=es | [[hombre]]
-|  c=nl | [[man]]
-|  c=sw | [[man]]
-|  c=la | [[vir]]
-|- 
-|  i=No | 38
-|  c=en | [[man]] * (human being)
-|  c=fr | [[homme]]
-|  c=de | [[Mensch]]
-|  c=it | [[uomo]]
-|  c=es | [[hombre]]
-|  c=nl | [[mens]]
-|  c=sw | [[människa]]
-|  c=la | [[homo]]
-|- 
-|  i=No | 39
-|  c=en | [[kid]]
-|  c=fr | [[enfant]]
-|  c=de | [[Kind]]
-|  c=it | [[bambino]]
-|  c=es | [[niño]]
-|  c=nl | [[kind]]
-|  c=sw | [[barn]]
-|  c=la | [[puer]]
-|- 
-|  i=No | 40
-|  c=en | [[wife]]
-|  c=fr | [[femme]], [[épouse]]
-|  c=de | [[Frau]], [[Ehefrau]]
-|  c=it | [[moglie]]
-|  c=es | [[esposa]], [[mujer]]
-|  c=nl | [[vrouw]], [[echtgenote]]
-|  c=sw | [[hustru]], [[maka]], [[fru]]
-|  c=la | [[uxor]], [[mulier]]
-|- 
-|  i=No | 41
-|  c=en | [[husband]]
-|  c=fr | [[mari]], [[époux]]
-|  c=de | [[Mann]], [[Ehemann]]
-|  c=it | [[marito]]
-|  c=es | [[esposo]], [[marido]]
-|  c=nl | [[man]], [[echtgenoot]]
-|  c=sw | [[man]], [[make]]
-|  c=la | [[maritus]]
-|- 
-|  i=No | 42
-|  c=en | [[mother]]
-|  c=fr | [[mère]]
-|  c=de | [[Mutter]]
-|  c=it | [[madre]]
-|  c=es | [[madre]]
-|  c=nl | [[moeder]]
-|  c=sw | [[mamma]], [[mor]]
-|  c=la | [[mater]]
-|- 
-|  i=No | 43
-|  c=en | [[father]]
-|  c=fr | [[père]]
-|  c=de | [[Vater]]
-|  c=it | [[padre]]
-|  c=es | [[padre]]
-|  c=nl | [[vader]]
-|  c=sw | [[pappa]], [[far]]
-|  c=la | [[pater]]
-|- 
-|  i=No | 44
-|  c=en | [[animal]]
-|  c=fr | [[animal]]
-|  c=de | [[Tier]]
-|  c=it | [[animale]]
-|  c=es | [[animal]]
-|  c=nl | [[dier]]
-|  c=sw | [[djur]]
-|  c=la | [[animal]]
-|- 
-|  i=No | 45
-|  c=en | [[fish]] *
-|  c=fr | [[poisson]]
-|  c=de | [[Fisch]]
-|  c=it | [[pesce]]
-|  c=es | [[pez]], [[pescado]]
-|  c=nl | [[vis]]
-|  c=sw | [[fisk]]
-|  c=la | [[piscis]]
-|- 
-|  i=No | 46
-|  c=en | [[bird]] *
-|  c=fr | [[oiseau]]
-|  c=de | [[Vogel]]
-|  c=it | [[uccello]]
-|  c=es | [[ave]], [[pájaro]]
-|  c=nl | [[vogel]]
-|  c=sw | [[fågel]]
-|  c=la | [[avis]]
-|- 
-|  i=No | 47
-|  c=en | [[hound]] *
-|  c=fr | [[chien]]
-|  c=de | [[Hund]]
-|  c=it | [[cane]]
-|  c=es | [[perro]]
-|  c=nl | [[hond]]
-|  c=sw | [[hund]]
-|  c=la | [[canis]]
-|- 
-|  i=No | 48
-|  c=en | [[louse]] *
-|  c=fr | [[pou]]
-|  c=de | [[Laus]]
-|  c=it | [[pidocchio]]
-|  c=es | [[piojo]]
-|  c=nl | [[luis]]
-|  c=sw | [[lus]]
-|  c=la | [[pedis]]
-|- 
-|  i=No | 49
-|  c=en | [[snake]]
-|  c=fr | [[serpent]]
-|  c=de | [[Schlange]]
-|  c=it | [[serpente]]
-|  c=es | [[serpiente]], [[culebra]]
-|  c=nl | [[slang]]
-|  c=sw | [[orm]]
-|  c=la | [[serpens]]
-|- 
-|  i=No | 50
-|  c=en | [[worm]]
-|  c=fr | [[ver]]
-|  c=de | [[Wurm]]
-|  c=it | [[verme]]
-|  c=es | [[gusano]]
-|  c=nl | [[worm]]
-|  c=sw | [[mask]]
-|  c=la | [[vermis]]
-|- 
-|  i=No | 51
-|  c=en | [[beam]] *
-|  c=fr | [[arbre]]
-|  c=de | [[Baum]]
-|  c=it | [[albero]]
-|  c=es | [[árbol]]
-|  c=nl | [[boom]]
-|  c=sw | [[träd]]
-|  c=la | [[arbor]]
-|- 
-|  i=No | 52
-|  c=en | [[forest]]
-|  c=fr | [[forêt]]
-|  c=de | [[Wald]]
-|  c=it | [[foresta]]
-|  c=es | [[bosque]]
-|  c=nl | [[woud]]
-|  c=sw | [[skog]]
-|  c=la | [[silva]]
-|- 
-|  i=No | 53
-|  c=en | [[stick]]
-|  c=fr | [[bâton]]
-|  c=de | [[Stock]]
-|  c=it | [[bastone]]
-|  c=es | [[palo]]
-|  c=nl | [[stok]]
-|  c=sw | [[pinne]]
-|  c=la | [[fustis]]
-|- 
-|  i=No | 54
-|  c=en | [[fruit]]
-|  c=fr | [[fruit]]
-|  c=de | [[Frucht]]
-|  c=it | [[frutta]]
-|  c=es | [[fruta]]
-|  c=nl | [[fruit]], [[vrucht]]
-|  c=sw | [[frukt]]
-|  c=la | [[fructus]]
-|- 
-|  i=No | 55
-|  c=en | [[seed]] *
-|  c=fr | [[graine]]
-|  c=de | [[Samen]]
-|  c=it | [[seme]]
-|  c=es | [[semilla]]
-|  c=nl | [[zaad]]
-|  c=sw | [[frö]]
-|  c=la | [[semen]]
-|- 
-|  i=No | 56
-|  c=en | [[leaf]] *
-|  c=fr | [[feuille]]
-|  c=de | [[Blatt]]
-|  c=it | [[foglia]]
-|  c=es | [[hoja]]
-|  c=nl | [[blad]]
-|  c=sw | [[löv]], [[blad]]
-|  c=la | [[folium]]
-|- 
-|  i=No | 57
-|  c=en | [[root]] *
-|  c=fr | [[racine]]
-|  c=de | [[Wurzel]]
-|  c=it | [[radice]]
-|  c=es | [[raíz]]
-|  c=nl | [[root]]
-|  c=sw | [[rot]]
-|  c=la | [[radix]]
-|- 
-|  i=No | 58
-|  c=en | [[bark]] * (from tree)
-|  c=fr | [[écorce]]
-|  c=de | [[Rinde]]
-|  c=it | [[corteccia]]
-|  c=es | [[corteza]]
-|  c=nl | [[bark]]
-|  c=sw | [[bark]]
-|  c=la | [[cortex]]
-|- 
-|  i=No | 59
-|  c=en | [[flower]]
-|  c=fr | [[fleur]]
-|  c=de | [[Blume]]
-|  c=it | [[fiore]]
-|  c=es | [[flor]]
-|  c=nl | [[bloem]]
-|  c=sw | [[blomma]]
-|  c=la | [[flos]]
-|- 
-|  i=No | 60
-|  c=en | [[grass]]
-|  c=fr | [[herbe]]
-|  c=de | [[Gras]]
-|  c=it | [[erba]]
-|  c=es | [[hierba]], [[pasto]]
-|  c=nl | [[gras]]
-|  c=sw | [[gräs]]
-|  c=la | [[herba]]
-|- 
-|  i=No | 61
-|  c=en | [[rope]]
-|  c=fr | [[corde]]
-|  c=de | [[Seil]]
-|  c=it | [[corda]]
-|  c=es | [[cuerda]]
-|  c=nl | [[reep]], [[koord]]
-|  c=sw | [[rep]]
-|  c=la | [[funis]]
-|- 
-|  i=No | 62
-|  c=en | [[skin]] *
-|  c=fr | [[peau]]
-|  c=de | [[Haut]]
-|  c=it | [[pelle]]
-|  c=es | [[piel]]
-|  c=nl | [[huid]]
-|  c=sw | [[hud]]
-|  c=la | [[cutis]]
-|- 
-|  i=No | 63
-|  c=en | [[meat]]
-|  c=fr | [[viande]]
-|  c=de | [[Fleisch]]
-|  c=it | [[carne]]
-|  c=es | [[carne]]
-|  c=nl | [[vlees]]
-|  c=sw | [[kött]]
-|  c=la | [[caro]]
-|- 
-|  i=No | 64
-|  c=en | [[blood]] *
-|  c=fr | [[sang]]
-|  c=de | [[Blut]]
-|  c=it | [[sangue]]
-|  c=es | [[sangre]]
-|  c=nl | [[bloed]]
-|  c=sw | [[blod]]
-|  c=la | [[sanguis]]
-|- 
-|  i=No | 65
-|  c=en | [[bone]] *
-|  c=fr | [[os]]
-|  c=de | [[Knochen]]
-|  c=it | [[osso]]
-|  c=es | [[hueso]]
-|  c=nl | [[been]], [[bot]]
-|  c=sw | [[ben]]
-|  c=la | [[os]]
-|- 
-|  i=No | 66
-|  c=en | [[fat]] * (n.)
-|  c=fr | [[graisse]]
-|  c=de | [[Fett]]
-|  c=it | [[grasso]]
-|  c=es | [[grasa]]
-|  c=nl | [[vet]]
-|  c=sw | [[fett]]
-|  c=la | [[adeps]]
-|- 
-|  i=No | 67
-|  c=en | [[egg]] *
-|  c=fr | [[œuf]]
-|  c=de | [[Ei]]
-|  c=it | [[uovo]]
-|  c=es | [[huevo]]
-|  c=nl | [[ei]]
-|  c=sw | [[ägg]]
-|  c=la | [[ovum]]
-|- 
-|  i=No | 68
-|  c=en | [[horn]] *
-|  c=fr | [[corne]]
-|  c=de | [[Horn]]
-|  c=it | [[corno]]
-|  c=es | [[cuerno]]
-|  c=nl | [[horn]]
-|  c=sw | [[horn]]
-|  c=la | [[cornu]]
-|- 
-|  i=No | 69
-|  c=en | [[tail]] *
-|  c=fr | [[queue]]
-|  c=de | [[Schwanz]]
-|  c=it | [[coda]]
-|  c=es | [[cola]]
-|  c=nl | [[staart]]
-|  c=sw | [[svans]]
-|  c=la | [[cauda]]
-|- 
-|  i=No | 70
-|  c=en | [[feather]] *
-|  c=fr | [[plume]]
-|  c=de | [[Feder]]
-|  c=it | [[piuma]]
-|  c=es | [[pluma]]
-|  c=nl | [[veder]]
-|  c=sw | [[fjäder]]
-|  c=la | [[penna]]
-|- 
-|  i=No | 71
-|  c=en | [[hair]] *
-|  c=fr | [[cheveu]]
-|  c=de | [[Haar]]
-|  c=it | [[capelli]]
-|  c=es | [[cabello]], [[pelo]]
-|  c=nl | [[haar]]
-|  c=sw | [[hår]]
-|  c=la | [[capillus]], [[coma]], [[crinis]]
-|- 
-|  i=No | 72
-|  c=en | [[head]] *
-|  c=fr | [[tête]]
-|  c=de | [[Kopf]], [[Haupt]]
-|  c=it | [[testa]]
-|  c=es | [[cabeza]]
-|  c=nl | [[hoofd]], [[kop]]
-|  c=sw | [[huvud]]
-|  c=la | [[caput]]
-|- 
-|  i=No | 73
-|  c=en | [[ear]] *
-|  c=fr | [[oreille]]
-|  c=de | [[Ohr]]
-|  c=it | [[orecchio]]
-|  c=es | [[oreja]]
-|  c=nl | [[aar]]
-|  c=sw | [[öra]]
-|  c=la | [[auris]]
-|- 
-|  i=No | 74
-|  c=en | [[eye]] *
-|  c=fr | [[œil]]
-|  c=de | [[Auge]]
-|  c=it | [[occhio]]
-|  c=es | [[ojo]]
-|  c=nl | [[oog]]
-|  c=sw | [[öga]]
-|  c=la | [[oculus]]
-|- 
-|  i=No | 75
-|  c=en | [[nose]] *
-|  c=fr | [[nez]]
-|  c=de | [[Nase]]
-|  c=it | [[naso]]
-|  c=es | [[nariz]]
-|  c=nl | [[neus]]
-|  c=sw | [[näsa]]
-|  c=la | [[nasus]]
-|- 
-|  i=No | 76
-|  c=en | [[mouth]] *
-|  c=fr | [[bouche]]
-|  c=de | [[Mund]]
-|  c=it | [[bocca]]
-|  c=es | [[boca]]
-|  c=nl | [[mond]]
-|  c=sw | [[mun]]
-|  c=la | [[os]]
-|- 
-|  i=No | 77
-|  c=en | [[tooth]] *
-|  c=fr | [[dent]]
-|  c=de | [[Zahn]]
-|  c=it | [[dente]]
-|  c=es | [[diente]]
-|  c=nl | [[tand]]
-|  c=sw | [[tand]]
-|  c=la | [[dens]]
-|- 
-|  i=No | 78
-|  c=en | [[tongue]] *
-|  c=fr | [[langue]]
-|  c=de | [[Zunge]]
-|  c=it | [[lingua]]
-|  c=es | [[lengua]]
-|  c=nl | [[tong]]
-|  c=sw | [[tunga]]
-|  c=la | [[lingua]]
-|- 
-|  i=No | 79
-|  c=en | [[fingernail]]
-|  c=fr | [[ongle]]
-|  c=de | [[Fingernagel]]
-|  c=it | [[unghia]]
-|  c=es | [[uña]]
-|  c=nl | [[vingernagel]]
-|  c=sw | [[nagel]]
-|  c=la | [[unguis]]
-|- 
-|  i=No | 80
-|  c=en | [[foot]] *
-|  c=fr | [[pied]]
-|  c=de | [[Fuß]]
-|  c=it | [[piede]]
-|  c=es | [[pie]]
-|  c=nl | [[voet]]
-|  c=sw | [[fot]]
-|  c=la | [[pes]]
-|- 
-|  i=No | 81
-|  c=en | [[leg]]
-|  c=fr | [[jambe]]
-|  c=de | [[Bein]]
-|  c=it | [[gamba]]
-|  c=es | [[pierna]]
-|  c=nl | [[been]]
-|  c=sw | [[ben]]
-|  c=la | [[crus]]
-|- 
-|  i=No | 82
-|  c=en | [[knee]] *
-|  c=fr | [[genou]]
-|  c=de | [[Knie]]
-|  c=it | [[ginocchio]]
-|  c=es | [[rodilla]]
-|  c=nl | [[knie]]
-|  c=sw | [[knä]]
-|  c=la | [[genu]]
-|- 
-|  i=No | 83
-|  c=en | [[hand]] *
-|  c=fr | [[main]]
-|  c=de | [[Hand]]
-|  c=it | [[mano]]
-|  c=es | [[mano]]
-|  c=nl | [[hand]]
-|  c=sw | [[hand]]
-|  c=la | [[manus]]
-|- 
-|  i=No | 84
-|  c=en | [[wing]]
-|  c=fr | [[aile]]
-|  c=de | [[Flügel]]
-|  c=it | [[ala]]
-|  c=es | [[ala]]
-|  c=nl | [[vleugel]]
-|  c=sw | [[vinge]]
-|  c=la | [[ala]]
-|- 
-|  i=No | 85
-|  c=en | [[belly]] *
-|  c=fr | [[ventre]]
-|  c=de | [[Bauch]]
-|  c=it | [[pancia]]
-|  c=es | [[barriga]], [[vientre]], [[panza]]
-|  c=nl | [[buik]]
-|  c=sw | [[mage]]
-|  c=la | [[venter]]
-|- 
-|  i=No | 86
-|  c=en | [[guts]]
-|  c=fr | [[entrailles]]
-|  c=de | [[Eingeweide]], [[Innereien]]
-|  c=it | [[intestino]]
-|  c=es | [[entrañas]], [[tripas]]
-|  c=nl | [[ingewanden]]
-|  c=sw | [[inälvor]]
-|  c=la | [[intestina]]
-|- 
-|  i=No | 87
-|  c=en | [[neck]] *
-|  c=fr | [[cou]]
-|  c=de | [[Hals]]
-|  c=it | [[collo]]
-|  c=es | [[cuello]]
-|  c=nl | [[nek]]
-|  c=sw | [[hals]], [[nacke]]
-|  c=la | [[collum]], [[cervix]]
-|- 
-|  i=No | 88
-|  c=en | [[back]]
-|  c=fr | [[dos]]
-|  c=de | [[Rücken]]
-|  c=it | [[schiena]]
-|  c=es | [[espalda]]
-|  c=nl | [[rug]]
-|  c=sw | [[rygg]]
-|  c=la | [[tergum]]
-|- 
-|  i=No | 89
-|  c=en | [[breast]] *
-|  c=fr | [[sein]], [[poitrine]]
-|  c=de | [[Brust]]
-|  c=it | [[petto]]
-|  c=es | [[pecho]], [[seno]]
-|  c=nl | [[borst]]
-|  c=sw | [[bröst]]
-|  c=la | [[pectus]], [[mamma]]
-|- 
-|  i=No | 90
-|  c=en | [[heart]] *
-|  c=fr | [[cœur]]
-|  c=de | [[Herz]]
-|  c=it | [[cuore]]
-|  c=es | [[corazón]]
-|  c=nl | [[hart]]
-|  c=sw | [[hjärta]]
-|  c=la | [[cor]]
-|- 
-|  i=No | 91
-|  c=en | [[liver]] *
-|  c=fr | [[foie]]
-|  c=de | [[Leber]]
-|  c=it | [[fegato]]
-|  c=es | [[hígado]]
-|  c=nl | [[lever]]
-|  c=sw | [[lever]]
-|  c=la | [[iecur]]
-|- 
-|  i=No | 92
-|  c=en | [[drink]] *
-|  c=fr | [[boire]]
-|  c=de | [[trinken]]
-|  c=it | [[bere]]
-|  c=es | [[beber]], [[tomar]]
-|  c=nl | [[drinken]]
-|  c=sw | [[dricka]]
-|  c=la | [[bibere]]
-|- 
-|  i=No | 93
-|  c=en | [[eat]] *
-|  c=fr | [[manger]]
-|  c=de | [[essen]]
-|  c=it | [[mangiare]]
-|  c=es | [[comer]]
-|  c=nl | [[eten]]
-|  c=sw | [[äta]]
-|  c=la | [[edere]]
-|- 
-|  i=No | 94
-|  c=en | [[bite]] *
-|  c=fr | [[mordre]]
-|  c=de | [[beißen]]
-|  c=it | [[mordere]]
-|  c=es | [[morder]]
-|  c=nl | [[bijten]]
-|  c=sw | [[bita]]
-|  c=la | [[mordere]]
-|- 
-|  i=No | 95
-|  c=en | [[suck]]
-|  c=fr | [[sucer]]
-|  c=de | [[saugen]]
-|  c=it | [[succhiare]]
-|  c=es | [[chupar]]
-|  c=nl | [[zuigen]]
-|  c=sw | [[suga]]
-|  c=la | [[sugere]]
-|- 
-|  i=No | 96
-|  c=en | [[spit]]
-|  c=fr | [[cracher]]
-|  c=de | [[spucken]]
-|  c=it | [[sputare]]
-|  c=es | [[escupir]]
-|  c=nl | [[spugen]]
-|  c=sw | [[spotta]]
-|  c=la | [[sputare]]
-|- 
-|  i=No | 97
-|  c=en | [[vomit]]
-|  c=fr | [[vomir]]
-|  c=de | [[erbrechen]]
-|  c=it | [[vomitare]]
-|  c=es | [[vomitar]]
-|  c=nl | [[braken]], [[overgeven]]
-|  c=sw | [[kräkas]], [[spy]]
-|  c=la | [[vomere]]
-|- 
-|  i=No | 98
-|  c=en | [[blow]]
-|  c=fr | [[souffler]]
-|  c=de | [[blasen]]
-|  c=it | [[soffiare]]
-|  c=es | [[soplar]]
-|  c=nl | [[blazen]]
-|  c=sw | [[blåsa]]
-|  c=la | [[flare]]
-|- 
-|  i=No | 99
-|  c=en | [[breathe]]
-|  c=fr | [[respirer]]
-|  c=de | [[atmen]]
-|  c=it | [[respirare]]
-|  c=es | [[respirar]]
-|  c=nl | [[ademen]]
-|  c=sw | [[andas]]
-|  c=la | [[spirare]]
-|- 
-|  i=No | 100
-|  c=en | [[laugh]]
-|  c=fr | [[rire]]
-|  c=de | [[lachen]]
-|  c=it | [[ridere]]
-|  c=es | [[reír]]
-|  c=nl | [[lachen]]
-|  c=sw | [[skratta]]
-|  c=la | [[ridere]]
-|- 
-|  i=No | 101
-|  c=en | [[see]] *
-|  c=fr | [[voir]]
-|  c=de | [[sehen]]
-|  c=it | [[vedere]]
-|  c=es | [[ver]]
-|  c=nl | [[zien]]
-|  c=sw | [[se]]
-|  c=la | [[videre]]
-|- 
-|  i=No | 102
-|  c=en | [[hear]] *
-|  c=fr | [[entendre]]
-|  c=de | [[hören]]
-|  c=it | [[udire]], [[sentire]]
-|  c=es | [[oír]]
-|  c=nl | [[horen]]
-|  c=sw | [[höra]]
-|  c=la | [[audire]]
-|- 
-|  i=No | 103
-|  c=en | [[know]] * (a fact)
-|  c=fr | [[savoir]]
-|  c=de | [[wissen]]
-|  c=it | [[sapere]]
-|  c=es | [[saber]]
-|  c=nl | [[kennen]]
-|  c=sw | [[veta]]
-|  c=la | [[scire]]
-|- 
-|  i=No | 104
-|  c=en | [[think]]
-|  c=fr | [[penser]]
-|  c=de | [[denken]]
-|  c=it | [[pensare]]
-|  c=es | [[pensar]]
-|  c=nl | [[denken]]
-|  c=sw | [[tänka]]
-|  c=la | [[putare]]
-|- 
-|  i=No | 105
-|  c=en | [[smell]]
-|  c=fr | [[sentir]]
-|  c=de | [[riechen]]
-|  c=it | [[odorare]], [[annusare]]
-|  c=es | [[oler]]
-|  c=nl | [[smelten]]
-|  c=sw | [[lukta]]
-|  c=la | [[olere]]
-|- 
-|  i=No | 106
-|  c=en | [[fear]]
-|  c=fr | [[craindre]], [[avoir]] [[peur]]
-|  c=de | [[fürchten]]
-|  c=it | [[temere]]
-|  c=es | [[temer]]
-|  c=nl | [[vrezen]], [[angst]]
-|  c=sw | [[frukta]], [[rädas]]
-|  c=la | [[timere]]
-|- 
-|  i=No | 107
-|  c=en | [[sleep]] *
-|  c=fr | [[dormir]]
-|  c=de | [[schlafen]]
-|  c=it | [[dormire]]
-|  c=es | [[dormir]]
-|  c=nl | [[slapen]]
-|  c=sw | [[sova]]
-|  c=la | [[dormire]]
-|- 
-|  i=No | 108
-|  c=en | [[live]]
-|  c=fr | [[vivre]]
-|  c=de | [[leben]]
-|  c=it | [[vivere]]
-|  c=es | [[vivir]]
-|  c=nl | [[leven]]
-|  c=sw | [[leva]]
-|  c=la | [[vivere]]
-|- 
-|  i=No | 109
-|  c=en | [[die]] *
-|  c=fr | [[mourir]]
-|  c=de | [[sterben]]
-|  c=it | [[morire]]
-|  c=es | [[morir]]
-|  c=nl | [[doden]]
-|  c=sw | [[dö]]
-|  c=la | [[mori]]
-|- 
-|  i=No | 110
-|  c=en | [[kill]] *
-|  c=fr | [[tuer]]
-|  c=de | [[töten]]
-|  c=it | [[uccidere]]
-|  c=es | [[matar]]
-|  c=nl | [[doden]]
-|  c=sw | [[döda]]
-|  c=la | [[necare]]
-|- 
-|  i=No | 111
-|  c=en | [[fight]]
-|  c=fr | [[se]] [[battre]]
-|  c=de | [[kämpfen]]
-|  c=it | [[combattere]]
-|  c=es | [[pelear]]
-|  c=nl | [[vechten]]
-|  c=sw | [[strida]]
-|  c=la | [[pugnare]]
-|- 
-|  i=No | 112
-|  c=en | [[hunt]]
-|  c=fr | [[chasser]]
-|  c=de | [[jagen]]
-|  c=it | [[cacciare]]
-|  c=es | [[cazar]]
-|  c=nl | [[jagen]]
-|  c=sw | [[jaga]]
-|  c=la | [[venari]]
-|- 
-|  i=No | 113
-|  c=en | [[hit]]
-|  c=fr | [[frapper]]
-|  c=de | [[schlagen]]
-|  c=it | [[colpire]]
-|  c=es | [[golpear]]
-|  c=nl | [[slaan]]
-|  c=sw | [[slå]]
-|  c=la | [[pellere]]
-|- 
-|  i=No | 114
-|  c=en | [[cut]]
-|  c=fr | [[couper]]
-|  c=de | [[schneiden]]
-|  c=it | [[tagliare]]
-|  c=es | [[cortar]]
-|  c=nl | [[snijden]]
-|  c=sw | [[skära]]
-|  c=la | [[secare]]
-|- 
-|  i=No | 115
-|  c=en | [[split]]
-|  c=fr | [[fendre]]
-|  c=de | [[spalten]]
-|  c=it | [[dividere]], [[separare]]
-|  c=es | [[partir]]
-|  c=nl | [[splijten]]
-|  c=sw | [[dela]], [[klyva]]
-|  c=la | [[scindere]], [[partiri]]
-|- 
-|  i=No | 116
-|  c=en | [[stab]]
-|  c=fr | [[poignarder]]
-|  c=de | [[stechen]]
-|  c=it | [[pugnalare]]
-|  c=es | [[apuñalar]]
-|  c=nl | [[steken]]
-|  c=sw | [[sticka]]
-|  c=la | [[traicere]]
-|- 
-|  i=No | 117
-|  c=en | [[scratch]]
-|  c=fr | [[gratter]]
-|  c=de | [[kratzen]]
-|  c=it | [[graffiare]]
-|  c=es | [[arañar]], [[rascar]]
-|  c=nl | [[krabben]]
-|  c=sw | [[klia]]
-|  c=la | [[radere]]
-|- 
-|  i=No | 118
-|  c=en | [[dig]]
-|  c=fr | [[creuser]]
-|  c=de | [[graben]]
-|  c=it | [[scavare]]
-|  c=es | [[cavar]]
-|  c=nl | [[delven]]
-|  c=sw | [[gräva]]
-|  c=la | [[fodere]]
-|- 
-|  i=No | 119
-|  c=en | [[swim]] *
-|  c=fr | [[nager]]
-|  c=de | [[schwimmen]]
-|  c=it | [[nuotare]]
-|  c=es | [[nadar]]
-|  c=nl | [[zwemmen]]
-|  c=sw | [[simma]]
-|  c=la | [[natare]]
-|- 
-|  i=No | 120
-|  c=en | [[fly]] * (v.)
-|  c=fr | [[voler]]
-|  c=de | [[fliegen]]
-|  c=it | [[volare]]
-|  c=es | [[volar]]
-|  c=nl | [[vliegen]]
-|  c=sw | [[flyga]]
-|  c=la | [[volare]]
-|- 
-|  i=No | 121
-|  c=en | [[walk]] *
-|  c=fr | [[marcher]]
-|  c=de | [[gehen]]
-|  c=it | [[camminare]]
-|  c=es | [[caminar]]
-|  c=nl | [[lopen]], [[wandelen]]
-|  c=sw | [[gå]]
-|  c=la | [[gradi]]
-|- 
-|  i=No | 122
-|  c=en | [[come]] *
-|  c=fr | [[venir]]
-|  c=de | [[kommen]]
-|  c=it | [[venire]]
-|  c=es | [[venir]]
-|  c=nl | [[komen]]
-|  c=sw | [[komma]]
-|  c=la | [[venire]]
-|- 
-|  i=No | 123
-|  c=en | [[lie]] *
-|  c=fr | [[s]]'[[étendre]]
-|  c=de | [[liegen]]
-|  c=it | [[distendersi]]
-|  c=es | [[echarse]], [[acostarse]], [[tenderse]]
-|  c=nl | [[liegen]]
-|  c=sw | [[ligga]]
-|  c=la | [[iacere]]
-|- 
-|  i=No | 124
-|  c=en | [[sit]] *
-|  c=fr | [[s'asseoir]]
-|  c=de | [[setzen]]
-|  c=it | [[sedere]]
-|  c=es | [[sentarse]]
-|  c=nl | [[zitten]]
-|  c=sw | [[sitta]]
-|  c=la | [[sedere]]
-|- 
-|  i=No | 125
-|  c=en | [[stand]] *
-|  c=fr | [[se lever]]
-|  c=de | [[stehen]]
-|  c=it | [[stare]] [[in]] [[piedi]]
-|  c=es | [[estar de pie]]
-|  c=nl | [[staan]]
-|  c=sw | [[stå]]
-|  c=la | [[stare]]
-|- 
-|  i=No | 126
-|  c=en | [[turn]]
-|  c=fr | [[tourner]]
-|  c=de | [[drehen]]
-|  c=it | [[girare]]
-|  c=es | [[voltear]]
-|  c=nl | [[draaien]]
-|  c=sw | [[svänga]]
-|  c=la | [[vertere]]
-|- 
-|  i=No | 127
-|  c=en | [[fall]]
-|  c=fr | [[tomber]]
-|  c=de | [[fallen]]
-|  c=it | [[cadere]]
-|  c=es | [[caer]]
-|  c=nl | [[vallen]]
-|  c=sw | [[falla]]
-|  c=la | [[cadere]]
-|- 
-|  i=No | 128
-|  c=en | [[give]] *
-|  c=fr | [[donner]]
-|  c=de | [[geben]]
-|  c=it | [[dare]]
-|  c=es | [[dar]]
-|  c=nl | [[geven]]
-|  c=sw | [[ge]]
-|  c=la | [[dare]]
-|- 
-|  i=No | 129
-|  c=en | [[hold]]
-|  c=fr | [[tenir]]
-|  c=de | [[halten]]
-|  c=it | [[tenere]]
-|  c=es | [[sostener]]
-|  c=nl | [[houden]]
-|  c=sw | [[hålla]]
-|  c=la | [[tenere]]
-|- 
-|  i=No | 130
-|  c=en | [[squeeze]]
-|  c=fr | [[serrer]]
-|  c=de | [[quetschen]]
-|  c=it | [[spremere]]
-|  c=es | [[apretar]]
-|  c=nl | [[knijpen]]
-|  c=sw | [[klämma]]
-|  c=la | [[premere]]
-|- 
-|  i=No | 131
-|  c=en | [[rub]]
-|  c=fr | [[frotter]]
-|  c=de | [[reiben]]
-|  c=it | [[strofinare]]
-|  c=es | [[frotar]], [[restregar]]
-|  c=nl | [[wrijven]]
-|  c=sw | [[gnida]]
-|  c=la | [[fricare]]
-|- 
-|  i=No | 132
-|  c=en | [[wash]]
-|  c=fr | [[laver]]
-|  c=de | [[waschen]]
-|  c=it | [[lavare]]
-|  c=es | [[lavar]]
-|  c=nl | [[wassen]]
-|  c=sw | [[tvätta]]
-|  c=la | [[lavare]]
-|- 
-|  i=No | 133
-|  c=en | [[wipe]]
-|  c=fr | [[essuyer]]
-|  c=de | [[wischen]]
-|  c=it | [[asciugare]]
-|  c=es | [[limpiar]]
-|  c=nl | [[vegen]]
-|  c=sw | [[rensa]]
-|  c=la | [[tergere]]
-|- 
-|  i=No | 134
-|  c=en | [[pull]]
-|  c=fr | [[tirer]]
-|  c=de | [[ziehen]]
-|  c=it | [[tirare]]
-|  c=es | [[tirar]]
-|  c=nl | [[trekken]]
-|  c=sw | [[dra]]
-|  c=la | [[trahere]]
-|- 
-|  i=No | 135
-|  c=en | [[push]]
-|  c=fr | [[pousser]]
-|  c=de | [[drücken]]
-|  c=it | [[spingere]]
-|  c=es | [[empujar]]
-|  c=nl | [[duwen]]
-|  c=sw | [[trycka]]
-|  c=la | [[pellere]], [[urgere]]
-|- 
-|  i=No | 136
-|  c=en | [[throw]]
-|  c=fr | [[jeter]]
-|  c=de | [[werfen]]
-|  c=it | [[tirare]]
-|  c=es | [[tirar]]
-|  c=nl | [[werpen]], [[gooien]]
-|  c=sw | [[kasta]]
-|  c=la | [[iacere]]
-|- 
-|  i=No | 137
-|  c=en | [[tie]]
-|  c=fr | [[lier]]
-|  c=de | [[binden]]
-|  c=it | [[legare]]
-|  c=es | [[atar]]
-|  c=nl | [[binden]]
-|  c=sw | [[knyta]], [[binda]]
-|  c=la | [[stringere]], [[ligare]]
-|- 
-|  i=No | 138
-|  c=en | [[sew]]
-|  c=fr | [[coudre]]
-|  c=de | [[nähen]]
-|  c=it | [[cucire]]
-|  c=es | [[coser]]
-|  c=nl | [[naaien]]
-|  c=sw | [[sy]]
-|  c=la | [[suere]]
-|- 
-|  i=No | 139
-|  c=en | [[count]]
-|  c=fr | [[compter]]
-|  c=de | [[zählen]]
-|  c=it | [[contare]]
-|  c=es | [[contar]]
-|  c=nl | [[tellen]]
-|  c=sw | [[räkna]]
-|  c=la | [[numerare]]
-|- 
-|  i=No | 140
-|  c=en | [[say]] *
-|  c=fr | [[dire]]
-|  c=de | [[sagen]]
-|  c=it | [[dire]]
-|  c=es | [[decir]]
-|  c=nl | [[zeggen]]
-|  c=sw | [[säga]]
-|  c=la | [[dicere]]
-|- 
-|  i=No | 141
-|  c=en | [[sing]]
-|  c=fr | [[chanter]]
-|  c=de | [[singen]]
-|  c=it | [[cantare]]
-|  c=es | [[cantar]]
-|  c=nl | [[zingen]]
-|  c=sw | [[sjunga]]
-|  c=la | [[canere]]
-|- 
-|  i=No | 142
-|  c=en | [[play]]
-|  c=fr | [[jouer]]
-|  c=de | [[spielen]]
-|  c=it | [[giocare]]
-|  c=es | [[jugar]]
-|  c=nl | [[spelen]]
-|  c=sw | [[leka]], [[spela]]
-|  c=la | [[ludere]]
-|- 
-|  i=No | 143
-|  c=en | [[float]]
-|  c=fr | [[flotter]]
-|  c=de | [[schweben]]
-|  c=it | [[galleggiare]]
-|  c=es | [[flotar]]
-|  c=nl | [[zweven]]
-|  c=sw | [[flyta]]
-|  c=la | [[fluctuare]]
-|- 
-|  i=No | 144
-|  c=en | [[flow]]
-|  c=fr | [[couler]]
-|  c=de | [[fließen]]
-|  c=it | [[fluire]]
-|  c=es | [[fluir]]
-|  c=nl | [[vloeien]]
-|  c=sw | [[rinna]]
-|  c=la | [[fluere]]
-|- 
-|  i=No | 145
-|  c=en | [[freeze]]
-|  c=fr | [[geler]]
-|  c=de | [[frieren]]
-|  c=it | [[gelare]]
-|  c=es | [[helar]]
-|  c=nl | [[vriezen]]
-|  c=sw | [[frysa]]
-|  c=la | [[gelare]]
-|- 
-|  i=No | 146
-|  c=en | [[swell]]
-|  c=fr | [[gonfler]]
-|  c=de | [[schwellen]]
-|  c=it | [[gonfiare]]
-|  c=es | [[hincharse]]
-|  c=nl | [[zwellen]]
-|  c=sw | [[svälla]]
-|  c=la | [[inflare]]
-|- 
-|  i=No | 147
-|  c=en | [[sun]] *
-|  c=fr | [[soleil]]
-|  c=de | [[Sonne]]
-|  c=it | [[sole]]
-|  c=es | [[sol]]
-|  c=nl | [[zon]]
-|  c=sw | [[sol]]
-|  c=la | [[sol]]
-|- 
-|  i=No | 148
-|  c=en | [[moon]] *
-|  c=fr | [[lune]]
-|  c=de | [[Mond]]
-|  c=it | [[luna]]
-|  c=es | [[luna]]
-|  c=nl | [[maan]]
-|  c=sw | [[måne]]
-|  c=la | [[luna]]
-|- 
-|  i=No | 149
-|  c=en | [[star]] *
-|  c=fr | [[étoile]]
-|  c=de | [[Stern]]
-|  c=it | [[stella]]
-|  c=es | [[estrella]]
-|  c=nl | [[ster]]
-|  c=sw | [[stjärna]]
-|  c=la | [[stella]]
-|- 
-|  i=No | 150
-|  c=en | [[water]] *
-|  c=fr | [[eau]]
-|  c=de | [[Wasser]]
-|  c=it | [[acqua]]
-|  c=es | [[agua]]
-|  c=nl | [[water]]
-|  c=sw | [[vatten]]
-|  c=la | [[aqua]]
-|- 
-|  i=No | 151
-|  c=en | [[rain]] *
-|  c=fr | [[pluie]]
-|  c=de | [[Regen]]
-|  c=it | [[pioggia]]
-|  c=es | [[lluvia]]
-|  c=nl | [[regen]]
-|  c=sw | [[regn]]
-|  c=la | [[pluvia]]
-|- 
-|  i=No | 152
-|  c=en | [[river]]
-|  c=fr | [[rivière]]
-|  c=de | [[Fluß]]
-|  c=it | [[fiume]]
-|  c=es | [[río]]
-|  c=nl | [[rivier]]
-|  c=sw | [[flod]]
-|  c=la | [[fluvius]]
-|- 
-|  i=No | 153
-|  c=en | [[lake]]
-|  c=fr | [[lac]]
-|  c=de | [[See]]
-|  c=it | [[lago]]
-|  c=es | [[lago]]
-|  c=nl | [[lak]]
-|  c=sw | [[sjö]]
-|  c=la | [[lacus]]
-|- 
-|  i=No | 154
-|  c=en | [[sea]]
-|  c=fr | [[mer]]
-|  c=de | [[Meer]], [[See]]
-|  c=it | [[mare]]
-|  c=es | [[mar]]
-|  c=nl | [[zee]]
-|  c=sw | [[hav]]
-|  c=la | [[mare]]
-|- 
-|  i=No | 155
-|  c=en | [[salt]]
-|  c=fr | [[sel]]
-|  c=de | [[Salz]]
-|  c=it | [[sale]]
-|  c=es | [[sal]]
-|  c=nl | [[zout]]
-|  c=sw | [[salt]]
-|  c=la | [[sal]]
-|- 
-|  i=No | 156
-|  c=en | [[stone]] *
-|  c=fr | [[pierre]]
-|  c=de | [[Stein]]
-|  c=it | [[pietra]]
-|  c=es | [[piedra]]
-|  c=nl | [[steen]]
-|  c=sw | [[sten]]
-|  c=la | [[lapis]], [[petra]]
-|- 
-|  i=No | 157
-|  c=en | [[sand]] *
-|  c=fr | [[sable]]
-|  c=de | [[Sand]]
-|  c=it | [[sabbia]]
-|  c=es | [[arena]]
-|  c=nl | [[zand]]
-|  c=sw | [[sand]]
-|  c=la | [[arena]]
-|- 
-|  i=No | 158
-|  c=en | [[dust]]
-|  c=fr | [[poussière]]
-|  c=de | [[Staub]]
-|  c=it | [[polvere]]
-|  c=es | [[polvo]]
-|  c=nl | [[stof]]
-|  c=sw | [[damm]]
-|  c=la | [[pulvis]]
-|- 
-|  i=No | 159
-|  c=en | [[earth]] *
-|  c=fr | [[terre]]
-|  c=de | [[Erde]]
-|  c=it | [[terra]]
-|  c=es | [[tierra]]
-|  c=nl | [[aarde]]
-|  c=sw | [[jord]]
-|  c=la | [[terra]]
-|- 
-|  i=No | 160
-|  c=en | [[cloud]] *
-|  c=fr | [[nuage]]
-|  c=de | [[Wolke]]
-|  c=it | [[nuvola]]
-|  c=es | [[nube]]
-|  c=nl | [[wolk]]
-|  c=sw | [[moln]]
-|  c=la | [[nimbus]], [[nubes]]
-|- 
-|  i=No | 161
-|  c=en | [[fog]]
-|  c=fr | [[brouillard]]
-|  c=de | [[Nebel]]
-|  c=it | [[nebbia]]
-|  c=es | [[niebla]]
-|  c=nl | [[mist]], [[nevel]]
-|  c=sw | [[dimma]]
-|  c=la | [[caligo]], [[nebula]]
-|- 
-|  i=No | 162
-|  c=en | [[sky]]
-|  c=fr | [[ciel]]
-|  c=de | [[Himmel]]
-|  c=it | [[cielo]]
-|  c=es | [[cielo]]
-|  c=nl | [[lucht]]
-|  c=sw | [[himmel]]
-|  c=la | [[caelum]]
-|- 
-|  i=No | 163
-|  c=en | [[wind]]
-|  c=fr | [[vent]]
-|  c=de | [[Wind]]
-|  c=it | [[vento]]
-|  c=es | [[viento]]
-|  c=nl | [[wind]]
-|  c=sw | [[vind]]
-|  c=la | [[ventus]]
-|- 
-|  i=No | 164
-|  c=en | [[snow]]
-|  c=fr | [[neige]]
-|  c=de | [[Schnee]]
-|  c=it | [[neve]]
-|  c=es | [[nieve]]
-|  c=nl | [[sneeuw]]
-|  c=sw | [[snö]]
-|  c=la | [[nix]]
-|- 
-|  i=No | 165
-|  c=en | [[ice]]
-|  c=fr | [[glace]]
-|  c=de | [[Eis]]
-|  c=it | [[ghiaccio]]
-|  c=es | [[hielo]]
-|  c=nl | [[ijs]]
-|  c=sw | [[is]]
-|  c=la | [[glacies]]
-|- 
-|  i=No | 166
-|  c=en | [[smoke]] *
-|  c=fr | [[fumée]]
-|  c=de | [[Rauch]]
-|  c=it | [[fumo]]
-|  c=es | [[humo]]
-|  c=nl | [[rook]]
-|  c=sw | [[rök]]
-|  c=la | [[fumus]]
-|- 
-|  i=No | 167
-|  c=en | [[fire]] *
-|  c=fr | [[feu]]
-|  c=de | [[Feuer]]
-|  c=it | [[fuoco]]
-|  c=es | [[fuego]]
-|  c=nl | [[vuur]]
-|  c=sw | [[eld]]
-|  c=la | [[ignis]]
-|- 
-|  i=No | 168
-|  c=en | [[ashes]] *
-|  c=fr | [[cendres]]
-|  c=de | [[Asche]]
-|  c=it | [[ceneri]]
-|  c=es | [[cenizas]]
-|  c=nl | [[as]]
-|  c=sw | [[aska]]
-|  c=la | [[cineres]]
-|- 
-|  i=No | 169
-|  c=en | [[burn]] *
-|  c=fr | [[brûler]]
-|  c=de | [[brennen]]
-|  c=it | [[bruciare]]
-|  c=es | [[quemar]]
-|  c=nl | [[branden]]
-|  c=sw | [[brinna]]
-|  c=la | [[ardere]]
-|- 
-|  i=No | 170
-|  c=en | [[road]] *
-|  c=fr | [[route]]
-|  c=de | [[Straße]]
-|  c=it | [[strada]]
-|  c=es | [[camino]]
-|  c=nl | [[weg]]
-|  c=sw | [[väg]]
-|  c=la | [[via]]
-|- 
-|  i=No | 171
-|  c=en | [[mountain]] *
-|  c=fr | [[montagne]]
-|  c=de | [[Berg]]
-|  c=it | [[montagna]]
-|  c=es | [[montaña]]
-|  c=nl | [[berg]]
-|  c=sw | [[berg]]
-|  c=la | [[mons]]
-|- 
-|  i=No | 172
-|  c=en | [[red]] *
-|  c=fr | [[rouge]]
-|  c=de | [[rot]]
-|  c=it | [[rosso]]
-|  c=es | [[rojo]]
-|  c=nl | [[rode]]
-|  c=sw | [[röd]]
-|  c=la | [[ruber]]
-|- 
-|  i=No | 173
-|  c=en | [[green]] *
-|  c=fr | [[vert]]
-|  c=de | [[grün]]
-|  c=it | [[verde]]
-|  c=es | [[verde]]
-|  c=nl | [[groen]]
-|  c=sw | [[grön]]
-|  c=la | [[viridis]]
-|- 
-|  i=No | 174
-|  c=en | [[yellow]] *
-|  c=fr | [[jaune]]
-|  c=de | [[gelb]]
-|  c=it | [[giallo]]
-|  c=es | [[amarillo]]
-|  c=nl | [[geel]]
-|  c=sw | [[gul]]
-|  c=la | [[flavus]]
-|- 
-|  i=No | 175
-|  c=en | [[white]] *
-|  c=fr | [[blanc]]
-|  c=de | [[weiß]]
-|  c=it | [[bianco]]
-|  c=es | [[blanco]]
-|  c=nl | [[witte]]
-|  c=sw | [[vit]]
-|  c=la | [[albus]], [[candidus]]
-|- 
-|  i=No | 176
-|  c=en | [[black]] *
-|  c=fr | [[noir]]
-|  c=de | [[schwarz]]
-|  c=it | [[nero]]
-|  c=es | [[negro]]
-|  c=nl | [[zwart]]
-|  c=sw | [[svart]]
-|  c=la | [[niger]], [[ater]], [[fuscus]]
-|- 
-|  i=No | 177
-|  c=en | [[night]] *
-|  c=fr | [[nuit]]
-|  c=de | [[Nacht]]
-|  c=it | [[notte]]
-|  c=es | [[noche]]
-|  c=nl | [[nacht]]
-|  c=sw | [[natt]]
-|  c=la | [[nox]]
-|- 
-|  i=No | 178
-|  c=en | [[day]]
-|  c=fr | [[jour]]
-|  c=de | [[Tag]]
-|  c=it | [[giorno]]
-|  c=es | [[día]]
-|  c=nl | [[dag]]
-|  c=sw | [[dag]]
-|  c=la | [[dies]]
-|- 
-|  i=No | 179
-|  c=en | [[year]]
-|  c=fr | [[an]], [[année]]
-|  c=de | [[Jahr]]
-|  c=it | [[anno]]
-|  c=es | [[año]]
-|  c=nl | [[jaar]]
-|  c=sw | [[år]]
-|  c=la | [[annus]]
-|- 
-|  i=No | 180
-|  c=en | [[warm]] *
-|  c=fr | [[chaud]]
-|  c=de | [[warm]]
-|  c=it | [[caldo]]
-|  c=es | [[cálido]], [[tibio]]
-|  c=nl | [[warm]]
-|  c=sw | [[varm]]
-|  c=la | [[calidus]]
-|- 
-|  i=No | 181
-|  c=en | [[cold]] *
-|  c=fr | [[froid]]
-|  c=de | [[kalt]]
-|  c=it | [[freddo]]
-|  c=es | [[frío]]
-|  c=nl | [[koud]]
-|  c=sw | [[kall]]
-|  c=la | [[frigidus]]
-|- 
-|  i=No | 182
-|  c=en | [[full]] *
-|  c=fr | [[plein]]
-|  c=de | [[volle]]
-|  c=it | [[pieno]]
-|  c=es | [[lleno]]
-|  c=nl | [[volle]]
-|  c=sw | [[full]]
-|  c=la | [[plenus]]
-|- 
-|  i=No | 183
-|  c=en | [[new]] *
-|  c=fr | [[nouveau]]
-|  c=de | [[neu]]
-|  c=it | [[nuovo]]
-|  c=es | [[nuevo]]
-|  c=nl | [[nieuw]]
-|  c=sw | [[ny]]
-|  c=la | [[novus]]
-|- 
-|  i=No | 184
-|  c=en | [[old]]
-|  c=fr | [[vieux]]
-|  c=de | [[alt]]
-|  c=it | [[vecchio]]
-|  c=es | [[viejo]]
-|  c=nl | [[oud]]
-|  c=sw | [[gammal]]
-|  c=la | [[vetus]]
-|- 
-|  i=No | 185
-|  c=en | [[good]] *
-|  c=fr | [[bon]]
-|  c=de | [[gut]]
-|  c=it | [[buono]]
-|  c=es | [[bueno]]
-|  c=nl | [[goed]]
-|  c=sw | [[bra]]
-|  c=la | [[bonus]]
-|- 
-|  i=No | 186
-|  c=en | [[bad]]
-|  c=fr | [[mauvais]]
-|  c=de | [[schlecht]]
-|  c=it | [[cattivo]]
-|  c=es | [[malo]]<br>
-|  c=nl | [[slecht]]
-|  c=sw | [[dålig]]
-|  c=la | [[malus]]
-|- 
-|  i=No | 187
-|  c=en | [[rotten]]
-|  c=fr | [[pourri]]
-|  c=de | [[verrottet]]
-|  c=it | [[marcio]]
-|  c=es | [[podrido]]
-|  c=nl | [[rotten]]
-|  c=sw | [[rutten]]
-|  c=la | [[puter]], [[putridus]]
-|- 
-|  i=No | 188
-|  c=en | [[dirty]]
-|  c=fr | [[sale]]
-|  c=de | [[schmutzig]]
-|  c=it | [[sporco]]
-|  c=es | [[sucio]]
-|  c=nl | [[vies]]
-|  c=sw | [[smutsig]]
-|  c=la | [[sordidus]]
-|- 
-|  i=No | 189
-|  c=en | [[straight]]
-|  c=fr | [[droit]]
-|  c=de | [[gerade]]
-|  c=it | [[diritto]]
-|  c=es | [[recto]]
-|  c=nl | [[recht]]
-|  c=sw | [[rak]]
-|  c=la | [[rectus]]
-|- 
-|  i=No | 190
-|  c=en | [[round]] *
-|  c=fr | [[rond]]
-|  c=de | [[rund]]
-|  c=it | [[rotondo]]
-|  c=es | [[redondo]]
-|  c=nl | [[rond]]
-|  c=sw | [[rund]]
-|  c=la | [[rotundus]]
-|- 
-|  i=No | 191
-|  c=en | [[sharp]]
-|  c=fr | [[tranchant]], [[pointu]], [[aigu]]
-|  c=de | [[scharf]]
-|  c=it | [[aguzzo]], [[affilato]]
-|  c=es | [[afilado]]
-|  c=nl | [[scherp]]
-|  c=sw | [[vass]]
-|  c=la | [[acer]]
-|- 
-|  i=No | 192
-|  c=en | [[dull]]
-|  c=fr | [[émoussé]]
-|  c=de | [[stumpf]]
-|  c=it | [[noioso]]
-|  c=es | [[desafilado]]
-|  c=nl | [[stomp]], [[bot]]
-|  c=sw | [[slö]]
-|  c=la | [[hebes]]
-|- 
-|  i=No | 193
-|  c=en | [[smooth]]
-|  c=fr | [[lisse]]
-|  c=de | [[glatt]]
-|  c=it | [[liscio]]
-|  c=es | [[suave]], [[liso]]
-|  c=nl | [[glad]]
-|  c=sw | [[len]], [[slät]]
-|  c=la | [[levis]]
-|- 
-|  i=No | 194
-|  c=en | [[wet]]
-|  c=fr | [[mouillé]]
-|  c=de | [[nass]], [[feucht]]
-|  c=it | [[bagnato]]
-|  c=es | [[mojado]]
-|  c=nl | [[nat]]
-|  c=sw | [[våt]], [[blöt]]
-|  c=la | [[umidus]]
-|- 
-|  i=No | 195
-|  c=en | [[dry]] *
-|  c=fr | [[sec]]
-|  c=de | [[trocken]]
-|  c=it | [[asciutto]], [[secco]]
-|  c=es | [[seco]]
-|  c=nl | [[droog]]
-|  c=sw | [[torr]]
-|  c=la | [[siccus]]
-|- 
-|  i=No | 196
-|  c=en | [[correct]]
-|  c=fr | [[juste]], [[correct]]
-|  c=de | [[richtig]]
-|  c=it | [[corretto]]
-|  c=es | [[correcto]]
-|  c=nl | [[richting]], [[correct]]
-|  c=sw | [[rätt]], [[riktig]]
-|  c=la | [[rectus]]
-|- 
-|  i=No | 197
-|  c=en | [[near]]
-|  c=fr | [[proche]]
-|  c=de | [[nah]],<br>[[nahe]]
-|  c=it | [[vicino]]
-|  c=es | [[cerca]]
-|  c=nl | [[naar]]
-|  c=sw | [[nära]]
-|  c=la | [[propinquus]]
-|- 
-|  i=No | 198
-|  c=en | [[far]]
-|  c=fr | [[loin]]
-|  c=de | [[weit]], [[fern]]
-|  c=it | [[lontano]]
-|  c=es | [[lejos]]
-|  c=nl | [[ver]]
-|  c=sw | [[långt bort]], [[fjärran]]
-|  c=la | [[longinquus]]
-|- 
-|  i=No | 199
-|  c=en | [[right]]
-|  c=fr | [[à]] [[droite]]
-|  c=de | [[rechts]]
-|  c=it | [[destra]]
-|  c=es | [[derecha]]
-|  c=nl | [[rechts]]
-|  c=sw | [[höger]]
-|  c=la | [[dexter]]
-|- 
-|  i=No | 200
-|  c=en | [[left]]
-|  c=fr | [[à]] [[gauche]]
-|  c=de | [[links]]
-|  c=it | [[sinistra]]
-|  c=es | [[izquierda]]
-|  c=nl | [[links]]
-|  c=sw | [[vänster]]
-|  c=la | [[sinister]]
-|- 
-|  i=No | 201
-|  c=en | [[at]]
-|  c=fr | [[à]]
-|  c=de | [[bei]], [[an]]
-|  c=it | [[a]]
-|  c=es | [[a]], [[en]], [[ante]]
-|  c=nl | [[aan]], [[te]], [[bij]]
-|  c=sw | [[hos]], [[vid]]
-|  c=la | [[ad]]
-|- 
-|  i=No | 202
-|  c=en | [[in]]
-|  c=fr | [[dans]]
-|  c=de | [[in]]
-|  c=it | [[in]]
-|  c=es | [[en]]
-|  c=nl | [[in]]
-|  c=sw | [[i]]
-|  c=la | [[in]]
-|- 
-|  i=No | 203
-|  c=en | [[with]]
-|  c=fr | [[avec]]
-|  c=de | [[mit]]
-|  c=it | [[con]]
-|  c=es | [[con]]
-|  c=nl | [[met]]
-|  c=sw | [[med]]
-|  c=la | [[cum]]
-|- 
-|  i=No | 204
-|  c=en | [[and]]
-|  c=fr | [[et]]
-|  c=de | [[und]]
-|  c=it | [[e]]
-|  c=es | [[y]]
-|  c=nl | [[en]]
-|  c=sw | [[och]]
-|  c=la | [[et]]
-|- 
-|  i=No | 205
-|  c=en | [[if]]
-|  c=fr | [[si]]
-|  c=de | [[wenn]], [[falls]], [[ob]]
-|  c=it | [[se]]
-|  c=es | [[si]]
-|  c=nl | [[als]], [[indien]]
-|  c=sw | [[om]]
-|  c=la | [[si]]
-|- 
-|  i=No | 206
-|  c=en | [[because]]
-|  c=fr | [[parce que]]
-|  c=de | [[weil]]
-|  c=it | [[perché]]
-|  c=es | [[porque]]
-|  c=nl | [[omdat]]
-|  c=sw | [[eftersom]], [[ty]]
-|  c=la | [[quia]], [[quoniam]]
-|- 
-|  i=No | 207
-|  c=en | [[name]] *
-|  c=fr | [[nom]]
-|  c=de | [[Name]]
-|  c=it | [[nome]]
-|  c=es | [[nombre]]
-|  c=nl | [[naam]]
-|  c=sw | [[namn]]
-|  c=la | [[nomen]]
-|}
-
-
+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|}
 ***synonym***
-synonym: 
+synonym:
 
-===Adjective===
+<h3>Adjective</h3>
 {{de-adj|-}}
-
-# [[synonymous]]
-
-[[Category:de:Semantics]]
-----
-
-
+<ol><li> synonymous</li>
+</ol>
+Category:de:Semantics----
 ===translators===
-Wiktionary:Resources for translators: 
-* [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
-* [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
+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>
 
 ***UdSSR***
-UdSSR: 
+UdSSR:
 
-==={{abbreviation|German}}===
-'''UdSSR''' {{f}} (abbreviation of ''[[Union der Sozialistischen Sowjet-Republiken]]'')
-
-# [[USSR]]
-
-[[Category:German abbreviations]]
-
-[[de:UdSSR]]
-[[el:UdSSR]]
-[[fr:UdSSR]]
-[[lt:UdSSR]]
-[[hu:UdSSR]]
-[[pl:UdSSR]]
-[[pt:UdSSR]]
+<h3>{{abbreviation|German}}</h3>
+<b>UdSSR</b> {f} (abbreviation of <em>Union der Sozialistischen Sowjet-Republiken</em>)
+<ol><li> USSR</li>
+</ol>
+Category:German abbreviationsde:UdSSRel:UdSSRfr:UdSSRlt:UdSSRhu:UdSSRpl:UdSSRpt:UdSSR
 ***Uhr***
-Uhr: 
+Uhr:
 
-===Pronunciation===
-* {{IPA|/ʔuːɐ̯/|lang=de}}
-* {{audio|De-Uhr.ogg|audio (Germany)}}
-* {{audio|De-at-Uhr.ogg|audio (Austria)}}
-* {{homophones|ur-|Ur}}
-* {{rhymes|uːɐ̯|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ʔuːɐ̯/|lang=de}}</li>
+<li> {{audio|De-Uhr.ogg|audio (Germany)}}</li>
+<li> {{audio|De-at-Uhr.ogg|audio (Austria)}}</li>
+<li> {{homophones|ur-|Ur}}</li>
+<li> {{rhymes|uːɐ̯|lang=de}}</li>
+</ul>
 
-===Noun===
+<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> ~uhr: an instrument to measure something passing by (compare Wasseruhr, Gasuhr)</li>
+</ol>
 
-# [[clock]], [[watch]]
-# [[hour]], as in ''Es ist fünf Uhr'' (it is five o'clock)
-# ~uhr: an instrument to measure something passing by (compare [[Wasseruhr]], [[Gasuhr]])
-
-====Declension====
+<h4>Declension</h4>
 {{de-noun-f|en}}
-
-====Derived terms====
-* [[Kontrolluhr]]
-* [[rund um die Uhr]]
-* [[Stechuhr]]
-* [[Stempeluhr]]
-* [[Uhrmacher]]
-* [[Uhrwerk]]
-
-----
-
-
-Uhr: 
-
-===Noun===
-{{nds-noun}}
-
-# {{alternative spelling of|Ur|lang=nds}}
-
-[[br:Uhr]]
-[[cs:Uhr]]
-[[de:Uhr]]
-[[el:Uhr]]
-[[fr:Uhr]]
-[[ko:Uhr]]
-[[hr:Uhr]]
-[[io:Uhr]]
-[[id:Uhr]]
-[[it:Uhr]]
-[[ky:Uhr]]
-[[ku:Uhr]]
-[[lo:Uhr]]
-[[lt:Uhr]]
-[[hu:Uhr]]
-[[ja:Uhr]]
-[[no:Uhr]]
-[[oc:Uhr]]
-[[pl:Uhr]]
-[[ro:Uhr]]
-[[ru:Uhr]]
-[[fi:Uhr]]
-[[sv:Uhr]]
-[[zh:Uhr]]
+<h4>Derived terms</h4>
+<ul><li> Kontrolluhr</li>
+<li> rund um die Uhr</li>
+<li> Stechuhr</li>
+<li> Stempeluhr</li>
+<li> Uhrmacher</li>
+<li> Uhrwerk</li>
+</ul>
+----
+Uhr:
+
+<h3>Noun</h3>
+{nds-noun}
+<ol><li> {{alternative spelling of|Ur|lang=nds}}</li>
+</ol>
+br:Uhrcs:Uhrde:Uhrel:Uhrfr:Uhrko:Uhrhr:Uhrio:Uhrid:Uhrit:Uhrky:Uhrku:Uhrlo:Uhrlt:Uhrhu:Uhrja:Uhrno:Uhroc:Uhrpl:Uhrro:Uhrru:Uhrfi:Uhrsv:Uhrzh:Uhr
 ***um***
-um: 
+um:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|goh|de}} {{term|umbi|lang=goh}}, from {{proto|Germanic|umbi|lang=de}}.
-
-===Pronunciation===
-* {{IPA|/ʊm/|lang=de}}, {{X-SAMPA|/Um/}}
-* {{audio|De-um.ogg|audio (Germany)}}
-* {{audio|De-at-um.ogg|audio (Austria)}}
-
-===Preposition===
-{{head|de|preposition}} + ''accusative''
-
-# [[about]], used with ''[[es]] [[geht]]''
-#: Es geht um den Kuchen. (''It's about the pie.'')
-# [[around]]
-#: '''''Um''' die Ecke''
-#:: around the corner
-# [[at|At]] when relating to time (because the hands of a clock go ''around'', the clock)
-#: '''''Um''' acht Uhr reisen wir ab''
-#:: At eight o’clock we depart
-# Used as a conjunction of purpose
-#: '''''um''' zu''
-#:: so as to
-
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ʊm/|lang=de}}, {{X-SAMPA|/Um/}}</li>
+<li> {{audio|De-um.ogg|audio (Germany)}}</li>
+<li> {{audio|De-at-um.ogg|audio (Austria)}}</li>
+</ul>
+
+<h3>Preposition</h3>
+{{head|de|preposition}} + <em>accusative</em>
+<ol><li> about, used with <em>es geht</em></li>
+<ul><li> Es geht um den Kuchen. (<em>It's about the pie.</em>)</li>
+</ul>
+<li> around</li>
+<ul><li> <b><em>Um</b> die Ecke</em></li>
+<ul><li> around the corner</li>
+</ul>
+</ul>
+<li> At when relating to time (because the hands of a clock go <em>around</em>, the clock)</li>
+<ul><li> <b><em>Um</b> acht Uhr reisen wir ab</em></li>
+<ul><li> At eight o’clock we depart</li>
+</ul>
+</ul>
+<li> Used as a conjunction of purpose</li>
+<ul><li> <b><em>um</b> zu</em></li>
+<ul><li> so as to</li>
+</ul>
+</ul>
+</ol>
 ----
-
-
 ***umsonst***
-umsonst: 
-
-===Adverb===
-'''umsonst'''
-
-# [[free]] of charge, [[gratis]]
-# having done something [[without]] [[success]]
-
-===See also===
-*[[frei]]
-*[[kostenlos]]
-
-[[Category:German adverbs]]
-
-[[de:umsonst]]
-[[fr:umsonst]]
-[[io:umsonst]]
-[[hu:umsonst]]
-[[pl:umsonst]]
-[[zh:umsonst]]
+umsonst:
+
+<h3>Adverb</h3>
+<b>umsonst</b>
+<ol><li> free of charge, gratis</li>
+<li> having done something without success</li>
+</ol>
+
+<h3>See also</h3>
+<ul><li>frei</li>
+<li>kostenlos</li>
+</ul>
+Category:German adverbsde:umsonstfr:umsonstio:umsonsthu:umsonstpl:umsonstzh:umsonst
 ***urban***
-urban: 
+urban:
 
-===Pronunciation===
-* {{IPA|/ˈʊɐ̯ban/|lang=de}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈʊɐ̯ban/|lang=de}}</li>
+</ul>
 
-===Adjective===
+<h3>Adjective</h3>
 {{de-adj|comparative=urbaner|superlative=urbansten}}
+<ol><li> urban</li>
+</ol>
 
-# [[urban#English|urban]]
-
-====Synonyms====
-* [[städtisch]]
-
+<h4>Synonyms</h4>
+<ul><li> städtisch</li>
+</ul>
 ----
-
-
 ***wage***
-wage: 
+wage:
 
-===Verb===
+<h3>Verb</h3>
 {{head|de}}
-
-# {{de-verb form of|wagen|1|s|g}}
-# {{de-verb form of|wagen|1|s|k1}}
-# {{de-verb form of|wagen|3|s|k1}}
-# {{de-verb form of|wagen|i|s}}
-
-[[bg:wage]]
-[[cs:wage]]
-[[de:wage]]
-[[et:wage]]
-[[el:wage]]
-[[es:wage]]
-[[fa:wage]]
-[[fr:wage]]
-[[fy:wage]]
-[[ko:wage]]
-[[io:wage]]
-[[id:wage]]
-[[is:wage]]
-[[it:wage]]
-[[kn:wage]]
-[[ka:wage]]
-[[sw:wage]]
-[[ku:wage]]
-[[lo:wage]]
-[[li:wage]]
-[[hu:wage]]
-[[mg:wage]]
-[[ml:wage]]
-[[my:wage]]
-[[nl:wage]]
-[[ja:wage]]
-[[oc:wage]]
-[[pl:wage]]
-[[pt:wage]]
-[[ru:wage]]
-[[simple:wage]]
-[[fi:wage]]
-[[sv:wage]]
-[[ta:wage]]
-[[te:wage]]
-[[vi:wage]]
-[[zh:wage]]
+<ol><li> {{de-verb form of|wagen|1|s|g}}</li>
+<li> {{de-verb form of|wagen|1|s|k1}}</li>
+<li> {{de-verb form of|wagen|3|s|k1}}</li>
+<li> {{de-verb form of|wagen|i|s}}</li>
+</ol>
+bg:wagecs:wagede:wageet:wageel:wagees:wagefa:wagefr:wagefy:wageko:wageio:wageid:wageis:wageit:wagekn:wageka:wagesw:wageku:wagelo:wageli:wagehu:wagemg:wageml:wagemy:wagenl:wageja:wageoc:wagepl:wagept:wageru:wagesimple:wagefi:wagesv:wageta:wagete:wagevi:wagezh:wage
 ***war***
-war: 
-
-===Pronunciation===
-* {{IPA|/vaːɐ̯/|lang=de}}
-* {{audio|De-war.ogg|audio}}
-* {{homophones|wahr|lang=de}}
-
-===Verb===
-{{de-verb form}}
-
-# {{de-verb form of|sein|1|s|v}}
-#* '''1788''': Johann Wolfgang von Goethe, ''Egmont''
-#*: Ich hätte ihn heiraten können, und glaube, ich [http://www.gutenberg.org/dirs/etext00/8gmnt10.txt war] nie in ihn verliebt.
-#*:: I could have married him; yet I believe I [http://www.gutenberg.org/files/1945/1945.txt was] never really in love with him.
-# {{de-verb form of|sein|3|s|v}}
-#* '''1788''': Johann Wolfgang von Goethe, ''Egmont''
-#*: Gott tröst' ihn! Das [http://www.gutenberg.org/dirs/etext00/8gmnt10.txt war] ein Herr!
-#*:: God bless him! He [http://www.gutenberg.org/files/1945/1945.txt was] a king indeed!
-
-----
-
-
-war: 
-
-===Alternative forms===
-* {{qualifier|Low Prussian}} [[wahr]]
-
-===Etymology===
-Cognate to {{etyl|de|-}} [[wahr]].
-
-===Adjective===
+war:
+
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/vaːɐ̯/|lang=de}}</li>
+<li> {{audio|De-war.ogg|audio}}</li>
+<li> {{homophones|wahr|lang=de}}</li>
+</ul>
+
+<h3>Verb</h3>
+{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> 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> God bless him! He [http://www.gutenberg.org/files/1945/1945.txt was] a king indeed!</li>
+</ul>
+</ul>
+</ul>
+</ol>
+----
+war:
+
+<h3>Alternative forms</h3>
+<ul><li> {{qualifier|Low Prussian}} wahr</li>
+</ul>
+
+<h3>Etymology</h3>
+Cognate to {{etyl|de|-}} wahr.
+<h3>Adjective</h3>
 {{head|nds|adjective}}
-
-# {{context|in some dialects|lang=nds}} [[true]]
-
-----
-
-
-war: 
-
-===Adjective===
-'''wār'''
-
-# [[true]]
-
-[[Category:Old High German adjectives]]
-
+<ol><li> {{context|in some dialects|lang=nds}} true</li>
+</ol>
 ----
+war:
 
-
+<h3>Adjective</h3>
+<b>wār</b>
+<ol><li> true</li>
+</ol>
+Category:Old High German adjectives----
 ===Wiktionary===
-Wiktionary:Resources for translators: 
-* [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
-* [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
+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>
 
 ***wolf***
-wolf: 
-
-===Noun===
-'''wolf''' {{m}}
-
-# [[#English|wolf]]
-
-[[Category:Middle High German nouns]]
-[[Category:gmh:Mammals]]
-
-----
-
+wolf:
 
+<h3>Noun</h3>
+<b>wolf</b> {m}
+<ol><li> wolf</li>
+</ol>
+Category:Middle High German nounsCategory:gmh:Mammals----
 ***zwei***
-zwei: 
+zwei:
 
-===Number===
+<h3>Number</h3>
 {{head|gsw|number}}
-
-# {{cardinal|lang=gsw}} [[two]]
-
+<ol><li> {{cardinal|lang=gsw}} two</li>
+</ol>
 ----
-
-
-zwei: 
+zwei:
 {{cardinalbox|de|1|2|3|eins|drei|ord=zweite}}
-
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|goh|de}} {{term|zwene|zwēne|lang=goh}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/tsvaɪ̯/|lang=de}}</li>
+<li> {{audio|De-zwei.ogg|audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/tsvaɪ̯/|lang=de}}
-* {{audio|De-zwei.ogg|audio}}
-
-===Numeral===
+<h3>Numeral</h3>
 {{head|de|numeral}}
-
-# [[two]]
-
-====Synonyms====
-* [[zwo]]
-
-====Related terms====
-* [[zwanzig]]
-* [[zwölf]]
-
-[[Category:German cardinal numbers]]
-
-[[ast:zwei]]
-[[az:zwei]]
-[[bs:zwei]]
-[[br:zwei]]
-[[cs:zwei]]
-[[cy:zwei]]
-[[de:zwei]]
-[[et:zwei]]
-[[el:zwei]]
-[[es:zwei]]
-[[eo:zwei]]
-[[eu:zwei]]
-[[fr:zwei]]
-[[fy:zwei]]
-[[ga:zwei]]
-[[gl:zwei]]
-[[ko:zwei]]
-[[hy:zwei]]
-[[hr:zwei]]
-[[io:zwei]]
-[[id:zwei]]
-[[is:zwei]]
-[[it:zwei]]
-[[ka:zwei]]
-[[ku:zwei]]
-[[lv:zwei]]
-[[lb:zwei]]
-[[lt:zwei]]
-[[hu:zwei]]
-[[mg:zwei]]
-[[fj:zwei]]
-[[nl:zwei]]
-[[ja:zwei]]
-[[no:zwei]]
-[[nn:zwei]]
-[[pl:zwei]]
-[[pt:zwei]]
-[[ru:zwei]]
-[[fi:zwei]]
-[[sv:zwei]]
-[[ta:zwei]]
-[[th:zwei]]
-[[tr:zwei]]
-[[tk:zwei]]
-[[uk:zwei]]
-[[za:zwei]]
-[[vi:zwei]]
-[[zh:zwei]]
+<ol><li> two</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> zwo</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> zwanzig</li>
+<li> zwö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: EN EN->DE
 
index 3a99d96e3dd766141b1510be28f3b98471849b92..1064aa777662ad655d13eff7ba22e2fe38436b24 100644 (file)
@@ -3,20404 +3,7600 @@ EntrySource: wiktionary.WholeSection.EN.quickdic 130
 
 Index: EN EN->EN
 ***A***
-A: 
-
-===Etymology 1===
-[[Image:Runic letter ansuz.png|left|30px|Runic letter {{term||ᚫ|tr=a|ansuz}}, source for Anglo-Saxon Futhorc letters replaced by ''A'']]
-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}}.
-:* [[Image:Rune-Ac.png|10px|Anglo-Saxon Futhorc letter {{term||ᚪ|tr=a|āc}}]] {{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|sc=unicode|ᚪ||tr=a|āc}}, derived from Runic letter {{term|sc=unicode|ᚫ||tr=a|Ansuz}}.
-:* [[Image:Rune-Æsc.png|10px|Anglo-Saxon Futhorc letter {{term||ᚫ|tr=æ|æsc}}]] {{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=unicode|ᚫ||tr=æ|æsc}}, also derived from Runic letter {{term|sc=unicode|ᚫ||tr=a|Ansuz}}.
-
-====Alternative forms====
-* {{qualifier|Gregg shorthand versions [[w:Gregg Shorthand#Centennial Gregg Shorthand|Centennial]],[[w:Gregg Shorthand#Series 90 Gregg Shorthand|Series 90]], [[w:Gregg Shorthand#Diamond Jubilee Gregg Shorthand|DJS]], [[w:Gregg Shorthand#Simplified Gregg Shorthand|Simplified]], [[w:Gregg Shorthand#Anniversary Gregg Shorthand|Anniversary]], and [[w:Gregg Shorthand#Pre-Anniversary Gregg Shorthand|Pre-Anniversary]]}} {{l|mul|·|gloss=dot}}
-
-====Pronunciation====
-* {{qualifier|letter name}}
-** {{a|RP|GenAm}} {{IPA|/eɪ̯/}}, {{X-SAMPA|/eI/}}
-** {{audio|en-us-a.ogg|Audio (US)}}
-** {{a|AusE}} {{IPA|/æɪ/}}, {{X-SAMPA|/{I/}}
-* {{rhymes|eɪ}}
-*: 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.
-
-====Letter====
+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}}.
+<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>
+</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>
+
+<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>
+</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>
+</ul>
+</ul>
+
+<h4>Letter</h4>
 {{en-letter|upper=A|lower=a}}
-
-# {{Latn-def|en|letter|1|a}}
-#: ''Apple starts with '''A'''.''
-
-=====Related terms=====
-* [[A-frame|A frame]]
-* [[ABC]], [[A.B.C.]] <!-- also in the plural -->
-* [[A to Z]]
-
-=====See also=====
-* {{list|en|Latin script letters}}
-
-====Number====
+<ol><li> {{Latn-def|en|letter|1|a}}</li>
+<ul><li> <em>Apple starts with <b>A</b>.</em></li>
+</ul>
+</ol>
+
+<h5>Related terms</h5>
+<ul><li> A frame</li>
+<li> ABC, A.B.C. </li>
+<li> A to Z</li>
+</ul>
+
+<h5>See also</h5>
+<ul><li> {{list|en|Latin script letters}}</li>
+</ul>
+
+<h4>Number</h4>
 {{en-number|upper=A|lower=a}}
-
-# {{Latn-def|en|ordinal|1|a}}
-#: The item '''A''' is "foods", the item B is "drinks".
-
-===Etymology 2===
-* {{sense|highest rank|grade|music}} From the initial position of the letter {{term|A}} in the English alphabet.
-* {{sense|blood type}} From {{term|w:ABO blood group system|A antigen}}
-* {{sense|vehicle-distinguishing signs}} From {{term|Australia}}
-
-====Symbol====
-{{en-symbol}}
-
-# The highest rank on any of various scales that assign letters.
-#: ''We assign each item inspected a rating from '''A''' through G, depending on various factors.''
-# {{context|education}} The highest [[letter grade]] assigned (disregarding plusses and minuses).
-#: ''I was so happy to get an '''A''' on that test.''
-# {{music}} A tone three fifths above C in the [[cycle of fifths]]; the sixth tone of the C major scale; the reference tone that occurs at exactly 440 Hz.
-#: ''Orchestras traditionally tune to a concert '''A'''.''
-# {{medicine}} A [[blood type]] that has a specific antigen that aggravates the immune response in people with type [[B]] antigen in their blood. They may receive blood from type A or type [[O]], but cannot receive blood from [[AB]] or [[B]].
-#: ''My blood type is '''A''' negative.''
-# {{context|vehicle-distinguishing signs}} [[Austria]]
-
-=====Derived terms=====
+<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>
+</ol>
+
+<h3>Etymology 2</h3>
+<ul><li> {{sense|highest rank|grade|music}} From the initial position of the letter {{term|A}} in the English alphabet.</li>
+<li> {{sense|blood type}} From {{term|w:ABO blood group system|A antigen}}</li>
+<li> {{sense|vehicle-distinguishing signs}} From {{term|Australia}}</li>
+</ul>
+
+<h4>Symbol</h4>
+{en-symbol}
+<ol><li> The highest rank on any of various scales that assign letters.</li>
+<ul><li> <em>We assign each item inspected a rating from <b>A</b> through G, depending on various factors.</em></li>
+</ul>
+<li> {{context|education}} The highest letter grade assigned (disregarding plusses and minuses).</li>
+<ul><li> <em>I was so happy to get an <b>A</b> on that test.</em></li>
+</ul>
+<li> {music} A tone three fifths above C in the cycle of fifths; the sixth tone of the C major scale; the reference tone that occurs at exactly 440 Hz.</li>
+<ul><li> <em>Orchestras traditionally tune to a concert <b>A</b>.</em></li>
+</ul>
+<li> {medicine} A blood type that has a specific antigen that aggravates the immune response in people with type B antigen in their blood. They may receive blood from type A or type O, but cannot receive blood from AB or B.</li>
+<ul><li> <em>My blood type is <b>A</b> negative.</em></li>
+</ul>
+<li> {{context|vehicle-distinguishing signs}} Austria</li>
+</ol>
+
+<h5>Derived terms</h5>
 {{rel-top|Rank or size}}
-* [[AA]]
-* [[double A]]
-* [[AAA]]
-* [[triple A]]
-* [[A cup]]
-{{rel-mid}}
-* [[A game]]
-* [[A levels]]
-* [[A list]]
-* [[A team]]
-* [[grade A]]
-{{rel-bottom}}
-
-{{rel-top|Letter grade}}
-* [[straight A's]]
-{{rel-mid}}
-* [[A minus]]
-* [[A plus]]
-{{rel-bottom}}
-
-{{rel-top|(music) tone three fifths above C}}
-* [[A-flat]]
-* [[A major]]
-* [[A-minor]]
-{{rel-mid}}
-* [[A-sharp]]
-* [[concert A]]
-{{rel-bottom}}
-
-{{rel-top|Blood type}}
-* [[A positive]]
-* [[A negative]]
-{{rel-bottom}}
-
-====Abbreviation====
-{{en-abbr}}
-
-# {{context|Webster 1913}} [[adjective|Adjective]].
-# {{context|often with ‘Q’ for “Question”}} [[answer|Answer]]
-# [[Asian]]
-# [[admit|Admit]]
-# [[application|Application]]
-# [[asynchron]]
-# [[Augsburg]]
-# {{physics}} [[angstrom]]
-# {{context|weaponry}} [[atom]]
-# {{sports}} An [[assist]]
-# {{geometry}} [[area|Area]]
-# [[acre|Acre]]
-# [[ammeter|Ammeter]]
-# [[ace|Ace]]
-
-=====Synonyms=====
-* {{sense|physics|angstrom}} [[Å]]
-
-=====Derived terms=====
-* {{sense|weaponry|atom}} [[A-bomb]]
-
-====Statistics====
-* {{rank|little|now|then|79|A|should|can|made}}
-
+<ul><li> AA</li>
+<li> double A</li>
+<li> AAA</li>
+<li> triple A</li>
+<li> A cup</li>
+</ul>
+{rel-mid}
+<ul><li> A game</li>
+<li> A levels</li>
+<li> A list</li>
+<li> A team</li>
+<li> grade A</li>
+</ul>
+{rel-bottom}{{rel-top|Letter grade}}
+<ul><li> straight A's</li>
+</ul>
+{rel-mid}
+<ul><li> A minus</li>
+<li> A plus</li>
+</ul>
+{rel-bottom}{{rel-top|(music) tone three fifths above C}}
+<ul><li> A-flat</li>
+<li> A major</li>
+<li> A-minor</li>
+</ul>
+{rel-mid}
+<ul><li> A-sharp</li>
+<li> concert A</li>
+</ul>
+{rel-bottom}{{rel-top|Blood type}}
+<ul><li> A positive</li>
+<li> A negative</li>
+</ul>
+{rel-bottom}
+<h4>Abbreviation</h4>
+{en-abbr}
+<ol><li> {{context|Webster 1913}} Adjective.</li>
+<li> {{context|often with ‘Q’ for “Question”}} Answer</li>
+<li> Asian</li>
+<li> Admit</li>
+<li> Application</li>
+<li> asynchron</li>
+<li> Augsburg</li>
+<li> {physics} angstrom</li>
+<li> {{context|weaponry}} atom</li>
+<li> {sports} An assist</li>
+<li> {geometry} Area</li>
+<li> Acre</li>
+<li> Ammeter</li>
+<li> Ace</li>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|physics|angstrom}} Å</li>
+</ul>
+
+<h5>Derived terms</h5>
+<ul><li> {{sense|weaponry|atom}} A-bomb</li>
+</ul>
+
+<h4>Statistics</h4>
+<ul><li> {{rank|little|now|then|79|A|should|can|made}}</li>
+</ul>
 ----
-
-
 ***adjectival***
-adjectival: 
+adjectival:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{suffix|adjective|al}}.
-
-===Pronunciation===
-* {{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>
-* {{a|US}} {{IPA|/ædʒəkˈtaɪvəl/}}
-* {{audio|En-us-adjectival.ogg|Audio (US)}}
-
-===Adjective===
-{{en-adj}}
-
-# {{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>.
-# {{legal}} Of or relating to [[procedure]], especially to technicalities thereof.
-
-====Translations====
-{{trans-top|of or relating to or functioning as an adjective}}
-* Asturian: {{t|ast|axetivu}}
-* Catalan: {{t+|ca|adjectiu}}
-* Czech: {{t|cs|adjektivní}}
-* Dutch: {{t-|nl|bijvoeglijk}}
-* Finnish: {{t|fi|adjektiivi|alt=adjektiivi-}}, {{t|fi|adjektiivinen}}
-* French: {{t+|fr|adjectival}}
-* Galician: {{t|gl|adxectivo}}
-* German: {{t|de|adjektivisch}}, {{t|de|Adjektiv|alt=Adjektiv-}}
-* Interlingua: {{t|ia|adjective}}, {{t|ia|adjectival}}
-* Manx: {{t|gv|marennymagh}}
-{{trans-mid}}
-* Novial: {{t|nov|adjektivi}}, {{t|nov|adjektival}}
-* Portuguese: {{t|pt|adjetivo}} {{qualifier|Brazil}}
-* Romanian: {{t-|ro|adjectival}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|придјевски|alt=при́дјевскӣ}}
-*: Roman: {{t|sh|pridjevski|alt=prídjevskī}}
-* Slovene: {{t-|sl|pridevniški|alt=pridévniški}},  {{t|sl|adjektiven|alt=ádjektiven}}
-* Spanish: {{t|es|adjetival}}
-* Volapük: {{t|vo|ladyekik}}
-{{trans-bottom}}
-
-===Noun===
-{{en-noun}}
-
-# An [[#adjective|adjectival]] phrase or clause.
-
-===References===
-<references/>
-
-----
-
-
+<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>
+<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>
+<li> {legal} Of or relating to procedure, especially to technicalities thereof.</li>
+</ol>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> An adjectival phrase or clause.</li>
+</ol>
+
+<h3>References</h3>
+<references/>----
 ***adjective***
-adjective: 
+adjective:
 
-===Etymology===
-From {{etyl|fro}} {{term|adjectif}}, from {{etyl|la}} {{term|adiectivus|adiectīvum|lang=la}}, from {{term|ad||next to|lang=la}} + {{term|iectus|-iect-|lang=la}}, perfect passive participle of {{term|iacio|iaciō|throw|lang=la}} + {{term|-ivus|-īvus|lang=la}}, adjective ending; hence, a word "thrown next to" a noun, modifying it.
+<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.
+<h3>Pronunciation</h3>
+<ul><li> {{audio|En-us-adjective.ogg|Audio (US)}}</li>
+</ul>
 
-===Pronunciation===
-* {{audio|En-us-adjective.ogg|Audio (US)}}
-
-===Adjective===
+<h3>Adjective</h3>
 {{en-adj|-|-}}
-
-# {{obsolete}} Incapable of independent function.
-#* '''1899''', [[w:John Jay Chapman|John Jay Chapman]], ''Emerson and Other Essays'', AMS Press (1969) (as [http://www.gutenberg.org/etext/13088 reproduced] in Project Gutenberg)
-#*: In fact, God is of not so much importance in Himself, but as the end towards which man tends. That irreverent person who said that Browning uses “God” as a pigment made an accurate criticism of his theology. In Browning, God is '''adjective''' to man.
-# {{grammar}} [[adjectival|Adjectival]]; pertaining to or functioning as an adjective.
-# {{legal}} Applying to methods of enforcement and rules of procedure.
-#: '''''adjective''' law''
-# {{chemistry}} Of a [[dye]] that needs the use of a [[mordant]] to be made [[fast]] to that which is being dyed.
-
-====Synonyms====
-* {{sense|incapable of independent function}} [[dependent]], [[derivative]]
-* {{sense|functioning as an adjective}} [[adjectival]]
-* {{sense|applying to methods of enforcement and rules of procedure}} [[procedural]]
-
-====Antonyms====
-* {{sense|applying to methods of enforcement and rules of procedure}} [[substantive]]
-* {{sense|of a dye that needs the use of a mordant}} [[substantive]]
-
-====Derived terms====
-* [[adjectival]]
-* [[adjective clause]]
-* [[adjective phrase]]
-* [[adjective patterns]]
-* [[proper adjective]]
-
-====Translations====
-{{trans-top|incapable of independent function}}
-* Catalan: {{t+|ca|adjectiu}}
-* Japanese: {{t|ja|非独立性|alt=非独立性の}}, {{t|ja|依存性|alt=依存性の}}
-{{trans-mid}}
-* Kurdish:
-*: Kurmanji: {{t|kmr|rengdêr|f}}
-{{trans-bottom}}
-
-{{trans-top|functioning as an adjective}}
-* Afrikaans: {{t|af|byvoeglike|xs=Afrikaans}}
-* Albanian: [[mbiemër]]
-* Arabic: {{t|ar|وصفي|وَصْفِيّ|tr=wáʂfiy}}, {{t|ar|نعتي|نَعْتِيّ|tr=náʕtiy}}
-* Armenian: {{t-|hy|ածական|tr=açakan}}
-* Asturian: {{t|ast|axetivu|m}}
-* Azeri: {{t|az|sıfət}}
-* {{trreq|ba}}
-* {{trreq|eu}}
-* {{trreq|be}}
-* {{trreq|bn}}
-* Catalan: {{t+|ca|adjectiu}}
-* {{trreq|ce}}
-* Chinese:
-*: Cantonese: {{tø|yue|形容詞的|sc=Hani|xs=Cantonese}}
-*: {{trreq|gan}}
-*: {{trreq|hak}}
-*: Mandarin: {{t|cmn|形容词的|sc=Hani}}
-*: {{trreq|cdo}}
-*: {{trreq|nan}}
-*: {{trreq|wuu}}
-* Czech: {{t|cs|přídavné jméno|n}}
-* Danish: {{t+|da|adjektiv|n}}
-* Dutch: [[bijvoeglijk]], [[adjectivisch]]
-* Esperanto: {{t|eo|adjektivo}}
-* Faroese: {{t|fo|lýsingarorð|n}}
-* Finnish: [[adjektiivi]] (in compound words), [[adjektiivinen]] (otherwise)
-* French: {{t+|fr|adjectif}}
-* German: {{t|de|adjektivisch}}
-* Greek: {{t+|el|επιθετικός|tr=epithetikós}}
-* Hebrew: {{t|he|תואר השם|sc=Hebr}}
-* {{trreq|hi}}
-* Hungarian: {{t-|hu|melléknévi}}
-* Icelandic: {{t|is|lýsingarorð}}
-* {{trreq|io}}
-* Indonesian: {{t|id|kata sifat|xs=Indonesian}}
-* Interlingua: [[adjective#Interlingua|adjective]], [[adjectival]]
-* {{trreq|ie}}
-* Irish: {{t|ga|aidiachtach|xs=Irish}}
-* Italian: {{t+|it|aggettivale}}
-{{trans-mid}}
-* Japanese: {{t+|ja|形容詞|[[けいようし]]の, keiyōshi no|alt=形容詞の}}, {{t|ja|形容する|tr=keiyō-suru}}
-* {{trreq|jv}}
-* {{trreq|ks}}
-* Kazakh: {{t|kk|сын есім|sc=Cyrl}}
-* Khmer: {{t|km|គុណនាម|tr=kunnaneam|sc=Khmr}}
-* Korean: [[형용사]] (hyeong-yongsa)
-* {{trreq|ku}}
-* {{trreq|ky}}
-* Latin: {{t-|la|adjectivum}}
-* Macedonian: {{t|mk|придавен|m|tr=prídaven}}, {{t|mk|придавски|m|tr=prídavski}}
-* Malay: {{t|ms|kata sifat}}
-* {{trreq|ne}}
-* Novial: [[adjektivi]], [[adjektival]]
-* Persian: {{t|fa|وصفی|tr=vasfi|sc=fa-Arab}}
-* Polish: [[przymiotnikowy]]
-* Portuguese: [[adjectivo]] {{qualifier|Portugal}}, [[adjetivo]] {{qualifier|Brazil}}
-* Quechua: {{t|qu|sutip rampaqnin|xs=Quechua}}
-* Romanian: {{t-|ro|adjectival}}
-* Russian: {{t|ru|прилaгaтeльный|tr=prilagátel’nyj}}
-* Slovak: {{t|sk|prídavné meno|n}}
-* Slovene: [[pridevniški]]
-* Spanish: {{t+|es|adjetivo}}
-* Sundanese: {{t|su|adjéktif}}
-* Swahili: {{t+|sw|tashbihi|xs=Swahili}}
-* Swedish: {{t+|sv|adjektiv|n}}
-* Tagalog: {{t|tl|pang-uri|xs=Tagalog}}
-* {{trreq|tg}}
-* {{trreq|ta}}
-* Thai: {{Thai|[[คุณศัพท์]]}} (kunnásàp)
-* Turkish: {{t|tr|sıfat}}
-* {{trreq|tk}}
-* Ukrainian: {{t|uk|прикметник|m|sc=Cyrl}}
-* {{trreq|ur}}
-* {{trreq|uz}}
-* Vietnamese: {{t|vi|có tính chất tính từ|xs=Vietnamese}}
-* Volapük: {{t|vo|ladyekik}}
-* West Frisian: {{t|fy|eigenskip oantsjuttend|xs=West Frisian}}
-* {{trreq|sgs}}
-{{trans-bottom}}
-
-{{trans-top|methods of enforcement and rules of procedure}}
-* {{trreq|af}}
-* Arabic: {{t|ar|اجرائي|إجْرائِيّ|tr=’ijrā’iy}}
-* Dutch: {{t+|nl|formeel}}
-* French: {{t+|fr|procédure|alt=… de procédure}}
-* German: {{t+|de|formal}}
-* {{trreq|he}}
-* {{trreq|hi}}
-* {{trreq|hu}}
-* {{trreq|is}}
-* {{trreq|id}}
-{{trans-mid}}
-* Interlingua: adjective, [[adjectival]]
-* Japanese: {{t|ja|手続き上|[[てつづきじょう]]の, tetsudzukijō no|alt=手続き上の}}
-* Polish: [[przymiotnikowy]]
-* Portuguese: [[adjectivo]] {{qualifier|Portugal}}, [[adjetivo]] {{qualifier|Brazil}}
-* Romanian: [[adjectiv]] {{m}}, [[adjectivă]] {{f}}
-* Spanish: {{t+|es|adjetivo}}
-* Swahili: {{t+|sw|tashbihi|xs=Swahili}}
-* {{trreq|th}}
-* {{trreq|vi}}
-* West Frisian: {{t-|fy|protokol|c|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|of a dye that needs the use of a mordant}}
-* Catalan: {{t+|ca|adjectiu}}
-{{trans-mid}}
-{{trans-bottom}}
-
-===Noun===
-{{wikipedia}}
-{{en-noun}}
-
-# {{grammar}} A [[word]] that [[modify|modifies]] a noun or [[describe]]s a noun’s referent.
-#: ''The words “big” and “heavy” are English '''adjectives'''.''
-
-====Hyponyms====
-* See also [[Wikisaurus:adjective]]
-
-====Translations====
-{{trans-top|(grammar) a word that modifies a noun or describes a noun’s referent}}
-* Afrikaans: {{t|af|byvoeglike naamwoord|xs=Afrikaans}}
-* Albanian: {{t|sq|mbiemër|xs=Albanian}}
-*: [[Tosk]]: {{t-|als|adjektiv|xs=Tosk}}
-* Arabic: {{t|ar|نعت|m|tr=naʿt}}, {{t-|ar|صفة|f|tr=ṣífa}}
-* {{trreq|an}}
-* Aramaic: {{tø|arc|גדשניא|m|tr=gedšanāya|sc=Hebr}}
-* Armenian: {{t-|hy|ածական|tr=açakan}}
-* {{trreq|as}}
-* Asturian: {{t+|ast|axetivu|m|xs=Asturian}}
-* Azeri: {{t|az|sifət|xs=Azeri}}
-* {{trreq|ba}}
-* Basque: {{t|eu|adjektibo|xs=Basque}}, {{t|eu|izenondo|xs=Basque}}
-* {{trreq|bar}}
-* Belarusian: {{t|be|прыметнік|m|tr=prymétnik|xs=Belarusian}}
-* Bengali: {{t|bn|বিশেষণ|tr=bisheshawn|sc=Beng|xs=Bengali}}
-* {{trreq|bpy}}
-* Breton: {{t|br|anv-gwan|xs=Breton}}
-* Bulgarian: {{t|bg|прилагателно име|n|tr=prilagátelno íme}}
-* Burmese: {{t|my|နာမဝိသေသန|tr=nama witheithana|sc=Mymr|xs=Burmese}}
-* {{trreq|bua}}
-* Catalan: {{t+|ca|adjectiu|m}}
-* {{trreq|ceb}}
-* Chechen: {{tø|ce|билгалдош|tr=bilgaldoš}}
-* Chinese:
-*: Mandarin: {{t|zh|形容詞|sc=Hani}}, {{t|zh|形容词|tr=xíngróngcí|sc=Hani}}
-*: Min Nan: {{tø|nan|形容詞|sc=Hans}}, {{tø|nan|形容词|tr=hêng-iông-sû|sc=Hans}}
-* Chuvash: {{tø|cv|паллă ячĕ|sc=Cyrl|xs=Chuvash}}
-* Cornish: {{t|kw|hanow gwan|m}}
-* {{trreq|co}}
-* Crimean Tatar: {{tø|crh|sıfat}}
-* Czech: {{t-|cs|přídavné jméno|n}}
-* Danish: {{t|da|tillægsord}}, {{t+|da|adjektiv}}
-* {{trreq|dv}}
-* {{trreq|Divehi}}
-* Dutch: {{t+|nl|bijvoeglijk naamwoord|n}}, {{t+|nl|adjectief|n}}
-* Esperanto: {{t+|eo|adjektivo|xs=Esperanto}}
-* Estonian: {{t-|et|omadussõna}}, {{t+|et|adjektiiv}}
-* Faroese: {{t|fo|lýsingarorð|n}}
-* Finnish: {{t+|fi|adjektiivi}}, {{t+|fi|laatusana}}
-* French: {{t+|fr|adjectif|m}}
-* Friulian: {{tø|fur|agetîv|xs=Friulian}}
-* Galician: {{t+|gl|adxectivo|xs=Galician}}
-* Georgian: {{t|ka|ზედსართავი სახელი|tr=zedsart'avi saxeli|sc=Geor}}, {{t|ka|სახელი|tr=saxeli|sc=Geor}}
-* German: {{t+|de|Adjektiv|n}}, {{t+|de|Eigenschaftswort|n}}
-* Greek: {{t+|el|επίθετο|n|tr=epítheto}}
-* Hebrew: {{t-|he|שם תואר|m|tr=shem to'ar}}
-* Hindi: {{t-|hi|बिशेषण|m|tr=biśeṣaṇ|xs=Hindi}}
-* Hungarian: {{t+|hu|melléknév}}
-* Icelandic: {{t+|is|lýsingarorð|n}}
-* Ido: {{t+|io|adjektivo|xs=Ido}}
-* Indonesian: {{t|id|kata sifat|xs=Indonesian}}, {{t-|id|adjektiva|xs=Indonesian}}
-* Interlingua: {{t-|ia|adjectivo|xs=Interlingua}}
-* Interlingue: {{t-|ie|adjective|xs=Interlingue}}
-* Irish: {{t+|ga|aidiacht|f|xs=Irish}}
-* Italian: {{t+|it|aggettivo|m}}
-* Japanese: {{t+|ja|形容詞|tr=けいようし, keiyōshi}} {{qualifier|for "い" ending in Japanese, and translation for "adjective" in other languages}}, {{t+|ja|形容動詞|tr=けいようどうし, keiyō-dōshi}} {{qualifier|for "だ/な" ending}}
-* {{trreq|jv}}
-* Kashubian: [[przëdownik]] {{m}}
-* Kazakh: {{t|kk|сын есім|tr=sın esim|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|គុណនាម|tr=kunnaneam|sc=Khmr}}
-{{trans-mid}}
-* Korean: {{t|ko|형용사|tr=hyeong-yongsa|sc=Kore}} ({{t|ko|形容詞|sc=Kore}})
-* Kyrgyz: {{t|ky|сын атооч|tr=sın atooç|sc=Cyrl}}
-* Lao: {{t|lo|ຄຳຄຸນນາມ|tr=kham khun nām|sc=Laoo}}
-* Latin: {{t|la|verbum adiectum|n}}
-* Latvian: {{t+|lv|īpašības vārds|m|xs=Latvian}}
-* Limburgish: {{t+|li|bievooglik naamwaord|n|xs=Limburgish}}
-* Lingala: {{t|ln|likonzámí|xs=Lingala}}
-* Lithuanian: {{t+|lt|būdvardis|xs=Lithuanian}}
-* Low Saxon: {{t-|nds|adjektiv|xs=Low Saxon}}
-* Lower Sorbian: [[adjektiw]] {{m}}
-* Macedonian: {{t-|mk|придавка|f|tr=prídavka}}
-* Malay: {{t|ms|kata sifat|xs=Malay}}
-* Malayalam: {{t|ml|നാമവിശേഷണം|tr=nāmaviśeṣṇaṁ|sc=Mlym|xs=Malayalam}}
-* Maltese: {{t+|mt|aġġettiv|xs=Maltese}}
-* Manx: {{t|gv|marennym|m}}
-* Mongolian: {{t|mn|тэмдэг нэр|tr=temdeg ner|sc=Cyrl|xs=Mongolian}}
-* {{trreq|ne}}
-* Norwegian:
-*: Bokmål: {{t+|no|adjektiv}}
-*: Nynorsk: {{t+|nn|adjektiv|xs=Norwegian Nynorsk}}
-* Novial: [[adjektive]]
-* Oriya: {{t|or|ବିଶେଷଣ|tr=biśeṣaṇ|sc=Orya}}
-* Persian: {{t|fa|صفت|tr=sefat|sc=fa-Arab}}
-* Polish: {{t+|pl|przymiotnik|m}}
-* Portuguese: {{t+|pt|adjectivo}} {{qualifier|Portugal}}, {{t+|pt|adjetivo}} {{qualifier|Brazil}}
-* Quechua: {{t|qu|sutip rampaqnin|xs=Quechua}}
-* Romanian: {{t+|ro|adjectiv|n}}
-* Romansch: {{t-|rm|adjectiv|xs=Romansch}}
-* Russian: {{t|ru|имя прилагательное|n|tr=ímja prilagátelʹnoje}}, {{t|ru|прилагательное|n|tr=prilagátelʹnoje|sc=Cyrl}}
-* Sanskrit: {{t-|sa|विशेषण|m|tr=viśeṣaṇa|xs=Sanskrit}}
-* Scots: {{tø|sco|adjective|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|buadhair|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{qualifier|Ekavian}} {{t|sh|придев|g=m|sc=Cyrl|xs=Serbo-Croatian}}, {{qualifier|Ijekavian}} {{t|sh|придјев|g=m|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{qualifier|Ekavian}} {{t|sh|pridev|g=m|xs=Serbo-Croatian}}, {{qualifier|Ijekavian}} {{t|sh|pridjev|g=m|xs=Serbo-Croatian}}
-* Sicilian: {{t|scn|aggittivi|xs=Sicilian}}
-* Slovak: {{t-|sk|prídavné meno|n}}
-* Slovene: {{t+|sl|pridevnik|m}}
-* Spanish: {{t+|es|adjetivo|m}}
-* Sundanese: {{t|su|adjéktif|xs=Sundanese}}
-* Swahili: {{t|sw|kivumishi|xs=Swahili}}, {{t+|sw|sifa|xs=Swahili}}
-* Swedish: {{t+|sv|adjektiv|n}}
-* Tagalog: {{t|tl|pang-uri|xs=Tagalog}}
-* Tajik: {{t|tg|сифат|tr=sifat|sc=Cyrl}}
-* Telugu: [[విశేషణము]] (viSEshaNamu)
-* Thai: {{t|th|คำคุณศัพท์|tr=kam koon sàp}}
-* Turkish: {{t+|tr|sıfat}}, {{t|tr|ön ad}}
-* Turkmen: {{t|tk|sypat}}
-* Ukrainian: {{t+|uk|прикметник|m|tr=prykmétnyk|xs=Ukrainian}}
-* Upper Sorbian: [[adjektiw]] {{m}}
-* Urdu: {{t-|ur|بشیشن|m|tr=biśeśan|xs=Urdu}}, {{t-|ur|صفت|f|tr=sifat|xs=Urdu}}
-* Uzbek: {{t|uz|sifat}}
-* Vietnamese: {{t+|vi|tính từ|xs=Vietnamese}}
-* Volapük: {{t|vo|ladyek}}
-* Võro: {{tø|vro|umahussyna}}
-* Walloon: {{t|wa|addjectif|xs=Walloon}}
-* West Frisian: {{t+|fy|eigenskipswurd|n|xs=West Frisian}}
-* Yiddish: {{t-|yi|אַדיעקטיוו|m|alt=אדיעקטיוו|tr=adyektiv, adjektiw|sc=Hebr|xs=Yiddish}}
-* {{trreq|zza}}
-{{trans-bottom}}
-
-[[Category:en:Adjectives]]
-[[Category:en:Parts of speech]]
-
-----
-
+<ol><li> {obsolete} Incapable of independent function.</li>
+<ul><li> <b>1899</b>, John Jay Chapman, <em>Emerson and Other Essays</em>, AMS Press (1969) (as [http://www.gutenberg.org/etext/13088 reproduced] in Project Gutenberg)</li>
+<ul><li> In fact, God is of not so much importance in Himself, but as the end towards which man tends. That irreverent person who said that Browning uses “God” as a pigment made an accurate criticism of his theology. In Browning, God is <b>adjective</b> to man.</li>
+</ul>
+</ul>
+<li> {grammar} Adjectival; pertaining to or functioning as an adjective.</li>
+<li> {legal} Applying to methods of enforcement and rules of procedure.</li>
+<ul><li> <b><em>adjective</b> law</em></li>
+</ul>
+<li> {chemistry} Of a dye that needs the use of a mordant to be made fast to that which is being dyed.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|incapable of independent function}} dependent, derivative</li>
+<li> {{sense|functioning as an adjective}} adjectival</li>
+<li> {{sense|applying to methods of enforcement and rules of procedure}} procedural</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> {{sense|applying to methods of enforcement and rules of procedure}} substantive</li>
+<li> {{sense|of a dye that needs the use of a mordant}} substantive</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> adjectival</li>
+<li> adjective clause</li>
+<li> adjective phrase</li>
+<li> adjective patterns</li>
+<li> proper adjective</li>
+</ul>
+
+<h3>Noun</h3>
+{wikipedia}{en-noun}
+<ol><li> {grammar} A word that modifies a noun or describes a noun’s referent.</li>
+<ul><li> <em>The words “big” and “heavy” are English <b>adjectives</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Hyponyms</h4>
+<ul><li> See also Wikisaurus:adjective</li>
+</ul>
 
 ***alphabetical***
-alphabetical: 
+alphabetical:
 
-===Etymology===
+<h3>Etymology</h3>
 {{suffix|alphabetic|al}}
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˌælf.əˈbɛt.ɪk.əl/}}, {{X-SAMPA|/%{lf.@"bEt.Ik.@l/}}
-* {{a|GenAM}} {{IPA|/ˌælfəˈbɛdɪkəl/}}, {{X-SAMPA|/%{lf@"bEdIk@l/}}
-*: {{audio|en-us-alphabetical.ogg|Audio (US)}}
-* {{hyphenation|al|pha|bet|ic|al}}
-
-===Adjective===
+<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> {{audio|en-us-alphabetical.ogg|Audio (US)}}</li>
+</ul>
+<li> {{hyphenation|al|pha|bet|ic|al}}</li>
+</ul>
+
+<h3>Adjective</h3>
 {{en-adj|-}}
+<ol><li> Pertaining to, furnished with, or expressed by letters of the alphabet.</li>
+<ul><li> <b>1986</b>, Arthur Hilary Armstrong, A. A. Armstrong, <em>Classical Mediterranean Spirituality: Egyptian, Greek, Roman</em>‎, page 486</li>
+<ul><li> Paul, who talks about what the magical papyri do, has in his first letter to the Corinthians described basic aspects of <b>alphabetical</b> language.</li>
+</ul>
+</ul>
+<li> According to the sequence of the letters of the alphabet.</li>
+<ul><li> <em>All names were placed into an <b>alphabetical</b> list.</em></li>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> alphabetical order</li>
+<li> alphabetically</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> alphabet</li>
+<li> alphabetize</li>
+</ul>
 
-# Pertaining to, furnished with, or expressed by [[letter]]s of the [[alphabet]].
-#* '''1986''', Arthur Hilary Armstrong, A. A. Armstrong, ''Classical Mediterranean Spirituality: Egyptian, Greek, Roman''‎, page 486
-#*: Paul, who talks about what the magical papyri do, has in his first letter to the Corinthians described basic aspects of '''alphabetical''' language.
-# According to the [[sequence]] of the letters of the [[alphabet]].
-#: ''All names were placed into an '''alphabetical''' list.''
-
-====Derived terms====
-* [[alphabetical order]]
-* [[alphabetically]]
-
-====Related terms====
-* [[alphabet]]
-* [[alphabetize]]
-
-====Translations====
-{{trans-top|pertaining to the alphabet}}
-* [[Catalan]]: {{t|ca|alfabètic}}
-* Esperanto: {{t-|eo|alfabeta|xs=Esperanto}}
-* Finnish: {{t+|fi|aakkosellinen}}
-* Irish: {{t|ga|aibítreach}}, {{t|ga|aibítre}}
-{{trans-mid}}
-* Polish: {{t+|pl|alfabetyczny|m}}
-* [[Scottish Gaelic]]: {{t|gd|aibidileach}}
-* Turkish: {{t|tr|alfabetik}},  {{t+|tr|abecesel}}
-{{trans-bottom}}
-
-{{trans-top|in the sequence of the letters of the alphabet}}
-* Arabic: {{Arab|[[الفبائي|ألِفْبَائِيّ]]}} {{IPAchar|(’alifbá’i)}}, {{Arab|[[ابجدي|أبجَدِيّ]]}} {{IPAchar|(’abjádi)}}
-* [[Catalan]]: {{t|ca|alfabètic}}
-* Croatian: {{t-|hr|abecedni|alt=ȁbecēdnī}}, {{t-|hr|alfabetski|alt=alfàbētskī}}
-* Czech: {{t+|cs|abecední|m}}
-* Dutch: {{t+|nl|alfabetisch}}
-* Esperanto: {{t|eo|laŭalfabeta|xs=Esperanto}},  {{t-|eo|alfabeta|xs=Esperanto}}
-* Finnish: {{t+|fi|aakkoset|alt=aakkos-}}, {{t+|fi|aakkosellinen}}
-* French: {{t+|fr|alphabétique}}, {{t+|fr|abécédaire}}
-* German: {{t+|de|alphabetisch}}
-* Greek: [[αλφαβητικός]] (alphavitikós)
-* Hungarian: {{t|hu|alfabetikus}}, {{t|hu|ábécérendi}}
-* Irish: {{t|ga|aibítreach}}, {{t|ga|aibítre}}
-* Italian: {{t+|it|alfabetico}}
-{{trans-mid}}
-* Korean: [[알파벳]] (alpabet)
-* Latin: {{t-|la|abecedarius}}
-* Norwegian: {{t+|no|alfabetisk}}
-* Polish: {{t+|pl|alfabetyczny|m}}
-* Portuguese: {{t+|pt|alfabético}}
-* Russian: {{t+|ru|алфавитный|tr=alfavítnyj}}
-* [[Scottish Gaelic]]: {{t|gd|aibidileach}}
-* Spanish: {{t-|es|alfabético}}
-* Swedish: {{t+|sv|alfabetisk}}
-* Turkish: {{t|tr|alfabetik sırayla}},  {{t|tr|alfabetik olarak}}
-* [[West Frisian]]: [[alfabetysk]]
-* Yiddish: {{t|yi|אַלפֿאַבעטיש|tr=alfabetish|sc=Hebr}}
-{{trans-bottom}}
-
-[[et:alphabetical]]
-[[fr:alphabetical]]
-[[ko:alphabetical]]
-[[io:alphabetical]]
-[[id:alphabetical]]
-[[kn:alphabetical]]
-[[lt:alphabetical]]
-[[hu:alphabetical]]
-[[no:alphabetical]]
-[[oc:alphabetical]]
-[[pl:alphabetical]]
-[[pt:alphabetical]]
-[[simple:alphabetical]]
-[[fi:alphabetical]]
-[[sv:alphabetical]]
-[[ta:alphabetical]]
-[[te:alphabetical]]
-[[tr:alphabetical]]
-[[vi:alphabetical]]
 ===and===
-rain cats and dogs: 
-
-===Etymology===
-Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά||lang=grc|tr=cata|against}} and {{term|δόξα||tr=doxa|lang=grc|opinion, expectation}}, but see Etymology in [[:Citations:rain cats and dogs#Etymology|Citations]]
-
-===Verb===
-{{en-verb|head=[[rain]] [[cat]]s and [[dog]]s|rains cats and dogs|raining cats and dogs|rained cats and dogs}}
-
-# {{idiomatic}} To [[rain]] very [[heavily]].
-
-====Synonyms====
-* {{sense|to rain very heavily}} [[bucket]], [[bucket down]], [[chuck it down]], [[rain buckets]], [[rain pitchforks]], [[pelt]], [[piss down]] {{qualifier|coarse slang}}, [[pour]], [[stream]], [[teem]]
-
-====Translations====
-{{trans-top|to rain very heavily}}
-* Arabic: {{t|ar|إنها تمطر بغزارة|tr='innahaa tumTir bi-ghazaara|sc=Arab}}
-* Catalan: {{t|ca|ploure a bots i barrals}}
-* Chinese:
-*: Mandarin: {{t|cmn|傾盆大雨|sc=Hani}},  {{t|cmn|倾盆大雨|tr=qīngpéndàyǔ|sc=Hani}}
-* Czech: {{t-|cs|lít jako z konve}}
-* Dutch: {{t|nl|pijpenstelen regenen}}, {{t|nl|regenen dat het giet}}
-* Finnish: {{t-|fi|sataa kaatamalla}}, {{t-|fi|sataa äkäisiä ämmiä äkeet selässä}}, {{t-|fi|sataa kuin saavista kaataen}}, {{t|fi|kuin esterin perseestä}}
-* French: {{t+|fr|pleuvoir des cordes}}, {{t+|fr|pleuvoir à verse}}, {{t+|fr|pleuvoir des hallebardes}}, {{t+|fr|pleuvoir comme vache qui pisse}}, {{qualifier|Québec}} {{t+|fr|pleuvoir à boire debout}}, {{qualifier|Belgium}} {{t+|fr|dracher}}
-* German: {{t+|de|Bindfäden regnen}}, {{t+|de|in Strömen regnen}}, {{t-|de|aus allen Kannen gießen}}, {{t-|de|aus allen Kannen schütten}}, {{t|de|wie aus Eimern schütten}}
-* Greek: {{t+|el|βρέχει καρεκλοπόδαρα}},  {{t|el|ρίχνει καρεκλοπόδαρα}},  {{t|el|βρέχει με το τουλούμι}}
-* Hungarian: {{t|hu|zuhog, mintha dézsából öntenék}}
-{{trans-mid}}
-* Icelandic: {{t|is|vera mígandi rigning}}, {{t|is|rigna eldi og brennisteini}}
-* Interlingua: [[pluver]] [[torrentialmente]]
-* Italian: {{t-|it|piovere a catinelle}}
-* Japanese: {{t|ja|土砂降りになる|tr=どしゃぶりになる, doshaburi-ni naru}}
-* Norwegian: {{t+|no|høljeregne}}
-* Polish: {{t-|pl|leje jak z cebra}}
-* Portuguese: {{qualifier|Portugal}} {{t+|pt|chover a cântaros}}, {{qualifier|Portugal}} {{t-|pt|chover a potes}}, [[chover]] [[torrencialmente]], {{qualifier|Brazil}} [[cair]] [[um]] [[toró]]
-* Romanian: {{t-|ro|a ploua cu găleata}}
-* Russian: {{t-|ru|лить как из ведра|tr=lit’ kak iz v'edrá}}
-* Spanish: {{t-|es|llover a cántaros}}
-* Swedish: {{t+|sv|ösregna}}, {{t+|sv|spöregna}}, {{t-|sv|stå som spön i backen}}
-* Turkish: {{t|tr|bardaktan boşalırcasına yağmak}}
-* Vietnamese: [[trời]] [[mưa]] [[như]] [[trút]]
-* Welsh: {{t|cy|bwrw hen wragedd â ffyn}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[rain dogs and cats#English|rain dogs and cats]]
-
-[[cy:rain cats and dogs]]
-[[de:rain cats and dogs]]
-[[et:rain cats and dogs]]
-[[es:rain cats and dogs]]
-[[fr:rain cats and dogs]]
-[[gl:rain cats and dogs]]
-[[ja:rain cats and dogs]]
-[[no:rain cats and dogs]]
-[[pl:rain cats and dogs]]
-[[pt:rain cats and dogs]]
-[[ru:rain cats and dogs]]
-[[sv:rain cats and dogs]]
-[[zh:rain cats and dogs]]
-apples and pears: 
-
-===Noun===
-{{en-noun|sg=[[apples]] and [[pears]]|-}}
-
-# {{Cockney rhyming slang}} [[stairs]]
+rain cats and dogs:
+
+<h3>Etymology</h3>
+Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}} and {{term|δόξα|opinion, expectation|tr=doxa|lang=grc}}, but see Etymology in Citations
+<h3>Verb</h3>
+{{en-verb|rains cats and dogs|raining cats and dogs|rained cats and dogs|head=rain cats and dogs}}
+<ol><li> {idiomatic} To rain very heavily.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|to rain very heavily}} bucket, bucket down, chuck it down, rain buckets, rain pitchforks, pelt, piss down {{qualifier|coarse slang}}, pour, stream, teem</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> rain dogs and cats</li>
+</ul>
+cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs
+apples and pears:
+
+<h3>Noun</h3>
+{{en-noun|-|sg=apples and pears}}
+<ol><li> {Cockney rhyming slang} stairs</li>
+</ol>
+
 ***antidisestablishmentarianism***
-antidisestablishmentarianism: 
-{{wikipedia}}
-===Etymology===
+antidisestablishmentarianism:
+{wikipedia}
+<h3>Etymology</h3>
 From {{confix|anti|disestablishmentarian|ism}}.
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˌan.ti.dɪ.sɪ.sta.blɪʃ.mənˈtɛː.ɹɪə.nɪ.z(ə)m/}}
-* {{a|US}} {{IPA|/ˌæn.taiˌdɪs.ɛsˌtæb.lɪʃ.məntˈɛː.ɹi.ənˌɪ.zm/}}
-* {{audio|en-uk-antidisestablishmentarianism.ogg|Audio (UK)}}
-* {{audio|en-us-antidisestablishmentarianism.ogg|Audio (US)}}
-
-===Noun===
+<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> {{audio|en-uk-antidisestablishmentarianism.ogg|Audio (UK)}}</li>
+<li> {{audio|en-us-antidisestablishmentarianism.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
 {{en-noun|-}}
-
-# 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.}}
-#* '''1998''', University of Oklahoma College of Law, ''American Indian Law Review'':
-#*: Jed Rubenfeld, who actually may not have been recycling a ''Boerne'' 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>
-#* '''2002''', Angela Hague and David Lavery (credited as editors, but truly authors of the compiled fictional reviews), ''Teleparody: predicting/preventing the TV discourse of tomorrow''
-#*: The establishmentarianism of Hatch's alliance-building strategy undermined by the disestablishmentarianism of Wiglesworth's treachery triggers an '''antidisestablishmentarianism''' 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 '''antidisestablishmentarianism''', like a cancerous wart on the end of the nose, is perched at the fuzzy border separating [[ontology]] from [[oncology]], [[malignity]] from [[malignancy]].
-
-====Translations====
-{{trans-top|philosophy opposed to separating church and state}}
-* Chinese:
-*: Mandarin: {{t|zh|反對教會分離主義|sc=Hani}}, {{t|zh|反对教会分离主义|tr=fǎnduì jiàohuì fēnlí zhǔyì|sc=Hani}}
-* Esperanto: {{t|eo|kontraŭmalfondistismo}}
-{{trans-mid}}
-* Finnish: [[valtiokirkko#Finnish|valtiokirkon]] {{t|fi|puolustaminen}}
-* Portuguese: {{t|pt|antidesestabelecimentarianismo|m}}
-* Russian: {{t|ru|анти-отделенчество|n|tr=anti-otdelénčestvo|sc=Cyrl}}
-{{trans-bottom}}
-
-====Related terms====
-* [[antidisestablishmentarian]]
-* [[disestablishmentarianism]]
-* [[establish]]
-* [[established church]]
-* [[establishment]]
-
-===See also===
-* [[floccinaucinihilipilification]]
-* [[hippopotomonstrosesquipedaliophobia]]
-* [[pneumonoultramicroscopicsilicovolcanoconiosis]]
-* [[supercalifragilisticexpialidocious]]
-
-[[Category:English nouns ending in "-ism"]]
-[[Category:Long English words]]
-
-[[et:antidisestablishmentarianism]]
-[[fr:antidisestablishmentarianism]]
-[[ko:antidisestablishmentarianism]]
-[[pl:antidisestablishmentarianism]]
-[[ru:antidisestablishmentarianism]]
-[[simple:antidisestablishmentarianism]]
-[[ta:antidisestablishmentarianism]]
-[[vi:antidisestablishmentarianism]]
+<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>
+<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> <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>
+</ul>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> antidisestablishmentarian</li>
+<li> disestablishmentarianism</li>
+<li> establish</li>
+<li> established church</li>
+<li> establishment</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> floccinaucinihilipilification</li>
+<li> hippopotomonstrosesquipedaliophobia</li>
+<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
 ***antonym***
-antonym: 
+antonym:
 
-===Etymology===
+<h3>Etymology</h3>
 circa 1870: {{confix|ant|onym}}
-
-===Pronunciation===
-* {{IPA|/ˈæntəˌnɪm/}}
-* {{audio|en-us-antonym.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun}}
-
-# {{semantics}} A word which has the [[opposite]] meaning of another, although not necessarily in all its senses.
-#: ''"rich" is an '''antonym''' of "poor"; "full" is an '''antonym''' of "empty"''.
-
-====Antonyms====
-* [[synonym]]
-
-====Derived terms====
-{{rel-top3|Terms derived from ''antonym''}}
-* [[autoantonym]]
-* [[antonymic]]
-* [[antonymous]]
-{{rel-mid3}}
-* [[antonymy]]
-* [[binary antonym]]
-* [[complementary antonym]]
-{{rel-mid3}}
-* [[gradable antonym]]
-* [[polar antonym]]
-* [[relational antonym]]
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|word which has the opposite meaning}}
-* Afrikaans: [[teenoorgestelde]]
-* Arabic: {{t-|ar|عكس|m|tr=`aks}},  {{t-|ar|نقيض|m|tr=naqiiD}}
-* Armenian: [[հականիշ]] (hakaniš)
-* Catalan: {{t|ca|antònim|m}}
-* Chinese:
-*: Mandarin: {{t-|cmn|反義詞|sc=Hani}},  {{t-|cmn|反义词|tr=fǎnyìcí|sc=Hani}}
-* Croatian: {{t+|hr|antonim|m}}, {{t-|hr|nasuprotnica|f}}
-* Czech: {{t-|cs|antonymum|n}},  {{t-|cs|opozitum|n}}
-* Danish: {{t+|da|antonym|n}}
-* Dutch: {{t+|nl|tegendeel|n}}, {{t+|nl|tegengestelde|n}}, {{t+|nl|antoniem|n}}
-* Esperanto: {{t-|eo|antonimo|xs=Esperanto}}
-* Estonian: {{t|et|antonüüm}}
-* Finnish: {{t+|fi|antonyymi}}, {{t-|fi|vastakohta}}
-* French: {{t+|fr|antonyme|m}}
-* Galician: {{t|gl|antónimo|m}}
-* German: {{t+|de|Antonym|n}}, {{t|de|Gegenwort|n}}, {{t|de|Gegensatzwort|n}}
-* Greek: {{t+|el|αντώνυμο|n}} (antónymo)
-* Hindi: {{t|hi|विपर्याय|m|tr=viparyāy|xs=Hindi}}, {{t|hi|विपरीतार्थी शब्द|sc=Deva}}, {{t|hi|विलोम|sc=Deva}}
-* Hungarian: {{t|hu|ellentét}}, {{t+|hu|antonima}}
-* Icelandic: {{t+|is|andheiti|n}}, {{t|is|andrætt orð|n}}
-{{trans-mid}}
-* Indonesian: [[lawan]] [[kata]], [[antonim]]
-* Interlingua: [[antonymo]]
-* Italian: {{t+|it|antonimo|m}}
-* Japanese: {{t-|ja|対義語|tr=たいぎご, taigigo}},  {{t|ja|反意語|tr=はんいご, han'igo}},  {{t-|ja|反対語|tr=はんたいご, hantaigo}}
-* Khmer: {{t|km|ន័យផ្ទុយ|sc=Khmr}}
-* Korean: [[반대어]] (bandeaeo), [[반의어]] (banuieo)
-* Latvian: {{t|lv|antonīms|m|xs=Latvian}}
-* Lithuanian: {{t+|lt|antonimas|m|alt=antonìmas|xs=Lithuanian}}
-* Norwegian: {{t|no|antonym}}
-* Polish: {{t+|pl|antonim|m}}
-* Portuguese: {{t+|pt|antónimo|m}} {{qualifier|Portugal}}, {{t+|pt|antônimo|m}} {{qualifier|Brazil}}
-* Romanian: [[antonim]] {{n}}, [[antonime]] ''n plural''
-* Russian: {{t+|ru|антоним|m|tr=antónim}}
-* Scottish Gaelic: {{t-|gd|frith-fhacal|m|xs=Scottish Gaelic}}
-* Serbian: [[odveznica]]
-* Slovene: {{t+|sl|protipomenka|f}}, {{t+|sl|antonim|m}}
-* Spanish: {{t+|es|antónimo|m}}
-* Swedish: {{t+|sv|antonym}}
-* Telugu: [[వ్యతిరేక పదము]] (vyatireka padamu)
-* Welsh: {{t+|cy|gwrthwynebair|xs=Welsh}}
-{{trans-bottom}}
-
-===See also===
-* [[thesaurus]]
-
-===External links===
-* {{pedia}}
-
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈæ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>
+</ol>
+
+<h4>Antonyms</h4>
+<ul><li> synonym</li>
+</ul>
+
+<h4>Derived terms</h4>
+{{rel-top3|Terms derived from <em>antonym</em>}}
+<ul><li> autoantonym</li>
+<li> antonymic</li>
+<li> antonymous</li>
+</ul>
+{rel-mid3}
+<ul><li> antonymy</li>
+<li> binary antonym</li>
+<li> complementary antonym</li>
+</ul>
+{rel-mid3}
+<ul><li> gradable antonym</li>
+<li> polar antonym</li>
+<li> relational antonym</li>
+</ul>
+{rel-bottom}
+<h3>See also</h3>
+<ul><li> thesaurus</li>
+</ul>
+
+<h3>External links</h3>
+<ul><li> {pedia}</li>
+</ul>
 ----
-
-
 ===Appendix===
-Appendix:English pronunciation: 
-The following tables show the [[Wiktionary:International Phonetic Alphabet|IPA]], [[SAMPA]] and enPR/[[w:American Heritage Dictionary|AHD]] representations of English pronunciation, in both [[Received Pronunciation]] (UK) and [[General American]] (US). For vowels in other dialects, see [[w:IPA chart for English|IPA chart for English]].
-
-===[[vowel|Vowels]]===
-
-The vowel table lists both monophthongs and [[diphthong|diphthongs]].
-
-{| {{wikitable}}
-! rowspan="2" | enPR<br/>([[w:American Heritage Dictionary|AHD]])
-! colspan="2" | [[w:International Phonetic Alphabet|IPA]]
-! colspan="2" | [[w:SAMPA|SAMPA]]
-! rowspan="2" | Examples
-|-
-! [[Received Pronunciation|RP]]
-! [[General American|GA]]
-! [[Received Pronunciation|RP]]
-! [[General American|GA]]
-|-align="center"
-| {{enPRchar|ă}}
-| colspan="2" | {{IPAchar2|Near-open front unrounded vowel.ogg|æ}}
-| colspan="2" | <tt>{</tt>
-| [[bad|b'''a'''d]], [[cat|c'''a'''t]], [[ran|r'''a'''n]]
-|-align="center"
-| {{enPRchar|ăr}}
-| colspan="2" | {{IPAchar|æɹ}}
-| colspan="2" | <tt>{r\</tt>
-| [[carry|c'''arr'''y]]
-|-align="center"
-| {{enPRchar|ā}}
-| colspan="2" | {{IPAchar|eɪ}}
-| colspan="2" | <tt>eI</tt>
-| [[bait|b'''ai'''t]], [[play|pl'''ay''']], [[same|s'''a'''me]]
-|-align="center"
-| {{enPRchar|ä}}
-| {{IPAchar|ɑː}}
-| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}
-| <tt>A:</tt>
-| <tt>A</tt>
-| [[father|f'''a'''ther]]
-|-align="center"
-| {{enPRchar|är}}
-| {{IPAchar|ɑː(ɹ)}}
-| {{IPAchar|ɑɹ}}
-| <tt>A:</tt>
-| <tt>Ar\</tt>
-| [[arm|'''ar'''m]], [[bard|b'''ar'''d]], [[aria|'''ar'''ia]]
-|-align="center"
-| {{enPRchar|âr}}
-| {{IPAchar|ɛə(ɹ)}}
-| {{IPAchar|ɛɹ}}
-| <tt>E@</tt>
-| <tt>Er\</tt>
-| [[hair|h'''air''']], [[pear|p'''ear''']], [[there|th'''ere''']], [[scary|sc'''ar'''y]]
-|-align="center"
-| {{enPRchar|ĕ}}
-| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}
-| colspan="2" | <tt>E</tt>
-| [[bed|b'''e'''d]], [[bet|b'''e'''t]], [[end|'''e'''nd]]
-|-align="center"
-| {{enPRchar|ĕr}}
-| colspan="2" | {{IPAchar|ɛɹ}}
-| colspan="2" | <tt>Er\</tt>
-| [[merry|m'''err'''y]]
-|-align="center"
-| {{enPRchar|ē}}
-| {{IPAchar|iː}}
-| {{IPAchar2|Close front unrounded vowel.ogg|i}}
-| <tt>i:</tt>
-| <tt>i</tt>
-| [[ease|'''ea'''se]], [[see|s'''ee''']]
-|-align="center"
-| {{enPRchar|ĭ}}
-| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}
-| colspan="2" | <tt>I</tt>
-| [[city|c'''i'''ty]], [[bit|b'''i'''t]]
-|-align="center"
-| {{enPRchar|i}}<ref>Not an [[w:American Heritage Dictionary|AHD]] symbol. Often written as AHD ''ē'' in Wiktionary entries.</ref>
-| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}
-| colspan="2" | <tt>i</tt>
-| [[city|cit'''y''']], [[very|ver'''y''']], [[ready|read'''y''']]
-|-align="center"
-| {{enPRchar|ĭr}}
-| colspan="2" | {{IPAchar|ɪɹ}}
-| colspan="2" | <tt>Ir\</tt>
-| [[syrup|s'''yr'''up]], [[Sirius|S'''ir'''ius]]
-|-align="center"
-| {{enPRchar|ī}}
-| colspan="2" | {{IPAchar|aɪ}}
-| colspan="2" | <tt>aI</tt>
-| [[my|m'''y''']], [[rise|r'''i'''se]]
-|-align="center"
-| {{enPRchar|îr}}
-| {{IPAchar|ɪə(ɹ)}}
-| {{IPAchar|ɪɹ}}
-| <tt>I@</tt>
-| <tt>Ir\</tt>
-| [[here|h'''ere''']], [[near|n'''ear''']], [[peer|p'''eer''']], [[serious|s'''er'''ious]]
-|-align="center"
-| {{enPRchar|ŏ}}
-| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}
-| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}
-| <tt>Q</tt>
-| <tt>A</tt>
-| [[not|n'''o'''t]]
-|-align="center"
-| {{enPRchar|ō}}
-| {{IPAchar|əʊ}}
-| {{IPAchar|oʊ}}
-| <tt>@U</tt>
-| <tt>oU</tt>
-| [[go|g'''o''']], [[hope|h'''o'''pe]], [[know|kn'''ow''']]
-|-align="center"
-| {{enPRchar|ōr}}
-| {{IPAchar|ɔə(ɹ)}}
-| {{IPAchar|oɹ, ɔɹ}}
-| <tt>O@</tt>
-| <tt>or\, Or\</tt>
-| [[hoarse|h'''oar'''se]], [[glory|gl'''or'''y]]
-|-align="center"
-| {{enPRchar|ô}}
-| {{IPAchar|ɔː}}
-| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}
-| <tt>O:</tt>
-| <tt>O</tt>
-| [[law|l'''aw''']], [[caught|c'''au'''ght]], [[saw|s'''aw''']]
-|-align="center"
-| {{enPRchar|ôr}}
-| {{IPAchar|ɔː(ɹ)}}
-| {{IPAchar|ɔɹ}}
-| <tt>O:</tt>
-| <tt>Or\</tt>
-| [[horse|h'''or'''se]], [[more|m'''ore''']], [[laureate|l'''aur'''eate]]
-|-align="center"
-| {{enPRchar|oi}}
-| colspan="2" | {{IPAchar|ɔɪ}}
-| colspan="2" | <tt>OI</tt>
-| [[boy|b'''oy''']], [[noise|n'''oi'''se]]
-|-align="center"
-| {{enPRchar|o͝o, ŏŏ}}
-| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}
-| colspan="2" | <tt>U</tt>
-| [[put|p'''u'''t]], [[foot|f'''oo'''t]]
-|-align="center"
-| {{enPRchar|o͝or, ŏŏr}}
-| {{IPAchar|ʊə(ɹ)}}
-| {{IPAchar|ʊɹ}}
-| <tt>U@</tt>
-| <tt>Ur\</tt>
-| [[poor|p'''oor''']], [[tour|t'''our''']], [[tourism|t'''our'''ism]]
-|-align="center"
-| {{enPRchar|o͞o, ōō}}
-| {{IPAchar|uː}}
-| {{IPAchar2|Close back rounded vowel.ogg|u}}
-| <tt>u:</tt>
-| <tt>u</tt>
-| [[lose|l'''o'''se]], [[soon|s'''oo'''n]], [[through|thr'''ou'''gh]]
-|-align="center"
-| {{enPRchar|ou}}
-| colspan="2" | {{IPAchar|aʊ}}
-| colspan="2" | <tt>aU</tt>
-| [[house|h'''ou'''se]], [[now|n'''ow''']]
-|-align="center"
-| {{enPRchar|ŭ}}
-| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}
-| colspan="2" | <tt>V</tt>
-| [[run|r'''u'''n]], [[enough|en'''ou'''gh]], [[up|'''u'''p]]
-|-align="center"
-| {{enPRchar|ûr}}
-| {{IPAchar|ɜː(ɹ)}}
-| {{IPAchar|ɝ}}
-| <tt>3:</tt>
-| <tt>3`</tt>
-| [[fur|f'''ur''']], [[bird|b'''ir'''d]]
-|-align="center"
-| {{enPRchar|ə}}
-| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}
-| colspan="2" | <tt>@</tt>
-| [[about|'''a'''bout]]
-|-align="center"
-| {{enPRchar|ər}}
-| {{IPAchar|ə(ɹ)}}
-| {{IPAchar|ɚ}}
-| <tt>@</tt>
-| <tt>@`</tt>
-| [[enter|ent'''er''']]
-|}
-<references/>
-
-===[[consonant|Consonants]]===
-{| {{wikitable}}
-! enPR<br>([[w:American Heritage Dictionary|AHD]])
-! [[w:International_Phonetic_Alphabet|IPA]]
-! [[w:SAMPA|SAMPA]]
-! Examples
-|-
-| {{enPRchar|b}}
-| {{IPAchar2|Voiced bilabial plosive.ogg|b}}
-| <tt>b</tt>
-| [[but|'''b'''ut]], [[able|a'''b'''le]], [[cab|ca'''b''']], [[wobble|wo'''bb'''le]], [[ebb|e'''bb''']]
-|-
-| {{enPRchar|ch}}
-| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}<ref name=tiebar>May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}</ref>
-| <tt>tS</tt>
-| [[chat|'''ch'''at]], [[teach|tea'''ch'''er]], [[inch|in'''ch''']], [[catch|ca'''tch''']], [[nature|na'''t'''ure]]
-|-
-| {{enPRchar|d}}
-| {{IPAchar2|Voiced alveolar plosive.ogg|d}}
-| <tt>d</tt>
-| [[dot|'''d'''ot]], [[idea|i'''d'''ea]], [[nod|no'''d''']], [[fodder|fo'''dd'''er]], [[odd|o'''dd''']]
-|-
-| {{enPRchar|f}}
-| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}
-| <tt>f</tt>
-| [[fan|'''f'''an]], [[left|le'''f'''t]], [[leaf|lea'''f''']], [[enough|enou'''gh''']], [[phase|'''ph'''ase]], [[graphic|gra'''ph'''ic]], [[epitaph|epita'''ph''']]
-|-
-| {{enPRchar|g}}
-| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}
-| <tt>g</tt>
-| [[get|'''g'''et]], [[magnet|ma'''g'''net]], [[bag|ba'''g''']]
-|-
-| {{enPRchar|h}}
-|{{IPAchar2|Voiceless glottal fricative.ogg|h}}
-| <tt>h</tt>
-| [[ham|'''h'''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>
-| [[which|'''wh'''ich]]
-|-
-| {{enPRchar|j}}
-| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />
-| <tt>dZ</tt>
-| [[joy|'''j'''oy]], [[ajar|a'''j'''ar]], [[gin|'''g'''in]], [[agile|a'''g'''ile]], [[age|a'''ge''']], [[edge|e'''dge''']]
-|-
-| {{enPRchar|k}}
-| {{IPAchar2|Voiceless velar plosive.ogg|k}}
-| <tt>k</tt>
-| [[cat|'''c'''at]], [[kit|'''k'''it]], [[queen|'''q'''ueen]], [[pique|pi'''que''']], [[choir|'''ch'''oir]], [[ache|a'''ch'''e]], [[tack|ta'''ck''']]
-|-
-| {{enPRchar|ᴋʜ}}
-| {{IPAchar2|voiceless velar fricative.ogg|x}}
-| <tt>x</tt>
-| (''Scottish'') [[loch|lo'''ch''']]
-|-
-| {{enPRchar|l}}
-| {{IPAchar2|Alveolar lateral approximant.ogg|l}}
-| <tt>l</tt>
-| [[left|'''l'''eft]] (''before vowel of syllable'')
-|-
-| {{enPRchar|l}}
-| {{IPAchar|l̩ (əl)}}<ref name="cons">Phonologists may deny that {{IPAchar|/l̩, n̩, m̩/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.</ref>
-| <tt>l=</tt>
-| [[little|litt'''le''']]
-|-
-| {{enPRchar|m}}
-| {{IPAchar2|Bilabial nasal.ogg|m}}
-| <tt>m</tt>
-| [[man|'''m'''an]], [[animal|ani'''m'''al]], [[him|hi'''m''']]
-|-
-| {{enPRchar|m}}
-| {{IPAchar|m̩ (əm)}}<ref name="cons"/>
-| <tt>m=</tt>
-| [[spasm|spas'''m''']], [[prism|pris'''m''']]
-|-
-| {{enPRchar|n}}
-| {{IPAchar2|Alveolar nasal.ogg|n}}
-| <tt>n</tt>
-| [[note|'''n'''ote]], [[ant|a'''n'''t]], [[pan|pa'''n''']]
-|-
-| {{enPRchar|n}}
-| {{IPAchar|n̩ (ən)}}<ref name="cons"/>
-| <tt>n=</tt>
-| [[hidden|hidd'''en''']]
-|-
-| {{enPRchar|ng}}
-| {{IPAchar2|Retroflex nasal.ogg|ŋ}}
-| <tt>N</tt>
-| [[singer|si'''ng'''er]], [[ring|ri'''ng''']]
-|-
-| {{enPRchar|p}}
-| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}
-| <tt>p</tt>
-| [[pen|'''p'''en]], [[spin|s'''p'''in]], [[top|to'''p''']], [[apple|a'''pp'''le]]
-|-
-| {{enPRchar|r}}
-| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>
-| <tt>r\</tt>
-| [[run|'''r'''un]], [[very|ve'''r'''y]]
-|-
-| {{enPRchar|s}}
-| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}
-| <tt>s</tt>
-| [[set|'''s'''et]], [[list|li'''s'''t]], [[pass|pa'''ss''']], [[city|'''c'''ity]], [[ice|i'''ce''']]
-|-
-| {{enPRchar|sh}}
-| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}
-| <tt>S</tt>
-| [[she|'''sh'''e]], [[ash|a'''sh''']], [[sure|'''s'''ure]], [[ration|ra'''t'''ion]]
-|-
-| {{enPRchar|t}}
-| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}
-| <tt>t</tt>
-| [[ton|'''t'''on]], [[stab|s'''t'''ab]], [[mat|ma'''t''']], [[attend|a'''tt'''end]], [[butt|bu'''tt''']], [[ought|ou'''ght''']]
-|-
-| {{enPRchar|th}}
-| {{IPAchar2|Voiceless dental fricative.ogg|θ}}
-| <tt>T</tt>
-| [[thin|'''th'''in]], [[nothing|no'''th'''ing]], [[moth|mo'''th''']]
-|-
-| {{enPRchar|''th''}}
-| {{IPAchar2|voiced dental fricative.ogg|ð}}
-| <tt>D</tt>
-| [[this|'''th'''is]], [[father|fa'''th'''er]], [[clothe|clo'''the''']]
-|-
-| {{enPRchar|v}}
-| {{IPAchar2|Voiced labiodental fricative.ogg|v}}
-| <tt>v</tt>
-| [[voice|'''v'''oice]], [[navel|na'''v'''el]], [[save|sa'''ve''']], [[of|o'''f''']]
-|-
-| {{enPRchar|w}}
-| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}
-| <tt>w</tt>
-| [[wet|'''w'''et]]
-|-
-| {{enPRchar|y}}
-| {{IPAchar2|Palatal approximant.ogg|j}}
-| <tt>j</tt>
-| [[yes|'''y'''es]]
-|-
-| {{enPRchar|z}}
-| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}
-| <tt>z</tt>
-| [[zoo|'''z'''oo]], [[quiz|qui'''z''']], [[fuzz|fu'''zz''']], [[rose|ro'''s'''e]], [[xylem|'''x'''ylem]]
-|-
-| {{enPRchar|zh}}
-| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}
-| <tt>Z</tt>
-| [[vision|vi'''s'''ion]], [[treasure|trea'''s'''ure]], [[beige|bei'''ge''']]
-|}
-
-<references/>
-
-===Other symbols===
-A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. 
-
-{| {{wikitable}}
-! enPR<br>([[w:American Heritage Dictionary|AHD]])
-! [[w:International Phonetic Alphabet|IPA]]
-! [[w:SAMPA|SAMPA]]
-! Indicates
-|-
-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})
-| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)
-| <tt>"</tt> (<tt>"</tt>a)
-| primary [[w:Stress (linguistics)|stress]]
-|-
-| {{enPRchar|'}} (a{{enPRchar|'}})
-| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)
-| <tt>%</tt> (<tt>%</tt>a)
-| [[w:secondary stress|secondary stress]], sometimes tertiary stress
-|-
-| a{{enPRchar|-}}a
-| a{{IPAchar|.}}a
-| a<tt>.</tt>a
-| division between [[syllable|syllables]]
-|}
-
-'''Note:''' The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme.<!--When in the order secondary-primary, they represent the same phoneme. However, when primary-secondary, they do not, and dictionaries such as the OED simply omit the secondary.-->
-
-
+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/>
+<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/>
+<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.
 ===apples===
-apples and pears: 
+apples and pears:
 
-===Noun===
-{{en-noun|sg=[[apples]] and [[pears]]|-}}
+<h3>Noun</h3>
+{{en-noun|-|sg=apples and pears}}
+<ol><li> {Cockney rhyming slang} stairs</li>
+</ol>
 
-# {{Cockney rhyming slang}} [[stairs]]
 ***April***
-April: 
-{{wikipedia}}
-
-===Etymology===
-From {{etyl|enm}} {{term|lang=enm|apprile}}, re-[[Latinize]]d from ''[[aueril]]'', from {{etyl|fro}} {{term|lang=fro|avrill}}, from {{etyl|la}} {{term|aprilis|aprīlis|of the month of the goddess [[Venus]]|lang=la}}, perhaps based on {{etyl|ett}} {{term|lang=ett|Apru}}, from Ancient Greek {{term|Αφροδίτη||Venus|tr=Afrodíte|lang=grc}}.
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈeɪprɪl/}}, {{X-SAMPA|/"eIprIl/}} ''or as US''
-* {{a|US}} {{enPR|āʹprəl}}, {{IPA|/ˈeɪprəl/}}, {{X-SAMPA|/"eIpr@l/}}
-* {{audio|en-us-April.ogg|Audio (US)}}
-
-===Proper noun===
-{{en-proper noun|''plural:'' '''[[Aprils]]'''}}
-
-# The fourth [[month]] of the [[Gregorian calendar]], following [[March]] and preceding [[May]]. Abbreviation: '''[[Apr]]''' or '''[[Apr.]]'''
-#* '''1845''' Robert Browning: ''Home-Thoughts From Abroad'':
-#*: Oh, to be in England
-#*: Now that '''April''''s there
-# {{given name|female|from=English}} for somebody born in April; used since early 20th century.
-#* '''1947''' Hilda Laurence: ''Death of a Doll'': p.27:
-#*: I'm '''April''' Hooper. That sounds silly, the '''April''' part, but my mother was English and she always said there was nothing prettier than an English '''April'''.
-
-====Derived terms====
-{{top3}}
-* [[Aprilesque]]
-* [[April-esquire]]
-* [[April-fish]]
-* [[April fool]]
-<!--"April Fools' Day" is under "April fool"-->
-* [[April-gentleman]]
-* [[April-gowk]]
-* [[Aprilian]]
-{{mid3}}
-* [[Aprilish]]
-* {{w|April Constitution of Poland}}
-* [[April Fifth Action]]
-* [[April Fifth Movement]]
-* [[April 19 Revolution]], [[April Revolution]]
-* [[April showers]]
-{{mid3}}
-* [[April showers bring May flowers]]
-* [[April Theses]]
-* [[April Uprising]]
-* [[Bloody April]]
-* [[days of April]]
-* [[mid-April]]
-{{bottom}}
-
-====Translations====
-{{trans-top|fourth month of the Gregorian calendar}}
-* Abaza: {{tø|abq|апрель}}
-* Abkhaz: {{t|ab|мшаҧы|tr=mšaṗə}}
-* Afrikaans: {{t+|af|April|xs=Afrikaans}}
-* Alabama: [[hasiholtina istonóostàaka]], [[Eyprilka]]
-* Albanian: {{t-|sq|prill|xs=Albanian}}
-* Alutiiq: {{tø|ems|Uqna'isurt'sqaaq Iraluq}}
-* Amharic: {{t|am|ኤፕረል|tr=epräl|sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Tʼąąʼ Náchoh}}
-* Arabic: {{t|ar|ابريل|alt=أبْرِيل|tr=’abrīl|m}}, {{t|ar|نيسان|alt=نِيسَانٌ|tr=nisān|m}}
-* Aragonese: {{t|an|abril|m}}
-* Armenian: {{t+|hy|ապրիլ|tr=april}}
-*: Old Armenian: {{tø|xcl|ապրիլ|tr=april|sc=Armn}}
-* Asturian: {{t|ast|abril|m}}
-* Azeri: {{t+|az|aprel|xs=Azeri}}
-* Basque: {{t|eu|apiril}}
-* Belarusian: {{t+|be|красавік|tr=krasavik|xs=Belarusian}}
-* Bengali: {{t-|bn|এপ্রিল|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|epril}}
-* Breton: {{t+|br|Ebrel|xs=Breton}}, miz Ebrel
-* Bulgarian: {{t+|bg|април|tr=apríl}}
-* Burmese: {{t|my|ဧပြီ|sc=Mymr|tr=ebyi}}
-* Catalan: {{t|ca|abril|m}}
-* Cherokee: {{t|chr|ᎧᏬᏂ|tr=Kawoni|sc=Cher}}
-* Chinese:
-*: Mandarin: {{t|cmn|四月|tr=sìyuè}}
-* Cornish: {{t|kw|Ebrel}}, [[mys]] Ebrel
-* Crimean Tatar: {{t|crh|aprel}}
-* Czech: {{t+|cs|duben|m}}
-* Dakota: {{tø|dak|Wiitopa}}
-* Dalmatian: {{tø|dlm|aprail}}
-* Danish: {{t+|da|april}}
-* Dutch: {{t+|nl|april|m}}
-* Esperanto: {{t+|eo|aprilo|xs=Esperanto}},  {{t-|eo|Aprilo|xs=Esperanto}}
-* Estonian: {{t+|et|aprill}}
-* Ewe: {{t|ee|Afɔfiɛ}}
-* Faroese: {{t-|fo|apríl|xs=Faroese}}
-* Fijian: {{t|fj|Epereli}}
-* Filipino: [[Abril]]
-* Finnish: {{t+|fi|huhtikuu}}
-* French: {{t+|fr|avril|m}}
-* Friulian: {{t|fur|avrîl}}
-* Galician: {{t|gl|abril|m}}
-* Georgian: {{t+|ka|აპრილი|tr=aprili|sc=Geor|xs=Georgian}}
-* German: {{t+|de|April|m}}, {{t+|de|Ostermond|m}}
-* Gilbertese: {{tø|gil|Eberi|sc=Cyrl}}
-* Greek: {{t+|el|Απρίλιος|m|tr=Aprílios}}, {{t+|el|Απρίλης|m|tr=Aprílis}}
-* Greenlandic: {{t+|kl|Apriili|xs=Greenlandic}}
-* Haitian Creole: {{tø|ht|avril}}
-* Hawaiian: {{tø|haw|ʻApelila}}
-* Hebrew: {{t|he|אפריל|alt=אַפְּרִיל|tr=apríl|m}}
-* Hindi: {{t|hi|अप्रैल|tr=aprél|m}}
-* Hungarian: {{t+|hu|április}}
-* Icelandic: {{t+|is|apríl|m}}, {{t-|is|aprílmánuður|m}}
-* Ido: {{t|io|aprilo}}
-* Ilocano: {{t|ilo|abril}}
-* Inari Sami: [[cuáŋuimáánu]]
-* Indonesian: {{t-|id|april|xs=Indonesian}}
-* Interlingua: {{t|ia|april}}
-* Interlingue: {{t|ie|april}}
-* Irish: {{t+|ga|Aibreán|xs=Irish}}
-* Italian: {{t+|it|aprile|m}}
-* Japanese: {{t+|ja|四月|tr=しがつ, shigatsu}}, {{t+|ja|卯月|tr=うづき, uzuki}}
-* Javanese: {{t|jv|april}}
-* Kabuverdianu:
-*: [[Badiu]]/[[ALUPEC]] or [[ALUPEK]]: [[abril]]
-*: [[São Vicente]]: [[ébril]]
-* Kannada: {{t|kn|ಎಪ್ರಿಲ್}}
-* Kazakh: {{t|kk|сәуір|tr=säwir|sc=Cyrl}}
-* Khmer: {{t|km|មេសា|tr=meysā}}
-* Korean: {{t+|ko|사월|tr=saweol|sc=Kore}}
-{{trans-mid}}
-* Kurdish: {{t+|ku|avrêl}}
-* Kyrgyz: {{t|ky|апрел|tr=aprel|sc=Cyrl}}
-* Latin: {{t+|la|aprilis|aprīlis}}
-* Latvian: {{t+|lv|aprīlis|xs=Latvian}}
-* Limburgish: {{t|li|April}}
-* Lithuanian: {{t+|lt|balandis|m|xs=Lithuanian}}
-* Livonian: {{t|liv|april}}, {{t|liv|kõļimkū}}
-* Low German: {{t|nds|April|m}}, {{t|nds|Aprilmaand|m}}
-* Luxembourgish: {{t|lb|Abrëll|m}}, {{t|lb|Fréileng|m}}, {{t|lb|Ouschtermount|m}}
-* Macedonian: {{t+|mk|април|m|tr=ápril}}
-* Malay: {{t-|ms|april|xs=Malay}}
-* Maltese: {{t-|mt|April|xs=Maltese}}
-* Manchu: ([[duin biya]])
-* Maori: {{t|mi|äperira}}
-* Marathi: {{t|mr|एप्रिल|tr=epril}}
-* Montagnais: {{tø|moe|shiship-pishimᵘ}}
-* Navajo: {{tø|nv|Tʼą́ą́chil}}
-* Neapolitan: {{t|nap|abbrile}}
-* Norwegian: {{t+|no|april}}
-* Novial: {{t|nov|aprile}}
-* Occitan: {{t|oc|abril|m}}
-* Ojibwe: {{t|oj|iskigamizige-giizis}}
-* Old Church Slavonic: {{tø|cu|априль|m|tr=aprilĭ|sc=Cyrl|xs=Old Church Slavonic}}
-* Old English: {{t-|ang|eastermonaþ|m|alt=ēastermōnaþ|xs=Old English}}
-* Oriya: {{t|or|ଅପ୍ରେଲ|sc=Orya}}
-* Ossetian: {{tø|os|апрель|tr=aprel'|sc=Cyrl|xs=Ossetian}}
-* Persian: {{t|fa|آوریل|tr=âvrîl}}
-* Polish: {{t+|pl|kwiecień|m}}
-* Portuguese: {{t+|pt|abril|m}}
-* Romanian: {{t+|ro|aprilie}}, {{qualifier|popular}} {{t+|ro|prier}}
-* Romansch: {{t|rm|avrel|m}}
-* Russian: {{t+|ru|апрель|m|tr=aprél’}}
-* Sami: [[cuoŋománnu]]
-* Samoan: {{t|sm|aperila}}
-* Sanskrit: {{t|sa|आंग्लवर्षस्य चतुर्थमास|tr=āṅglavarṣasya caturthamāsaḥ}}
-* Scots: {{tø|sco|Aprile|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|Giblean|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|април|m|sc=Cyrl}}
-*: Roman: {{t|sh|april|m}}, {{t|sh|travanj|m}}
-* Sicilian: {{t|scn|aprili|m}}
-* Skolt Sami: {{tø|sms|pââ´zzmään}}
-* Slovak: {{t+|sk|apríl|m}}
-* Slovene: {{t-|sl|apríl|m}}
-* Sotho: {{t|st|Mmesa|xs=Sotho}}
-* Spanish: {{t+|es|abril|m}}
-* Swedish: {{t+|sv|april}}
-* Tagalog: {{t+|tl|Abril|xs=Tagalog}}
-* Tahitian: {{tø|ty|’ēperēra}}
-* Tajik: {{t-|tg|апрел|tr=aprel|sc=Cyrl|xs=Tajik}}
-* Tamil: {{t|ta|ஏப்ரல்|xs=Tamil}}
-* Tatar: {{t-|tt|äpril|xs=Tatar}}
-* Telugu: {{t|te|ఏప్రిల్|tr=april}}
-* Thai: {{t|th|เมษายน|tr=meh sáá yohn}}
-* Tok Pisin: {{t|tpi|epril}}
-* Tongan: {{t|to|'epeleli}}
-* Turkish: {{t+|tr|nisan}}
-* Ukrainian: {{t+|uk|квітень|m|tr=kvíten’|xs=Ukrainian}}
-* Upper Sorbian: [[apryl]]
-* Urdu: {{t+|ur|اپریل|m|tr=aprél|xs=Urdu}}
-* Uyghur: {{t|ug|ئاپريل|tr=april}}
-* Vietnamese: {{t|vi|tháng tư}} (月四, 月4)
-* Volapük: {{t|vo|prilul}}
-* Võro: {{t|vro|mahlakuu}}
-* Walloon: {{t|wa|avri}}
-* Welsh: {{t+|cy|Ebrill|m|xs=Welsh}}
-* West Frisian: {{t+|fy|april|xs=West Frisian}}, {{t+|fy|gersmoanne|xs=West Frisian}}
-* Wolof: {{t|wo|Awril}}
-* Yiddish: {{t-|yi|אַפּריל|m|tr=april|sc=Hebr|xs=Yiddish}}
-* Zulu: [[i-ephuleli]]
-{{trans-bottom}}
-
-====See also====
-* {{list|en|Gregorian calendar months}}
-
-===Anagrams===
-* [[Pilar#English|Pilar]]
-
+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}}.
+<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>
+<li> {{audio|en-us-April.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+{{en-proper noun|<em>plural:</em> <b>Aprils</b>}}
+<ol><li> The fourth month of the Gregorian calendar, following March and preceding May. Abbreviation: <b>Apr</b> or <b>Apr.</b></li>
+<ul><li> <b>1845</b> Robert Browning: <em>Home-Thoughts From Abroad</em>:</li>
+<ul><li> Oh, to be in England</li>
+<li> Now that <b>April</b>'s there</li>
+</ul>
+</ul>
+<li> {{given name|female|from=English}} for somebody born in April; used since early 20th century.</li>
+<ul><li> <b>1947</b> Hilda Laurence: <em>Death of a Doll</em>: p.27:</li>
+<ul><li> I'm <b>April</b> Hooper. That sounds silly, the <b>April</b> part, but my mother was English and she always said there was nothing prettier than an English <b>April</b>.</li>
+</ul>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+{top3}
+<ul><li> Aprilesque</li>
+<li> April-esquire</li>
+<li> April-fish</li>
+<li> April fool</li>
+</ul>
+<ul><li> April-gentleman</li>
+<li> April-gowk</li>
+<li> Aprilian</li>
+</ul>
+{mid3}
+<ul><li> Aprilish</li>
+<li> {{w|April Constitution of Poland}}</li>
+<li> April Fifth Action</li>
+<li> April Fifth Movement</li>
+<li> April 19 Revolution, April Revolution</li>
+<li> April showers</li>
+</ul>
+{mid3}
+<ul><li> April showers bring May flowers</li>
+<li> April Theses</li>
+<li> April Uprising</li>
+<li> Bloody April</li>
+<li> days of April</li>
+<li> mid-April</li>
+</ul>
+{bottom}
+<h4>See also</h4>
+<ul><li> {{list|en|Gregorian calendar months}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> Pilar</li>
+</ul>
 ----
-
-
 ***august***
-august: 
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/ɔːˈɡʌst/}}
-* {{a|US}} {{IPA|/ɔːˈɡʌst/|/ɑːˈɡʌst/}}
-* {{audio|en-us-august.ogg|Audio (US)}}
+august:
 
-===Etymology 1===
-From {{etyl|la}} {{term|augustus||majestic, venerable|lang=la}}.
+<h3>Pronunciation</h3>
+<ul><li> {{a|RP}} {{IPA|/ɔːˈɡʌst/}}</li>
+<li> {{a|US}} {{IPA|/ɔːˈɡʌst/|/ɑːˈɡʌst/}}</li>
+<li> {{audio|en-us-august.ogg|Audio (US)}}</li>
+</ul>
 
-====Adjective====
+<h3>Etymology 1</h3>
+From {{etyl|la}} {{term|augustus|majestic, venerable|lang=la}}.
+<h4>Adjective</h4>
 {{en-adj|august|er|more}}
-
-# [[noble|Noble]], [[venerable]], [[majestic]], [[awe-inspiring]], often of the highest social class {{qualifier|sometimes used ironically}}.
-#: ''an '''august''' patron of the arts''
-# Of noble birth.
-#: '''''august''' lineage''
-
-=====Translations=====
-{{trans-top|noble, majestic, awe-inspiring}}
-* Bulgarian: {{t|bg|царствен}}, {{t|bg|величествен}}
-* Finnish: {{t-|fi|ylevä}}
-* Russian: {{t+|ru|величественный|tr=v'elíčestv'ennyj}}, {{t+|ru|величавый|tr=v'eličáv'yj}}, {{t+|ru|царственный|tr=cárstv'ennyj}}
-{{trans-mid}}
-* Spanish: {{t-|es|majestuoso|m}}, {{t|es|augusto}}
-{{trans-bottom}}
-
-{{trans-top|of noble birth}}
-* Bulgarian: {{t+|bg|благороден}}
-{{trans-mid}}
-* Finnish: {{t-|fi|ylhäinen}}
-{{trans-bottom}}
-
-=====Derived terms=====
-* [[augustly]]
-* [[augustness]]
-
-=====Related terms=====
-* [[Augustine]]
-* [[Augustinian]]
-
-===Etymology 2===
-From [[August]]
-
-====Verb====
-{{en-verb}}
-
-# To make ripe
-# To bring to realisation
-
-===Anagrams===
-* [[Tausug#English|Tausug]]
-
+<ol><li> Noble, venerable, majestic, awe-inspiring, often of the highest social class {{qualifier|sometimes used ironically}}.</li>
+<ul><li> <em>an <b>august</b> patron of the arts</em></li>
+</ul>
+<li> Of noble birth.</li>
+<ul><li> <b><em>august</b> lineage</em></li>
+</ul>
+</ol>
+
+<h5>Derived terms</h5>
+<ul><li> augustly</li>
+<li> augustness</li>
+</ul>
+
+<h5>Related terms</h5>
+<ul><li> Augustine</li>
+<li> Augustinian</li>
+</ul>
+
+<h3>Etymology 2</h3>
+From August
+<h4>Verb</h4>
+{en-verb}
+<ol><li> To make ripe</li>
+<li> To bring to realisation</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> Tausug</li>
+</ul>
 ----
-
-
 ***barter***
-barter: 
-{{wikipedia}}
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/ˈbɑːtə(ɹ)/}}, {{X-SAMPA|/bA:t@(r)/}}
-* {{a|US}} {{enPR|bärʹ-tər}}, {{IPA|/ˈbɑɹtə˞/}}, {{X-SAMPA|/bArt@`/}}
-* {{rhymes|ɑː(r)tə(r)}}
-
-===Etymology===
-From {{etyl|fro}} ''[[barater]]'', of uncertain origin (maybe [[Celtic]]).
-
-===Noun===
-{{en-noun}}
-
-# an [[equal]] [[exchange]]
-#: ''We had no money so we had to live by '''barter'''.''
-
-====Synonyms====
-* [[swap]]
-* [[swop]]
-* [[trade]]
-* [[quid pro quo]]
-
-====Translations====
-{{trans-top|an equal exchange}}
-* Bulgarian: {{t+|bg|размяна}},  {{t|bg|бартер}}
-* Croatian: {{t|hr|trampa|f}}
-* Danish: {{t-|da|byttehandel}}
-* Dutch: [[ruil]], [[ruilhandel]]
-* Finnish: {{t-|fi|vaihtokauppa}}
-* French: {{t+|fr|troc|m}}
-{{trans-mid}}
-* German: [[Tauschhandel]] {{m}}
-* Italian: {{t-|it|baratto|m}}
-* Norwegian: {{t-|no|byttehandel|m}}
-* Portuguese: {{t+|pt|permuta}}
-* Spanish: {{t+|es|trueque}}
-* Swedish: {{t+|sv|byteshandel|c}}
-* Turkish: {{t|tr|takas}}
-{{trans-bottom}}
-
-===Verb===
-{{en-verb}}
-
-# exchange [[goods]] or [[services]] without involving [[money]]
-
-====Synonyms====
-* [[swap]]
-* [[swop]]
-* [[trade]]
-
-====Translations====
-{{trans-top|exchange goods or services without involving money}}
-* Arabic: {{t|ar|قايض}}
-* Bulgarian: {{t|bg|разменям}},  {{t|bg|правя бартер}}
-* Croatian: {{t|hr|trampiti}}
-* Dutch: {{t+|nl|ruilen}}
-* Finnish: [[tehdä vaihtokauppa]], [[vaihtaa]]
-{{trans-mid}}
-* French: {{t+|fr|troquer}}
-* German: {{t|de|tauschen}}
-* Italian: {{t+|it|barattare}}
-* Portuguese: {{t+|pt|trocar}}
-* Spanish: {{t-|es|trocar}}
-* Swedish: {{t|sv|idka byteshandel}}
-{{trans-bottom}}
-
-[[de:barter]]
-[[et:barter]]
-[[el:barter]]
-[[fr:barter]]
-[[ko:barter]]
-[[io:barter]]
-[[id:barter]]
-[[kn:barter]]
-[[hu:barter]]
-[[mg:barter]]
-[[ml:barter]]
-[[my:barter]]
-[[pl:barter]]
-[[fi:barter]]
-[[ta:barter]]
-[[te:barter]]
-[[vi:barter]]
-[[zh:barter]]
-***book***
-book: 
-{{wikipedia}}
-
-===Pronunciation===
-* {{enPR|bo͝ok}}, {{IPA|/bʊk/}}, {{X-SAMPA|/bUk/}}
-* {{audio|en-us-book.ogg|Audio (US)}} ''plural'' {{audio|en-us-books.ogg|Audio (US)}}
-* {{audio|En-uk-book.ogg|Audio (UK)}}
-* {{rhymes|ʊk}}
+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> {{rhymes|ɑː(r)tə(r)}}</li>
+</ul>
+
+<h3>Etymology</h3>
+From {{etyl|fro}} <em>barater</em>, of uncertain origin (maybe Celtic).
+<h3>Noun</h3>
+{en-noun}
+<ol><li> an equal exchange</li>
+<ul><li> <em>We had no money so we had to live by <b>barter</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> swap</li>
+<li> swop</li>
+<li> trade</li>
+<li> quid pro quo</li>
+</ul>
+
+<h3>Verb</h3>
+{en-verb}
+<ol><li> exchange goods or services without involving money</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> swap</li>
+<li> swop</li>
+<li> trade</li>
+</ul>
 
-===Etymology 1===
-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}}.
-
-====Verb====
+***book***
+book:
+{wikipedia}
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|bo͝ok}}, {{IPA|/bʊk/}}, {{X-SAMPA|/bUk/}}</li>
+<li> {{audio|en-us-book.ogg|Audio (US)}} <em>plural</em> {{audio|en-us-books.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-book.ogg|Audio (UK)}}</li>
+<li> {{rhymes|ʊk}}</li>
+</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}}.
+<h4>Verb</h4>
 {{head|en|verb form}}
-
-# {{context|UK|_|dialectal|Northern England}} {{form of|Alternative simple past|bake|lang=en}}.
-
-===Etymology 2===
-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|бук|tr=buk|lang=ru||beech}}, Albanian {{term|bung|lang=sq||chestnut, oak}}, Ancient Greek {{term|φηγός|tr=phēgós|lang=grc||oak}}, Armenian {{term|bown||trunk}}, Kurdish {{term|bûz||elm}}. More at [[beech]], [[buckwheat]].
-
-The sense development of ''beech'' to ''book'' is explained by the fact that smooth gray beech bark was commonly used as [[bookfell]].<ref>J.P. Mallory, ''Encyclopedia of Indo-European Culture'', s.v. "beech" (London: Fitroy-Dearborn, 1997), 58.</ref>
-
-====Noun====
-[[Image:Pieni2.jpg|thumb|A hard-cover book]]
-{{en-noun}}
-
-# 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]].
-#: ''She opened the '''book''' to page 37 and began to read aloud.''
-#: ''He was frustrated because he couldn't find anything about dinosaurs in the '''book'''.''
-# A long work fit for [[publication]], typically [[prose]], such as a [[novel]] or [[textbook]], and typically published as such a bound collection of sheets.
-#: ''I have three copies of his first '''book'''.''
-# A major division of a long work.
-#: ''Genesis is the first '''book''' of the Bible.''
-#: ''Many readers find the first '''book''' of ''A Tale of Two Cities'' to be confusing.''
-# A record of betting (from the use of a notebook to record what each person has bet).
-#: ''I'm running a '''book''' on who is going to win the race.''
-# A convenient collection, in a form resembling a book, of small paper items for individual use.
-#: ''a '''book''' of stamps''
-#: ''a '''book''' of raffle tickets''
-# The script of a musical.
-# {{usually|in the plural}} Records of the accounts of a business.
-# A long document stored (as [[data]]) that is or will become a book; an [[e-book]].
-# {{context|legal}} A colloquial reference to a [[book award]], a recognition for receiving the highest grade in a class (traditionally an actual book, but recently more likely a letter or certificate acknowledging the achievement).
-# {{context|poker slang}} [[four of a kind]]
-# {{sports}} A document, held by the referee, of the incidents happened in the game.
-# {{sports|by extension}} A list of all players who have been booked (received a warning) in a game.
-#* {{quote-news
-|year=2011
-|date=March 2
-|author=Andy Campbell
-|title=Celtic 1 - 0 Rangers
-|work=BBC
-|url=http://news.bbc.co.uk/sport2/hi/football/9409758.stm
-|page=
-|passage=Celtic captain Scott Brown joined team-mate Majstorovic in the '''book''' and Rangers' John Fleck was also shown a yellow card as an ill-tempered half drew to a close }}
-
-=====Synonyms=====
-* {{sense|collection of sheets of paper bound together containing printed or written material}} [[tome]] {{qualifier|especially a large book}}
-* {{sense|convenient collection of small paper items, such as stamps}} [[booklet]]
-* {{sense|major division of a published work, larger than a chapter}} [[tome]], [[volume]]
-* {{sense|script of a musical}} [[libretto]]
-* {{sense|records of the accounts of a business}} [[account]]s, [[record]]s
-
-=====Derived terms=====
-{{rel-top3|Terms derived from the noun ''book''}}
-* [[address book]]
-* [[audiobook]]
-* [[book account]]
-* [[book agent]]
-* [[book-answerer]]
-* [[book award]]
-* [[book-bearer]]
-* [[bookbinder]]
-* [[book-board]]
-* [[book-bosomed]]
-* [[book-bound]]
-* [[book-boy]]
-* [[book-burning]]
-* [[book canvasser]]
-* [[bookcase]]
-* [[book-cloth]]
-* [[book club]]
-* [[book concern]]
-* [[book-crab]]
-* [[book-credit]]
-* [[book-debt]]
-* [[book-edge gilder]]
-* [[book-edge marbler]]
-* [[book end]], [[bookend]]
-* [[bookery]]
-* [[booketeria]]
-* [[book-farmer]]
-* [[book-folder]]
-* [[book-form]]
-* [[bookful]]
-* [[book-ghoul]]
-* [[book-gill]]
-* [[book hand]]
-* [[book-holder]]
-* [[bookhood]]
-* [[book-house]]
-* [[book-hunt]]
-* [[bookie]]
-* [[bookish]]
-* [[bookism]]
-* [[bookjacket]]
-* [[bookkeeper]]
-* [[bookkeeping]]
-* [[book-label]]
-* [[book-lare]]
-* [[book-law]]
-* [[book-lear]]
-* [[book-learned]]
-* [[book-learning]]
-* [[book-length]]
-* [[bookless]]
-* [[booklet]]
-* [[booklike]]
-* [[bookling]]
-* [[booklore]]
-* [[booklouse]]
-* [[book lung]]
-* [[bookly]]
-* [[bookmaker]]
-* [[bookmaking]]
-* [[bookman]]
-{{rel-mid3}}
-* [[bookmark]], [[bookmarker]]
-* [[book match]]
-* [[book-mate]]
-* [[book-mindedness]]
-* [[book mite]]
-* [[bookmobile]]
-* [[book-muslin]]
-* [[book name]]
-* [[book-number]]
-* [[book-oath]]
-* [[book of first entry]]
-* [[book of original entry]]
-* [[Book of the Dead]]
-* [[book of the film]]
-* [[Book of God]]
-* [[book of lading]]
-* [[book of life]]
-* [[book of rates]]
-* [[book of reference]]
-* [[book of the living]]
-* [[book of words]]
-* [[book-packet]]
-* [[book piles]]
-* [[bookplate]]
-* [[book pocket]]
-* [[book-post]]
-* [[book-postage]]
-* [[book-press]]
-* [[book price]]
-* [[book prop]]
-* [[book-rate]]
-* [[book-read]]
-* [[bookrest]]
-* [[book-scorpion]]
-* [[bookseller]]
-* [[bookselling]]
-* [[bookshelf]]
-* [[bookshop]]
-* [[book-shy]]
-* [[booksie]], [[booksy]]
-* [[book-slide]]
-* [[book-society]]
-* [[book-stack]]
-* [[bookstall]]
-* [[book-stamp]]
-* [[bookstand]]
-* [[bookstore]]
-* [[book support]]
-* [[booksy]]
-* [[book-table]]
-* [[book token]]
-* [[book trade]]
-* [[book-tray]]
-* [[book-trough]]
-* [[book type]]
-* [[book value]]
-* [[bookwards]]
-* [[book-ways]]
-* [[bookwise]]
-* [[bookwork]]
-{{rel-mid3}}
-* [[book-world]]
-* [[bookworm]]
-* [[book-wright]]
-* [[booky]]
-* [[bring to book]]
-* [[burn book]]
-* [[by the book]]
-* [[casebook]]
-* [[closed book]]
-* [[close the books]]
-* [[coffee-table book]]
-* [[comic book]]
-* [[cookbook]]
-* [[cookery book]]
-* [[cook the books]]
-* [[copybook]]
-* [[coursebook]]
-* [[e-book]]
-* [[exercise book]]
-* the [[Good Book]]
-* [[guidebook]]
-* [[handbook]]
-* [[hymn book]]
-* [[in anyone's book]]
-* [[in my book]]
-* [[in someone's bad books]]
-* [[in someone's good books]]
-* [[logbook]]
-* [[make book]]
-* [[matchbook]]
-* [[notebook]]
-* [[on the books]]
-* [[open book]]
-* [[passbook]]
-* [[pension book]]
-* [[phrasebook]]
-* [[pocket-book]], [[pocketbook]]
-* [[prayer book]]
-* [[ration book]]
-* [[reading book]]
-* [[read someone like a book]]
-* [[reference book]]
-* [[rough book]]
-* [[scrapbook]]
-* [[sketch book]]
-* [[songbook]]
-* [[storybook]]
-* [[suit one's book]]
-* [[take a leaf out of someone's book]]
-* [[talk like a book]]
-* [[textbook]]
-* [[throw the book at]]
-* [[without book]]
-* [[wordbook]]
-* [[workbook]]
-* [[yearbook]]
-{{rel-bottom}}
-
-=====Translations=====
-{{trans-top|collection of sheets of paper bound together containing printed or written material}}
-* Afrikaans: {{t|af|boek}}
-* Ainu: {{tø|ain|カㇺビソㇱ|tr=kambisosh}}
-* Albanian: {{t-|sq|libër|xs=Albanian}}
-* Amharic: {{tø|am|መጽሃፍ|tr=mäṣəhaf|sc=Ethi}}
-* Arabic: {{t+|ar|كتاب|m|tr=kitāb}}
-*: [[Egyptian Arabic]]: {{tø|arz|كتاب|m|tr=kitāb|sc=Arab}}
-* Armenian: {{t+|hy|գիրք|tr=girk’}}
-* Asturian: {{t|ast|llibru|m}}
-* Azeri: {{t+|az|kitab|xs=Azeri}}
-* Bashkir: {{tø|ba|китап|tr=kitap|sc=Cyrl|xs=Bashkir}}
-* Basque: [[liburu]]
-* Belarusian: {{t-|be|кніга|f|tr=kníha|xs=Belarusian}}
-* Bengali: {{t|bn|বই|tr=bôi|sc=Beng|xs=Bengali}}, {{t|bn|গ্রন্থ|tr=grônthô|sc=Beng|xs=Bengali}}, {{t|bn|পুস্তক|tr=pustôk|sc=Beng|xs=Bengali}}
-* Breton: {{t+|br|levr|m|xs=Breton}}
-* Bulgarian: {{t+|bg|книга|f|tr=kníga}}
-* Burmese: {{t|my|စာအုပ်|sc=Mymr|tr=sa-ok|xs=Burmese}}
-* Buryat: {{tø|bxr|ном|tr=nom|sc=Cyrl}}
-* Catalan: [[llibre]] {{m}}
-* Chagatai: {{tø|chg|كتاب|tr=kitab|sc=fa-Arab}}
-* Chamorro: [[lepblo]]
-* Chechen: {{tø|ce|китаб|tr=kitab|sc=Cyrl}}
-* Chinese:
-*: [[Cantonese]]: {{tø|yue|書|sc=Hant}}, {{tø|yue|书|tr=suè|sc=Hant}}
-*: [[Mandarin]]: {{t|zh|書|sc=Hani}}, {{t|zh|书|tr=shū|sc=Hani}}
-* Coptic: {{tø|cop|ϫⲱⲙ|m|tr=dʒōm}}
-* Cornish: {{t-|kw|lyver|m|xs=Cornish}}
-* Crimean Tatar: {{tø|crh|kitap}}
-* Czech: {{t+|cs|kniha|f}}
-* Danish: {{t+|da|bog|c}}
-* Dutch: {{t+|nl|boek|n}}
-* Esperanto: {{t+|eo|libro|xs=Esperanto}}
-* Estonian: {{t+|et|raamat}}
-* Ewe: [[agbalẽ]]
-* Faroese: {{t|fo|bók|f}}
-* Finnish: {{t+|fi|kirja}}
-* French: {{t+|fr|livre|m}}, {{t|fr|bouquin|m}}
-* Gagauz: {{tø|gag|kitap}}
-* Georgian: {{t-|ka|წიგნი|tr=cigni|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Buch|n}}
-* Gilaki: {{fa-Arab|[[کیتاب]]}} (kitāb)
-* Greek: {{t+|el|βιβλίο|n|tr=vivlío}}, {{t+|el|τόμος|m|tr=tomos}}
-*: Ancient: {{tø|grc|βιβλίον|n|sc=polytonic|xs=Ancient Greek}}
-* Greenlandic: {{t-|kl|atuagaq|xs=Greenlandic}}
-* Gujarati: {{t|gu|પુસ્તક|f|tr=pustak|sc=Gujr}}
-* Hawaiian: {{tø|haw|puke}}
-* Hebrew: {{t|he|ספר|m|alt=סֵפֶר|tr=séfer}}
-* Hindi: {{t-|hi|किताब|f|tr=kitāb|xs=Hindi}}, {{t-|hi|पुस्तक|f|tr=pustak|xs=Hindi}}
-* Hungarian: {{t+|hu|könyv}}
-* Icelandic: {{t+|is|bók|f}}
-* Ido: {{t+|io|libro|xs=Ido}}
-* Indonesian: {{t+|id|buku|xs=Indonesian}}, {{t-|id|kitab|xs=Indonesian}}
-* Irish: {{t+|ga|leabhar|m|xs=Irish}}
-* Italian: {{t+|it|libro|m}}
-* Japanese: {{t+|ja|本|tr=[[ほん]], hon}}
-* Kalmyk: {{tø|xal|дегтр|tr=degtr|sc=Cyrl}}
-* Kannada: {{t|kn|ಪುಸ್ತಕ|tr=pustaka|sc=Knda}}
-* Karachay-Balkar: {{tø|krc|китап|tr=kitap|sc=Cyrl}}
-* Karakalpak: {{tø|kaa|kitap}}
-* Kazakh: {{t+|kk|кітап|tr=kitap|sc=Cyrl|xs=Kazakh}}
-* Khakas: {{tø|kjh|книга|tr=kniga|sc=Cyrl}}, {{tø|kjh|пічік|tr=píçík|sc=Cyrl}}
-* Khmer: {{t|km|សៀវភៅ|tr=sīəwpıw|sc=Khmr}}
-* Kikuyu: {{tø|ki|rifuku}}
-* Kis: {{tø|kis|egetabu}}
-* Komi-Zyrian: {{tø|kv|небӧг|tr=nebög|sc=Cyrl}}
-* Korean: {{t|ko|책|tr=chaek|sc=Kore}} ({{t|ko|冊|sc=Kore}}), {{t|ko|도서|tr=doseo|sc=Kore}} ({{t|ko|圖書|sc=Kore}})
-* Kumyk: {{tø|kum|китап|tr=kitap|sc=Cyrl}}
-* Kurdish:
-** Sorani: {{t|ku|پرتووک|tr=[[pirtûk]]|sc=ku-Arab|f}}, {{t|ku|کتێب|tr=[[kitêb]]|sc=ku-Arab|f}}
-* Kyrgyz: {{t+|ky|китеп|tr=kitep|sc=Cyrl|xs=Kyrgyz}}
-* Lao: {{t|lo|ປຶ້ມ|tr=pym|sc=Laoo}}
-* Latin: {{t+|la|liber|m}}, {{t-|la|codex|m}}
-* Latvian: {{t+|lv|grāmata|f|xs=Latvian}}
-* Lithuanian: {{t+|lt|knyga|f|xs=Lithuanian}}
-* Lojban: [[cukta]]
-* Low Saxon: {{t|nds|Book|n}}
-* Luhya: {{tø|luy|sitabu}}
-* Luxembourgish: {{t|lb|Buch|n}}
-{{trans-mid}}
-* Macedonian: {{t-|mk|книга|f|tr=kníga}}
-* Malagasy: {{t|mg|boky}}
-* Malay: {{t+|ms|buku|xs=Malay}}, {{t+|ms|kitab|xs=Malay}}, {{t|ms|pustaka}}
-* Malayalam: {{t|ml|പുസ്തകം|tr=pusthakam|sc=Mlym}}
-* Maltese: {{t-|mt|ktieb|xs=Maltese}}
-* Manx: {{t-|gv|lioar|f|xs=Manx}}
-* Maori: {{t|mi|pukapuka|xs=Maori}}
-* Marathi: {{t|mr|पुस्तक|f|tr=pustak|sc=Deva}}
-* Mongolian: {{t-|mn|ном|tr=nom|sc=Cyrl|xs=Mongolian}}
-* Nahuatl: {{t|nah|amoxtli}}
-* Navajo: {{tø|nv|naaltsoos}}
-* Nogai: {{tø|nog|китап|tr=kitap|sc=Cyrl}}
-* Norwegian:
-*: [[Bokmål]]: {{t+|no|bok|c}}
-*: [[Nynorsk]]: {{t+|nn|bok|f|xs=Norwegian Nynorsk}}
-* Occitan: {{t+|oc|libre|m|xs=Occitan}}
-* Okinawan: [[sumuchi]]
-* Old Church Slavonic: {{tø|cu|бѹкы|f|tr=buky|sc=Cyrs}}, {{tø|cu|кънига|f|tr=kŭniga|sc=Cyrs}}
-* Old English: {{t-|ang|boc|f|alt=bōc|xs=Old English}}
-* Old Irish: {{tø|sga|lebor|m|xs=Old Irish}}
-* Old Provençal: {{tø|pro|libre}}
-* Old Prussian: [[lāiskas]] {{m}}
-* Ossetian: {{tø|os|чиныг|tr=činyg|sc=Cyrl}}
-* Ottoman Turkish: {{tø|ota|کتاب|tr=kitâb|sc=ota-Arab|xs=Ottoman Turkish}}
-* Papiamentu: {{tø|pap|buki}}
-* Persian: {{t+|fa|کتاب|alt=کِتاب|tr=ketâb|xs=Persian}}, {{t+|fa|نسک|tr=nask|xs=Persian}}, {{qualifier|Middle Persian}} {{t|fa|نامک|tr=nâmak|sc=fa-Arab}}
-* Polish: {{t+|pl|książka|f}}, {{t|pl|księga|f}}
-* Portuguese: {{t+|pt|livro|m}}
-* Punjabi: {{t|pa|ਪੁਸਤਕ|tr=pustak|sc=Guru}}
-* Romani: {{tø|rom|ginadyi|f}}
-* Romanian: {{t+|ro|carte|f}}
-* Russian: {{t+|ru|книга|f|tr=kníga}}, {{t|ru|книжка|f|tr=knížka|sc=Cyrl}}
-* Sanskrit: {{t|sa|पुस्तक|n|tr=pustaka|xs=Sanskrit}}, {{t|sa|ग्रन्थ|n|tr=grantha|xs=Sanskrit}}
-* Saterland Frisian: {{tø|stq|bouk}}
-* Scottish Gaelic: {{t-|gd|leabhar|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|књига|f}}
-*: Roman: {{t|sh|knjiga|f}}
-* Shor: {{tø|cjs|ном|tr=nom|sc=Cyrl}}, {{tø|cjs|книга|tr=kniga|sc=Cyrl}}, {{tø|cjs|книге|tr=knige|sc=Cyrl}}
-* Sicilian: {{t+|scn|libbru|m|xs=Sicilian}}
-* Sinhalese: {{t|si|පොත|tr=pota|sc=Sinh}}
-* Skolt Sami: {{tø|sms|ǩe´rjj}}
-* Slovak: {{t-|sk|kniha|f}}
-* Slovene: {{t+|sl|knjiga|f}}
-* Somali: {{t-|so|buug|xs=Somali}}
-* Sotho: {{t+|st|buka|xs=Sotho}}
-* Southern Altai: {{tø|alt|бичик|tr=biçik|sc=Cyrl}}
-* Spanish: {{t+|es|libro|m}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}, {{t|sw|vitabu|p}}
-* Swedish: {{t+|sv|bok|c}}
-* Tagalog: [[aklat]] {{t|tl|libro}}, {{t|tl|aklat}}
-* Tajik: {{t+|tg|китоб|tr=kitob|sc=Cyrl|xs=Tajik}}
-* Tamil: {{t|ta|நூல்|tr=nūl|sc=Taml}}, {{t|ta|புத்தகம்|tr=puttakam|sc=Taml}}
-* Tatar: {{t-|tt|китап|xs=Tatar}}
-* Telugu: {{t|te|పుస్తకం|tr=pustakaṁ|sc=Telu}}, {{t|te|పొత్తం|tr=pottaṁ|sc=Telu}}
-* Thai: {{t|th|หนังสือ|tr=nǎngsěu|sc=Thai}}, {{t|th|สมุด|tr=sàmòot|sc=Thai}}
-* Tibetan: {{tø|bo|དཔེ་ཆ|tr=tbe. cha|sc=Tibt|xs=Tibetan}}
-* Tok Pisin: {{t|tpi|buk}}
-* Turkish: {{t+|tr|kitap}}, {{t+|tr|betik}}
-* Turkmen: {{t-|tk|kitap|xs=Turkmen}}
-* Tuvan: {{tø|tyv|ном|tr=nom|sc=Cyrl}}
-* Ukrainian: {{t|uk|книжка|f|tr=knýžka}}, {{t|uk|книга|f|tr=knýha}} {{qualifier|elevated style}}
-* Urdu: {{t-|ur|کتاب|f|tr=kitāb|xs=Urdu}}, {{t-|ur|پستک|f|tr=pustak|xs=Urdu}}
-* Uyghur: {{t-|ug|كىتاب|tr=kitab|sc=ug-Arab|xs=Uyghur}}
-* Uzbek: {{t-|uz|kitob|xs=Uzbek}}
-* Vietnamese: {{t|vi|sách}}, {{t|vi|cuốn sách}}, {{t|vi|quyển sách}}, {{qualifier|notebook}} {{t|vi|sổ}}, {{qualifier|textbook}} {{t|vi|sách giáo khoa}}
-* Volapük: {{t|vo|buk}}
-* Walloon: {{t+|wa|live|xs=Walloon}}
-* Welsh: {{t+|cy|llyfr|m|xs=Welsh}}
-* West Frisian: {{t+|fy|boek|n|xs=West Frisian}}
-* Wolof: {{t|wo|tééré|alt=tééré bi}}
-* Yakut: {{tø|sah|кинигэ|tr=kinige|sc=Cyrl}}
-* Yiddish: {{t|yi|בוך|tr=bukh|n}}
-* Yucatec Maya: {{tø|yua|hu’un}}
-* Zazaki: {{tø|zza|wanebend|m}}
-{{trans-bottom}}
-
-{{trans-top|record of betting}}
-* Arabic: {{t|ar|يسجل|sc=Arab}}
-* Bengali: {{t|bn|বুক|sc=Beng|xs=Bengali}}
-* German: {{t-|de|Wettliste|f}}
-* Greek: {{t+|el|στοίχημα|n}}
-{{trans-mid}}
-* Japanese: {{t|ja|記録|tr=きろく, kiroku|sc=Jpan}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Vietnamese: [[đánh bài]], [[đánh cuộc]]
-{{trans-bottom}}
-
-{{trans-top|convenient collection of small paper items, such as stamps}}
-* Catalan: [[àlbum]], {{m}}
-* Croatian: {{t|hr|album|m}}
-* Czech: {{t|cs|album|n}}
-* Danish: {{t+|da|album|n}}
-* Dutch: {{t+|nl|boek|n}}, {{t+|nl|album|n}}
-* Ewe: [[agbalẽ]]
-* Finnish: {{t+|fi|albumi}}
-* Georgian: {{t|ka|ალბომი|tr=albomi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Album|n}}
-* Greek: {{t+|el|άλμπουμ|n}}
-* Italian: {{t-|it|blocchetto|m}}
-{{trans-mid}}
-* Japanese: {{t|ja|束|tr=たば, taba|sc=Jpan}}, {{t|ja|綴り|tr=つづり, tsuzuri|sc=Jpan}}
-* Macedonian: {{t-|mk|албум|m|tr=álbum}}
-* Portuguese: {{t+|pt|álbum|m}}
-* Russian: {{t|ru|альбом|m|tr=al’bóm}}
-* Slovene: {{t-|sl|album|m}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Swedish: {{t+|sv|häfte|n}}
-* Turkish: {{t+|tr|albüm}}
-* Vietnamese: {{t+|vi|sổ|xs=Vietnamese}}
-* Welsh: {{t|cy|albwm|f|xs=Welsh}}
-{{trans-bottom}}
-
-{{trans-top|major division of a published work, larger than a chapter}}
-* Bulgarian: {{t+|bg|том|m}}
-* Catalan: [[llibre]]
-* Danish: {{t-|da|bind|n}}
-* Dutch: {{t+|nl|boek|n}}
-* Ewe: [[agbalẽ]]
-* Finnish: {{t+|fi|kirja}}
-* Greek: {{t+|el|βιβλίο|n|tr=vivlío}}, {{t+|el|τόμος|m|tr=tómos}}
-* Japanese: {{t|ja|巻|tr=かん, kan|sc=Jpan}}, {{t|ja|編|tr=へん, hen|sc=Jpan}}
-{{trans-mid}}
-* Macedonian: {{t-|mk|книга|f|tr=kníga}}, {{t-|mk|том|m|tr=tom}}
-* Old English: {{t-|ang|boc|f|alt=bōc|xs=Old English}}
-* Russian: {{t+|ru|книга|f|tr=kníga}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Swedish: {{t+|sv|bok|c}} {{qualifier|if physically bound into one book}}, {{t+|sv|volym|c}} {{qualifier|if part of a multi-book format}}
-* Turkish: {{t+|tr|cilt}}
-* Vietnamese: {{t+|vi|tập|xs=Vietnamese}}, {{t+|vi|quyển|xs=Vietnamese}}
-{{trans-bottom}}
-
-{{trans-top|script of a musical}}
-* Bengali: {{t|bn|স্বরলিপি |sc=Beng|xs=Bengali}}
-* Bulgarian: {{t|bg|либрето|n}}
-* Ewe: [[agbalẽ]] {{n}}
-* Finnish: {{t+|fi|libretto}}
-{{trans-mid}}
-* Greek: {{t|el|σενάριο μιούζικαλ|n}}
-* Japanese: {{t|ja|台本|tr=だいほん, daihon|sc=Jpan}}, {{t|ja|脚本|tr=きゃくほん, kyakuhon|sc=Jpan}}
-* Portuguese: {{t-|pt|livreto|m}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-{{trans-bottom}}
-
-{{trans-top|usually in plural: records of the accounts of a business}}
-* Arabic: {{t-|ar|سجل|m|alt=سِجِلّ}}
-* Bengali: {{t|bn|খাতা |sc=Beng|xs=Bengali}}
-* Catalan: [[llibres]]
-* Dutch: [[boeken]] {{n}}, ''pl. only''
-* Ewe: [[agbalẽwo]] {{n|p}}
-* Finnish: {{t-|fi|kirjanpito}}
-* German: {{t+|de|Bücher|n|p}}
-* Greek: ([[λογιστικά]]) [[βιβλία]] {{n|p}}
-{{trans-mid}}
-* Japanese: {{t|ja|帳簿|tr=ちょうぼ, chōbo|sc=Jpan}}
-* Polish: {{t|pl|księgi}}
-* Portuguese: {{t+|pt|livro|m}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Swedish: {{t+|sv|bokföring|c}}
-* Tagalog: [[libro]]
-* Vietnamese: [[sổ sách kế toán]]
-{{trans-bottom}}
-
-{{trans-top|ebook}}
-* Azeri: {{t|az|Rəqəmsəl Kitab|xs=Azeri}}
-* Bengali: {{t|bn|ই-বই|sc=Beng|xs=Bengali}}
-* Dutch: {{t+|nl|boek|n}}, {{t-|nl|e-book}}
-* Finnish: {{t-|fi|e-kirja}}, {{t+|fi|sähköinen kirja}}, {{t+|fi|digitaalinen kirja}}
-* German: {{t+|de|E-Book|n}}
-* Greek: {{t-|el|ψηφιακό βιβλίο}}
-* Indonesian: {{t|id|buku elektronik}}
-{{trans-mid}}
-* Japanese: {{t|ja|電子書籍|tr=でんししょせき, denshi shoseki|sc=Jpan}}
-* Macedonian: {{t|mk|е-книга|f|tr=e-kníga}}, {{t|mk|електронска книга|f|tr=elektrónska kníga}}
-* Persian: {{t|fa|کتاب الکترونیکی|tr=ketāb e elektroniki|xs=Persian}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Vietnamese: {{t+|vi|sách|xs=Vietnamese}}
-* Welsh: {{t|cy|e-lyfr|xs=Welsh}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|br}}: [[levr]] {{m}}, [[levrioù]] {{p}} (1)
-* {{ttbc|gn}}: [[kuatia ñe'ẽ]]
-* {{ttbc|ia}}: [[libro]]
-* {{ttbc|nds}}: [[Book]]
-* {{ttbc|mnc}}: [[bithe]]
-* {{ttbc|nov}}: [[libre]]
-* {{ttbc|tpn}}: [[papera]]
-* {{ttbc|vo}}: [[buk]]
-{{trans-bottom}}
-
-=====See also=====
-* [[incunable]]
-* [[scroll]]
-* [[tome]]
-* [[volume]]
-
-====References====
-* Weisenberg, Michael (2000) ''[http://www.poker1.com/mcu/pokerdictionary/mculib_dictionary_info.asp The Official Dictionary of Poker].'' MGI/Mike Caro University. ISBN 978-1880069523
-
-====Verb====
-{{en-verb}}
-
-# {{transitive}} To [[reserve]] (something) for future use.
-#: ''I want to '''book''' a hotel room for tomorrow night''
-#: ''I can '''book''' tickets for the concert next week''
-# {{law enforcement|transitive}} To [[penalise]] (someone) for an offence.
-#: ''The police '''booked''' him for driving too fast''
-# {{sports}} To issue with a [[caution]], usually a [[yellow card]], or a [[red card]] if a yellow card has already been issued.
-# {{intransitive|slang}} To travel very fast.
-#: ''He was really '''booking''', until he passed the speed trap.''
-# {{transitive}} To write down.
-#: ''They '''booked''' that message from the hill''
-# {{transitive|legal}} To receive the highest [[grade]] in a class.
-#: ''The top three students had a bet on which one was going to '''book''' their intellectual property class.''
-# {{intransitive|slang}} To leave.
-#: ''He was here earlier, but he '''booked'''.''
-
-=====Synonyms=====
-* {{sense|reserve}} [[reserve]]
-* {{sense|penalise}} [[penalise]]/[[penalize]], [[punish]]
-* {{sense|slang: travel very fast}} [[bomb]] {{qualifier|slang}}, [[hurtle]], [[rocket]] {{qualifier|informal}}, [[speed]], [[shoot]], [[whiz]] {{qualifier|informal}}
-* {{sense|write down}} make a note of, [[note]] down, [[record]], [[write down]]
-
-=====Derived terms=====
+<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>
+<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>
+<ul><li> <em>She opened the <b>book</b> to page 37 and began to read aloud.</em></li>
+<li> <em>He was frustrated because he couldn't find anything about dinosaurs in the <b>book</b>.</em></li>
+</ul>
+<li> A long work fit for publication, typically prose, such as a novel or textbook, and typically published as such a bound collection of sheets.</li>
+<ul><li> <em>I have three copies of his first <b>book</b>.</em></li>
+</ul>
+<li> A major division of a long work.</li>
+<ul><li> <em>Genesis is the first <b>book</b> of the Bible.</em></li>
+<li> <em>Many readers find the first <b>book</b> of </em>A Tale of Two Cities<em> to be confusing.</em></li>
+</ul>
+<li> A record of betting (from the use of a notebook to record what each person has bet).</li>
+<ul><li> <em>I'm running a <b>book</b> on who is going to win the race.</em></li>
+</ul>
+<li> A convenient collection, in a form resembling a book, of small paper items for individual use.</li>
+<ul><li> <em>a <b>book</b> of stamps</em></li>
+<li> <em>a <b>book</b> of raffle tickets</em></li>
+</ul>
+<li> The script of a musical.</li>
+<li> {{usually|in the plural}} Records of the accounts of a business.</li>
+<li> A long document stored (as data) that is or will become a book; an e-book.</li>
+<li> {{context|legal}} A colloquial reference to a book award, a recognition for receiving the highest grade in a class (traditionally an actual book, but recently more likely a letter or certificate acknowledging the achievement).</li>
+<li> {{context|poker slang}} four of a kind</li>
+<li> {sports} A document, held by the referee, of the incidents happened in the game.</li>
+<li> {{sports|by extension}} A list of all players who have been booked (received a warning) in a game.</li>
+<ul><li> {{quote-news|year=2011|date=March 2|author=Andy Campbell|title=Celtic 1 - 0 Rangers|work=BBC|url=http://news.bbc.co.uk/sport2/hi/football/9409758.stm|page=|passage=Celtic captain Scott Brown joined team-mate Majstorovic in the <b>book</b> and Rangers' John Fleck was also shown a yellow card as an ill-tempered half drew to a close }}</li>
+</ul>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|collection of sheets of paper bound together containing printed or written material}} tome {{qualifier|especially a large book}}</li>
+<li> {{sense|convenient collection of small paper items, such as stamps}} booklet</li>
+<li> {{sense|major division of a published work, larger than a chapter}} tome, volume</li>
+<li> {{sense|script of a musical}} libretto</li>
+<li> {{sense|records of the accounts of a business}} accounts, records</li>
+</ul>
+
+<h5>Derived terms</h5>
+{{rel-top3|Terms derived from the noun <em>book</em>}}
+<ul><li> address book</li>
+<li> audiobook</li>
+<li> book account</li>
+<li> book agent</li>
+<li> book-answerer</li>
+<li> book award</li>
+<li> book-bearer</li>
+<li> bookbinder</li>
+<li> book-board</li>
+<li> book-bosomed</li>
+<li> book-bound</li>
+<li> book-boy</li>
+<li> book-burning</li>
+<li> book canvasser</li>
+<li> bookcase</li>
+<li> book-cloth</li>
+<li> book club</li>
+<li> book concern</li>
+<li> book-crab</li>
+<li> book-credit</li>
+<li> book-debt</li>
+<li> book-edge gilder</li>
+<li> book-edge marbler</li>
+<li> book end, bookend</li>
+<li> bookery</li>
+<li> booketeria</li>
+<li> book-farmer</li>
+<li> book-folder</li>
+<li> book-form</li>
+<li> bookful</li>
+<li> book-ghoul</li>
+<li> book-gill</li>
+<li> book hand</li>
+<li> book-holder</li>
+<li> bookhood</li>
+<li> book-house</li>
+<li> book-hunt</li>
+<li> bookie</li>
+<li> bookish</li>
+<li> bookism</li>
+<li> bookjacket</li>
+<li> bookkeeper</li>
+<li> bookkeeping</li>
+<li> book-label</li>
+<li> book-lare</li>
+<li> book-law</li>
+<li> book-lear</li>
+<li> book-learned</li>
+<li> book-learning</li>
+<li> book-length</li>
+<li> bookless</li>
+<li> booklet</li>
+<li> booklike</li>
+<li> bookling</li>
+<li> booklore</li>
+<li> booklouse</li>
+<li> book lung</li>
+<li> bookly</li>
+<li> bookmaker</li>
+<li> bookmaking</li>
+<li> bookman</li>
+</ul>
+{rel-mid3}
+<ul><li> bookmark, bookmarker</li>
+<li> book match</li>
+<li> book-mate</li>
+<li> book-mindedness</li>
+<li> book mite</li>
+<li> bookmobile</li>
+<li> book-muslin</li>
+<li> book name</li>
+<li> book-number</li>
+<li> book-oath</li>
+<li> book of first entry</li>
+<li> book of original entry</li>
+<li> Book of the Dead</li>
+<li> book of the film</li>
+<li> Book of God</li>
+<li> book of lading</li>
+<li> book of life</li>
+<li> book of rates</li>
+<li> book of reference</li>
+<li> book of the living</li>
+<li> book of words</li>
+<li> book-packet</li>
+<li> book piles</li>
+<li> bookplate</li>
+<li> book pocket</li>
+<li> book-post</li>
+<li> book-postage</li>
+<li> book-press</li>
+<li> book price</li>
+<li> book prop</li>
+<li> book-rate</li>
+<li> book-read</li>
+<li> bookrest</li>
+<li> book-scorpion</li>
+<li> bookseller</li>
+<li> bookselling</li>
+<li> bookshelf</li>
+<li> bookshop</li>
+<li> book-shy</li>
+<li> booksie, booksy</li>
+<li> book-slide</li>
+<li> book-society</li>
+<li> book-stack</li>
+<li> bookstall</li>
+<li> book-stamp</li>
+<li> bookstand</li>
+<li> bookstore</li>
+<li> book support</li>
+<li> booksy</li>
+<li> book-table</li>
+<li> book token</li>
+<li> book trade</li>
+<li> book-tray</li>
+<li> book-trough</li>
+<li> book type</li>
+<li> book value</li>
+<li> bookwards</li>
+<li> book-ways</li>
+<li> bookwise</li>
+<li> bookwork</li>
+</ul>
+{rel-mid3}
+<ul><li> book-world</li>
+<li> bookworm</li>
+<li> book-wright</li>
+<li> booky</li>
+<li> bring to book</li>
+<li> burn book</li>
+<li> by the book</li>
+<li> casebook</li>
+<li> closed book</li>
+<li> close the books</li>
+<li> coffee-table book</li>
+<li> comic book</li>
+<li> cookbook</li>
+<li> cookery book</li>
+<li> cook the books</li>
+<li> copybook</li>
+<li> coursebook</li>
+<li> e-book</li>
+<li> exercise book</li>
+<li> the Good Book</li>
+<li> guidebook</li>
+<li> handbook</li>
+<li> hymn book</li>
+<li> in anyone's book</li>
+<li> in my book</li>
+<li> in someone's bad books</li>
+<li> in someone's good books</li>
+<li> logbook</li>
+<li> make book</li>
+<li> matchbook</li>
+<li> notebook</li>
+<li> on the books</li>
+<li> open book</li>
+<li> passbook</li>
+<li> pension book</li>
+<li> phrasebook</li>
+<li> pocket-book, pocketbook</li>
+<li> prayer book</li>
+<li> ration book</li>
+<li> reading book</li>
+<li> read someone like a book</li>
+<li> reference book</li>
+<li> rough book</li>
+<li> scrapbook</li>
+<li> sketch book</li>
+<li> songbook</li>
+<li> storybook</li>
+<li> suit one's book</li>
+<li> take a leaf out of someone's book</li>
+<li> talk like a book</li>
+<li> textbook</li>
+<li> throw the book at</li>
+<li> without book</li>
+<li> wordbook</li>
+<li> workbook</li>
+<li> yearbook</li>
+</ul>
+{rel-bottom}
+<h5>See also</h5>
+<ul><li> incunable</li>
+<li> scroll</li>
+<li> tome</li>
+<li> volume</li>
+</ul>
+
+<h4>References</h4>
+<ul><li> Weisenberg, Michael (2000) <em>[http://www.poker1.com/mcu/pokerdictionary/mculib_dictionary_info.asp The Official Dictionary of Poker].</em> MGI/Mike Caro University. ISBN 978-1880069523</li>
+</ul>
+
+<h4>Verb</h4>
+{en-verb}
+<ol><li> {transitive} To reserve (something) for future use.</li>
+<ul><li> <em>I want to <b>book</b> a hotel room for tomorrow night</em></li>
+<li> <em>I can <b>book</b> tickets for the concert next week</em></li>
+</ul>
+<li> {{law enforcement|transitive}} To penalise (someone) for an offence.</li>
+<ul><li> <em>The police <b>booked</b> him for driving too fast</em></li>
+</ul>
+<li> {sports} To issue with a caution, usually a yellow card, or a red card if a yellow card has already been issued.</li>
+<li> {{intransitive|slang}} To travel very fast.</li>
+<ul><li> <em>He was really <b>booking</b>, until he passed the speed trap.</em></li>
+</ul>
+<li> {transitive} To write down.</li>
+<ul><li> <em>They <b>booked</b> that message from the hill</em></li>
+</ul>
+<li> {{transitive|legal}} To receive the highest grade in a class.</li>
+<ul><li> <em>The top three students had a bet on which one was going to <b>book</b> their intellectual property class.</em></li>
+</ul>
+<li> {{intransitive|slang}} To leave.</li>
+<ul><li> <em>He was here earlier, but he <b>booked</b>.</em></li>
+</ul>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|reserve}} reserve</li>
+<li> {{sense|penalise}} penalise/penalize, punish</li>
+<li> {{sense|slang: travel very fast}} bomb {{qualifier|slang}}, hurtle, rocket {{qualifier|informal}}, speed, shoot, whiz {{qualifier|informal}}</li>
+<li> {{sense|write down}} make a note of, note down, record, write down</li>
+</ul>
+
+<h5>Derived terms</h5>
 {{rel-top|Terms derived from the verb “book”}}
-* [[bookable]]
-* [[double-book]]
-* [[overbook]]
-{{rel-mid}}
-* [[rebook]]
-* [[unbook]]
-* [[underbook]]
-{{rel-bottom}}
-
-=====Translations=====
-{{trans-top|reserve}}
-* Arabic: {{t|ar|حجز|tr=ḥájaza|sc=Arab}}, imperfect: {{t|ar|يحجز|tr=yaḥjuzu|sc=Arab}}
-* Bulgarian: {{t+|bg|запазвам|tr=zapazvam}}
-* Catalan: {{t+|ca|reservar}}
-* Chinese:
-*: Mandarin: {{t|zh|預訂|sc=Hani}}, {{t|zh|预订|tr=yùdìng|sc=Hani}}
-* Croatian: {{t-|hr|bukirati}}, {{t-|hr|predbilježiti}}
-* Czech: {{t-|cs|rezervovat}}, {{t-|cs|zarezervovat}}
-* Danish: {{t-|da|reservere}}
-* Dutch: {{t+|nl|boeken}}, {{t+|nl|reserveren}}
-* Esperanto: {{t-|eo|rezervi|xs=Esperanto}}
-* Finnish: {{t+|fi|varata}}, {{t+|fi|tehdä}} {{t+|fi|varaus}}
-* French: {{t+|fr|réserver}}
-* Galician: {{t-|gl|reservar|xs=Galician}}
-* Georgian: {{t|ka|რეგისტრირება|tr=registrireba|sc=Geor}}, {{t|ka|რეგისტრაციაში გატარება|tr=registrac'iaši gatareba|sc=Geor}}
-* German: {{t+|de|buchen}}, {{t+|de|reservieren}}
-* Greek: {{t+|el|κρατώ|tr=krató}}, {{t+|el|προκρατ|tr=prokrató}}, {{t+|el|κλείνω|tr=kleíno}}
-* Hungarian: {{t+|hu|lefoglal}}
-* Indonesian: {{t-|id|pesan|xs=Indonesian}}
-* Interlingua: [[reservar]]
-* Italian: {{t+|it|prenotare}}, {{t+|it|riservare}}
-{{trans-mid}}
-* Japanese: {{t|ja|予約|tr=よやくする, yoyaku-surú|alt=予約する|sc=Jpan}}
-* Korean: {{t|ko|예약|tr=yeyak-hada|alt=예약하다|sc=Kore}} ({{t|ko|豫約|sc=Kore}} + {{t|ko|하다|sc=Kore}})
-* Macedonian: {{t|mk|резервира|tr=rezervíra}}, {{t|mk|закажува|tr=zakážuva}}
-* Malay: {{t|ms|tempah}}
-* Norwegian: {{t-|no|reservere}}
-* Persian: {{t-|fa|رزرو کردن|tr=rezerv kardan|xs=Persian}}
-* Polish: {{t|pl|zarezerwować}}, {{t|pl|zabukować}}
-* Portuguese: {{t+|pt|reservar}}
-* Russian: {{t|ru|бронировать|tr=bronírovat’}} {{impf}}, {{t|ru|забронировать|tr=zabronírovat’}} {{pf.}} {{qualifier|esp. hotel rooms}}, {{t|ru|резервировать|tr=rezervírovat’|sc=Cyrl}} {{impf}}, {{t|ru|зарезервировать|tr=zarezervírovat’|sc=Cyrl}} {{pf.}}, {{t|ru|заказывать|tr=zakázyvat’|sc=Cyrl}} {{impf}}, {{t|ru|заказать|tr=zakazát'|sc=Cyrl}} {{pf.}}
-* Slovak: {{t|sk|rezervovať}}, {{t|sk|zarezervovať}}
-* Spanish: {{t-|es|reservar}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Swedish: {{t+|sv|boka}}
-* Turkish: {{t-|tr|yer ayırma}}, {{t|tr|kitap}}
-* Vietnamese: [[thuê]] {{t|vi|phòng|xs=Vietnamese}} (to rent a hotel room); {{t|vi|mua vé|xs=Vietnamese}} (concert, train, airplane, etc.)
-* Welsh: {{t|cy|cadw|xs=Welsh}}
-{{trans-bottom}}
-
-{{trans-top|penalise}}
-* Arabic: {{t|ar|يعاقب}}
-* Dutch: {{t+|nl|beboeten}}
-* Galician: {{t-|gl|multar|xs=Galician}}
-* German: {{t+|de|bestrafen}}
-* Italian: {{t+|it|ammonire}}
-* Japanese: {{t|ja|調書を取る|tr=ちょうしょをとる, chōsho wo toru|sc=Jpan}}
-{{trans-mid}}
-* Polish: {{t|pl|ukarać}}
-* Portuguese: {{t+|pt|multar}}
-* Spanish: {{t-|es|multar}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Vietnamese: {{t+|vi|phạt|xs=Vietnamese}}
-* Welsh: {{t|cy|cosbi|xs=Welsh}}, {{t|cy|bwcio|xs=Welsh}}
-{{trans-bottom}}
-
-<!--Note: add SLANG terms to this table, where these exist-->
-{{trans-top|travel very fast}}
-* Dutch: {{t+|nl|boeken}}, {{t+|nl|vlammen}}
-* German: {{t+|de|rasen}}
-* Japanese: {{t|ja|スピードを出す|tr=supīdo wo dasu|sc=Jpan}}, {{t|ja|飛ばす|tr=とばす, tobasu|sc=Jpan}}
-{{trans-mid}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Vietnamese: [[chạy]] {{t|vi|trốn|xs=Vietnamese}} (implies escaping from someone)
-{{trans-bottom}}
-
-{{trans-top|write down}}
-* Bulgarian: {{t|bg|записвам}}
-* Catalan: [[anotar]]
-* Danish: {{t-|da|nedskrive}}, {{t-|da|notere}}
-* Dutch: {{t-|nl|te boek stellen}}, {{t-|nl|noteren}}
-* Finnish: {{t+|fi|kirjata}}
-* Galician: {{t-|gl|anotar|xs=Galician}}
-* German: {{t|de|notieren}}, {{t+|de|schreiben}}
-* Greek: {{t+|el|γράφω}}, {{t|el|καταχωρώ}}, {{t|el|σημειώνω}}
-* Japanese: {{t|ja|記入する|tr=きにゅうする, kinyūsuru|sc=Jpan}}
-{{trans-mid}}
-* Macedonian: {{t|mk|внесува|tr=vnésuva}}, {{t|mk|запишува|tr=zapíšuva}}, {{t|mk|заведува|tr=zavéduva}}
-* Norwegian: {{t-|no|notere}}, {{t-|no|nedskrive}}
-* Polish: {{t|pl|spisać}}
-* Portuguese: {{t+|pt|anotar}}
-* Spanish: {{t+|es|anotar}}
-* Swahili: {{t+|sw|kitabu|xs=Swahili}}
-* Swedish: {{t-|sv|bokföra}}, {{t-|sv|skriva in}}
-* Vietnamese: [[ghi]] {{t+|vi|xuống|xs=Vietnamese}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|vo}}: [[resärfön]] (1)
-{{trans-bottom}}
-
-===Statistics===
-* {{rank|taking|information|seem|468|book|story|deep|meet}}
-
-===Anagrams===
-* [[boko#English|boko]]
-* [[kobo#English|kobo]]
-
-===References===
-<references/>
-
-[[Category:1000 English basic words]]
-[[Category:en:Poker]]
-
-----
-
-
-book: 
-
-===Etymology===
+<ul><li> bookable</li>
+<li> double-book</li>
+<li> overbook</li>
+</ul>
+{rel-mid}
+<ul><li> rebook</li>
+<li> unbook</li>
+<li> underbook</li>
+</ul>
+{rel-bottom}
+<h3>Statistics</h3>
+<ul><li> {{rank|taking|information|seem|468|book|story|deep|meet}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> boko</li>
+<li> kobo</li>
+</ul>
+
+<h3>References</h3>
+<references/>Category:1000 English basic wordsCategory:en:Poker----
+book:
+
+<h3>Etymology</h3>
 {{etyl|ang|enm}} {{term|boc|bōc|lang=ang}}
-
-===Noun===
-{{enm-noun}}
-
-# {{alternative form of|booke|lang=enm}}
-
-[[af:book]]
-[[ar:book]]
-[[az:book]]
-[[zh-min-nan:book]]
-[[bs:book]]
-[[ca:book]]
-[[cs:book]]
-[[cy:book]]
-[[da:book]]
-[[de:book]]
-[[et:book]]
-[[el:book]]
-[[es:book]]
-[[eo:book]]
-[[eu:book]]
-[[fa:book]]
-[[fr:book]]
-[[gl:book]]
-[[ko:book]]
-[[hy:book]]
-[[hr:book]]
-[[io:book]]
-[[id:book]]
-[[iu:book]]
-[[zu:book]]
-[[it:book]]
-[[jv:book]]
-[[kn:book]]
-[[ka:book]]
-[[kk:book]]
-[[sw:book]]
-[[ku:book]]
-[[ky:book]]
-[[lo:book]]
-[[lv:book]]
-[[lt:book]]
-[[li:book]]
-[[hu:book]]
-[[mk:book]]
-[[mg:book]]
-[[ml:book]]
-[[my:book]]
-[[fj:book]]
-[[nl:book]]
-[[ja:book]]
-[[no:book]]
-[[oc:book]]
-[[km:book]]
-[[pl:book]]
-[[pt:book]]
-[[ro:book]]
-[[ru:book]]
-[[sq:book]]
-[[si:book]]
-[[simple:book]]
-[[so:book]]
-[[sr:book]]
-[[fi:book]]
-[[sv:book]]
-[[tl:book]]
-[[ta:book]]
-[[te:book]]
-[[th:book]]
-[[tg:book]]
-[[chr:book]]
-[[tr:book]]
-[[ug:book]]
-[[uk:book]]
-[[ur:book]]
-[[vi:book]]
-[[zh:book]]
+<h3>Noun</h3>
+{enm-noun}
+<ol><li> {{alternative form of|booke|lang=enm}}</li>
+</ol>
+af:bookar:bookaz:bookzh-min-nan:bookbs:bookca:bookcs:bookcy:bookda:bookde:booket:bookel:bookes:bookeo:bookeu:bookfa:bookfr:bookgl:bookko:bookhy:bookhr:bookio:bookid:bookiu:bookzu:bookit:bookjv:bookkn:bookka:bookkk:booksw:bookku:bookky:booklo:booklv:booklt:bookli:bookhu:bookmk:bookmg:bookml:bookmy:bookfj:booknl:bookja:bookno:bookoc:bookkm:bookpl:bookpt:bookro:bookru:booksq:booksi:booksimple:bookso:booksr:bookfi:booksv:booktl:bookta:bookte:bookth:booktg:bookchr:booktr:bookug:bookuk:bookur:bookvi:bookzh:book
 ***brown***
-brown: 
-{{wikipedia}}
-[[File:Color icon brown v2.svg|thumb|200px|upright|Various shades of brown.]]
-[[File:A child of chappargram.JPG|thumb|200px|upright|Brown is a common hair color.]]
-[[File:Hot chocolate in Montsalvat , Melbourne.jpg|thumb|200px|upright|A glass of hot chocolate.]]
-
-===Etymology===
-{{etyl|enm|en}} {{term|broun|lang=enm}}, from {{etyl|ang|en}} {{term|brun|brūn|lang=ang}} 'dark, shining', from {{proto|Germanic|brūnaz|lang=en}} (compare {{etyl|fy|-}} {{term|brún|lang=fy}}, {{etyl|nl|-}} {{term|bruin|lang=nl}}, German {{term|braun|lang=de}}), from {{proto|Indo-European|bʰruhₓnos}} (compare Ancient Greek {{term||phrýnē}}, {{term||phrŷnos}} ‘toad’), enlargement of {{proto|Indo-European|title=|bʰreu-|shiny, brown}} (compare {{etyl|lt|-}} {{term|beras|bė́ras|lang=lt}} ‘brown’, Sanskrit {{term||babhrú}} ‘reddish-brown’ {{rfscript|Devanagari|lang=sa}}).
-
-===Pronunciation===
-* {{IPA|/braʊn/}}
-* {{audio|en-us-brown.ogg|Audio (US)}}
-* {{audio|En-uk-brown.ogg|Audio (UK)}}
-* {{rhymes|aʊn}}
-
-===Noun===
-{{en-noun}}
-
-# A [[colour]] like that of [[chocolate]] or [[coffee]].
-#: ''The '''browns''' and greens in this painting give it a nice woodsy feel.''
-#: {{color panel|623017}}
-# {{context|snooker}} One of the [[colour]] balls used in [[snooker]] with a value of 4 points.
-
-====Translations====
-{{trans-top|colour}}
-* Afrikaans: {{t-|af|bruin|xs=Afrikaans}}
-* Albanian: {{t+|sq|bojëkafe|xs=Albanian}}
-* American Sign Language: {{tø|ase|B@Cheek-PalmForward B@Jaw-PalmForward}}
-* Armenian: {{t|hy|շագանակագույն|tr=šaganakaguyn|sc=Armn}}
-* Azeri: {{t+|az|qəhvəyi|xs=Azeri}},  {{t-|az|darçını|xs=Azeri}}
-* Basque: {{t|eu|marroi}}
-* Belarusian: {{t|be|карычневы|tr=karýčnevy|sc=Cyrl}}
-* Bulgarian: {{t|bg|кафяв цвят|m|tr=kafjav cvjat}}
-* Catalan: {{t+|ca|marró}}
-* Chinese:
-** Mandarin: {{t-|cmn|棕色|tr=zōngsè|sc=Hani}}, {{t-|cmn|褐色|tr=hèsè|sc=Hani}}, {{t|zh|咖啡色|tr=kāfēisè|sc=Hani}}
-* Czech: {{t+|cs|hnědý}}
-* Danish: {{t+|da|brun}}
-* Dutch: {{t+|nl|bruin}}
-* Esperanto: {{t-|eo|bruno|xs=Esperanto}}
-* Estonian: {{t-|et|pruun}}
-* Finnish: {{t+|fi|ruskea}}
-* French: {{t+|fr|marron}}, {{t+|fr|brun}}
-* Galician: {{t+|gl|marrón|m|xs=Galician}}
-* Georgian: {{t-|ka|ყავისფერი|tr=qavisp’eri|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Braun|n}}
-* Greek: {{t+|el|καστανό|n|tr=kastanó}}, {{t+|el|καφέ|n|tr=kafé}}
-* Hebrew: {{t|he|חום|tr=khum}}
-* Hiligaynon: {{tø|hil|abelyana|alt=abelyána}}
-* Hopi: {{tø|hop|tasikpu}}
-* Hungarian: {{t+|hu|barna}}
-* Icelandic: {{t|is|brúnn|n}}
-* Ido: {{t+|io|bruna|xs=Ido}}
-* Indonesian: {{t-|id|cokelat|xs=Indonesian}}
-* Ingush: {{tø|inh|бора}}
-* Irish: {{t-|ga|donn|xs=Irish}}
-* Italian: {{t|it|marrone}}, {{t|it|castano}}
-* Japanese: {{t|ja|茶色|tr=ちゃいろ, chairo}},  {{t-|ja|褐色|tr=かっしょく, kasshoku}}
-* Khmer: {{t|km|ពណ៌ត្នោត|tr=poa tnaot|sc=Khmr}}
-* Korean: {{t|ko|갈색|tr=galsaek|sc=Hang}}
-* Kurdish: [[çakar]], [[qehweyî]], [[qehwerengî]], {{ku-Arab|[[قاوه‌یی]]}}
-* Lakota: {{tø|lkt|ǧí}}
-* Latgalian: {{tø|ltg|bryuns}}
-{{trans-mid}}
-* Latin: {{t|la|aquilus|m}}
-* Latvian: {{t|lv|brūns}}
-* Lithuanian: {{t|lt|rudas}}
-* Low German: {{t|nds|Brun}}
-* Luhya: {{tø|luy|ekawa}}
-* Malay: {{t-|ms|coklat|xs=Malay}}, {{t|ms|perang}}
-* Malayalam: [[തവിട്ട്]] (thavittu)
-* Maltese: {{t|mt|kannella|f}}
-* Montagnais: {{tø|moe|katshishtemauaput}}
-* Nama: {{tø|naq|ǂgama}}
-* Navajo: {{tø|nv|dibéłchíʼí}},  {{tø|nv|yishtłʼizh}}
-* Norwegian: {{t+|no|brun}}
-* Ossetian: {{tø|os|морæ|tr=moræ}}
-* Persian: {{t|fa|قهوه‌ای|tr=qahvei|sc=fa-Arab}}
-* Polish: {{t+|pl|brąz|m}}
-* Portuguese: {{t+|pt|castanho|m}}, {{t+|pt|marrom|m}}
-* Romanian: {{t+|ro|brun}}, {{t|ro|maro|n}}
-* Russian: {{t+|ru|коричневый|tr=koríčnevyj}}
-* Scots: [[broon]]
-* Scottish Gaelic: [[donn]] (dark brown), [[ruadh]] (reddish-brown)
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|смеђ}}
-*: Roman: {{t|sh|smeđ}}
-* Slovene: {{t|sl|rjava|f}}
-* Spanish: {{t+|es|marrón|m}}, {{t+|es|café|m}}  {{qualifier|Bolivia|Chile|Colombia|Mexico}},  {{t+|es|canelo|m}}  {{qualifier|Spain's Canary Islands}}, {{t+|es|carmelita|m}}  {{qualifier|Cuba}},  {{t+|es|carmelito|m}}  {{qualifier|Colombia}}   ; {{qualifier|for hair}} {{t+|es|castaño|m}}  ;  {{qualifier|for brown bear}} {{t+|es|pardo|m}} ;  {{qualifier|for skin}} {{t+|es|moreno|m}}  ;  {{qualifier|for suntanned skin}} {{t+|es|bronceado|m}}, {{t+|es|moreno|m}} {{qualifier|Spain}}
-* Swahili: {{t+|sw|kahawia|xs=Swahili}}
-* Swedish: {{t+|sv|brun}}
-* Tagalog: {{t|tl|kayumanggi|xs=Tagalog}}
-* Turkish: {{t+|tr|kahverengi}}
-* Ukrainian: {{t|uk|коричневий|tr=korýčnevyj|sc=Cyrl}}
-* Uyghur: {{t|ug|قوڭۇر|sc=ug-Arab}}
-* Uzbek: {{t|uz|jigarrang|xs=Uzbek}}
-* Vietnamese: [[màu]] [[nâu]], màu [[sạm]]
-* Volapük: {{t|vo|braun}}, {{qualifier|obsolete}} {{t|vo|blon}}
-* Welsh: {{t|cy|brown}}
-{{trans-bottom}}
-
-{{trans-top|one of the colour balls used in snooker}}
-* Finnish: {{t|fi|ruskea}}
-{{trans-mid}}
-{{trans-bottom}}
-
-===Adjective===
+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}}).
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/braʊn/}}</li>
+<li> {{audio|en-us-brown.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-brown.ogg|Audio (UK)}}</li>
+<li> {{rhymes|aʊn}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> A colour like that of chocolate or coffee.</li>
+<ul><li> <em>The <b>browns</b> and greens in this painting give it a nice woodsy feel.</em></li>
+<li> {{color panel|623017}}</li>
+</ul>
+<li> {{context|snooker}} One of the colour balls used in snooker with a value of 4 points.</li>
+</ol>
+
+<h3>Adjective</h3>
 {{en-adj|er|more}}
-
-# Having a brown [[colour]].
-
-====Translations====
-{{trans-top|having brown colour}}
-* American Sign Language: {{tø|ase|B@Cheek-PalmForward B@Jaw-PalmForward}}
-* Amharic: {{tø|am|ቡናይነት|tr=bunaynät|sc=Ethi}}
-* Arabic: {{t|ar|أسمر|m|tr=ʾásmar}},  {{t|ar|سمراء|f|tr=samrāʾ}}, {{t|ar|سمر|p|tr=sumr}},  {{t|ar|بني|tr=búnniyy}}
-* Armenian: {{t|hy|շագանակագույն|tr=šaganakaguyn|sc=Armn}}
-* Basque: {{t|eu|marroi}}
-* Belarusian: {{t|be|карычневы|tr=karýčnevy|sc=Cyrl}}, {{qualifier|eyes}} {{t|be|кары|tr=káry|sc=Cyrl}}, {{qualifier|hair}} {{t|be|каштанавы|tr=kaštánavy|sc=Cyrl}}
-* Breton: [[brun]], [[gell]]
-* Bulgarian: {{t|bg|кафяв|tr=kafjav}}
-* Catalan: {{t+|ca|marró}}
-* Chinese:
-*: Mandarin: {{t-|cmn|褐色|tr=hèsè|sc=Hani}},  {{t-|cmn|棕色|tr=zōngsè|sc=Hani}},  {{qualifier|coffee colour}} {{t|cmn|咖啡色|tr=kāfēisè|sc=Hani}}
-* Cornish: [[owr]]
-* Czech: {{t+|cs|hnědý|m}}
-* Danish: {{t+|da|brun}}
-* Dutch: {{t+|nl|bruin}}
-* Esperanto: {{t-|eo|bruna|xs=Esperanto}}
-* Faroese: {{t-|fo|brúnur|xs=Faroese}}
-* Finnish: {{t+|fi|ruskea}}
-* French: {{t+|fr|brun}}, {{t+|fr|marron}}
-* Georgian: {{t|ka|ყავისფერი|tr=qavisp’eri|sc=Geor}}
-* German: {{t+|de|braun}}
-* Greek: {{t|el|καστανός|m|tr=kastanós}}
-* Hiligaynon: {{tø|hil|abelyana|alt=abelyána}}
-* Hindi: {{t|hi|भूरा|tr=bhūrā|sc=Deva}}
-* Hungarian: {{t+|hu|barna}}
-* Icelandic: {{t|is|brúnn}}
-* Indonesian: {{t+|id|coklat|xs=Indonesian}}
-* Ingush: {{tø|inh|бора}}
-* Irish: {{t-|ga|donn|xs=Irish}}
-* Japanese: {{t-|ja|茶色い|tr=ちゃいろい, chairoi}},  {{t-|ja|褐色|tr=かっしょく, kasshoku}}
-* Javanese: [[soklat]]
-* Khmer: {{t|km|នៃពណ៌ត្នោត|tr=ney poa tnaot|sc=Khmr}}
-{{trans-mid}}
-* Korean: {{t|ko|갈색|tr=galsaeg-ui|alt=갈색의|sc=Kore}}
-* Kurdish: [[çakar]], [[qehweyî]], [[qehwerengî]]
-* Lithuanian: {{t-|lt|rudas|m|xs=Lithuanian}}
-* Lojban: {{t|jbo|bunre}}
-* Low German: {{t|nds|brun}}
-* Malay: {{t|ms|perang}}, {{t|ms|coklat}}
-* Novial: [[bruni]]
-* Persian: {{t|fa|قهوه‌ای|tr=qahve'i|sc=fa-Arab}}
-* Polish: {{t+|pl|brązowy|m}}
-* Portuguese: {{t+|pt|castanho}}, {{t+|pt|marrom}}
-* Romanian: {{t+|ro|maro}}, {{t+|ro|brun}}
-* Russian: {{t+|ru|коричневый|tr=koríčnevyj}},  {{qualifier|of eyes}} {{t|ru|карий|tr=kárij}},  {{qualifier|of hair}} {{t|ru|каштановый|tr=kaštánovyj}}, {{qualifier|coffee colour}} {{t|ru|кофейный|tr=koféjnyj|sc=Cyrl}}, {{t|ru|бурый|tr=búryj|sc=Cyrl}}, {{qualifier|of horses - chestnut colour}} {{t|ru|гнедой|tr=gnedój|sc=Cyrl}}
-* Scots: [[broon]]
-* Scottish Gaelic: [[donn]]
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|смеђ}}
-*: Roman: {{t|sh|smeđ}}
-* Sinhalese: {{t|si|දුඹුරු|tr=dum͡buru|sc=Sinh}}
-* Slovak: {{t|sk|hnedý}}
-* Slovene: {{t|sl|rjav}}
-* Spanish: {{t+|es|marrón}}, {{t+|es|café}}, {{t+|es|pardo}}
-* Swedish: {{t+|sv|brun}}
-* Thai: {{t|th|สีน้ำตาล|tr=sĕe nám dtaan|sc=Thai}}
-* Turkish: {{t+|tr|kahverengi}}
-* Ukrainian: {{t|uk|коричневий|tr=korýčnevyj|sc=Cyrl}}, {{qualifier|eyes}} {{t|uk|карий|tr=káryj|sc=Cyrl}}, {{qualifier|hair}} {{t|uk|каштановий|tr=kaštánovyj|sc=Cyrl}}, {{t|uk|бурий|tr=búryj|sc=Cyrl}}
-* Urdu: {{t|ur|بھورا|tr=bhūrā|sc=ur-Arab}}
-* Uyghur: {{t|ug|قوڭۇر|sc=ug-Arab}}
-* Vietnamese: ([[màu]]) [[nâu]], [[sạm]]; [[rám]] [[nắng]], sạm nắng (skin)
-* Volapük: {{t|vo|braunik}}, {{qualifier|obsolete}} {{t|vo|blonik}}
-* West Frisian: {{t+|fy|brún|xs=West Frisian}}
-{{trans-bottom}}
-
-====Descendants====
-* [[American Sign Language]]: {{l|ase|B@Cheek-PalmForward B@Jaw-PalmForward}}
-
-===Verb===
-{{en-verb}}
-
-# To become brown.
-#: '' Fry the onions until they '''brown'''.''
-# {{cooking}} To cook something until it becomes brown.
-#: '''''Brown''' the onions in a large frying pan.''
-# To [[tan]].
-#: ''Light-skinned people tend to '''brown''' when exposed to the sun.''
-
-====Translations====
-{{trans-top|to become brown}}
-* Czech: {{t|cs|zhnědnout}}
-* Danish: {{t-|da|brune}}
-* Dutch: [[bruin worden]]
-* Finnish: {{t-|fi|ruskistua}}
-* French: {{t+|fr|brunir}}
-* Greek: {{t|el|μαυρίζω|tr=mavrízo}}, {{t|el|σκουραίνω|tr=skouraíno}}
-{{trans-mid}}
-* Persian: {{fa-Arab|[[قهوهای شدن]]}} (qahve’i shodan)
-* Portuguese: [[acastanhar]]
-* Turkish: [[kahverengileşmek]]
-* Vietnamese: [[nâu]] [[hóa]], [[sạm]] hóa
-* Volapük: {{t|vo|braunikön}}
-{{trans-bottom}}
-
-{{trans-top|to cook until brown}}
-* Czech: {{t|cs|zhnědnout}}
-* Danish: {{t-|da|brune}}
-* Dutch: [[bruinbakken]]
-* Finnish: {{t-|fi|ruskistaa}}
-* French: [[faire dorer]], [[faire roussir]]
-* Greek: {{t|el|κοκκινίζω|tr=kokkinízo}}, {{t|el|ροδίζω|tr=rodízo}}
-{{trans-mid}}
-* Italian: {{t+|it|rosolare}}
-* Portuguese: {{t|pt|dourar}}
-* Spanish: {{t|es|dorar}} (comida)
-* Swedish: {{t|sv|bryna}}
-* Vietnamese: [[rán]] ([[vàng]]), [[phi]] (onions)
-* Volapük: {{t|vo|braunükön}}
-{{trans-bottom}}
-
-{{trans-see|to tan|tan}}
-
-{{checktrans-top}}
-* {{ttbc|lt}}: [[ruduoti]] (1), [[parudinti]] (2)
-{{trans-bottom}}
-
-===Derived terms===
+<ol><li> Having a brown colour.</li>
+</ol>
+
+<h4>Descendants</h4>
+<ul><li> American Sign Language: {{l|ase|B@Cheek-PalmForward B@Jaw-PalmForward}}</li>
+</ul>
+
+<h3>Verb</h3>
+{en-verb}
+<ol><li> To become brown.</li>
+<ul><li> <em> Fry the onions until they <b>brown</b>.</em></li>
+</ul>
+<li> {cooking} To cook something until it becomes brown.</li>
+<ul><li> <b><em>Brown</b> the onions in a large frying pan.</em></li>
+</ul>
+<li> To tan.</li>
+<ul><li> <em>Light-skinned people tend to <b>brown</b> when exposed to the sun.</em></li>
+</ul>
+</ol>
+
+<h3>Derived terms</h3>
 {{rel-top|terms derived from "brown"}}
-* [[brown adipose tissue]]
-* [[brown ale]]
-* [[brown bastard]]
-* [[brown bear]]
-* [[Brown Bess]]
-* [[Brown Betty]]
-* [[brown-bill]]
-* [[brown bread]]
-* [[brown coal]]
-* [[brown dwarf]]
-* [[brown earth]]
-* [[brown fat]]
-* [[brown goods]]
-* [[brown lacewing]]
-* [[brown lung]]
-* [[brown mustard]]
-* [[brown paper]]
-* [[brown patch]]
-* [[brown rat]]
-* [[brown rice]]
-* [[brown rot]]
-* [[brown sauce]]
-* [[Brown Shirt]]
-{{rel-mid}}
-* [[brown sugar]]
-* [[Brown Swiss]]
-* [[brown thrasher]]
-* [[brown trout]]
-* [[brown-bag]]
-* [[brown-bagger]]
-* [[browned off]]
-* [[brownfield]]
-* [[brownie]]
-* [[Brownie point]]
-* [[brownish]]
-* [[brownnose]]
-* [[brownout]]
-* [[brownprint]]
-* [[brownstone]]
-* [[embrown]]
-* [[golden brown]]
-* [[hash browns]]
-* [[meadow brown]]
-* [[nut-borwn]]
-* [[Vandyke brown]]
-{{rel-bottom}}
-
-===Related terms===
-* [[brunet]]
-* [[burnet]]
-
-===See also===
-* [[gold|golding]]
-* [[Appendix:Colors]]
-
-[[Category:1000 English basic words]]
-[[Category:en:Browns]]
-[[Category:en:Colors]]
-
-[[ang:brown]]
-[[ar:brown]]
-[[ca:brown]]
-[[cs:brown]]
-[[cy:brown]]
-[[da:brown]]
-[[de:brown]]
-[[et:brown]]
-[[el:brown]]
-[[es:brown]]
-[[eu:brown]]
-[[fa:brown]]
-[[fr:brown]]
-[[gl:brown]]
-[[ko:brown]]
-[[hy:brown]]
-[[hr:brown]]
-[[io:brown]]
-[[id:brown]]
-[[zu:brown]]
-[[it:brown]]
-[[kl:brown]]
-[[kn:brown]]
-[[kk:brown]]
-[[sw:brown]]
-[[ku:brown]]
-[[li:brown]]
-[[hu:brown]]
-[[mg:brown]]
-[[ml:brown]]
-[[my:brown]]
-[[fj:brown]]
-[[nl:brown]]
-[[ja:brown]]
-[[pl:brown]]
-[[pt:brown]]
-[[ru:brown]]
-[[simple:brown]]
-[[fi:brown]]
-[[sv:brown]]
-[[tl:brown]]
-[[ta:brown]]
-[[te:brown]]
-[[th:brown]]
-[[tr:brown]]
-[[uk:brown]]
-[[vi:brown]]
-[[zh:brown]]
+<ul><li> brown adipose tissue</li>
+<li> brown ale</li>
+<li> brown bastard</li>
+<li> brown bear</li>
+<li> Brown Bess</li>
+<li> Brown Betty</li>
+<li> brown-bill</li>
+<li> brown bread</li>
+<li> brown coal</li>
+<li> brown dwarf</li>
+<li> brown earth</li>
+<li> brown fat</li>
+<li> brown goods</li>
+<li> brown lacewing</li>
+<li> brown lung</li>
+<li> brown mustard</li>
+<li> brown paper</li>
+<li> brown patch</li>
+<li> brown rat</li>
+<li> brown rice</li>
+<li> brown rot</li>
+<li> brown sauce</li>
+<li> Brown Shirt</li>
+</ul>
+{rel-mid}
+<ul><li> brown sugar</li>
+<li> Brown Swiss</li>
+<li> brown thrasher</li>
+<li> brown trout</li>
+<li> brown-bag</li>
+<li> brown-bagger</li>
+<li> browned off</li>
+<li> brownfield</li>
+<li> brownie</li>
+<li> Brownie point</li>
+<li> brownish</li>
+<li> brownnose</li>
+<li> brownout</li>
+<li> brownprint</li>
+<li> brownstone</li>
+<li> embrown</li>
+<li> golden brown</li>
+<li> hash browns</li>
+<li> meadow brown</li>
+<li> nut-borwn</li>
+<li> Vandyke brown</li>
+</ul>
+{rel-bottom}
+<h3>Related terms</h3>
+<ul><li> brunet</li>
+<li> burnet</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> golding</li>
+<li> Appendix:Colors</li>
+</ul>
+Category:1000 English basic wordsCategory:en:BrownsCategory:en:Colorsang:brownar:brownca:browncs:browncy:brownda:brownde:brownet:brownel:brownes:browneu:brownfa:brownfr:browngl:brownko:brownhy:brownhr:brownio:brownid:brownzu:brownit:brownkl:brownkn:brownkk:brownsw:brownku:brownli:brownhu:brownmg:brownml:brownmy:brownfj:brownnl:brownja:brownpl:brownpt:brownru:brownsimple:brownfi:brownsv:browntl:brownta:brownte:brownth:browntr:brownuk:brownvi:brownzh:brown
 ===business===
-business deal: 
-
-===Noun===
-{{en-noun|sg=[[business]] [[deal]]}}
-
-# A [[particular]] [[instance]] of buying or selling
-#:"it was a package deal"
-#:"I had no further trade with him"
-#:"he's a master of the business deal" 
-
-====Synonyms====
-* [[deal]]
-* [[trade]]
-
-[[it:business deal]]
+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>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> deal</li>
+<li> trade</li>
+</ul>
+it:business deal
 ***cat***
-cat: 
-
-{{wikipedia}}
-[[Image:Cat03.jpg|thumb|A domestic cat (1)]]
-
-===Pronunciation===
-* {{enPR|kăt}}, {{IPA|/kæt/|[kʲæʔ]}}, {{X-SAMPA|/k{t/}}
-* {{audio|en-us-cat.ogg|Audio (US)}}
-* {{audio|en-us-inlandnorth-cat.ogg|Audio (US-Inland North)}}
-* {{rhymes|æt}}
-
-===Etymology 1===
-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, ''Online Etymology Dictionary'', s.v. "cat", [html], retrieved on 29 September 2009: [http://www.etymonline.com/index.php?term=cat].</ref>, from {{etyl|afa}} (compare [[Nubian]] ''[[kadís]]'', {{etyl|ber|-}} ''[[kaddîska]]'' 'wildcat'), from [[Late Egyptian]] ''[[čaute]]'',<ref>Jean-Paul Savignac, ''Dictionnaire français-gaulois'', s.v. "[[chat]]" (Paris: Errance, 2004), 82.</ref> feminine of ''[[čaus]]'' 'jungle cat, African wildcat', from earlier {{etyl|egy|-}} ''[[tešau]]'' '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}}.
-
-====Noun====
-{{en-noun}}
-
-# A domesticated [[subspecies]] {{qualifier|[[Felis silvestris catus]]}} of [[feline]] animal, commonly kept as a house [[pet]]. {{defdate|from 8th c.}}
-# Any similar animal of the family ''[[Felidae]]'', which includes [[lion]]s, [[tiger]]s, etc.
-# A [[catfish]].
-# {{derogatory}} A spiteful or angry [[woman]]. {{defdate|from earlier 13th c.}}
-# An enthusiast or player of [[jazz]].
-# {{slang}} A person (usually male).
-# {{nautical}} A strong tackle used to hoist an anchor to the [[cathead]] of a ship.
-# {{nautical}} Contraction of [[cat-o'-nine-tails]].
-#: ''No room to swing a '''cat'''.''
-# {{slang}} Any of a variety of earth-moving [[machine]]s. (from their manufacturer [[w:Caterpillar Inc.|Caterpillar Inc.]])
-# {{archaic}} A sturdy merchant sailing vessel {{qualifier|now only in "[[catboat]]"}}.
-# {{archaic|uncountable}} The game of "[[trap and ball]]" (also called "cat and dog").
-# {{archaic|uncountable}} The trap of the game of "trap and ball".
-# {{slang}} [[prostitute|Prostitute]]. {{defdate|from at least early 15th c.}}
-# {{slang|vulgar|African American Vernacular English}} A [[vagina]]; female external genitalia
-#* 1969. Iceberg Slim. ''Pimp: The Story of My Life''. Holloway House Publishing.
-#*: "What the hell, so this broad's got a prematurely-gray '''cat'''."''
-#* 2005. Carolyn Chambers Sanders. ''Sins & Secrets''. Hachette Digital.
-#*: ''As she came up, she tried to put her '''cat''' in his face for some licking.''
-#* 2007. Franklin White. ''Money for Good''. Simon and Schuster. page 64.
-#*: ''I had a notion to walk over to her, rip her apron off, sling her housecoat open and put my finger inside her '''cat''' to see if she was wet or freshly fucked because the dream I had earlier was beginning to really annoy me.''
-
-=====Synonyms=====
-* {{sense|any member of the [[suborder]] (sometimes [[superfamily]]) [[Feliformia]] or [[Feloidea]]}} [[feliform]] ("[[cat-like]]" [[carnivoran]]), [[feloid]] (cf. [[Caniformia]], [[Canoidea]])
-* {{sense|any member of the [[family]] [[Felidae]]}} [[felid]]
-* {{sense|any member of the [[subfamily]] [[Felinae]], genera [[Puma]], [[Acinonyx]], [[Lynx]], [[Leopardus]], and [[Felis]])}} [[feline cat]], a [[feline]]
-* {{sense|any member of the subfamily [[Pantherinae]], genera [[Panthera]], [[Uncia]] and [[Neofelis]]}} [[pantherine cat]], a [[pantherine]]
-* {{sense|technically, all members of the genus Panthera}} [[panther]] (i.e. [[tiger]], [[lion]], [[jaguar]], [[leopard]]), {{qualifier|narrow sense}} [[panther]] (i.e. [[black panther]])
-* {{sense|any member of the [[extinct]] subfamily [[Machairodontinae]], genera [[Smilodon]], [[Homotherium]], [[Miomachairodus]], etc.}} [[Smilodontini]], [[Machairodontini]] ([[Homotherini]]), [[Metailurini]], "[[saber-toothed cat]]" ([[saber-tooth]])
-* {{sense|domestic species}} [[housecat]], [[puss]], [[pussy]], [[malkin]], [[kitten]], [[kitty]], [[pussy-cat]], [[mouser]], [[tomcat]], [[grimalkin]]
-* {{sense|man}} [[bloke]] {{qualifier|UK}}, [[chap]] {{qualifier|British}}, [[cove]] {{qualifier|UK}}, [[dude]], [[fellow]], [[fella]], [[guy]]
-* {{sense|spiteful woman}} [[bitch]]
-* See also [[Wikisaurus:cat]]
-* See also [[Wikisaurus:man]]
-
-=====Derived terms=====
-<!--Move definitions to separate pages-->
-{{rel-top|Terms derived from ''cat'' in the above senses}}
-* [[a cat may look at a king]]
-* [[all cats are grey in the dark]], [[all cats are grey by night]]
-* [[alley cat]]
-* [[African golden cat]]
-* [[Andean cat]]
-* [[Asiatic golden cat]]
-* [[bay cat]]
-* [[black-footed cat]]
-* [[bobcat]]
-* [[barn cat]]
-* [[Burmese cat]], [[Burmese]]
-* [[cat and mouse]]
-* [[cat box]]
-* [[cat food]]
-* [[cat that ate the canary]], [[cat that swallowed the canary]]
-* [[cat in the meal-tub]]
-* [[cat in the sack]]
-* [[catbird]]
-* [[cat-block]]
-* [[cat-burglar]]
-* [[catcall]]
-* [[cat-eyed]]
-* [[caterwaul]]
-* [[catfish]]
-* [[cat-flap]]
-* [[cat-footed]]
-* [[cat got someone's tongue]], [[cat got your tongue|cat got your tongue?]]
-* [[catgut]]
-* [[cat-harpin]]
-* [[cathead]], [[cat-head]]
-* [[cat-house]]
-* [[cat-ice]]
-* [[catkin]]
-* [[cat-lap]]
-* [[cat-lick]]
-* [[catlike]]
-* [[catling]]
-* [[catloaf]]
-* [[catmint]]
-* [[cat-nap]]/[[cat nap]]
-* [[catnip]]
-* [[cat-o'-nine-tails|cat-o’-nine-tails]]
-* [[cat person]]
-* [[cat's cradle|cat’s cradle]]
-* [[cat's eye|cat’s eye]]
-* [[cat's meat|cat’s meat]]
-* [[cat's meow|cat’s meow]]
-* [[cat's pajamas|cat’s pajamas]], the [[cat's pyjamas|cat’s pyjamas]]
-* [[cat's paw|cat’s paw]]
-* [[cat scratch fever]]
-* [[cat state]]
-* [[cat's-tail|cat’s-tail]]
-* [[cat's whisker|cat’s whisker]]
-* [[cat's whiskers|cat’s whiskers]]<!--excellent, outstanding-->
-{{rel-mid}}
-* [[cattish]]
-<!--derived from "cattish": * [[cattishness]]-->
-* [[cat-trap]]
-* [[catty]]
-* [[catwalk]], [[cat-walk]]
-* [[cat-witted]]
-* [[Chinese desert cat]]
-* [[copycat]]
-* [[curiosity killed the cat]]
-* [[domestic cat]]
-* [[fat cat]]
-* [[feral cat]]
-* [[fight like cats and dogs]]<!-- ~ To fight vigorously without weapons, often used about children (''The children fought like'' '''''cats and dogs''''' ''over who would get the biggest piece of cake.'')-->
-* [[fishing cat]]
-* [[flat-headed cat]]
-* [[Geoffroy's cat]]
-* [[housecat]]
-<!--inflection of "rain cats and dogs": * [[it's raining cats and dogs]]-->
-* [[it would make a cat laugh]]
-* [[jungle cat]]
-* [[lead a cat-and-dog life]]
-* [[leopard cat]]
-* [[let the cat out of the bag]]<!-- ~ To divulge a piece of hitherto hidden information (''It would have been a real surprise party, but Mary let the cat out of the bag.'')-->
-* [[like a cat in a strange garret]]
-* [[like a cat on hot bricks]]
-* [[like a cat on a hot tin roof]]
-* [[like herding cats]]
-* [[like the cat that got the cream]]
-* [[little spotted cat]]
-* [[lolcat]]
-* [[Maine Coon cat]], [[Maine Coon]]
-* [[Manx cat]], [[Manx]]
-* [[marbled cat]]
-* [[native cat]]
-<!--* [[nine lives of a cat]]-->
-* [[not enough room to swing a cat]]
-* [[Pallas cat]]
-* [[pampas cat]]
-* [[Persian cat]], [[Persian]]
-* [[rain cats and dogs]]
-* [[reduced cat]]
-* [[Russian Blue cat]], [[Russian Blue]]
-* [[rusty-spotted cat]]
-* [[sand cat]]
-<!--phrases beginning "the cat's ..." are listed above, beginning with "cat's..."-->
-* [[scaredy-cat]]
-* [[Schrödinger’s cat]]
-* [[Siamese cat]], [[Siamese]]
-* [[spokescat]]
-* [[tabby cat]], [[tabby]]
-* [[There's more than one way to skin a cat]], [[there is more than one way to skin a cat]]
-* [[tom cat]], [[tomcat]]
-* [[wait for the cat to jump]]
-* [[wildcat]], [[wild cat]]
-* [[when the cat's away the mice will play]]
-{{rel-bottom}}
-
-=====Translations=====
-{{trans-top|domestic species}}
-* Afrikaans: [[kat#Afrikaans|kat]]
-* Ainu: {{tø|ain|チャペ|tr=cape}}
-* Akan: [[agyinamoa]] {{n}}
-* Albanian: {{t+|sq|mace|f|xs=Albanian}}
-* Alemannic German: {{tø|gsw|Chàtz}}
-* Amharic: {{tø|am|ድመት|tr=dəmät|sc=Ethi}}
-* Apache:
-*: [[Western Apache]]: {{tø|apw|gídí}}
-* Arabic: {{t|ar|قط|m|tr=qiTT|sc=Arab}}, {{t|ar|قطة|f|tr=qíTTa|sc=Arab}}
-*: Egyptian: {{Arab|[[قط]]}} (’uṭṭ) {{m}}, {{Arab|[[قطة]]}} (’uṭṭɑ) {{f}}
-*: Libyan: {{Arab|[[قطوس]]}} (gɑṭṭūs) {{m}}, {{Arab|[[قطوسة]]}} (gɑṭṭūsa) {{f}}
-*: Moroccan: {{Arab|[[مش]]}} (mašš)
-* Aramaic:
-*: Syriac: [[ܫܘܢܪܐ]] (šūnārā’) {{m}}, [[ܫܘܢܪܬܐ]] (šūnārtā’) {{f}}
-*: Hebrew: [[חתול]] () {{m}}, [[חתולה]] {{f}}
-* Armenian: {{t+|hy|կատու|tr=katu}}
-* Aromanian: {{tø|rup|cãtushe}}
-* Asturian: {{t|ast|gatu|m}}
-* Avar: {{t|av|кету|tr=ketu|sc=Cyrl|xs=Avar}}
-* Azeri: {{t+|az|pişik|xs=Azeri}}
-* Bajau: {{tø|bdr|using}}
-* Baluchi: {{tø|bal|پشی|tr=piší|xs=Baluchi}}, {{tø|bal|گربگ|tr=gurbag|xs=Baluchi}}
-* Bambara: [[jakuma]]
-* Bandjalang: [[budhigehn]], [[budhigahn]]
-* Bashkir: {{tø|ba|бесәй|tr=besäy|sc=Cyrl|xs=Bashkir}}
-* Basque: [[katu]]
-* Bavarian: [[Katz]] {{f}}, [[Koda]] {{m}}
-* Belarusian: {{t|be|кошка|f|tr=kóška}}, {{t|be|кот|m|tr=kot}}
-* Bengali: {{t+|bn|বেড়াল|tr=beṛāl|sc=Beng|xs=Bengali}}, {{t|bn|বিলাড়|tr=bilāṛ|sc=Beng}}
-* Bidayuh: {{tø|sne|singow}}
-* Bosnian: {{t+|bs|mačka|f}}, {{t-|bs|mačak|m}}
-* Breton: {{t+|br|kazh|m|xs=Breton}}, {{t+|br|kaz|m|xs=Breton}}
-* Bulgarian: {{t|bg|котка|f|tr=kótka}}, [[котак]] (kotak) {{m}}, [[котарак]] (kotarak) {{m}}
-* Burmese: {{t|my|ကြောင်|tr=kyaung|sc=Mymr|xs=Burmese}}
-* Buryat: {{tø|bxr|миисгэй|tr=miisgej|sc=Cyrl}}
-* Catalan: {{t+|ca|gat|m}}, {{t-|ca|gata|f}}; {{t+|ca|mix|m}}, {{t-|ca|mixa|f}}; {{t|ca|moix|m}}, {{t|ca|moixa|f}}
-* Central Atlas Tamazight: [[ⴰⵎⵓⵛⵛ]] (amušš)
-* Chagatai: {{tø|chg|پیشیک|tr=pişik|sc=fa-Arab}}, {{tø|chg|موشوک|tr=muşuq|sc=fa-Arab}}
-* Chamicuro: {{tø|ccc|mishi}}
-* Chechen: {{tø|ce|цициг|tr=cicig|sc=Cyrl}}
-* Cherokee: [[ᏪᏌ]] (wesa)
-* Chinese:
-*: Mandarin: {{t-|cmn|貓|sc=Hani}}, {{t-|cmn|猫|tr=māo|sc=Hani}}
-*: [[Min Nan]]: {{tø|nan|貓|tr=niau|sc=Hans}}
-* Chuvash: {{tø|cv|кушак|tr=kuşak|sc=Cyrl}}
-* Coptic: {{tø|cop|ⲉⲙⲟⲩ|tr=emou|sc=Copt}}
-* Cornish: {{t-|kw|kath|f|xs=Cornish}}
-* Cree: [[ᐴᔒ]] (puushii)
-* Croatian: {{t+|hr|mačka|f}}
-* Czech: {{t+|cs|kočka|f}}, {{t+|cs|kocour|m}}
-* Danish: {{t-|da|huskat}}, {{t+|da|kat|c}}
-* Dargwa: {{tø|dar|гата|tr=gata|sc=Cyrl}}
-* Dhivehi: [[ފައި]]
-* Dhuwal: [[marurrumburr]]
-* Dutch: {{t-|nl|huiskat}}, {{t+|nl|kat|m}}, {{t+|nl|poes|f}}, {{t+|nl|kater|m}}
-* Egyptian: {{tø|egy|mỉw|sc=Egyp}}
-*: <hiero>W19-M17-G43-E13</hiero>
-* Erzya: [[псака]] (psaka), [[катка]] (katka), [[писай]] (pisay)
-* Eshtehardi: {{tø|esh|گوربیه|tr=gurbiya|sc=fa-Arab}}
-* Esperanto: {{qualifier|♂♀}} {{t+|eo|kato}}, {{qualifier|♂}} {{t-|eo|virkato}}, {{qualifier|♀}}, {{t+|eo|katino}}, {{qualifier|♂♀ offspring}} {{t+|eo|katido}}, {{qualifier|♂}} {{t+|eo|virkatido}}, {{qualifier|♀}} {{t+|eo|katidino}}
-* Estonian: {{t+|et|kass}}
-* Ewe: [[dadi]]
-* Faroese: {{t-|fo|ketta|f|xs=Faroese}}, {{t|fo|húsketta|f|xs=Faroese}}, {{t|fo|køttur|m|xs=Faroese}}, {{t|fo|húskøttur|m|xs=Faroese}}
-* Finnish: {{t+|fi|kissa}}
-* French: {{t+|fr|chat|m}}, {{t+|fr|chatte|f}}, {{t+|fr|chaton|m}}, {{t-|fr|chatonne|f}}
-*: [[Old French]]: {{tø|fro|chat|m}}, {{tø|fro|chate|f}}
-*: [[Middle French]]: {{tø|frm|chat|m}}, {{tø|frm|chatte|f}}
-* Galician: {{t+|gl|gato|xs=Galician}}
-* Gamilaraay: [[burrgiyan]]
-* Georgian: {{t-|ka|კატა|tr=kata|sc=Geor|xs=Georgian}}
-* German: {{qualifier|♂♀}} {{t+|de|Katze|f}}, {{qualifier|♂}} {{t+|de|Kater|m}}, {{qualifier|♀}} {{t-|de|Kätzin|f}}
-* Gilbertese: [[katama]]
-* Gooniyandi: [[minyawoo]]
-* Greek: {{t+|el|γάτα|f|tr=gáta}}, {{t+|el|γάτος|m|tr=gátos}}
-*: Ancient Greek: {{tø|grc|γαλέη|f|tr=galéē|xs=Ancient Greek}}, {{tø|grc|αἴλουρος|m|f|tr=ailouros|sc=polytonic}}
-* Greenlandic: {{t-|kl|qitsuk|xs=Greenlandic}}
-* Guernésiais: {{tø|roa-grn|cat|m}}
-* Gujarati: [[બિલાડી]] (bilāḍī) {{f}}, [[બિલાડો]] (bilāḍo) {{m}}
-* Hawaiian: [[pōpoki]]
-* Hebrew: [[חתול|חָתוּל]] (khatul) {{m}}, [[חתולה]] (khatula) {{f}}
-* Hiligaynon: {{tø|hil|kuring|xs=Hiligaynon}}
-* Hindi: {{t|hi|बिल्ली|f|tr=billī|sc=Deva}}, {{t|hi|बिल्ला|m|tr=billā|sc=Deva}}
-* Hungarian: {{t+|hu|macska}}, {{t+|hu|kandúr|m}}, {{qualifier|childish}} {{t+|hu|cica}}
-* Icelandic: {{t+|is|köttur|m}}, {{t+|is|kisa|f}}
-* Ido: {{qualifier|♂♀}} {{t+|io|kato}}, {{qualifier|♂}} {{t+|io|katulo}}, {{qualifier|♀}}, {{t+|io|katino}}, {{qualifier|♂♀ offspring}} {{t+|io|katyuno}}, {{qualifier|♂}} {{t-|io|katyunulo}}, {{qualifier|♀}} {{t-|io|katyunino}}
-* Ilocano: {{tø|ilo|pusa|xs=Ilocano}}
-* Indonesian: {{t+|id|kucing|xs=Indonesian}}
-*: [[Acehnese]]: mië
-*: [[Buginese]]: coki
-*: [[Kaili]]: tavévé
-*: [[Sundanese]]: êméng
-* Ingush: {{tø|inh|цициг|tr=cicig|sc=Cyrl}}
-* Interlingua: [[catto]] {{m}}, [[catta]] {{f}}
-* Irish: {{t+|ga|cat|m|xs=Irish}}
-* Italian: {{t+|it|gatto|m}}, {{t+|it|gatta|f}}, {{t+|it|micio|m}}, {{t+|it|micia|f}}
-* Japanese: {{t+|ja|猫|tr=[[ねこ]], neko}}
-* Jèrriais: {{tø|roa-jer|cat|m}}
-* Kadazan: {{tø|kzj|tusing}}
-* Kalmyk: {{tø|xal|мис|tr=mis|sc=Cyrl}}
-* Kannada: {{t|kn|ಬೆಕ್ಕು}}
-* Karachay-Balkar: {{tø|krc|киштик|tr=kiştik|sc=Cyrl}}
-* Karakalpak: {{tø|kaa|pıshıq}}
-* Kashubian: {{t+|csb|kòt|xs=Kashubian}}
-* Kazakh: {{t|kk|мысық|tr=mısıq|sc=Cyrl|xs=Kazakh}}
-* Khakas: {{tø|kjh|хоосха|tr=xoosxa|sc=Cyrl}}
-{{trans-mid}}
-* Khmer: {{t|km|ឆ្មា|tr=chmā|sc=Khmr}}
-* Komi-Zyrian: {{tø|kv|кань|tr=kań|sc=Cyrl}}, {{tø|kv|кань|tr=kań|sc=Cyrl}}
-* Korean: {{t+|ko|고양이|tr=goyang-i|sc=Hang}}
-* Kumyk: {{tø|kum|мишик|tr=mişik|sc=Cyrl}}
-* Kurdish:
-*: Sorani: {{ku-Arab|[[پشیله‌]]}}
-* Kyrgyz: {{t-|ky|мышык|tr=mışıq|sc=Cyrl|xs=Kyrgyz}}
-* Lak: {{tø|lbe|ччиту}}
-* Lao: [[ແມວ]] (meehw)
-* Latgalian: {{tø|ltg|kačs|m}}
-* Latin: {{t+|la|feles|f}}, {{t-|la|cattus|m}}
-* Latvian: {{t+|lv|kaķis|m|xs=Latvian}}, {{t|lv|kaķene|f}}
-* Laz: {{t+|lzz|კატუ|tr=katu|sc=Geor}}
-* Lithuanian: {{t+|lt|katė|f|xs=Lithuanian}}, {{t+|lt|katinas|m|xs=Lithuanian}}
-* Lojban: {{t-|jbo|mlatu|xs=Lojban}}
-* Lower Sorbian: [[kócka]] {{f}}, [[kót]] {{m}}
-* Luxembourgish: {{t|lb|Kaz|f}}, {{t|lb|Kueder|m}}, {{t|lb|Kazen|p}}
-* Macedonian: {{t-|mk|мачка|f}}, {{t-|mk|мачор|m}}
-* Mainstream Kenyah: {{tø|xkl|kucing}}
-* Malay: {{t+|ms|kucing|xs=Malay}}
-* Malayalam: [[പൂച്ച]] (poocha)
-* Maltese: {{t-|mt|qattus|m|xs=Maltese}}, {{t-|mt|qattusa|f|xs=Maltese}}, {{t-|mt|qtates|p|xs=Maltese}}
-* Manx: {{t+|gv|kayt|m|xs=Manx}}
-* Maori: [[poti#Maori|poti]], [[ngeru]]
-* Marathi: [[मांजर]] (mānjar) {{f}}, [[बोका]] (bokā) {{m}}
-* Maricopa: [[posh]]
-* Mazanderani: {{tø|mzn|بامشی}}
-* Meänkieli: {{tø|fit|kissa}}
-* Mingrelian: {{t+|xmf|კატუ|tr=katu|sc=Geor}}
-* Miyako: {{tø|mvi|マユ|tr=maju}}
-* Mongolian: {{t-|mn|муур|tr=muur|sc=Cyrl|xs=Mongolian}}, {{t|mn|мий|tr=mij|sc=Cyrl|xs=Mongolian}}
-* Montagnais: {{tø|moe|minush}}
-* Murrinh-Patha: ''ku'' [[yirrthip]]
-* Murut: [[kucing#Murut|kucing]]
-* Nama: {{tø|naq|ǀhôas}}
-* Navajo: {{tø|nv|gídí}}, {{tø|nv|mósí}}, {{tø|nv|másí}}
-* Nepali: {{t+|ne|बिरालो|tr=birālō|sc=Deva|xs=Nepali}}
-* Nogai: {{tø|nog|мысык|tr=mısıq|sc=Cyrl}}
-* Norwegian: {{t-|no|huskatt|m}}, {{t+|no|katt|m}}, {{t+|no|katte|f}}
-* Novial: {{qualifier|♂♀}} {{tø|nov|kate}}, {{qualifier|♂}} {{tø|nov|kato}}, {{qualifier|♀}} {{tø|nov|kata}}, {{qualifier|♂♀ offspring}} {{tø|nov|katyune}}, {{qualifier|♂ offspring}} {{tø|nov|katyuno}}, {{qualifier|♀ offspring}} {{tø|nov|katyuna}}
-* Occitan: [[gat]] {{m}}, [[cat]] {{m}}
-* Ojibwe: [[gaazhagens]] {{qualifier|animate}}
-* Okinawan: {{tø|ryu|まやー|tr=mayaa}}
-* Old English: {{t-|ang|catt|m|xs=Old English}}
-* Old Irish: {{tø|sga|catt|m|xs=Old Irish}}
-* {{trreq|or}}
-* Ossetian: {{tø|os|гæды|tr=gædy}}
-* Ottoman Turkish: {{tø|ota|کدی|tr=kädi|sc=ota-Arab}}
-* Persian: {{t+|fa|گربه|tr=gorbe|xs=Persian}}, {{t+|fa|پیشی|tr=piši|xs=Persian}}
-* Polish: {{t+|pl|kot|m}}, {{t+|pl|kotka|f}}, {{t+|pl|kocur|m}}, {{t-|pl|kocica|f}}, {{t+|pl|kotek|m}} (diminutive)
-* Portuguese: {{t+|pt|gato|m}}, {{t+|pt|gata|f}}, {{t|pt|gato-doméstico|m}}
-* Punjabi: [[ਬਿੱਲੀ]] (billī)
-* Rohingya: {{tø|rhg|bilai}}
-* Romani: [[muca]] {{f}}
-* Romanian: {{t+|ro|pisică|f}}
-* Romansch: {{t-|rm|giat|m|xs=Romansch}}, {{t|rm|giatta|f}}
-* Russian: {{t+|ru|кошка|f|tr=kóška}}, {{t+|ru|кот|m|tr=kot}}
-* Samoan: {{t-|sm|pusi|xs=Samoan}}
-* Sanskrit: {{t|sa|मार्जार|m|tr=mārjāra|xs=Sanskrit}}, {{t|sa|बिडाल|m|tr=biḍāla|xs=Sanskrit}}
-* Sardinian: [[gattu]] {{m}}
-* Scottish Gaelic: {{t+|gd|cat|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|мачка|f|sc=Cyrl}}
-*: Roman: [[mačka#Serbo-Croatian|mačka]] {{f}}
-* Seri: [[miist]], [[ziix canaao]], [[ziix ihamoc ano catax]]
-* Shor: {{tø|cjs|кöшке|tr=köşke|sc=Cyrl}}
-* Sicilian: {{t+|scn|jattu|m|xs=Sicilian}}, {{t+|scn|gattu|m|xs=Sicilian}}
-* Sinhalese: {{t-|si|පූසා|sc=Sinh|xs=Sinhalese}} (pūsā)
-* Slovak: {{t-|sk|mačka|f}}, {{t-|sk|kocúr|m}}
-* Slovene: {{t-|sl|maček|m}}, {{t+|sl|mačka|f}}
-* Sotho: {{t+|st|katse|xs=Sotho}}
-* Southern Altai: {{tø|alt|киске|tr=kiske|sc=Cyrl}}
-* Spanish: {{t+|es|gato|m}}, {{t+|es|gata|f}}
-* Swahili: [[paka]] (nc 9/10)
-* Swedish: {{t+|sv|katt|c}}
-* Tabassaran: {{tø|tab|гату|tr=gatu|sc=Cyrl}}
-* Tagalog: {{t+|tl|pusa|xs=Tagalog}}
-* Tajik: {{t-|tg|гурба|tr=gurba|sc=Cyrl|xs=Tajik}}, {{t|tg|пишак|tr=pişak|sc=Cyrl|xs=Tajik}}, {{t|tg|пушак|tr=puşak|sc=Cyrl|xs=Tajik}}
-* Tamil: {{t|ta|பூனை|tr=pūṉai|sc=Taml}}
-* Taos: [[mų̀si’ína]]
-* Tatar: {{t|tt|mäçe|xs=Tatar}}, {{t-|tt|pesi|xs=Tatar}}, {{t+|tt|мәче|sc=Cyrl|xs=Tatar}}
-* Thai: {{t|th|แมว|tr=maew|sc=Thai}}, {{t|th|วิฬาร์|tr=wílaa|sc=Thai}}
-* Tongan: Pusi
-* Torres Strait Creole: [[pusiket]]
-* Tswana: {{t|tn|katse}}
-* Turkish: {{t+|tr|kedi}}, {{t+|tr|pisi}} (now obsolete)
-* Turkmen: {{t-|tk|pişik|xs=Turkmen}}
-* Tuvan: {{tø|tyv|диис|tr=diis|sc=Cyrl}}, {{tø|tyv|моортай|tr=moortay|sc=Cyrl}}
-* Uab Meto: {{tø|aoz|meo}}
-* Ukrainian: {{t+|uk|кіт|m|tr=kit|xs=Ukrainian}}, {{t+|uk|кішка|f|tr=kíška|xs=Ukrainian}}
-* Upper Sorbian: [[kočka]] {{f}}
-* Urdu: {{t|ur|بلی|f|tr=billī|sc=ur-Arab}}
-* Uyghur: {{t+|ug|مۈشۈك|tr=müxük|sc=ug-Arab|xs=Uyghur}}
-* Uzbek: {{t|uz|mushuk|xs=Uzbek}}
-* Vietnamese: {{t|vi|con mèo}}, {{t|vi|mèo}}
-* Volapük: {{qualifier|♂♀}} {{t+|vo|kat}}, {{qualifier|♂}} {{t-|vo|hikat}}, {{qualifier|♀}} {{t-|vo|jikat}}, {{qualifier|castrated ♂}} {{t-|vo|hokat}} {{qualifier|spayed ♀}} {{t-|vo|jokat}}, {{qualifier|♂♀}} {{t+|vo|katül}}, {{qualifier|♂}} {{t+|vo|hikatül}}, {{qualifier|♀}} {{t+|vo|jikatül}}, {{qualifier|diminutive ♂♀}} {{t+|vo|katil}}, {{qualifier|augmentative ♂♀}} {{t+|vo|lekat}}
-* Welsh: {{t+|cy|cath|f|xs=Welsh}}
-* West Frisian: {{t+|fy|kat|c|xs=West Frisian}}
-* Wik-Mungkan: [[ku'waak]]
-* Wolof: {{t|wo|muus}}, {{t|wo|wundu|alt=wundu wi}}
-* Yakut: {{tø|sah|куоска|tr=kuoska|sc=Cyrl}}
-* Yiddish: {{t|yi|קאַץ|f|tr=kats}}, {{t|yi|קעץ|p|tr=kets}}, {{t|yi|קאָטער|m|tr=koter}}, {{t|yi|קאָטערס|p|tr=koters}}
-* Yindjibarndi: [[buthi]]
-* Zulu: {{t+|zu|ikati|xs=Zulu}}
-{{trans-bottom}}
-
-{{trans-top|member of the suborder (or superfamily) Feliformia (Feloidea), "cat-like" carnivorans}}
-* French: {{t-|fr|féliforme|m}}, {{t-|fr|féliformes|p}}, {{t-|fr|féloidé|m}}, {{t-|fr|féloidés|p}}
-* German: {{t-|de|Katzenartige|m}}, {{t-|de|Katzenartige|f}}, {{t-|de|Katzenartigen|p}}, {{t-|de|Feliformia|p}}, {{t-|de|Feloidea|p}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|member of the family '''Felidae'''}}
-* Afrikaans: {{t+|af|kat|xs=Afrikaans}}
-* Azeri: [[pişik]]
-* Bambara: [[jakuma]]
-* Basque: {{t+|eu|katu|xs=Basque}}
-* Bosnian: {{t+|bs|mačka|f}}, {{t-|bs|mačak|m}}
-* Breton: [[kaz]], [[kazh]] {{m}}, kizhier {{p}}, [[kazhez]] {{f}}, kazhezed {{p}}
-* Bulgarian: {{t+|bg|котка|f|tr=kotka}}
-* Catalan: {{t+|ca|gat|m}}, {{t-|ca|gata|f}}; {{t|ca|felí|m}}, {{t-|ca|felina|f}}
-* Cherokee: [[ᏪᏌ]] (wesa), [[ᏪᏏ]] (wesi)
-* Chinese:
-*: Mandarin: {{t-|cmn|貓|sc=Hani}}, {{t-|cmn|猫|tr=māo|sc=Hani}}
-* Croatian: {{t+|hr|mačka|f}}
-* Czech: {{t-|cs|šelma kočkovitá|f}}
-* Danish: {{t+|da|kat|c}}
-* Dutch: {{t+|nl|kat}}
-* Esperanto: {{t+|eo|kato}}, {{qualifier|eo: Felisedoj, la: Felidae}} {{t-|eo|felisedo}}
-* Estonian: {{t|et|kaslane}}
-* Faroese: {{t-|fo|ketta|f|xs=Faroese}}, {{t|fo|húsketta|f|xs=Faroese}}, {{t|fo|køttur|m|xs=Faroese}}, {{t|fo|húskøttur|m|xs=Faroese}}
-* Finnish: {{t-|fi|kissaeläin}}
-* French: {{t+|fr|félin|m}}, {{qualifier|la famille des félidés}}{{t+|fr|félidé|m}}
-* German: {{t+|de|Katze|f}}, {{t-|de|Felide|m}}, {{t-|de|Felide|f}}, {{t-|de|Feliden|p}}, {{t-|de|Felidae|p}}
-* Greek: (general) {{t+|el|αιλουροειδές|n|tr=ailouroeidés}}, {{t+|el|αίλουρος|m|tr=aílouros}}
-* Greenlandic: {{t-|kl|qitsuk|xs=Greenlandic}}
-* Gujarati: [[બિલાડી]] (bilāḍī) {{f}}, [[બિલાડો]] (bilāḍo) {{m}}
-* Hebrew: {{t+|he|חתול|alt=חָתוּל|tr=khatul}}
-* Hindi: [[बिल्ली]] (billī) {{f}}, [[बिल्ला]] (billā) {{m}}
-* Hungarian: {{t+|hu|macska}}
-* Icelandic: {{t+|is|köttur|m}}
-* Indonesian: {{t+|id|kucing|xs=Indonesian}}
-* Interlingua: [[felin]]
-* Irish: {{t+|ga|cat|m|xs=Irish}}
-* Italian: {{t+|it|felino|m}}, {{t+|it|felina|f}}
-{{trans-mid}}
-* Japanese: [[ネコ]] ([[ねこ]], neko)
-* Kapampangan: [[pusa]]
-* Latin: {{t+|la|feles|f}}, {{t+|la|felis|f}}
-* Latvian: {{t+|lv|kaķis|m|xs=Latvian}}
-* Lithuanian: {{t+|lt|katė|f|xs=Lithuanian}}
-* Lojban: [[mlatu]]
-* Luxembourgish: {{t|lb|Kaz|f}}, {{t|lb|Kazen|p}}
-* Macedonian: [[мачка]] {{f}}
-* Malay: {{t|ms|kucing}}
-* Marathi: [[मांजर]] (mānjar) {{f}}, [[बोका]] (bokā) {{m}}
-* Norwegian: {{t-|no|kattedyr|n}}, {{t+|no|katt|m}}
-* Novial: {{qualifier|♂♀}} {{tø|nov|kate}}, {{qualifier|♂♀}} {{tø|nov|kato}}, {{qualifier|♂♀}} {{tø|nov|kata}}
-* Polish: {{t+|pl|kot|m}}
-* Portuguese: {{t+|pt|felino|m}}, {{t-|pt|felina|f}}
-* Romanian: {{t+|ro|pisică|f}}, {{t+|ro|motan|m}}, {{t+|ro|cotoi|m}}, {{t-|ro|mâță|f}}
-* Russian: {{t+|ru|кошка|f|tr=kóška}}
-* Scottish Gaelic: [[cat#Scottish Gaelic|cat]] {{m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|мачка|f|sc=Cyrl}}
-*: Roman: [[mačka#Serbo-Croatian|mačka]] {{f}}
-* Slovak: {{t-|sk|mačka|f}}
-* Slovene: {{t+|sl|mačka|f}}
-* Spanish: {{t+|es|felino|m}}, {{t+|es|felina|f}}
-* Swedish: {{t+|sv|kattdjur|n}}
-* Tagalog: {{t+|tl|pusa|xs=Tagalog}}
-* Telugu: [[పిల్లి]], [[మార్జాలము]]
-* Thai: {{Thai|[[แมว]]}} (maew)
-* Turkish: {{t+|tr|kedi}}
-* Turkmen: {{t-|tk|pişik|xs=Turkmen}}
-* Tz'utujil: [[mix]], [[sya]]
-* Urdu: {{ur-Arab|[[بلى]]}}
-* Vietnamese: {{t+|vi|mèo|xs=Vietnamese}}
-* West Frisian: {{t+|fy|kat|c|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|member of the subfamily Felinae}}
-* Esperanto: {{t-|eo|feliseno}}
-* French: {{t-|fr|féliné|m}}
-{{trans-mid}}
-* German: {{t-|de|Kleinkatze|f}}, {{t-|de|Feline|m}}, {{t-|de|Feline|f}}, {{t-|de|Felinen|p}}, {{t-|de|Felinae|p}}
-{{trans-bottom}}
-
-{{trans-top|member of the subfamily Pantherinae}}
-* Esperanto: {{t-|eo|pantereno}}
-* French: {{t-|fr|panthériné|m}}
-{{trans-mid}}
-* German: {{t+|de|Großkatze|f}}, {{qualifier|Switzerland, Liechtenstein}} {{t+|de|Grosskatze|f}}, {{t-|de|Pantherine|m}}, {{t-|de|Pantherine|f}}, {{t-|de|Pantherinen|p}}, {{t-|de|Pantherinae|p}}
-{{trans-bottom}}
-
-{{trans-top|member of the [[extinct]] subfamily Machairodontinae}}
-* Esperanto: {{t-|eo|maĥairodeno}}
-* French: {{t-|fr|machairodontiné|m}}, {{t-|fr|machairodontinés|p}}
-{{trans-mid}}
-* German: {{t-|de|Säbelzahnkatze|f}}, {{t-|de|Machairodontine|m}}, {{t-|de|Machairodontine|f}}, {{t-|de|Machairodontinen|p}}, {{t-|de|Machairodontinae|p}}
-{{trans-bottom}}
-
-{{trans-see|catfish|[[catfish]]}}
-
-{{trans-see|spiteful woman|bitch}}
-
-{{trans-top|jazz enthusiast}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|guy, fellow}}
-* Danish: {{t-|da|fyr}}
-* Portuguese: {{t|pt|cara|m}}, {{t|pt|rapaz|m}}
-{{trans-mid}}
-* Spanish: {{t+|es|tío|m}}, {{t+|es|tipo|m}}
-{{trans-bottom}}
-
-{{trans-top|strong tackle used to hoist an anchor to the cathead of a ship}}
-* Danish: {{t+|da|kat}}, {{t|da|ankerkat}}
-* Finnish: {{t-|fi|ankkuritalja}}
-{{trans-mid}}
-* French: {{t+|fr|capon|m}}
-{{trans-bottom}}
-
-{{trans-see|cat-o'-nine-tails|cat-o'-nine-tails}}
-
-{{trans-see|catboat|catboat}}
-
-{{trans-top|game of "trap and ball" (or "cat and dog")}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|the trap in the game of "trap and ball"}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|sq}}: [[macja]]
-* {{ttbc|eu}}: [[katu]]
-* {{ttbc|be}}: [[кошка]]
-* {{ttbc|apm}}: [[gídí]]
-* {{ttbc|fr}}: [[bistoquet]] {{m}} (game of trap and ball, or the trap itself, or both?)
-* {{ttbc|fur}}: [[gjat]]
-* {{ttbc|gl}}: [[gato]]
-* {{ttbc|gn}}: [[mbarakaja]] (1)
-* {{ttbc|apj}}: [[gídí]]
-* {{ttbc|kn}}: (bekku)
-* {{ttbc|ko}}: {{t|ko|고양잇과|tr=goyangisgwa|sc=Hang}}, {{t|ko|고양이과의 동물|tr=goyang-igwa-ui dongmul|sc=Hang}}
-{{trans-mid}}
-* {{ttbc|la}}: [[giat]], [[cattus]]
-* {{ttbc|apl}}: [[gídí]]
-* {{ttbc|lt}}: [[katė]]
-* {{ttbc|mk}}: [[мачка]]
-* {{ttbc|mn}}: [[муур]] (muur)
-* {{ttbc|oc}}: [[cat]]
-* {{ttbc|sc}}: [[gattu]], [[pisittu]], [[muscittu]], [[pisiddu]], [[battu]]
-* {{ttbc|sk}}: [[kocúr]] {{m}}, [[mačka]] {{f}} (1)
-* {{ttbc|ta}}: (poonai)
-* {{ttbc|th}}: {{Thai|[[แมว]]}}
-* {{ttbc|apw}}: [[gídí]]
-{{trans-bottom}}
-
-=====See also=====
-* [[Burmese]]
-* [[feline]]
-* [[kitten]], [[kitty]]
-* [[Manx]]
-* [[Maine Coon]]
-* [[meow]]
-* [[mog]], [[moggie]], [[moggy]]
-* [[miaow]]
-* [[nine lives]]
-* [[Persian]]
-* [[Russian Blue]]
-* [[Schrödinger’s cat]]
-* [[Siamese]]
-* [[tabby]]
-
-====Verb====
+cat:
+{wikipedia}A domestic cat (1)
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|kăt}}, {{IPA|/kæt/|[kʲæʔ]}}, {{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>
+</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}}.
+<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>
+<li> Any similar animal of the family <em>Felidae</em>, which includes lions, tigers, etc.</li>
+<li> A catfish.</li>
+<li> {derogatory} A spiteful or angry woman. {{defdate|from earlier 13th c.}}</li>
+<li> An enthusiast or player of jazz.</li>
+<li> {slang} A person (usually male).</li>
+<li> {nautical} A strong tackle used to hoist an anchor to the cathead of a ship.</li>
+<li> {nautical} Contraction of cat-o'-nine-tails.</li>
+<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> {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> 2005. Carolyn Chambers Sanders. </em>Sins & 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>
+<ul><li> </em>I had a notion to walk over to her, rip her apron off, sling her housecoat open and put my finger inside her <b>cat</b> to see if she was wet or freshly fucked because the dream I had earlier was beginning to really annoy me.<em></li>
+</ul>
+</ul>
+</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>
+<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|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>
+<li> See also Wikisaurus:cat</li>
+<li> See also Wikisaurus:man</li>
+</ul>
+
+<h5>Derived terms</h5>
+{{rel-top|Terms derived from </em>cat<em> in the above senses}}
+<ul><li> a cat may look at a king</li>
+<li> all cats are grey in the dark, all cats are grey by night</li>
+<li> alley cat</li>
+<li> African golden cat</li>
+<li> Andean cat</li>
+<li> Asiatic golden cat</li>
+<li> bay cat</li>
+<li> black-footed cat</li>
+<li> bobcat</li>
+<li> barn cat</li>
+<li> Burmese cat, Burmese</li>
+<li> cat and mouse</li>
+<li> cat box</li>
+<li> cat food</li>
+<li> cat that ate the canary, cat that swallowed the canary</li>
+<li> cat in the meal-tub</li>
+<li> cat in the sack</li>
+<li> catbird</li>
+<li> cat-block</li>
+<li> cat-burglar</li>
+<li> catcall</li>
+<li> cat-eyed</li>
+<li> caterwaul</li>
+<li> catfish</li>
+<li> cat-flap</li>
+<li> cat-footed</li>
+<li> cat got someone's tongue, cat got your tongue?</li>
+<li> catgut</li>
+<li> cat-harpin</li>
+<li> cathead, cat-head</li>
+<li> cat-house</li>
+<li> cat-ice</li>
+<li> catkin</li>
+<li> cat-lap</li>
+<li> cat-lick</li>
+<li> catlike</li>
+<li> catling</li>
+<li> catloaf</li>
+<li> catmint</li>
+<li> cat-nap/cat nap</li>
+<li> catnip</li>
+<li> cat-o’-nine-tails</li>
+<li> cat person</li>
+<li> cat’s cradle</li>
+<li> cat’s eye</li>
+<li> cat’s meat</li>
+<li> cat’s meow</li>
+<li> cat’s pajamas, the cat’s pyjamas</li>
+<li> cat’s paw</li>
+<li> cat scratch fever</li>
+<li> cat state</li>
+<li> cat’s-tail</li>
+<li> cat’s whisker</li>
+<li> cat’s whiskers</li>
+</ul>
+{rel-mid}
+<ul><li> cattish</li>
+</ul>
+<ul><li> cat-trap</li>
+<li> catty</li>
+<li> catwalk, cat-walk</li>
+<li> cat-witted</li>
+<li> Chinese desert cat</li>
+<li> copycat</li>
+<li> curiosity killed the cat</li>
+<li> domestic cat</li>
+<li> fat cat</li>
+<li> feral cat</li>
+<li> fight like cats and dogs</li>
+<li> fishing cat</li>
+<li> flat-headed cat</li>
+<li> Geoffroy's cat</li>
+<li> housecat</li>
+</ul>
+<ul><li> it would make a cat laugh</li>
+<li> jungle cat</li>
+<li> lead a cat-and-dog life</li>
+<li> leopard cat</li>
+<li> let the cat out of the bag</li>
+<li> like a cat in a strange garret</li>
+<li> like a cat on hot bricks</li>
+<li> like a cat on a hot tin roof</li>
+<li> like herding cats</li>
+<li> like the cat that got the cream</li>
+<li> little spotted cat</li>
+<li> lolcat</li>
+<li> Maine Coon cat, Maine Coon</li>
+<li> Manx cat, Manx</li>
+<li> marbled cat</li>
+<li> native cat</li>
+</ul>
+<ul><li> not enough room to swing a cat</li>
+<li> Pallas cat</li>
+<li> pampas cat</li>
+<li> Persian cat, Persian</li>
+<li> rain cats and dogs</li>
+<li> reduced cat</li>
+<li> Russian Blue cat, Russian Blue</li>
+<li> rusty-spotted cat</li>
+<li> sand cat</li>
+</ul>
+<ul><li> scaredy-cat</li>
+<li> Schrödinger’s cat</li>
+<li> Siamese cat, Siamese</li>
+<li> spokescat</li>
+<li> tabby cat, tabby</li>
+<li> There's more than one way to skin a cat, there is more than one way to skin a cat</li>
+<li> tom cat, tomcat</li>
+<li> wait for the cat to jump</li>
+<li> wildcat, wild cat</li>
+<li> when the cat's away the mice will play</li>
+</ul>
+{rel-bottom}
+<h5>See also</h5>
+<ul><li> Burmese</li>
+<li> feline</li>
+<li> kitten, kitty</li>
+<li> Manx</li>
+<li> Maine Coon</li>
+<li> meow</li>
+<li> mog, moggie, moggy</li>
+<li> miaow</li>
+<li> nine lives</li>
+<li> Persian</li>
+<li> Russian Blue</li>
+<li> Schrödinger’s cat</li>
+<li> Siamese</li>
+<li> tabby</li>
+</ul>
+
+<h4>Verb</h4>
 {{en-verb|cat|t|ed}}
-
-# {{nautical}} To [[hoist]] (the [[anchor]]) by its [[ring]] so that it hangs at the [[cathead]].
-# {{nautical}} To flog with a [[cat-o'-nine-tails]].
-# {{slang}} To [[vomit]] something.
-
-=====Translations=====
-{{trans-top|raise anchor to cathead}}
-* Danish: {{t-|da|katte}}
-* French: {{t+|fr|caponner}}
-{{trans-mid}}
-* Italian: {{t-|it|caponare}}
-* Norwegian: {{t+|no|katte}}
-{{trans-bottom}}
-
-{{trans-top|flog}}
-* French: [[fouetter]] avec un [[chat à neuf queues]]
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|vomit}}
-* Afrikaans: [[opgooi]], [[kots]]
-* Danish: {{t|da|brække sig}}
-* Estonian: {{t-|et|oksendama}}
-* Finnish: {{qualifier|slang}} [[yrjötä]]
-{{trans-mid}}
-* French: {{t+|fr|dégobiller}}, {{t+|fr|débecter}}, {{t+|fr|débequeter}}
-* Polish: {{t+|pl|wymiotować}}
-* Portuguese: {{t|pt|vomitar}}
-{{trans-bottom}}
-
-===Etymology 2===
-Abbreviation of ''[[catamaran]]''.
-
-====Noun====
-{{en-noun}}
-
-# A [[catamaran]].
-
-===Etymology 3===
-Abbreviation of ''[[catenate]]''.
-
-====Noun====
-{{en-noun}}
-
-# {{computing}} A ‘catenate’ program and command in [[Unix]] that reads one or more files and directs their content to an output device.
-
-====Verb====
+<ol><li> {nautical} To hoist (the anchor) by its ring so that it hangs at the cathead.</li>
+<li> {nautical} To flog with a cat-o'-nine-tails.</li>
+<li> {slang} To vomit something.</li>
+</ol>
+
+<h3>Etymology 2</h3>
+Abbreviation of </em>catamaran<em>.
+<h4>Noun</h4>
+{en-noun}
+<ol><li> A catamaran.</li>
+</ol>
+
+<h3>Etymology 3</h3>
+Abbreviation of </em>catenate<em>.
+<h4>Noun</h4>
+{en-noun}
+<ol><li> {computing} A ‘catenate’ program and command in Unix that reads one or more files and directs their content to an output device.</li>
+</ol>
+
+<h4>Verb</h4>
 {{en-verb|cat|t|ed}}
+<ol><li> {{transitive|computing}} To apply the <b>cat</b> command to (one or more files).</li>
+<li> {{computing|_|slang}} To dump large amounts of data on (an unprepared target) usually with no intention of browsing it carefully.</li>
+</ol>
 
-# {{transitive|computing}} To [[apply]] the '''cat''' [[command]] to (one or more files).
-# {{computing|_|slang}} To [[dump]] large amounts of data on (an unprepared target) usually with no intention of browsing it carefully.
-
-===Etymology 4===
+<h3>Etymology 4</h3>
 Possibly a shortened form of {{term|catastrophic}}.
-
-====Adjective====
+<h4>Adjective</h4>
 {{en-adj|-}}
+<ol><li> {{Ireland|informal}} terrible, disastrous.</li>
+<ul><li> </em>The weather was <b>cat</b>, so they returned home early.<em></li>
+</ul>
+</ol>
 
-# {{Ireland|informal}} [[terrible]], [[disastrous]].
-#: ''The weather was '''cat''', so they returned home early.''
-
-=====Usage notes=====
+<h5>Usage notes</h5>
 This usage is common in speech but rarely appears in writing.
-
-===References===
+<h3>References</h3>
 <references/>
-
-===Anagrams===
-* [[act#English|act]] , [[act.#English|act.]], [[Act.#English|Act.]], [[ACT#English|ACT]]
-* [[ATC#English|ATC]]
-* [[tac#English|tac]], [[TAC#English|TAC]]
-* [[TCA#English|TCA]]
-
-[[Category:1000 English basic words]]
-[[Category:English terms with multiple etymologies]]
-[[Category:en:Cats]]
-[[Category:en:Mammals]]
-
-----
-
-
+<h3>Anagrams</h3>
+<ul><li> act , act., Act., ACT</li>
+<li> ATC</li>
+<li> tac, TAC</li>
+<li> TCA</li>
+</ul>
+Category:1000 English basic wordsCategory:English terms with multiple etymologiesCategory:en:CatsCategory:en:Mammals----
 ===cats===
-rain cats and dogs: 
-
-===Etymology===
-Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά||lang=grc|tr=cata|against}} and {{term|δόξα||tr=doxa|lang=grc|opinion, expectation}}, but see Etymology in [[:Citations:rain cats and dogs#Etymology|Citations]]
-
-===Verb===
-{{en-verb|head=[[rain]] [[cat]]s and [[dog]]s|rains cats and dogs|raining cats and dogs|rained cats and dogs}}
-
-# {{idiomatic}} To [[rain]] very [[heavily]].
-
-====Synonyms====
-* {{sense|to rain very heavily}} [[bucket]], [[bucket down]], [[chuck it down]], [[rain buckets]], [[rain pitchforks]], [[pelt]], [[piss down]] {{qualifier|coarse slang}}, [[pour]], [[stream]], [[teem]]
-
-====Translations====
-{{trans-top|to rain very heavily}}
-* Arabic: {{t|ar|إنها تمطر بغزارة|tr='innahaa tumTir bi-ghazaara|sc=Arab}}
-* Catalan: {{t|ca|ploure a bots i barrals}}
-* Chinese:
-*: Mandarin: {{t|cmn|傾盆大雨|sc=Hani}},  {{t|cmn|倾盆大雨|tr=qīngpéndàyǔ|sc=Hani}}
-* Czech: {{t-|cs|lít jako z konve}}
-* Dutch: {{t|nl|pijpenstelen regenen}}, {{t|nl|regenen dat het giet}}
-* Finnish: {{t-|fi|sataa kaatamalla}}, {{t-|fi|sataa äkäisiä ämmiä äkeet selässä}}, {{t-|fi|sataa kuin saavista kaataen}}, {{t|fi|kuin esterin perseestä}}
-* French: {{t+|fr|pleuvoir des cordes}}, {{t+|fr|pleuvoir à verse}}, {{t+|fr|pleuvoir des hallebardes}}, {{t+|fr|pleuvoir comme vache qui pisse}}, {{qualifier|Québec}} {{t+|fr|pleuvoir à boire debout}}, {{qualifier|Belgium}} {{t+|fr|dracher}}
-* German: {{t+|de|Bindfäden regnen}}, {{t+|de|in Strömen regnen}}, {{t-|de|aus allen Kannen gießen}}, {{t-|de|aus allen Kannen schütten}}, {{t|de|wie aus Eimern schütten}}
-* Greek: {{t+|el|βρέχει καρεκλοπόδαρα}},  {{t|el|ρίχνει καρεκλοπόδαρα}},  {{t|el|βρέχει με το τουλούμι}}
-* Hungarian: {{t|hu|zuhog, mintha dézsából öntenék}}
-{{trans-mid}}
-* Icelandic: {{t|is|vera mígandi rigning}}, {{t|is|rigna eldi og brennisteini}}
-* Interlingua: [[pluver]] [[torrentialmente]]
-* Italian: {{t-|it|piovere a catinelle}}
-* Japanese: {{t|ja|土砂降りになる|tr=どしゃぶりになる, doshaburi-ni naru}}
-* Norwegian: {{t+|no|høljeregne}}
-* Polish: {{t-|pl|leje jak z cebra}}
-* Portuguese: {{qualifier|Portugal}} {{t+|pt|chover a cântaros}}, {{qualifier|Portugal}} {{t-|pt|chover a potes}}, [[chover]] [[torrencialmente]], {{qualifier|Brazil}} [[cair]] [[um]] [[toró]]
-* Romanian: {{t-|ro|a ploua cu găleata}}
-* Russian: {{t-|ru|лить как из ведра|tr=lit’ kak iz v'edrá}}
-* Spanish: {{t-|es|llover a cántaros}}
-* Swedish: {{t+|sv|ösregna}}, {{t+|sv|spöregna}}, {{t-|sv|stå som spön i backen}}
-* Turkish: {{t|tr|bardaktan boşalırcasına yağmak}}
-* Vietnamese: [[trời]] [[mưa]] [[như]] [[trút]]
-* Welsh: {{t|cy|bwrw hen wragedd â ffyn}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[rain dogs and cats#English|rain dogs and cats]]
-
-[[cy:rain cats and dogs]]
-[[de:rain cats and dogs]]
-[[et:rain cats and dogs]]
-[[es:rain cats and dogs]]
-[[fr:rain cats and dogs]]
-[[gl:rain cats and dogs]]
-[[ja:rain cats and dogs]]
-[[no:rain cats and dogs]]
-[[pl:rain cats and dogs]]
-[[pt:rain cats and dogs]]
-[[ru:rain cats and dogs]]
-[[sv:rain cats and dogs]]
-[[zh:rain cats and dogs]]
+rain cats and dogs:
+
+<h3>Etymology</h3>
+Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}} and {{term|δόξα|opinion, expectation|tr=doxa|lang=grc}}, but see Etymology in Citations
+<h3>Verb</h3>
+{{en-verb|rains cats and dogs|raining cats and dogs|rained cats and dogs|head=rain cats and dogs}}
+<ol><li> {idiomatic} To rain very heavily.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|to rain very heavily}} bucket, bucket down, chuck it down, rain buckets, rain pitchforks, pelt, piss down {{qualifier|coarse slang}}, pour, stream, teem</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> rain dogs and cats</li>
+</ul>
+cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs
 ***connotation***
-connotation: 
-
-===Pronunciation===
-* {{rhymes|eɪʃən}}
-
-===Noun===
-{{en-noun}}
-
-# A [[meaning]] of a word or phrase that is [[suggest]]ed or [[implied]], as opposed to a [[denotation]], or [[literal]] [[meaning]]. A [[characteristic]] of [[word]]s or [[phrase]]s, or of the [[context]]s that words and phrases are used in.
-#: ''The '''connotations''' of the phrase "you are a [[dog]]" are that you are [[physical]]ly [[unattractive]] or [[moral]]ly [[reprehensible]], not that you are a [[canine]].''
-# A technical term in logic used by J. S. Mill and later logicians to refer to the attribute or aggregate of attributes [[connote|connoted]] by a term, and contrasted with ''[[denotation]]''.
-#: ''The two expressions "the morning star" and "the evening star" have different '''connotations''' but the same denotation (i.e. the planet Venus).''
-
-====Antonyms====
-* [[denotation]]
-
-====Synonyms====
-* [[intension]]
-
-====Related terms====
-* [[connotative]]
-* [[connotatively]]
-
-====Translations====
-{{trans-top|suggested or implied meaning}}
-* Bulgarian: {{t|bg|допълнително значение}}
-* Chinese:
-*: Mandarin: {{t-|cmn|含義|sc=Hani}}, {{t-|cmn|含义|tr=hànyì|sc=Hani}}
-* Croatian: {{t|hr|konotacija|f}}
-* Czech: {{t-|cs|konotace|f}}
-* Danish: {{t|da|konnotation|c}}, {{t|da|medbetydning|c}}, {{t|da|bibetydning|c}}
-* Dutch: {{t+|nl|connotatie|f}}, {{t|nl|bijbetekenis|f}}, {{t-|nl|bijklank|m}}, {{t+|nl|associatie|f}}, {{t|nl|gevoelswaarde|f}}
-* Finnish: {{t+|fi|konnotaatio}}
-* French: {{t+|fr|connotation|f}}
-{{trans-mid}}
-* German: [[Konnotation]], [[Nebenbedeutung]], [[Beiklang]], [[Beigeschmack]]
-* Indonesian: [[konotasi]]
-* Irish: {{t|ga|fochiall|f|xs=Irish}}
-* Malay: {{t|ms|konotasi}}
-* Maltese: {{t-|mt|konnotazzjoni|f|xs=Maltese}}
-* Norwegian: {{t+|no|konnotasjon|m}}
-* Portuguese: {{t+|pt|conotação|f}}
-* Romanian: {{t|ro|conotație|f}}
-* Spanish: {{t-|es|connotación|f}}
-* Swedish: {{t+|sv|konnotation}}
-{{trans-bottom}}
-
-====References====
-* {{R:OED2}}
-
-====External links====
-
-[[Category:en:Semantics]]
-
-[[cs:connotation]]
-[[et:connotation]]
-[[el:connotation]]
-[[fa:connotation]]
-[[fr:connotation]]
-[[ko:connotation]]
-[[io:connotation]]
-[[id:connotation]]
-[[kn:connotation]]
-[[hu:connotation]]
-[[my:connotation]]
-[[no:connotation]]
-[[pl:connotation]]
-[[ru:connotation]]
-[[simple:connotation]]
-[[fi:connotation]]
-[[ta:connotation]]
-[[tr:connotation]]
-[[vi:connotation]]
-[[zh:connotation]]
+connotation:
+
+<h3>Pronunciation</h3>
+<ul><li> {{rhymes|eɪʃən}}</li>
+</ul>
+
+<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> 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>
+</ol>
+
+<h4>Antonyms</h4>
+<ul><li> denotation</li>
+</ul>
+
+<h4>Synonyms</h4>
+<ul><li> intension</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> connotative</li>
+<li> connotatively</li>
+</ul>
+
+<h4>References</h4>
+<ul><li> {R:OED2}</li>
+</ul>
+
+<h4>External links</h4>
+Category:en:Semanticscs:connotationet:connotationel:connotationfa:connotationfr:connotationko:connotationio:connotationid:connotationkn:connotationhu:connotationmy:connotationno:connotationpl:connotationru:connotationsimple:connotationfi:connotationta:connotationtr:connotationvi:connotationzh:connotation
 ***craft***
-craft: 
-{{wikipedia|dab=craft (disambiguation)|craft}}
-
-===Etymology===
-From {{etyl|enm|en}}, from {{etyl|ang|en}} {{term|cræft||physical strength, might, courage, science, skill, art, ability, talent, virtue, excellence, trade, handicraft, calling, work or product of art, hex, trick, fraud, deceit, machine, instrument|lang=ang}}, from {{proto|Germanic|kraftaz|power|lang=en}}, from {{proto|Indo-European|ger-|to turn, wind|lang=en}}. Cognate with {{etyl|frs|-}} {{term|craft||strength|lang=frs}}, {{etyl|fy|-}} {{term|krêft||strength|lang=fy}}, {{etyl|nl|-}} {{term|kracht||strength, force, power|lang=nl}}, {{etyl|de|-}} {{term|Kraft||strength, force, power|lang=de}}, {{etyl|sv|-}} {{term|kraft||power, force, drive, energy|lang=sv}}, {{etyl|is|-}} {{term|kraftur||power|lang=is}}.
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/kɹɑːft/}}
-*: {{rhymes|ɑːft}}
-* {{a|US}} {{IPA|/kɹæft/}}
-* {{audio|en-us-craft.ogg|Audio (US)}}
-
-===Noun===
+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}}.
+<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> {{audio|en-us-craft.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
 {{en-noun|craft|-|pl2=crafts}}
-
-# {{obsolete}} [[strength|Strength]]; [[power]]; [[might]].
-# {{uncountable}} [[ability|Ability]]; [[dexterity]]; [[skill]], especially skill in making plans and carrying them into [[execution]]; dexterity in [[manage|managing]] affairs; [[adroitness]]; practical [[cunning]].
-# {{uncountable}} [[cunning|Cunning]], [[art]], skill, or dexterity applied to bad purposes; [[artifice]]; [[guile]]; [[subtlety]]; [[shrewdness]] as [[demonstrate]]d by being skilled in [[deception]].
-# {{obsolete}} A [[device]]; a [[means]]; an art; art in general.
-# {{countable|plural: '''crafts'''}} The [[skilled]] [[practice]] of a practical [[occupation]].
-# The [[member]]s of a trade collectively; [[guild]].
-#: ''She represented the '''craft''' of [[brewer]]s.''
-# {{context|nautical|whaling}} Implements used in catching fish, such as [[net]], [[line]], or [[hook]]. Modern use primarily in whaling, as in [[harpoon]]s, [[hand-lance]]s, etc.
-#* {{ante|1784}} “An Act for encouraging and regulating Fiſheries”, in ''Acts and Laws of the State of Connecticut, in America'', T. Green (1784), [http://books.google.com/books?id=ywc4AAAAIAAJ&pg=PA79&dq=craft page 79]:
-#*: ''And whereas the continual Interruption of the Courſe and Paſſage of the Fiſh up the Rivers, by the daily drawing of [[sein|Seins]] and other Fiſh-'''Craft''', tends to prevent their Increaſe, {{...}}'' <!-- [sic] italics -->
-#* '''1869''' April 27, C. M. Scammon, Edward D. Cope (editor), “On the Cetaceans of the Western Coast of North America”, in ''Proceedings of the Academy of Natural Sciences of Philadelphia'', Volume 21, [http://books.google.com/books?id=9IEOAQAAIAAJ&pg=RA1-PA46&dq=craft page 46]:
-#*: The whaling '''craft''' consists of harpoons, lances, lines, and sealskin buoys, all of their own workmanship.
-#* {{ante|1923}} [[w:Charles Boardman Hawes|Charles Boardman Hawes]], “A Boy Who Went Whaling”, in ''The Highest Hit: and Other Selections by Newbery Authors'',<sup >[http://books.google.com/books?id=xZC5QKSqW8UC ]</sup> Gareth Stevens Publishing (2001), ISBN 9780836828566, page 47:
-#*: From the mate’s boat they removed, at his direction, all whaling gear and '''craft''' except the oars and a single lance.
-#* '''1950''', in ''Discovery Reports'', Volume 26,<sup >[http://books.google.com/books?id=GFgqAAAAMAAJ ]</sup> Cambridge University Press, page 318:
-#*: {{...}} Temple, a negro of New Bedford, who made ‘[[whalecraft]]’, that is, was a blacksmith engaged in working from iron the special utensils or ‘'''craft'''’ of the whaling trade.
-#* '''1991''', Joan Druett, ''Petticoat Whalers: Whaling Wives at Sea, 1820–1920'', 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]:
-#*: The men raced about decks collecting the whaling '''craft''' and gear and putting them into the boats, while all the time the lookouts hollered from above.
-# {{context|nautical}} Boats, especially of smaller size than [[ship]]s. Historically primarily applied to vessels engaged in loading or unloading of other vessels, as [[lighter]]s, [[hoy]]s, and [[barge]]s.
-# {{context|nautical|British Royal Navy}} Those vessels attendant on a [[fleet]], such as [[cutter]]s, [[schooner]]s, and [[gun-boat]]s, generally commanded by [[lieutenant]]s.
-# {{countable|plural: '''craft'''}} A [[vehicle]] designed for [[navigation]] in or on water or air or through [[outer space]].
-# {{countable|plural: '''crafts'''}} A [[particular]] kind of skilled [[work]].
-#: ''He learned his '''craft''' as an apprentice.''
-
-====Derived terms====
-{{top2}}
-* [[aircraft]]
-* [[craft beer]], [[craft brewery]]
-* [[gypsycraft]]
-* [[hovercraft]]
-* [[roadcraft]]
-* [[spacecraft]]
-* [[spellcraft]]
-{{mid2}}
-* [[spycraft]]
-* [[statecraft]]
-* [[warcraft]]
-* [[watercraft]]
-* [[witchcraft]]
-{{bottom}}
-
-====Synonyms====
-* {{sense|skill at work}} [[craftsmanship]], [[workmanship]]
-* {{sense|nautical sense}}
-* {{sense|vehicle}}
-* {{sense|kind of skilled work}} [[trade]]
-* {{sense|shrewdness}} [[craftiness]], [[cunning]], [[foxiness]], [[guile]], [[slyness]], [[wiliness]]
-
-====Translations====
-{{trans-top|skilled practice}}
-* Armenian: {{t-|hy|արհեստ|tr=arhest}}
-* Bulgarian: {{t+|bg|занаят|m}}, {{t|bg|професия|f}}
-* Czech: {{t-|cs|řemeslo|n}}
-* Danish: {{t|da|håndværk|n}}
-* Dutch: {{t+|nl|vak|n}}, {{t-|nl|stiel|c}}
-* Esperanto: {{t|eo|fako}}, {{t|eo|metio}}
-* Finnish: {{t+|fi|taito}}
-* German: {{t+|de|Handwerk}}
-* Irish: {{t-|ga|ceird|f|xs=Irish}}
-* Japanese: {{l|ja|工芸品}}
-{{trans-mid}}
-* Maltese: [[sengħa]], [[artiġjanat]]
-* Polish: {{t+|pl|rzemiosło|n}}
-* Portuguese: {{t+|pt|arte|m}}, {{t+|pt|ofício|m}}
-* Russian: {{t|ru|ремесло|n|sc=Cyrl|tr=remesló}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|занат|alt=за̀на̄т|sc=Cyrl}}, {{t|sh|занатство}}
-*: Roman: {{t|sh|zanat|alt=zànāt}}, {{t|sh|zanatstvo|alt=zanátstvo}}
-* Spanish: {{t+|es|oficio|m}}
-* Turkish: {{t|tr|zanaat}}
-{{trans-bottom}}
-
-{{trans-top|vehicle designed for navigation}}
-* Bulgarian: {{t|bg|плавателен съд}}
-* Czech: {{t-|cs|plavidlo|n}}
-* Danish: {{t|da|fartøj|n}}
-* Dutch: {{t+|nl|voertuig|n}}, {{t+|nl|toestel|n}}
-{{trans-mid}}
-* Finnish: {{t+|fi|alus}}
-* German: [[Fahrzeug]], [[Lenkfahrzeug]]
-* Greek: {{t+|el|σκάφος|n|tr=skáfos}}
-* Irish: {{t+|ga|árthach|m|xs=Irish}}, {{t+|ga|bád|m|xs=Irish}}, {{t-|ga|soitheach|m|xs=Irish}}
-{{trans-bottom}}
-
-{{trans-top|people who perform a particular kind of skilled work}}
-* Armenian: {{t-|hy|արհեստավոր|tr=arhestavor}}
-* Bulgarian: {{t|bg|еснаф|m}},  {{t|bg|гилдия|f}}
-* Danish: {{t|da|håndværker|c}}
-* Dutch: {{t|nl|ambacht|n}}, [[ambachtslui]] {{m|p}}, [[vaklui]] {{m|p}}, [[stielmannen]] {{m|p}}
-* Esperanto: {{t|eo|metio}}, {{t|eo|metiistoj}} {{p}}, {{t|eo|fakuloj}} {{p}}
-* Finnish: {{t-|fi|ammattikunta}}
-{{trans-mid}}
-* German: {{t+|de|Handwerker}}
-* Maltese: [[artiġjanatur]] {{m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|занатлија|m}}, {{t|sh|занатлијка|f}}
-*: Roman: {{t|sh|zanatlija|m}}, {{t|sh|zanatlijka|f}}
-{{trans-bottom}}
-
-{{trans-top|skill in an occupation}}
-* Armenian: {{t-|hy|արհեստ|tr=arhest}}
-* Bulgarian: {{t+|bg|ловкост|f}},  {{t|bg|умение|n}}
-* Dutch: {{t-|nl|vakmanschap|n}}
-* Finnish: [[käsityötaito]], [[työtaito]]
-* Irish: {{t+|ga|ceardaíocht|f|xs=Irish}}
-* Japanese: {{l|ja|職業}}
-* Portuguese: {{t+|pt|habilidade|f}}, {{t+|pt|perícia|f}}
-{{trans-mid}}
-* Russian: {{t|ru|умение|n|sc=Cyrl|tr=uménije}}, {{t|ru|сноровка|f|sc=Cyrl|tr=snoróvka}}, {{t|ru|искусство|n|sc=Cyrl|tr=iskússtvo}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|занат|alt=за̀на̄т|sc=Cyrl}}
-*: Roman: {{t|sh|zanat|alt=zànāt}}
-* Spanish: {{t+|es|pericia|f}}
-{{trans-bottom}}
-
-{{trans-top|shrewdness}}
-* Bulgarian: {{t|bg|хитрост|f}}
-* Dutch: {{t|nl|gewiekstheid|c}}
-* Esperanto: {{t|eo|ruzeco}}
-* Finnish: [[juonikkuus]]
-* German: [[Schlauheit]], [[Geriebenheit]]
-{{trans-mid}}
-* Russian: {{t|ru|хитрость|f|sc=Cyrl|tr=xítrost'}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|препреденост|f|alt=препрѐдено̄ст|sc=Cyrl}}
-*: Roman: {{t|sh|prepredenost|f|alt=preprèdenōst}}
-{{trans-bottom}}
-
-===Verb===
-{{en-verb}}
-
-# To make by hand and with much skill.
-# To construct, develop something (like a skilled craftsman): "state crafting", "crafting global policing".
-
-====Translations====
-{{trans-top|make by hand}}
-* Bulgarian: {{t|bg|изработвам на ръка}}
-* Catalan: {{t|ca|fet a mà}}
-* Danish: {{t|da|håndlavet}}
-* Dutch: [[handbewerken]]
-* German: [[handgemacht]]
-* Russian: {{t|ru|мастерить|sc=Cyrl}}, {{t|ru|проявлять мастерство|sc=Cyrl}}, {{t|ru|изготавливать вручную|sc=Cyrl}}
-{{trans-mid}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|ручно направљено}}
-*: Roman: {{t|sh|ručno napravljeno}}
-* Spanish: {{t-|es|labrar}}
-{{trans-bottom}}
-
-{{trans-top|construct, develop}}
-* Danish: {{t|da|bygge}}, {{t|da|konstrukere}}
-* Portuguese: {{t|pt|construir}}, {{t|pt|desenvolver}}
-{{trans-mid}}
-* Spanish: {{t+|es|construir}}, {{t-|es|desarrollar}}
-{{trans-bottom}}
-
-===References===
-* Krueger, Dennis (December 1982). "Why On Earth Do They Call It Throwing?" ''Studio Potter'' Vol. 11, Number 1.[http://www.studiopotter.org/articles/?art=art0001]
-
-[[Category:English invariant nouns]]
-
-[[cs:craft]]
-[[cy:craft]]
-[[et:craft]]
-[[el:craft]]
-[[eo:craft]]
-[[fa:craft]]
-[[fr:craft]]
-[[ko:craft]]
-[[io:craft]]
-[[id:craft]]
-[[kn:craft]]
-[[hu:craft]]
-[[mg:craft]]
-[[ml:craft]]
-[[my:craft]]
-[[nl:craft]]
-[[pl:craft]]
-[[ru:craft]]
-[[simple:craft]]
-[[fi:craft]]
-[[sv:craft]]
-[[ta:craft]]
-[[te:craft]]
-[[vi:craft]]
-[[zh:craft]]
+<ol><li> {obsolete} Strength; power; might.</li>
+<li> {uncountable} Ability; dexterity; skill, especially skill in making plans and carrying them into execution; dexterity in managing affairs; adroitness; practical cunning.</li>
+<li> {uncountable} Cunning, art, skill, or dexterity applied to bad purposes; artifice; guile; subtlety; shrewdness as demonstrated by being skilled in deception.</li>
+<li> {obsolete} A device; a means; an art; art in general.</li>
+<li> {{countable|plural: <b>crafts</b>}} The skilled practice of a practical occupation.</li>
+<li> The members of a trade collectively; guild.</li>
+<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> <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>
+<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>
+<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>
+<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>
+<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>
+<li> {{context|nautical}} Boats, especially of smaller size than ships. Historically primarily applied to vessels engaged in loading or unloading of other vessels, as lighters, hoys, and barges.</li>
+<li> {{context|nautical|British Royal Navy}} Those vessels attendant on a fleet, such as cutters, schooners, and gun-boats, generally commanded by lieutenants.</li>
+<li> {{countable|plural: <b>craft</b>}} A vehicle designed for navigation in or on water or air or through outer space.</li>
+<li> {{countable|plural: <b>crafts</b>}} A particular kind of skilled work.</li>
+<ul><li> <em>He learned his <b>craft</b> as an apprentice.</em></li>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+{top2}
+<ul><li> aircraft</li>
+<li> craft beer, craft brewery</li>
+<li> gypsycraft</li>
+<li> hovercraft</li>
+<li> roadcraft</li>
+<li> spacecraft</li>
+<li> spellcraft</li>
+</ul>
+{mid2}
+<ul><li> spycraft</li>
+<li> statecraft</li>
+<li> warcraft</li>
+<li> watercraft</li>
+<li> witchcraft</li>
+</ul>
+{bottom}
+<h4>Synonyms</h4>
+<ul><li> {{sense|skill at work}} craftsmanship, workmanship</li>
+<li> {{sense|nautical sense}}</li>
+<li> {{sense|vehicle}}</li>
+<li> {{sense|kind of skilled work}} trade</li>
+<li> {{sense|shrewdness}} craftiness, cunning, foxiness, guile, slyness, wiliness</li>
+</ul>
+
+<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>
+</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>
+Category:English invariant nounscs:craftcy:craftet:craftel:crafteo:craftfa:craftfr:craftko:craftio:craftid:craftkn:crafthu:craftmg:craftml:craftmy:craftnl:craftpl:craftru:craftsimple:craftfi:craftsv:craftta:craftte:craftvi:craftzh:craft
 ***crow***
-crow: 
-[[Image:Corvus brachyrhynchos 2.jpg|thumb|A bird; a crow: ''American crow'']]
-{{wikipedia}}
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/kɹəʊ/}}, {{X-SAMPA|/kr@U/}}
-* {{a|US}} {{enPR|krō}}, {{IPA|/kroʊ/}}, {{X-SAMPA|/kroU/}}
-* {{audio|en-us-crow.ogg|Audio (US)}}
-* {{rhymes|əʊ}}
-
-===Etymology 1===
-{{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|title=|krāhanan}} ‘to crow’. See below.
-
-====Noun====
-{{en-noun}}
-
-# A [[bird]], usually black, of the genus ''[[Corvus]]'', having a strong conical beak, with projecting bristles; it has a harsh, croaking call.
-#* '''1922''', E.R. Eddison, ''The Worm Ouroborus''
-#*: Gaslark in his splendour on the golden stairs saying adieu to those three captains and their matchless armament foredoomed to dogs and '''crows''' on Salapanta Hills.
-# A bar of iron with a beak, crook, or claw; a bar of iron used as a lever; a [[crowbar]].
-#* '''1796''', Matthew Lewis, ''The Monk'', Folio Society 1985, p. 267:
-#*: He approached the humble tomb in which Antonia reposed. He had provided himself with an iron '''crow''' and a pick-axe: but this precaution was unnecessary.
-# The cry of the [[rooster]].
-
-=====Synonyms=====
-* {{sense|bar}} [[crowbar]]
-* {{sense|cry of a rooster}} [[cock-a-doodle-doo]]
-
-=====Derived terms=====
+crow:
+A bird; a crow: <em>American crow</em>{wikipedia}
+<h3>Pronunciation</h3>
+<ul><li> {{a|RP}} {{IPA|/kɹəʊ/}}, {{X-SAMPA|/kr@U/}}</li>
+<li> {{a|US}} {{enPR|krō}}, {{IPA|/kroʊ/}}, {{X-SAMPA|/kroU/}}</li>
+<li> {{audio|en-us-crow.ogg|Audio (US)}}</li>
+<li> {{rhymes|əʊ}}</li>
+</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.
+<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>
+<ul><li> <b>1922</b>, E.R. Eddison, <em>The Worm Ouroborus</em></li>
+<ul><li> Gaslark in his splendour on the golden stairs saying adieu to those three captains and their matchless armament foredoomed to dogs and <b>crows</b> on Salapanta Hills.</li>
+</ul>
+</ul>
+<li> A bar of iron with a beak, crook, or claw; a bar of iron used as a lever; a crowbar.</li>
+<ul><li> <b>1796</b>, Matthew Lewis, <em>The Monk</em>, Folio Society 1985, p. 267:</li>
+<ul><li> He approached the humble tomb in which Antonia reposed. He had provided himself with an iron <b>crow</b> and a pick-axe: but this precaution was unnecessary.</li>
+</ul>
+</ul>
+<li> The cry of the rooster.</li>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|bar}} crowbar</li>
+<li> {{sense|cry of a rooster}} cock-a-doodle-doo</li>
+</ul>
+
+<h5>Derived terms</h5>
 {{rel-top|terms derived from crow (noun)}}
-* [[American crow]]
-* [[as the crow flies]]
-* [[carrion crow]]
-* [[Danish crow]]
-* [[eat crow]]
-* [[grey crow]]
-{{rel-mid}}
-* [[hooded crow]]
-* [[hoodiecrow]]
-* [[Scotch crow]]
-* [[stone the crows]]
-{{rel-bottom}}
-
-=====Related terms=====
-* [[crow eater]]
-
-=====See also=====
-* [[murder]]
-* [[raven]]
-
-=====Translations=====
-{{trans-top|any bird of the genus ''Corvus''}}
-* Afrikaans: [[kraai]]
-* Albanian: {{t+|sq|sorrë|f|xs=Albanian}}
-* Amharic: {{tø|am|ቁራ|tr=qura|sc=Ethi}}
-* Ancient Greek: {{t|grc|κορώνη|f|tr=koróni|sc=polytonic}}
-* Arabic: {{t|ar|غراب|m|tr=ghuraab}}, {{t-|ar|زاغ|m|tr=zaagh}}
-*: Egyptian Arabic: {{tø|arz|غراب|m|tr=ğuraab|sc=Arab}}
-* Armenian: {{t+|hy|ագռավ|tr=agṙav}}
-* Baluchi: {{tø|bal|گوراگ|tr=gwarág}}
-* Basque: [[bele]]
-* Belarusian: {{t-|be|варона|f|tr=varona|xs=Belarusian}}
-* Breton: [[bran]] {{f}}
-* Bulgarian: {{t+|bg|врана|f|tr=vrana}}
-* Burmese: {{t|my|ကျီး|tr=kyi:|sc=Mymr}}, {{t|my|ကျီးကန်း|tr=kyi:gan:|sc=Mymr}}
-* Catalan: [[còrvid]] {{m}}
-* Cherokee: {{t-|chr|ᎪᎬ|tr=gogv|sc=Cher|xs=Cherokee}}
-* Chichewa: [[khwangwala]] (1)
-* Chinese:
-*: Mandarin: {{t-|cmn|烏鴉|sc=Hani}}, {{t-|cmn|乌鸦|tr=wūyā|sc=Hani}}
-* Choctaw: {{tø|cho|fạla}}
-* Croatian: {{t|hr|vrana|f}}
-* Czech: {{t+|cs|vrána|f}}
-* Danish: {{t-|da|krage|c}}
-* Dutch: {{t+|nl|kraai|m}}
-* Esperanto: {{t-|eo|korniko|xs=Esperanto}}
-* Estonian: {{t+|et|vares}}
-* Faroese: {{t-|fo|kráka|f|xs=Faroese}}
-* Finnish: {{t+|fi|varis}}, {{t-|fi|varislintu}}
-* French: {{t+|fr|corneille|f}}
-*: [[Old French]]: {{tø|fro|corbel|m}}
-* Friulian: [[çore]], [[corvat piçul]], [[cornile]]
-* Galician: [[corvo viaraz]] {{m}}
-* Georgian: {{t-|ka|ყვავი|tr=q‘vavi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Krähe|f}}
-* Greek: {{t+|el|κουρούνα|f|tr=kouroúna}}
-* Hawaiian: [[ʻalalā]]
-* Hebrew: {{t-|he|עורב|m|tr='orev}}
-* Hindi: {{t|hi|कौआ|tr=kau'ā|xs=Hindi}}
-* Hopi: {{tø|hop|angwusi}}
-* Hungarian: {{t+|hu|varjú}}
-* Icelandic: {{t+|is|kráka|f}}
-* Indonesian: {{t+|id|burung gagak|xs=Indonesian}}, {{t+|id|gagak|xs=Indonesian}}
-* Irish: [[caróg dhubh]] {{f}}
-* Italian: {{t-|it|cornacchia|f}}, {{t|it|corvo}}
-* Japanese: {{t+|ja|烏}}, {{t+|ja|カラス|tr=karasu}}
-* Kannada: [[ಕಾಗೆ]] (kaage)
-* Kazakh: {{t|kk|қарға|tr=qarğa|sc=Cyrl|xs=Kazakh}}
-* Khmer: [[ក្អែក]]
-* Korean: {{t+|ko|까마귀|tr=kkamagwi|sc=Hang}}
-* Kurdish:
-*: [[Kurmanji]]: {{t+|ku|qirr|f}}, {{t+|ku|qirrereşk|f}}
-*: [[Sorani]]: {{t|ku|قه‌ل|sc=ku-Arab}}, {{t|ku|قه‌له‌ڕه‌ش|sc=ku-Arab}}
-* Ladin: [[agacion]]
-* Latgalian: {{tø|ltg|vuorna|f}}
-* Latin: {{t-|la|corvus|m}}
-{{trans-mid}}
-* Latvian: {{t-|lv|vārna|f|xs=Latvian}}
-* Lithuanian: {{t+|lt|varna|f|xs=Lithuanian}}
-* Low Saxon: [[Kreih]] {{f}}
-* Lower Sorbian: [[karwona]], [[garona]]
-* Macedonian: [[врана]] (vrana) {{f}}
-* Malay: {{t-|ms|gagak|xs=Malay}}, {{t|ms|gauk}}
-* Malayalam: [[കാക്ക]] (kaakka)
-* Maori: [[kōkako]]
-* Marathi: {{t|mr|कावळा|sc=Deva|xs=Marathi}}
-* Mongolian: [[хэрээ]] (kheree)
-* Montagnais: {{tø|moe|kakatshu}}
-* Navajo: {{tø|nv|gáagii}}
-* {{trreq|ne}}
-* Ngarrindjeri: {{tø|nay|marangani}}
-* Norwegian: {{t-|no|kråke|f}}
-* Occitan: [[gralha]] {{f}}
-* Old English: {{t|ang|crawe|alt=crāwe|xs=Old English}}
-* Persian: {{t+|fa|کلاغ|tr=kalâgh|xs=Persian}}
-* Polish: {{t+|pl|wrona|f}}
-* Portuguese: {{t+|pt|corvo|m}}
-* Romani: [[korung]] {{m}}
-* Romanian: {{t+|ro|cioară|f}}
-* Romansch: {{t|rm|corv nair|xs=Romansch}}
-* Russian: {{t+|ru|ворона|f|tr=voróna}}
-* Sami: [[vuoražas]], [[vuorččis]]
-* Sardinian: [[carroga]], [[corrancra]], [[corronca]], [[giacu]]
-* Scots: {{tø|sco|craw}}
-* Scottish Gaelic: [[starrag]] {{f}}, [[ròcas]] {{m}}, {{t-|gd|feannag|f|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic {{t|sh|врана|f|sc=Cyrl}}
-*: Roman {{t|sh|vrana|f}}
-* Skolt Sami: {{tø|sms|käärnõs}}
-* Slovak: {{t-|sk|vrana|f}}
-* Slovene: {{t+|sl|vrana|f}}
-* Spanish: {{t-|es|corneja|f}}, {{t+|es|cuervo|m}}
-* Swahili: {{t+|sw|kunguru|xs=Swahili}}
-* Swedish: {{t+|sv|kråka|c}}
-* Tagalog: {{t|tl|uwák}}
-* Tamil: [[காகம்]] (kāham)
-* Taos: [[kòki’ína]]
-* Telugu: [[కాకి]] (kaaki)
-* Thai: {{t+|th|กา|tr=kaa}}
-* Tibetan: {{tø|bo|ཀ་ཀ|tr=ka-ka|sc=Tibt|xs=Tibetan}}
-* Tocharian B: {{tø|txb|wrauña|f|xs=Tocharian B}}
-* Turkish: {{t+|tr|karga}}
-* Ukrainian: {{t-|uk|ворона|f|tr=voróna|xs=Ukrainian}}, {{t|uk|ґава|tr=gáva, háva|xs=Ukrainian}}, {{t|uk|гава|f|tr=háva, gáva|xs=Ukrainian}}
-* Upper Sorbian: [[wróna]] {{f}}
-* Uyghur: {{t|ug|قاغا|sc=ug-Arab}}
-* Vietnamese: {{t-|vi|con quạ|xs=Vietnamese}}
-* Vilamovian: {{tø|wym|kröw}}
-* Volapük: {{qualifier|male or female}} {{t|vo|krov}}, {{qualifier|male}} {{t|vo|hikrov}}, {{qualifier|female}} {{t|vo|jikrov}}, {{qualifier|offspring}} {{t|vo|krovül}}
-* Welsh: {{t+|cy|brân|f|xs=Welsh}}
-* West Frisian: [[krie]] {{c}}
-{{trans-bottom}}
-
-{{trans-top|bar of iron}}
-* Breton: {{t|br|loc'henn|f}}
-* Bulgarian: {{t|bg|кози крак|m}}
-* Catalan: [[corb]] {{m}}
-* Czech: {{t-|cs|páčidlo|n}}, {{t+|cs|sochor|m}}
-* Dutch: {{t-|nl|koevoet}}
-* Finnish: {{t+|fi|sorkkarauta}}
-* French: {{t+|fr|pied-de-biche|m}}
-* German: {{t+|de|Brecheisen|n}}
-{{trans-mid}}
-* Greek: {{t|el|λοστός|m|tr=lostós|sc=Grek}}
-* Icelandic: {{t-|is|kúbein|n}}
-* Italian: {{t|it|piede di porco}}
-* Polish: {{t|pl|łom|m}}
-* Spanish: {{t|es|palanca}}
-* Swahili: {{t+|sw|kunguru|xs=Swahili}}
-* Turkish: {{t|tr|kazayağı}}
-{{trans-bottom}}
-
-{{trans-top|cry of the rooster}}
-* Breton: [[kan]] {{m}}
-* Bulgarian: {{t|bg|кукуригане|n}}
-* Czech: {{t-|cs|kokrhání|n}}, {{t-|cs|zakokrhání|n}}
-* Dutch: [[hanengekraai]]
-* Finnish: {{t-|fi|kieunta}}, {{t-|fi|kiekuminen}}
-* French: {{t+|fr|chant|m}}
-* {{trreq|Georgian}}
-* German: {{t-|de|Krähen|n}}
-{{trans-mid}}
-* Greek: {{t|el|λάλημα|n|tr=lálima}}
-* Icelandic: {{t-|is|hanagal|n}}
-* Polish: {{t+|pl|pianie|n}}
-* Scottish Gaelic: {{t-|gd|gairm|f|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic {{t|sh|крик|sc=Cyrl}}
-*: Roman {{t|sh|krik}}
-* Swahili: {{t+|sw|kunguru|xs=Swahili}}
-{{trans-bottom}}
-
-===Etymology 2===
+<ul><li> American crow</li>
+<li> as the crow flies</li>
+<li> carrion crow</li>
+<li> Danish crow</li>
+<li> eat crow</li>
+<li> grey crow</li>
+</ul>
+{rel-mid}
+<ul><li> hooded crow</li>
+<li> hoodiecrow</li>
+<li> Scotch crow</li>
+<li> stone the crows</li>
+</ul>
+{rel-bottom}
+<h5>Related terms</h5>
+<ul><li> crow eater</li>
+</ul>
+
+<h5>See also</h5>
+<ul><li> murder</li>
+<li> raven</li>
+</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}}.
+<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>
+<ul><li> <b>1962</b>, {{w|Bob Dylan}}, {{w|Don't Think Twice, It's All Right}}</li>
+<ul><li> When your rooster <b>crows</b> at the break o' dawn</li>
+<li> Look out your windo' and I'll be gone</li>
+<li> You're the reason I'm a travelin' on</li>
+<li> But don't think twice, it's all right.</li>
+</ul>
+</ul>
+<li> To shout in exultation or defiance; to brag.</li>
+<li> To utter a sound expressive of joy or pleasure.</li>
+</ol>
 
-====Verb====
-{{en-verb|crows|crowing|'''[[crowed]]''' or '''[[crew]]''' (Br. Eng. sense 1 only)|crowed}}
-
-# To make the [[shrill]] [[sound]] characteristic of a rooster; to make a sound in this manner, either in joy, gaiety, or defiance.
-#* '''1962''', {{w|Bob Dylan}}, {{w|Don't Think Twice, It's All Right}}
-#*: When your rooster '''crows''' at the break o' dawn
-#*: Look out your windo' and I'll be gone
-#*: You're the reason I'm a travelin' on
-#*: But don't think twice, it's all right.
-# To [[shout]] in exultation or defiance; to brag.
-# To utter a sound expressive of joy or pleasure.
-
-=====Translations=====
-{{trans-top|To make the sound of a rooster}}
-* Bulgarian: {{t|bg|кукуригам}}
-* Dutch: {{t+|nl|kraaien}}
-* Finnish: {{t|fi|kiekua}}
-* {{trreq|Georgian}}
-* German: {{t+|de|krähen}}
-* Greek: {{t|el|λαλώ|tr=laló}}, {{t+|el|κράζω|tr=krázo}}
-* Hungarian: {{t|hu|kukorékol}}
-{{trans-mid}}
-* Icelandic: {{t-|is|gala}}
-* Norwegian: {{t+|no|gale}}
-* Polish: {{t+|pl|piać}}
-* Russian: [[кукарекать]] (kukarékat’)
-* Scottish Gaelic: {{t-|gd|gairm|xs=Scottish Gaelic}}
-* Swahili: {{t+|sw|kunguru|xs=Swahili}}
-* Swedish: {{t+|sv|gala}}
-{{trans-bottom}}
-
-{{trans-top|To shout or brag}}
-* Bulgarian: {{t|bg|ликувам}}, {{t|bg|тържествувам}}
-* Greek: {{t|el|θριαμβολογώ|tr=thriamvologó}}
-{{trans-mid}}
-* Swahili: {{t+|sw|kunguru|xs=Swahili}}
-{{trans-bottom}}
-
-{{trans-top|To utter a sound of joy}}
-* German: {{t+|de|jauchzen}}
-{{trans-mid}}
-* Swahili: {{t+|sw|kunguru|xs=Swahili}}
-{{trans-bottom}}
-
-[[Category:en:Birds]]
-
-[[ar:crow]]
-[[az:crow]]
-[[zh-min-nan:crow]]
-[[bg:crow]]
-[[cs:crow]]
-[[cy:crow]]
-[[de:crow]]
-[[et:crow]]
-[[el:crow]]
-[[eo:crow]]
-[[eu:crow]]
-[[fa:crow]]
-[[fr:crow]]
-[[ga:crow]]
-[[gl:crow]]
-[[ko:crow]]
-[[hy:crow]]
-[[io:crow]]
-[[id:crow]]
-[[it:crow]]
-[[kn:crow]]
-[[kk:crow]]
-[[sw:crow]]
-[[ky:crow]]
-[[lo:crow]]
-[[lt:crow]]
-[[li:crow]]
-[[hu:crow]]
-[[mg:crow]]
-[[ml:crow]]
-[[my:crow]]
-[[nl:crow]]
-[[ja:crow]]
-[[pl:crow]]
-[[pt:crow]]
-[[ro:crow]]
-[[ru:crow]]
-[[simple:crow]]
-[[fi:crow]]
-[[sv:crow]]
-[[ta:crow]]
-[[te:crow]]
-[[th:crow]]
-[[tr:crow]]
-[[vi:crow]]
-[[zh:crow]]
 ===current===
-current events: 
-
-===Noun===
-{{en-plural noun|head=[[current]] [[events]]|sg=current event}}
-
-# [[current]] [[affairs]]; those [[event]]s and issues of interest currently found in the news.
-
-====Translations====
-{{trans-top|news items}}
-* Danish: {{t-|da|aktuelle begivenheder}}
-* Dutch: {{t|nl|actualiteiten}}
-* Finnish: {{t|fi|nykyiset tapahtumat}}
-* French: {{t+|fr|actualités}}
-* German: {{t|de|aktuelle Veranstaltungen}}
-* Japanese: {{t-|ja|時事|tr=jiji}}
-* Navajo: {{tø|nv|ádahooníłígíí}}
-{{trans-mid}}
-* Norwegian: {{t|no|aktuelle hendelser}}
-* Portuguese: {{t|pt|eventos atuais}}
-* Spanish: [[acontecimiento|acontecimientos]] de [[actualidad]] {{m|p}}
-* Swedish: {{t|sv|aktualitet|alt=aktualiteter}},  {{t|sv|aktuell|alt=aktuella}} {{t|sv|händelse|alt=händelser}}
-* Telugu: {{t|te|ప్రస్తుత ఘటనలు|sc=Telu}}
-{{trans-bottom}}
-
-===See also===
-* [[current affairs]]
-
-[[am:current events]]
-[[ang:current events]]
-[[zh-min-nan:current events]]
-[[et:current events]]
-[[el:current events]]
-[[fr:current events]]
-[[ia:current events]]
-[[kk:current events]]
-[[mg:current events]]
-[[ru:current events]]
-[[sd:current events]]
-[[st:current events]]
-[[su:current events]]
-[[ta:current events]]
-[[th:current events]]
-[[tt:current events]]
-***day***
-day: 
-{{wikipedia|Day (disambiguation)}}
-
-===Alternative forms===
-* [[daie]] {{qualifier|archaic}}
-
-===Etymology===
-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||tr=dāhas||heat|lang=sa|sc=Deva}}.
-
-Not related to Latin {{term|dies|lang=la}} (from {{proto|Indo-European|dyeu-|to shine}}).
-
-===Pronunciation===
-* {{enPR|dā}}, {{IPA|/deɪ/}}, {{X-SAMPA|/deI/}}
-* {{audio|en-us-day.ogg|Audio (US)}}
-* {{audio|En-uk-a day.ogg|Audio (UK)}}
-* {{rhymes|eɪ}}
-
-===Noun===
-{{en-noun}}
-
-# Any period of 24 [[hour]]s.
-#: ''I've been here for 2 and a bit '''days'''.''
-# A period from [[midnight]] to the following [[midnight]].
-#: ''The '''day''' begins at midnight.''
-# {{astronomy}} Rotational period of a planet (especially [[earth]]).
-#: ''A '''day''' on Mars is slightly over 24 hours.''
-# The part of a day period which one spends at one’s job, school, etc.
-#: ''I worked two '''days''' last week.''
-# Part of a day period between [[sunrise]] and [[sunset]] where one enjoys [[daylight]], [[daytime]].
-#: '''''day''' and night.''
-#: ''I work at night and sleep during the '''day'''.''
-# A specified time or period; time, considered with reference to the existence or prominence of a person or thing; age; time.
-#: ''Every dog has its '''day'''.''
-# A period of contention of a day or less.
-#: ''The '''day''' belonged to the Allies.''
-
-====Derived terms====
-{{rel-top3|terms derived from ''day''}}
-* [[a broken clock is right twice a day]]
-* [[all-day]]
-* [[as the day is long]]
-* [[Canada Day]]
-* [[daily]]
-* [[day after day]]
-* [[day-after-day]]
-* [[daybreak]]
-* [[daydream]]
-* [[daycare]], [[day care]]
-* [[day in, day out]]
-* [[day job]]
-* [[day laborer]]
-* [[day letter]]
-* [[daylight]]
-* [[day-neutral]]
-* [[day nursery]]
-{{rel-mid3}}
-* [[day off]]
-* [[day of reckoning]]
-* [[day one]]
-* [[day return]]
-* [[day school]]
-* [[daystar]]
-* [[daytime]]
-* [[day to day]]
-* [[day-to-day]]
-* [[day trader]]
-* [[day trip]]
-* [[day boarder]]
-* [[day bed]]
-* [[degree-day]]
-* [[dollar day]]
-{{rel-mid3}}
-* [[every dog has its day]]
-* [[field day]]
-* [[flag day]], [[Flag Day]]
-* [[Friday]]
-* [[have its day]]
-* [[have seen one's day]]
-* [[holiday]]
-* [[holy day]]
-* [[judgment day]]
-* [[latter-day]]
-* [[Monday]]
-* [[payday]]
-* [[present-day]]
-* [[rainy day]]
-* [[Saturday]]
-* [[save the day]]
-* [[sick day]]
-* [[Sunday]]
-* [[Thursday]]
-* [[tomorrow is another day]]
-* [[Tuesday]]
-* [[Victoria day]]
-* [[Wednesday]]
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|period of 24 hours}}
-* Abkhaz: {{t|ab|амш|tr=amš|sc=Cyrl}}
-* Afrikaans: {{t+|af|dag|xs=Afrikaans}}
-* Amharic: {{tø|am|ቀን|tr=qän|sc=Ethi}}
-* Anglo-Norman: {{tø|xno|jur}}
-* Arabic: {{t|ar|يوم|m|tr=yawm|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|يوم|m|tr=yoom|sc=Arab}}, {{tø|arz|ايام|f|p|tr=eyam|sc=Arab}}
-* Aramaic:
-*: Syriac: [[ܝܘܡܐ]] (yawmā’) {{m}}
-* Armenian: {{t|hy|օր|tr=òr}}
-* Aromanian: {{tø|rup|dzuã}}
-* Asturian: {{t|ast|día|m}}
-* Azeri:
-*: Cyrillic: {{t-|az|ҝүн|sc=Cyrl|xs=Azeri}}
-*: Roman: {{t-|az|gün|xs=Azeri}}
-* Bakhtiari: {{tø|bqi|روز|tr=ruz|sc=fa-Arab}}
-* Baluchi: {{tø|bal|روچ|tr=roc}}
-* Basque: {{t+|eu|egun|xs=Basque}}
-* Baure: {{tø|brg|roseskoner}}
-* Belarusian: {{t|be|суткі|p|tr=sútki|sc=Cyrl}}, {{t|be|дзень|m|tr=dzen’|sc=Cyrl}}
-* Breton: {{t+|br|deiz|m|xs=Breton}}, {{t+|br|devezh|m|xs=Breton}}
-* Bulgarian: {{t|bg|денонощие|n|tr=denonóštie}}, {{t|bg|ден|m|tr=den|sc=Cyrl}}
-* Campidanese Sardinian: {{tø|sro|dí}}
-* Catalan: {{t+|ca|dia|m}}, {{t|ca|jorn|m}}
-* Central Atlas Tamazight: {{tø|tzm|ⴰⵙⵙ|tr=ass}}
-* Chamicuro: {{tø|ccc|senesyako}}
-* Chichewa: {{tø|ny|tsiku}}
-* Chinese:
-*: Cantonese: {{tø|yue|日|tr=jat6|sc=Hani}}
-*: Mandarin: {{t|zh|天|tr=tiān|sc=Hani}}, {{t|zh|日|tr=rì|sc=Hani}}
-*: {{trreq|nan}}
-* Crimean Tatar: [[kün]]
-* Czech: {{t+|cs|den|m}}
-* Danish: {{t+|da|døgn|n}},  {{t+|da|dag|c}}
-* Dutch: {{t+|nl|dag|m}}, {{t+|nl|etmaal|n}}
-* Egyptian: {{tø|egy|hrw|sc=Egyp}}
-*: <hiero>h:r-w-hrw</hiero>
-* Esperanto: {{t+|eo|tago|xs=Esperanto}}
-* Estonian: {{t-|et|ööpäev}}, {{t+|et|päev}}
-* Ewe: [[ŋkeke]] {{n}}
-* Faroese: {{t+|fo|dagur|m|xs=Faroese}}
-* Fijian: {{t|fj|siga}}
-* Finnish: {{t+|fi|päivä}}, {{t+|fi|vuorokausi}}
-* French: {{t+|fr|jour|m}},  {{t+|fr|journée|f}}
-* Friulian: {{tø|fur|dì}}
-* Galician: {{t+|gl|día|m|xs=Galician}}
-* Georgian: {{t+|ka|დღე|tr=dḡe|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Tag|m}}
-* Gothic: {{tø|got|𐌳𐌰𐌲𐍃|m|tr=dags|sc=Goth}}
-* Greek: {{t+|el|ημέρα|f|tr=iméra}}, {{t+|el|μέρα|f|tr=méra}}, {{t|el|εικοσιτετράωρο|n|tr=eikositetráoro}}, {{t|el|ημερονύχτιο|n|tr=imeroníchtio}}
-* Greenlandic: {{t+|kl|ulloq|xs=Greenlandic}}
-* Guernésiais: {{tø|roa-grn|jour|m}}, {{tø|roa-grn|journaïe|f}}
-*: Hebrew: [[יומא]] (yawmā’) {{m}}
-* Hebrew: {{t|he|יממה|f|tr=yemama|sc=Hebr}}, {{t|he|יום|m|tr=yom|sc=Hebr}}
-* Hindi: {{t+|hi|दिन|m|tr=din|xs=Hindi}}
-* Hungarian: {{t+|hu|nap}}
-* Icelandic: {{t+|is|dagur|m}}
-* Ido: {{t+|io|jorno|xs=Ido}}
-* Ilocano: [[aldaw]]
-* Indonesian: {{t+|id|hari|xs=Indonesian}}
-* Irish: {{t+|ga|lá|m|xs=Irish}}
-* Italian: {{t+|it|giorno|m}}
-* Japanese: {{t+|ja|日|tr=ひ, hi}}
-{{trans-mid}}
-* Khmer: {{t|km|ថ្ងៃ|tr=tngai|sc=Khmr}}
-* Korean: {{t|ko|일주야|tr=iljuya|sc=Kore}} ({{t|ko|一晝夜|sc=Kore}})
-* Kurdish:
-*: Sorani: {{t-|ku|رۆژ|sc=ku-Arab}}
-* Lao: {{t-|lo|ວັນ|tr=wan|sc=Laoo|xs=Lao}}
-* Latgalian: {{tø|ltg|dīna|f}}
-* Latin: {{t+|la|dies|m|f}}, {{t|la|lux|f}}
-* Latvian: {{t+|lv|diena|f|xs=Latvian}}, {{t|lv|diennakts}}
-* Limburgish: {{t|li|daag}}
-* Lithuanian: {{t+|lt|para|xs=Lithuanian}}, {{t|lt|diena|f}}
-* Lojban: {{t-|jbo|djedi|xs=Lojban}}
-* Lower Sorbian: [[źeń]] {{m}}
-* Macedonian: {{t|mk|ден|m|tr=den|sc=Cyrl}}
-* Malay: {{t|ms|hari}}
-* Nahuatl: [[tonalli]]
-* Navajo: {{tø|nv|jį́}}
-* Norwegian: {{t+|no|dag|m}}, {{t|no|døgn|n}}
-* Occitan: {{t+|oc|jorn|m|xs=Occitan}}
-* Old Church Slavonic: {{tø|cu|дьнь|m|tr=dĭnĭ|sc=Cyrs}}
-* Old English: {{t-|ang|dæg|alt=dæġ|xs=Old English}}
-* Old French: {{tø|fro|jor}}
-* Old Frisian: [[di]]
-* Old Provençal: {{tø|pro|jorn}}
-* Old Saxon: {{t-|osx|dag|alt=dag|xs=Old Saxon}}
-* Ottoman Turkish: {{tø|ota|روز|tr=rûz|sc=ota-Arab}}, {{tø|ota|یوم|tr=yevm|sc=ota-Arab}}, {{tø|ota|ایام|tr=eyyâm|sc=ota-Arab}}, {{tø|ota|گون|tr=gün |sc=ota-Arab}}
-* Papiamentu: {{tø|pap|día}}
-* Persian: {{t+|fa|روز|tr=ruz|xs=Persian}}
-* Polish: {{t+|pl|dzień|m}}, {{t+|pl|doba|f}}
-* Portuguese: {{t+|pt|dia|m}}
-* Romanian: {{t+|ro|zi|f}}
-* Romansch: {{t|rm|di}}
-* Russian: {{t|ru|сутки|f|p|tr=sútki|sc=Cyrl}}, {{t|ru|день|m|tr=den’|sc=Cyrl}}
-* Santali: {{tø|sat|ᱫᱤᱱ|tr=din|sc=Olck}}
-* Scottish Gaelic: {{t-|gd|latha|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|дан|m|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{t|sh|dan|m|xs=Serbo-Croatian}}
-* Sicilian: [[jornu]] {{m}} , [[jonnu]] {{m}}
-* Sinhalese: {{t|si|දවස|tr=davasa|sc=Sinh}}
-* Slovak: {{t|sk|doba|f}}, {{t|sk|deň|m}}
-* Slovene: {{t+|sl|dan|m}}
-* Spanish: {{t+|es|día|m}}
-* Sumerian: {{tø|sux|𒌓|tr=UD, U4|sc=Xsux}}
-* Swahili: {{t+|sw|siku|xs=Swahili}}
-* Swedish: {{t+|sv|dygn|n}}, {{t+|sv|dag|c}}
-* Tagalog: [[araw]]
-* Tajik: {{t-|tg|рӯз|sc=Cyrl|xs=Tajik}}
-* Talysh:
-*: Asalemi: {{tø|tly|روز|tr=ruz|sc=fa-Arab}}, {{qualifier|sometimes in Today and special days}} {{tø|tly|روج|tr=ruj|sc=fa-Arab}}
-* Tamil: {{t|ta|நாள் |tr=naal|sc=Taml}}
-* Tatar: {{t+|tt|көн|sc=Cyrl|xs=Tatar}}
-* Thai: {{t+|th|วัน|tr=wan}}, {{t|th|กลางวัน|tr=klaaŋwan|sc=Thai}}
-* Tibetan: {{t|bo|ཉི་མ|tr=nyi ma|sc=Tibt}}
-* Turkish: {{t+|tr|gün}}
-* Ukrainian: {{t+|uk|день|tr=den’|xs=Ukrainian}}, {{t|uk|доба|f|tr=dóba|sc=Cyrl}}
-* Urdu: {{t-|ur|دن|m|tr=din|xs=Urdu}}
-* Uyghur: {{t|ug|كۈن|sc=ug-Arab}}
-* Vietnamese: {{t+|vi|ngày|xs=Vietnamese}}
-* Volapük: {{t|vo|del}}
-* Walloon: {{t|wa|djoû|m}}
-* Welsh: {{t+|cy|dydd|m|xs=Welsh}}, {{t+|cy|dwthwn|m|xs=Welsh}}
-* West Frisian: {{t+|fy|dei|c|xs=West Frisian}}
-* !Xóõ: [[ǁʻân]]
-* Yiddish: {{t+|yi|טאָג|m|tr=tog|xs=Yiddish}}
-{{trans-bottom}}
-
-{{trans-top|period from midnight to the following midnight}}
-* Arabic: {{t|ar|يوم|m|tr=yawm|sc=Arab}}
-* Aramaic:
-*: Syriac: [[ܝܘܡܐ]] (yawmā’) {{m}}
-* Armenian: {{t|hy|օր|tr=òr}}
-* Basque: {{t+|eu|egun|xs=Basque}}
-* Belarusian: {{t|be|суткі|p|tr=sútki|sc=Cyrl}}, {{t|be|дзень|m|tr=dzen’|sc=Cyrl}}
-* Bulgarian: {{t|bg|денонощие|n|tr=denonóštie}}, {{t|bg|ден|m|tr=den|sc=Cyrl}}
-* Catalan: {{t+|ca|dia|m}}, [[jorn]] {{m}}
-* Central Atlas Tamazight: {{tø|tzm|ⴰⵙⵙ|tr=ass}}
-* Chinese:
-*: Mandarin: {{t|zh|一天|tr=yītiān|sc=Hani}}
-* Czech: {{t+|cs|den|m}}
-* Danish: {{t+|da|døgn|n}}, {{t+|da|dag|c}}
-* Dutch: {{t+|nl|dag|m}}, {{t+|nl|etmaal|n}}
-* Estonian: {{t+|et|päev}}, {{t-|et|ööpäev}}
-* Ewe: [[ŋkeke]] {{n}}
-* Finnish: {{t+|fi|päivä}}, {{t+|fi|vuorokausi}}
-* French: {{t+|fr|jour|m}}
-* German: {{t+|de|Tag|m}}
-* Greek: {{t+|el|ημέρα|f|tr=iméra}}, {{t+|el|μέρα|f|tr=méra}}, {{t|el|εικοσιτετράωρο|n|tr=eikositetráoro}}, {{t|el|ημερονύχτιο|n|tr=imeroníchtio}}
-* Guernésiais: {{tø|roa-grn|jour|m}}
-*: Hebrew: [[יומא]] (yawmā’) {{m}}
-* Hebrew: {{t|he|יממה|f|tr=yemama|sc=Hebr}}, {{t|he|יום|m|tr=yom|sc=Hebr}}
-* Hindi: {{t+|hi|दिन|m|tr=din|xs=Hindi}}
-* Hungarian: {{t+|hu|nap}}
-* Ilocano: [[aldaw]]
-* Irish: {{t+|ga|lá|m|xs=Irish}}
-* Japanese: {{t+|ja|日|tr=ひ, hi}}
-* Korean: {{t|ko|일|tr=il|sc=Kore}} ({{t|ko|日|sc=Kore}}), {{t|ko|날|tr=nal|sc=Kore}}, {{t|ko|하루|tr=haru|sc=Kore}}
-* Lao: {{t-|lo|ວັນ|tr=wan|sc=Laoo|xs=Lao}}
-{{trans-mid}}
-* Latvian: {{t+|lv|diena|f|xs=Latvian}}
-* Limburgish: {{t+|li|daag|xs=Limburgish}}
-* Lithuanian: {{t|lt|diena|f}}
-* Lojban: {{t-|jbo|djedi|xs=Lojban}}
-* Lower Sorbian: [[źeń]] {{m}}
-* Macedonian: {{t|mk|ден|m|tr=den|sc=Cyrl}}
-* Malay: {{t+|ms|hari|xs=Malay}}
-* Norwegian: {{t+|no|døgn|n}}, {{t+|no|dag|m}}
-* Old Church Slavonic: {{tø|cu|дьнь|m|tr=dĭnĭ|sc=Cyrs}}
-* Old Frisian: [[di]]
-* Persian: {{t|fa|شبانه روز|alt=شبانَه روز|xs=Persian}}
-* Polish: {{t+|pl|dzień|m}}, {{t+|pl|doba|f}}
-* Portuguese: {{t+|pt|dia|m}}
-* Russian: {{t|ru|сутки|f|p|tr=sútki|sc=Cyrl}}, {{t|ru|день|m|tr=den’|sc=Cyrl}}
-* Scottish Gaelic: {{t-|gd|latha|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|дан|m|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{t|sh|dan|m|xs=Serbo-Croatian}}
-* Slovak: {{t|sk|deň|m}}
-* Slovene: {{t+|sl|dan|m}}
-* Swedish: {{t+|sv|dygn|n}}, {{t+|sv|dag|c}}
-* Tagalog: [[araw]]
-* Thai: {{t+|th|วัน|tr=wan}}
-* Turkish: {{t+|tr|gün}}
-* Ukrainian: {{t+|uk|день|tr=den’|xs=Ukrainian}}, {{t|uk|доба|f|tr=dóba|sc=Cyrl}}
-* Urdu: {{t-|ur|دن|m|tr=din|xs=Urdu}}
-* Vietnamese: {{t+|vi|ban ngày|xs=Vietnamese}}
-* Volapük: {{t|vo|del}}
-* Walloon: {{t|wa|djoû|m}}
-* West Frisian: {{t+|fy|dei|c|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|rotational period of a planet}}
-* Armenian: {{t|hy|օր|tr=òr}}
-* Azeri: {{t|az|gün}}
-* Basque: {{t+|eu|egun|xs=Basque}}
-* Belarusian: {{t|be|суткі|p|tr=sútki|sc=Cyrl}}, {{t|be|дзень|m|tr=dzen’|sc=Cyrl}}
-* Bulgarian: {{t|bg|денонощие|n}}
-* Catalan: {{t+|ca|dia|m}}, [[jorn]] {{m}}
-* Chinese:
-*: Mandarin: {{t|zh|白晝|sc=Hani}}, {{t|zh|白昼|tr=báizhòu|sc=Hani}}
-* Czech: {{t+|cs|den|m}}
-* Danish: {{t+|da|døgn|n}}
-* Dutch: {{t+|nl|dag|m}}
-* Estonian: {{t+|et|päev}}, {{t-|et|ööpäev}}
-* Ewe: [[ŋkeke]] {{n}}
-* Finnish: {{t+|fi|vuorokausi}}, {{t+|fi|päivä}}
-* French: {{t+|fr|jour|m}}
-* German: {{t+|de|Tag|m}}
-* Greek: {{t+|el|ημέρα|f|tr=iméra}}, {{t+|el|μέρα|f|tr=méra}}, {{t|el|εικοσιτετράωρο|n|tr=eikositetráoro}}, {{t|el|ημερονύχτιο|n|tr=imeroníchtio}}
-* Guernésiais: {{tø|roa-grn|jour|m}}
-* Hungarian: {{t+|hu|nap}}
-* Ilocano: [[aldaw]]
-{{trans-mid}}
-* Irish: {{t+|ga|lá|m|xs=Irish}}
-* Latin: {{t|la|dies}}
-* Latvian: {{t+|lv|diena|f|xs=Latvian}}, {{t|lv|diennakts}}
-* Lithuanian: {{t|lt|para|f}}, {{t|lt|diena|f}}
-* Lojban: {{t-|jbo|djedi|xs=Lojban}} fi tu'a lo [[plini]]
-* Malay: {{t+|ms|hari|xs=Malay}}
-* Norwegian: {{t+|no|døgn|n}}
-* Polish: {{t+|pl|dzień|m}}
-* Portuguese: {{t+|pt|dia|m}}
-* Russian: {{t|ru|сутки|f|p|tr=sútki|sc=Cyrl}}, {{t|ru|день|m|tr=den’|sc=Cyrl}}
-* Scottish Gaelic: {{t-|gd|latha|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|дан|m|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{t|sh|dan|m|xs=Serbo-Croatian}}
-* Slovak: {{t|sk|doba|f}}, {{t|sk|deň|m}}
-* Slovene: {{t+|sl|dan|m}}
-* Swedish: {{t+|sv|dygn|n}}
-* Turkish: {{t+|tr|gün}}
-* Ukrainian: {{t+|uk|день|tr=den’|xs=Ukrainian}}, {{t|uk|доба|f|tr=dóba|sc=Cyrl}}
-* Volapük: {{t|vo|del}}
-* Walloon: {{t|wa|djoû|m}}
-{{trans-bottom}}
-
-{{trans-top|part of a day period which one spends at one’s job, school, etc.}}
-* Arabic: {{t|ar|يوم|m|tr=yawm|sc=Arab}}
-* Armenian: {{t|hy|օր|tr=òr}}
-* Basque: {{t+|eu|egun|xs=Basque}}, {{t|eu|lanegun|xs=Basque}}
-* Belarusian: {{t|be|дзень|m|tr=dzen’|sc=Cyrl}}
-* Bulgarian: {{t+|bg|ден|m|tr=den}}
-* Catalan: {{t+|ca|jornada|f}}
-* Chinese:
-*: Mandarin: {{t|zh|一天|tr=yītiān|sc=Hani}}, {{t|zh|白天|tr=báitiān|sc=Hani}}, {{t|zh|白晝|sc=Hani}}, {{t|zh|白昼|tr=báizhòu|sc=Hani}}
-* Czech: {{t+|cs|den|m}}
-* Danish: {{t+|da|dag|c}}
-* Dutch: {{t+|nl|dag|m}}
-* Estonian: {{t+|et|päev}}
-* Ewe: [[ŋkeke]] {{n}}
-* Finnish: {{t+|fi|päivä}}
-* French: {{t+|fr|jour|m}}
-* German: {{t+|de|Tag|m}}
-* Greek: {{t+|el|ημέρα|f|tr=iméra}}, {{t+|el|μέρα|f|tr=méra}}
-* Guernésiais: {{tø|roa-grn|jour|m}}
-* Hebrew: {{t|he|יום|m|tr=yom|sc=Hebr}}
-* Hungarian: {{t+|hu|nap}}
-* Ilocano: [[aldaw]]
-* Irish: {{t+|ga|lá|m|xs=Irish}}
-* Japanese: {{t|ja|昼間|tr=ひるま, hiruma|sc=Jpan}}, {{t|ja|日|tr=ひ, hi|sc=Jpan}}
-* Korean: {{t|ko|주간|tr=jugan|sc=Kore}} ({{t|ko|晝間|sc=Kore}})
-* Kurdish:
-*: Sorani: {{t-|ku|رۆژ|sc=ku-Arab}}
-{{trans-mid}}
-* Latin: {{t|la|dies}}
-* Latvian: {{t+|lv|diena|f|xs=Latvian}}
-* Macedonian: {{t|mk|ден|m|tr=den|sc=Cyrl}}
-* Malay: {{t+|ms|hari|xs=Malay}}
-* Norwegian: {{t+|no|dag|m}}
-* Old Frisian: [[di]]
-* Polish: {{t+|pl|dzień}}
-* Portuguese: {{t+|pt|dia|m}}
-* Russian: {{t|ru|день|m|tr=den’|sc=Cyrl}}
-* Scottish Gaelic: {{t-|gd|latha|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|дан|m|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{t|sh|dan|m|xs=Serbo-Croatian}}
-* Slovak: {{t|sk|deň|m}}
-* Slovene: {{t+|sl|dan|m}}
-* Spanish: {{t|es|día}}
-* Swedish: {{t+|sv|dag|c}}
-* Tagalog: [[araw]]
-* Turkish: {{t+|tr|gün}}
-* Ukrainian: {{t+|uk|день|tr=den’|xs=Ukrainian}}
-* Vietnamese: {{t|vi|ban ngày}}
-* Volapük: {{t|vo|del}}
-* Walloon: {{t|wa|djoû|m}}
-* West Frisian: {{t+|fy|dei|c|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|period between sunrise and sunset}}
-* Arabic: {{t|ar|يوم|m|tr=yawm|sc=Arab}}
-* Aramaic:
-*: Syriac: [[ܐܝܡܡܐ]] (’īmāmā’) {{m}}
-* Armenian: {{t|hy|օր|tr=òr}},  {{t+|hy|ցերեկ|tr=c’erek}}
-* Basque: {{t+|eu|egun|xs=Basque}}
-* Belarusian: {{t|be|дзень|m|tr=dzen’|sc=Cyrl}}
-* Bulgarian: {{t+|bg|ден|m|tr=den}}
-* Catalan: {{t+|ca|dia|m}}, [[jorn]] {{m}}
-* Chinese:
-*: Mandarin: {{t|zh|白天|tr=báitiān|sc=Hani}}
-* Czech: {{t+|cs|den|m}}
-* Danish: {{t+|da|dag|c}}
-* Dutch: {{t+|nl|dag|m}}
-* Estonian: {{t+|et|päev}}
-* Ewe: [[ŋkeke]] {{n}}
-* Finnish: {{t+|fi|päivä}}
-* French: {{t+|fr|jour|m}}
-* German: {{t+|de|Tag|m}}
-* Greek: {{t+|el|ημέρα|f|tr=iméra}}, {{t+|el|μέρα|f|tr=méra}}
-* Guernésiais: {{tø|roa-grn|jour}}
-*: Hebrew: [[איממא]] (’īmāmā’) {{m}}
-* Hebrew: {{t|he|יום|m|tr=yom|sc=Hebr}}
-* Hungarian: {{t+|hu|nappal}}
-* Ido: {{t+|io|jorno|xs=Ido}}
-* Ilocano: [[aldaw]]
-* Italian: {{t|it|di}}
-* Korean: {{t|ko|낮|tr=nat|sc=Kore}}
-{{trans-mid}}
-* Latin: {{t|la|dies}}
-* Latvian: {{t+|lv|diena|f|xs=Latvian}}
-* Lithuanian: {{t|lt|diena|f}}
-* Lojban: {{t-|jbo|donri|xs=Lojban}}
-* Malay: {{t+|ms|siang|xs=Malay}}
-* Nahuatl: [[tonalli]]
-* Ngarrindjeri: {{tø|nay|nunggi}}
-* Norwegian: {{t+|no|dag|m}}
-* Old Frisian: [[di]]
-* Persian: {{t+|fa|روز|tr=ruz|xs=Persian}}
-* Polish: {{t+|pl|dzień|m}}
-* Portuguese: {{t+|pt|dia|m}}
-* Russian: {{t|ru|день|m|tr=den’|sc=Cyrl}}
-* Scottish Gaelic: {{t-|gd|latha|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|обданица|f|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{t|sh|obdanica|f|xs=Serbo-Croatian}}
-* Slovak: {{t|sk|deň|m}}
-* Slovene: {{t+|sl|dan|m}}
-* Swedish: {{t+|sv|dag|c}}
-* Tagalog: [[araw]]
-* Turkish: {{t+|tr|gündüz}}
-* Ukrainian: {{t+|uk|день|tr=den’|xs=Ukrainian}}
-* Volapük: {{t|vo|del}}
-* Walloon: {{t|wa|djoû|m}}
-* West Frisian: {{t+|fy|dei|c|xs=West Frisian}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|af}}: {{t+|af|dag|xs=Afrikaans}}
-* {{ttbc|sq}}: {{t-|sq|ditë|f|xs=Albanian}}
-* {{ttbc|gn}}: [[ára]]
-* {{ttbc|haw}}: [[lā]], {{tø|haw|ao|xs=Hawaiian}}
-* {{ttbc|he}}: [[יום]] (yôm) {{m}}
-* {{ttbc|io}}: [[dio]]
-* {{ttbc|id}}: [[hari]] (1,2)
-* {{ttbc|ia}}: {{t-|ia|die|xs=Interlingua}}
-* {{ttbc|ku}}: [[roj]]
-* {{ttbc|lkt}}: [[ãpetu]]
-* {{ttbc|la}}: {{t+|la|dies|m|f}}
-* {{ttbc|lt}}: {{t+|lt|diena|xs=Lithuanian}}
-* {{ttbc|liv}}: [[pǟvaīe]] (1,2,3), [[pǟva]] (4,5)
-* {{ttbc|ml}}: [[ദിവസം]] (divasam) (1,2,3), [[പകല്]] (pakal) (5)
-* {{ttbc|mt}}: [[jum]], [[ġurnata]]
-{{trans-mid}}
-* {{ttbc|mi}}: [[raa]], {{t+|mi|ao|xs=Maori}}
-* {{ttbc|oj}}: [[giizhig]], [[giizhigoon]] {{p}}
-* {{ttbc|ang}}: [[dæg|dæġ]] {{m}}, [[dogor|dōgor]] {{n}}
-* {{ttbc|ro}}: [[zi]] {{f}}
-* {{ttbc|sc}}:
-*: Campidanese: [[di]] {{m|f}}
-*: Nugorese: [[díe]] {{m|f}}
-* {{ttbc|sk}}: [[deň]] {{m}}
-* {{ttbc|sw}}: [[siku]]
-* {{ttbc|te}}: [[రోజు]] (rōǧu), [[దినము]] (dinamu) (1,2,3,4), [[పగలు]] (pagalu) (5)
-* {{ttbc|th}}: {{Thai|[[วัน]]}} (wân), {{Thai|[[ทิพ]]}} (thip), {{Thai|[[วาร]]}} (wān)
-* {{ttbc|tpi}}: {{t-|tpi|de|xs=Tok Pisin}} (1,2,3,4,5)
-* {{ttbc|tpn}}: [['ara]]
-* {{ttbc|uk}}: {{t+|uk|день|m|xs=Ukrainian}} (den’), [[доба]] (doba) {{f}}
-* {{ttbc|cy}}: [[dydd]]
-* {{ttbc|wo}}: [[bés]]
-{{trans-bottom}}
-
-===Verb===
-{{en-verb}}
-
-# {{rare}} To [[spend]] a [[day]] (in a place).
-#* '''2008''', Richard F. Burton, ''Arabian Nights, in 16 volumes'', page 233:
-#*: When I nighted and '''dayed''' in Damascus town, {{...}}
-
-====See also====
-* [[night#Verb|night]]
-
-===Statistics===
-* {{rank|def|might|being|114|day|through|himself|go}}
-
-===Anagrams===
-* [[d'ya#English|d'ya]]
-* [[yad#English|yad]]
-
-[[Category:200 English basic words]]
-[[Category:en:Time]]
-
-----
+current events:
 
+<h3>Noun</h3>
+{{en-plural noun|head=current events|sg=current event}}
+<ol><li> current affairs; those events and issues of interest currently found in the news.</li>
+</ol>
 
-day: 
-<!--this Middle English entry was created using Template:new enm entry-->
-
-===Etymology===
+<h3>See also</h3>
+<ul><li> current affairs</li>
+</ul>
+am:current eventsang:current eventszh-min-nan:current eventset:current eventsel:current eventsfr:current eventsia:current eventskk:current eventsmg:current eventsru:current eventssd:current eventsst:current eventssu:current eventsta:current eventsth:current eventstt:current events
+***day***
+day:
+{{wikipedia|Day (disambiguation)}}
+<h3>Alternative forms</h3>
+<ul><li> daie {{qualifier|archaic}}</li>
+</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}}).
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|dā}}, {{IPA|/deɪ/}}, {{X-SAMPA|/deI/}}</li>
+<li> {{audio|en-us-day.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-a day.ogg|Audio (UK)}}</li>
+<li> {{rhymes|eɪ}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> Any period of 24 hours.</li>
+<ul><li> <em>I've been here for 2 and a bit <b>days</b>.</em></li>
+</ul>
+<li> A period from midnight to the following midnight.</li>
+<ul><li> <em>The <b>day</b> begins at midnight.</em></li>
+</ul>
+<li> {astronomy} Rotational period of a planet (especially earth).</li>
+<ul><li> <em>A <b>day</b> on Mars is slightly over 24 hours.</em></li>
+</ul>
+<li> The part of a day period which one spends at one’s job, school, etc.</li>
+<ul><li> <em>I worked two <b>days</b> last week.</em></li>
+</ul>
+<li> Part of a day period between sunrise and sunset where one enjoys daylight, daytime.</li>
+<ul><li> <b><em>day</b> and night.</em></li>
+<li> <em>I work at night and sleep during the <b>day</b>.</em></li>
+</ul>
+<li> A specified time or period; time, considered with reference to the existence or prominence of a person or thing; age; time.</li>
+<ul><li> <em>Every dog has its <b>day</b>.</em></li>
+</ul>
+<li> A period of contention of a day or less.</li>
+<ul><li> <em>The <b>day</b> belonged to the Allies.</em></li>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+{{rel-top3|terms derived from <em>day</em>}}
+<ul><li> a broken clock is right twice a day</li>
+<li> all-day</li>
+<li> as the day is long</li>
+<li> Canada Day</li>
+<li> daily</li>
+<li> day after day</li>
+<li> day-after-day</li>
+<li> daybreak</li>
+<li> daydream</li>
+<li> daycare, day care</li>
+<li> day in, day out</li>
+<li> day job</li>
+<li> day laborer</li>
+<li> day letter</li>
+<li> daylight</li>
+<li> day-neutral</li>
+<li> day nursery</li>
+</ul>
+{rel-mid3}
+<ul><li> day off</li>
+<li> day of reckoning</li>
+<li> day one</li>
+<li> day return</li>
+<li> day school</li>
+<li> daystar</li>
+<li> daytime</li>
+<li> day to day</li>
+<li> day-to-day</li>
+<li> day trader</li>
+<li> day trip</li>
+<li> day boarder</li>
+<li> day bed</li>
+<li> degree-day</li>
+<li> dollar day</li>
+</ul>
+{rel-mid3}
+<ul><li> every dog has its day</li>
+<li> field day</li>
+<li> flag day, Flag Day</li>
+<li> Friday</li>
+<li> have its day</li>
+<li> have seen one's day</li>
+<li> holiday</li>
+<li> holy day</li>
+<li> judgment day</li>
+<li> latter-day</li>
+<li> Monday</li>
+<li> payday</li>
+<li> present-day</li>
+<li> rainy day</li>
+<li> Saturday</li>
+<li> save the day</li>
+<li> sick day</li>
+<li> Sunday</li>
+<li> Thursday</li>
+<li> tomorrow is another day</li>
+<li> Tuesday</li>
+<li> Victoria day</li>
+<li> Wednesday</li>
+</ul>
+{rel-bottom}
+<h3>Verb</h3>
+{en-verb}
+<ol><li> {rare} To spend a day (in a place).</li>
+<ul><li> <b>2008</b>, Richard F. Burton, <em>Arabian Nights, in 16 volumes</em>, page 233:</li>
+<ul><li> When I nighted and <b>dayed</b> in Damascus town, {...}</li>
+</ul>
+</ul>
+</ol>
+
+<h4>See also</h4>
+<ul><li> night</li>
+</ul>
+
+<h3>Statistics</h3>
+<ul><li> {{rank|def|might|being|114|day|through|himself|go}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> d'ya</li>
+<li> yad</li>
+</ul>
+Category:200 English basic wordsCategory:en:Time----
+day:
+
+<h3>Etymology</h3>
 {{etyl|ang|enm}} {{term|dæg|dæġ|lang=ang}}
-
-===Noun===
-{{enm-noun}}
-
-# [[#English|day]]
-
-====Descendants====
-* English: [[#English|day]]
-
+<h3>Noun</h3>
+{enm-noun}
+<ol><li> day</li>
+</ol>
+
+<h4>Descendants</h4>
+<ul><li> English: day</li>
+</ul>
 ----
-
-
 ***deal***
-deal: 
-
-===Pronunciation===
-* {{enPR|dēl}}, {{IPA|/diːl/}}, {{X-SAMPA|/di:l/}}
-* {{audio|en-us-deal.ogg|Audio (US)}}
-* {{rhymes|iːl}}
-
-===Etymology 1===
-From {{etyl|enm}} {{term|dele|lang=enm}}, from {{etyl|ang}} {{term|dæl|dǣl|lang=ang|part, share, portion|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|𐌳𐌰𐌹𐌻𐍃||tr=dails|portion|lang=got|sc=Goth}}. Related to {{etyl|ang|-}} {{term|dal|dāl|portion|lang=ang}}. More at {{l|en|dole}}.
-
-====Noun====
-{{en-noun}}
-
-# {{obsolete}} A [[division]], a [[portion]], a [[share]].
-#: ''We gave three '''deals''' of grain in tribute to the king.''
-# {{context|often followed by ''of''}} An [[indefinite]] [[quantity]] or [[amount]]; a [[lot]] (''now usually qualified by'' {{term|great}} ''or'' {{term|good}}).
-#* '''1485''', [[w:Thomas Malory|Sir Thomas Malory]], ''Le Morte Darthur'', Book VII.2:
-#*: Than the knyght armyte put a thynge in hys nose and a litill '''dele''' of watir in hys mowthe, and than Sir Launcelot waked of hys swowghe.
-#* '''1814''', [[w:Jane Austen|Jane Austen]], ''Mansfield Park'', ch. 2:
-#*: There is a vast '''deal''' of difference in memories, as well as in every thing else, and therefore you should make allowance for your cousin, and pity her deficiency.
-#* '''1851''', [[w:Herman Melville|Herman Melville]], ''Moby-Dick'', ch. 32:
-#*: There is a '''deal''' of obscurity concerning the identity of the species thus multitudinously baptized.
-
-=====Synonyms=====
-* {{sense|act of apportioning or distributing}} [[allotment]], [[apportionment]], [[distribution]], [[dole out|doling out]], [[share|sharing]], sharing out
-* {{sense|large number or amount or extent}} [[batch]], [[flock]], [[good deal]], [[great deal]], [[hatful]], [[heap]], [[load]], [[lot]], [[mass]], [[mess]], [[mickle]], [[mint]], [[muckle]], [[peck]], [[pile]], [[plenty]], [[pot]], [[quite a little]], [[raft]], [[sight]], [[slew]], [[spate]], [[stack]], [[tidy sum]], [[wad]], [[whole lot]], [[whole slew]]
-
-=====Derived terms=====
-* {{sense|indefinite quantity}} [[a great deal]], [[a good deal]], [[big deal]], [[real deal]]
-
-=====Translations=====
-{{trans-top|division, share}}
-* French: {{t+|fr|part}}
-* German: {{t+|de|Anteil|m}}, {{t-|de|Portion|f}}
-* Italian: {{t|it|parte}}, {{t|it|porzione|f}}
-{{trans-mid}}
-* Russian: {{t+|ru|раздача|f|tr=razdáča}}, {{t+|ru|распределение|n|tr=raspredelénije}}
-* Serbo-Croatian: {{t|sh|udio}}
-* Spanish: {{t+|es|reparto|m}}, {{t+|es|parte|f}}
-{{trans-bottom}}
-
-{{trans-top|large number or amount or extent}}
-* Bulgarian: {{t+|bg|количество|n}}
-* German: {{t+|de|Menge|f}}
-* Italian: {{t|it|dose|f}}
-{{trans-mid}}
-* Russian: {{t|ru|куча|f|tr=kúča|sc=Cyrl}} {{qualifier|colloquial}}, {{t|ru|уйма|f|tr=újma|sc=Cyrl}} {{qualifier|colloquial}}
-* Serbo-Croatian: {{t|sh|količina}}
-{{trans-bottom}}
-
-===Etymology 2===
-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}}.
-
-====Verb====
+deal:
+
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|dēl}}, {{IPA|/diːl/}}, {{X-SAMPA|/di:l/}}</li>
+<li> {{audio|en-us-deal.ogg|Audio (US)}}</li>
+<li> {{rhymes|iːl}}</li>
+</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}}.
+<h4>Noun</h4>
+{en-noun}
+<ol><li> {obsolete} A division, a portion, a share.</li>
+<ul><li> <em>We gave three <b>deals</b> of grain in tribute to the king.</em></li>
+</ul>
+<li> {{context|often followed by <em>of</em>}} An indefinite quantity or amount; a lot (<em>now usually qualified by</em> {{term|great}} <em>or</em> {{term|good}}).</li>
+<ul><li> <b>1485</b>, Sir Thomas Malory, <em>Le Morte Darthur</em>, Book VII.2:</li>
+<ul><li> Than the knyght armyte put a thynge in hys nose and a litill <b>dele</b> of watir in hys mowthe, and than Sir Launcelot waked of hys swowghe.</li>
+</ul>
+<li> <b>1814</b>, Jane Austen, <em>Mansfield Park</em>, ch. 2:</li>
+<ul><li> There is a vast <b>deal</b> of difference in memories, as well as in every thing else, and therefore you should make allowance for your cousin, and pity her deficiency.</li>
+</ul>
+<li> <b>1851</b>, Herman Melville, <em>Moby-Dick</em>, ch. 32:</li>
+<ul><li> There is a <b>deal</b> of obscurity concerning the identity of the species thus multitudinously baptized.</li>
+</ul>
+</ul>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|act of apportioning or distributing}} allotment, apportionment, distribution, doling out, sharing, sharing out</li>
+<li> {{sense|large number or amount or extent}} batch, flock, good deal, great deal, hatful, heap, load, lot, mass, mess, mickle, mint, muckle, peck, pile, plenty, pot, quite a little, raft, sight, slew, spate, stack, tidy sum, wad, whole lot, whole slew</li>
+</ul>
+
+<h5>Derived terms</h5>
+<ul><li> {{sense|indefinite quantity}} a great deal, a good deal, big deal, real deal</li>
+</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}}.
+<h4>Verb</h4>
 {{en-verb|deals|dealing|dealt}}
-
-# {{transitive}} To [[distribute]] among a number of [[recipient]]s, to give out as one’s portion or share.
-#: ''The fighting is over; now we '''deal''' out the spoils of victory.''
-# {{transitive}} To [[administer]] or give out, as in small portions.
-#* '''1820''', [[w:Walter Scott|Sir Walter Scott]], ''The Abbot'', ch. 30:
-#*: "Away, proud woman!" said the Lady; "who ever knew so well as thou to '''deal''' the deepest wounds under the pretence of kindness and courtesy?"
-#* {{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 '''dealt''' another blow.}}
-# To distribute cards to the players in a game.
-#: ''I was '''dealt''' four aces.''
-#: ''The cards were shuffled and '''dealt''' by the croupier.''
-# {{baseball}} To [[pitch]].
-#: ''The whole crowd waited for him to '''deal''' a real humdinger.''
-# {{intransitive}} To have [[dealings]] or [[business]].
-#* '''1838''', [[w:Charles Dickens|Charles Dickens]], ''Oliver Twist'', ch. 11:
-#*: Mr. Brownlow contrived to state his case; observing that, in the surprise of the moment, he had run after the boy because he saw him running away; and expressing his hope that, if the magistrate should believe him, although not actually the thief, to be connected with thieves; he would '''deal''' as leniently with him as justice would allow.
-# {{intransitive}} To [[conduct]] oneself, to [[behave]].
-#* '''1590''', Edmund Spenser, ''The Faerie Queene'', III.ii:
-#*: In ''Deheubarth'' that now South-wales is hight, / What time king ''Ryence'' raign'd, and '''dealed''' right [...].
-# {{obsolete|intransitive}} To take [[action]]; to [[act]].
-#* '''1485''', Sir Thomas Malory, ''Le Morte Darthur'', Book IV:
-#*: Wel said syr Uwayne go on your waye, and lete me '''dele'''.
-# {{intransitive}} To [[trade]] professionally (''followed by'' '''in''').
-#: ''She '''deals''' in gold.''
-# {{transitive}} To [[sell]], especially to sell [[illicit]] [[drug]]s.
-#: ''This club takes a dim view of members who '''deal''' drugs.''
-# {{intransitive}} To be concerned with.
-#* '''1922''', [[w:James Joyce|James Joyce]], ''Ulysses'', episode 14:
-#*: Science, it cannot be too often repeated, '''deals''' with tangible phenomena.
-# {{intransitive}} To [[handle]], to [[manage]], to [[cope]].
-#* '''1897''', [[w:Bram Stoker|Bram Stoker]], ''Dracula'', ch 19:
-#*: Then there was the sound of a struggle, and I knew that the attendants were '''dealing''' with him.
-#: ''I can't '''deal''' with this.''
-
-=====Synonyms=====
-* {{sense|distribute among a number of recipients}} [[apportion]], [[divvy up]], [[share]], [[share out]], [[portion out]]
-* {{sense|administer in portions}} [[administer]], [[allot]], [[deal out]], [[dish out]], [[dispense]], [[distribute]], [[dole out]], [[hand out]], [[lot]], [[mete out]], [[parcel out]], [[shell out]]
-* {{sense|distribute (cards)}}
-* {{sense|baseball slang: to pitch}} [[pitch]], [[throw]]
-* {{sense|have dealings with}}
-* {{sense|trade}} [[sell]], [[trade]], [[bargain]]
-* {{sense|sell (illicit drugs)}} [[sell]]
-* {{sense|be concerned with}}
-* {{sense|handle, cope}}
-
-=====Derived terms=====
-* [[deal with]]
-* [[dealer]]
-* [[dealy]]
-
-=====Translations=====
-{{trans-top|give out as one’s portion or share}}
-* Bulgarian: {{t|bg|раздавам}}, {{t|bg|разпределям}}
-* Catalan: [[repartir]]
-* Czech: {{t-|cs|rozdělit}}
-* Dutch: {{t+|nl|uitdelen}}
-* Finnish: {{t+|fi|jakaa}}
-* German: {{t+|de|austeilen}}, {{t+|de|verteilen}}
-{{trans-mid}}
-* Russian: {{t|ru|раздавать|tr=razdavát’|sc=Cyrl}} {{impf}}, {{t|ru|распределять|tr=raspredelját’|sc=Cyrl}} {{impf}}
-* Spanish: {{t-|es|repartir}}, {{t+|es|distribuir}}
-* Swedish: {{t+|sv|dela}}
-* Yiddish: {{t|yi|טיילן|tr=teyln|sc=Hebr}}
-{{trans-bottom}}
-
-{{trans-top|administer in portions}}
-* Bulgarian: {{t|bg|разпределям}}
-* Dutch: {{t+|nl|verdelen}}
-* Finnish: {{t+|fi|jakaa}}
-* German: {{t+|de|austeilen}}, {{t+|de|erteilen}}, {{t+|de|zuteilen}}
-* Portuguese: {{t+|pt|lidar}}
-{{trans-mid}}
-* Russian: {{t|ru|распределять|tr=raspredelját’|sc=Cyrl}} {{impf}}, {{t|ru|наносить|tr=nanosít’|sc=Cyrl}} {{impf}} {{qualifier|e.g. wounds}}
-* Spanish: {{t-|es|repartir}}, {{t+|es|asignar}}
-* Swedish: {{t+|sv|dela}}
-{{trans-bottom}}
-
-{{trans-top|distribute (cards)}}
-* Bulgarian: {{t|bg|раздавам}}
-* Catalan: [[repartir]]
-* Czech: {{t|cs|rozdat}}
-* Dutch: {{t+|nl|delen}}
-* Finnish: {{t+|fi|jakaa}}
-{{trans-mid}}
-* French: {{t+|fr|distribuer}}
-* German: {{t+|de|austeilen}}, {{t+|de|geben}}
-* Russian: {{t|ru|раздавать|tr=razdavát’|sc=Cyrl}} {{impf}}, {{t|ru|сдавать|tr=sdavát’|sc=Cyrl}} {{impf}}
-* Spanish: {{t-|es|repartir}}
-* Swedish: {{t+|sv|ge}}
-{{trans-bottom}}
-
-{{trans-top|to have dealings or business}}
-* Galician: {{t-|gl|tratar|xs=Galician}}
-* Scottish Gaelic: {{t|gd|dèilig}}
-{{trans-mid}}
-* Spanish: {{t-|es|dedicarse}}
-{{trans-bottom}}
-
-{{trans-top|baseball slang: to pitch}}
-* Finnish: {{t+|fi|syöttää}}
-{{trans-mid}}
-* Spanish: {{t|es|lanzar}}
-{{trans-bottom}}
-
-{{trans-top|trade}}
-* Bulgarian: {{t|bg|търгувам}}
-* Catalan: [[comerciar]], [[vendre]], [[comprar]]
-* Czech: {{t-|cs|obchodovat}}
-* Dutch: {{t+|nl|handelen}}
-* Finnish: {{t|fi|käydä kauppaa}}
-* French: {{t|fr|faire le commerce}}
-{{trans-mid}}
-* German: {{t+|de|handeln}}
-* Russian: {{t|ru|торговать|tr=torgovát’|sc=Cyrl}} {{impf}}
-* Scottish Gaelic: {{t|gd|dèilig}}
-* Spanish: {{t+|es|comerciar}}
-* Swedish: {{t+|sv|sälja}}
-{{trans-bottom}}
-
-{{trans-top|sell (illicit drugs)}}
-* Czech: {{t-|cs|prodávat}}
-* Dutch: {{t-|nl|dealen}}
-* Finnish: {{t|fi|trokata}}
-* German: {{t+|de|dealen}}
-* Portuguese: {{t-|pt|traficar}}
-{{trans-mid}}
-* Russian: {{t|ru|сбывать|tr=sbyvát’|sc=Cyrl}} {{impf}}, {{t|ru|толкать|tr=tolkát’|sc=Cyrl}} {{impf}} {{qualifier|colloquial}}
-* Scottish Gaelic: {{t|gd|dèilig}}
-* Spanish: {{t+|es|vender|alt=vender drogas}}, {{t-|es|traficar}}
-* Swedish: {{t+|sv|langa}}, {{t+|sv|sälja}}
-{{trans-bottom}}
-
-{{trans-top|be concerned with}}
-* Bulgarian: {{t|bg|имам работа с}}
-* Catalan: [[tractar]]
-* Czech: {{t-|cs|pojednávat}}
-* Dutch: [[te maken hebben met]]
-* Finnish: {{t+|fi|käsitellä}}
-{{trans-mid}}
-* German: {{t+|de|handeln}} (+ ''von''), {{t+|de|behandeln}}, {{t+|de|abhandeln}}
-* Portuguese: {{t+|pt|lidar}}
-* Scottish Gaelic: {{t|gd|dèilig}}
-* Spanish: {{t+|es|tratar}}
-* Swedish: {{t+|sv|handla}}
-{{trans-bottom}}
-
-{{trans-top|handle, manage}}
-* Bulgarian: {{t|bg|справям се}}
-* Chinese:
-*: Mandarin: {{t|zh|對付|sc=Hani}}, {{t|zh|对付|tr=duìfu|sc=Hani}}
-* Czech: {{t+|cs|jednat}}
-* Dutch: {{t+|nl|behandelen}}, {{t+|nl|regelen}}
-* Finnish: {{t+|fi|hoitaa}}
-* French: {{t|fr|faire face}} ([[à]]), {{t|fr|traiter}} ([[avec]])
-{{trans-mid}}
-* German: {{t+|de|behandeln|f}}, {{t+|de|umgehen}} (+ ''mit'')
-* Japanese: {{t|ja|対処|tr=たいしょする, taisho-suru|alt=対処する|sc=Jpan}}
-* Portuguese: {{t+|pt|lidar}}
-* Russian: {{t|ru|иметь дело|tr=imét’ délo|sc=Cyrl}} (+ [[с]] ''s''), {{t|ru|справляться|tr=spravlját’sja|sc=Cyrl}} {{impf}}, {{t|ru|справиться|tr=správit'sja|sc=Cyrl}} {{pf.}} (+ [[с]] ''s'' + [[instrumental case]])
-* Scottish Gaelic: {{t|gd|dèilig}}
-* Spanish: {{t-|es|manejar}}, {{t-|es|ocuparse}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|hi}}: [[भाग देना]] (bhāga denā), [[बांटना]] (bāmtana), [[हिस्सा करना]], [[विभाजित करना]], [[देना]] (denā), [[ताश के पत्ते बांटना]], [[सम्बन्ध रखना]], [[व्यापार करना]], [[लेन-देन करना]], [[व्यवहार करना]], [[बर्ताव करना]]; {{qualifier|intransitive}} [[व्यवहार करना]], [[व्यापार करना]], [[चलाना]], [[बरतना]], [[सामना करना]]; {{qualifier|transitive}} [[व्यापार करना]], [[लेन देन करना]]
-* {{ttbc|id}}: [[sepakat]], [[kait|berkaitan]] dengan, [[tangan|menangani]], [[kocok|mengocok]], [[kelola|mengelola]]
-* {{ttbc|ja}}: [[合意]]する ([[ごうい]]する, gōi-suru), [[扱う]] ([[あつかう]], atsukau), [[混ぜる]] ([[まぜる]], mazeru), [[取引]]する ([[とりひき]]する, torihiki-suru)
-* {{ttbc|ang}}: [[dælan|dǣlan]]
-{{trans-bottom}}
-
-====Noun====
-{{en-noun}}
-
-# {{archaic|_|in general sense}} An act of dealing or sharing.
-# The distribution of cards to players; a player's turn for this.
-#: ''I didn’t have a good '''deal''' all evening.''
-#: ''I believe it's your '''deal'''.''
-# A particular instance of buying or selling, a [[transaction]]
-#: ''We need to finalise the '''deal''' with Henderson by midnight.''
-# Specifically, a transaction offered which is financially beneficial; a [[bargain]].
-#* '''2009''', ''The Guardian'', Virginia Wallis, 22 Jul 2009:
-#*: You also have to look at the kind of mortgage '''deals''' available to you and whether you will be able to trade up to the kind of property you are looking for.
-# An [[agreement]] between parties; an [[arrangement]]
-#* '''2009''', Jennifer Steinhauer, ''New York Times'', 20 Jul 2009:
-#*: California lawmakers, their state broke and its credit rating shot, finally sealed the '''deal''' with the governor Monday night on a plan to close a $26 billion budget gap.
-#: ''He made a '''deal''' with the devil.''
-# {{informal}} A [[situation]], [[occasion]], or [[event]].
-#: "''I've never killed anybody before. I don't see what's the big '''deal'''."
-#: Line spoken by character played by John Travolta in the movie ''Broken Arrow''.
-#: ''What's the '''deal'''?''
-# {{informal}} A [[thing]], an unspecified or unidentified [[object]].
-#: ''The '''deal''' with four tines is called a pitchfork.''
-
-=====Synonyms=====
-* {{sense|cards held in a card game by a player at any given time}} [[hand]]
-* {{sense|instance of buying or selling}} [[business deal]], [[sale]], [[trade]], [[transaction]]
-* {{sense|a beneficial transaction}} [[steal]], [[bargain]]
-* {{sense|agreement between parties fixing obligations of each}} [[contract]], [[pact]]
-
-=====Derived terms=====
+<ol><li> {transitive} To distribute among a number of recipients, to give out as one’s portion or share.</li>
+<ul><li> <em>The fighting is over; now we <b>deal</b> out the spoils of victory.</em></li>
+</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> {{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>
+<li> To distribute cards to the players in a game.</li>
+<ul><li> <em>I was <b>dealt</b> four aces.</em></li>
+<li> <em>The cards were shuffled and <b>dealt</b> by the croupier.</em></li>
+</ul>
+<li> {baseball} To pitch.</li>
+<ul><li> <em>The whole crowd waited for him to <b>deal</b> a real humdinger.</em></li>
+</ul>
+<li> {intransitive} To have dealings or business.</li>
+<ul><li> <b>1838</b>, Charles Dickens, <em>Oliver Twist</em>, ch. 11:</li>
+<ul><li> Mr. Brownlow contrived to state his case; observing that, in the surprise of the moment, he had run after the boy because he saw him running away; and expressing his hope that, if the magistrate should believe him, although not actually the thief, to be connected with thieves; he would <b>deal</b> as leniently with him as justice would allow.</li>
+</ul>
+</ul>
+<li> {intransitive} To conduct oneself, to behave.</li>
+<ul><li> <b>1590</b>, Edmund Spenser, <em>The Faerie Queene</em>, III.ii:</li>
+<ul><li> In <em>Deheubarth</em> that now South-wales is hight, / What time king <em>Ryence</em> raign'd, and <b>dealed</b> right [...].</li>
+</ul>
+</ul>
+<li> {{obsolete|intransitive}} To take action; to act.</li>
+<ul><li> <b>1485</b>, Sir Thomas Malory, <em>Le Morte Darthur</em>, Book IV:</li>
+<ul><li> Wel said syr Uwayne go on your waye, and lete me <b>dele</b>.</li>
+</ul>
+</ul>
+<li> {intransitive} To trade professionally (<em>followed by</em> <b>in</b>).</li>
+<ul><li> <em>She <b>deals</b> in gold.</em></li>
+</ul>
+<li> {transitive} To sell, especially to sell illicit drugs.</li>
+<ul><li> <em>This club takes a dim view of members who <b>deal</b> drugs.</em></li>
+</ul>
+<li> {intransitive} To be concerned with.</li>
+<ul><li> <b>1922</b>, James Joyce, <em>Ulysses</em>, episode 14:</li>
+<ul><li> Science, it cannot be too often repeated, <b>deals</b> with tangible phenomena.</li>
+</ul>
+</ul>
+<li> {intransitive} To handle, to manage, to cope.</li>
+<ul><li> <b>1897</b>, Bram Stoker, <em>Dracula</em>, ch 19:</li>
+<ul><li> Then there was the sound of a struggle, and I knew that the attendants were <b>dealing</b> with him.</li>
+</ul>
+<li> <em>I can't <b>deal</b> with this.</em></li>
+</ul>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|distribute among a number of recipients}} apportion, divvy up, share, share out, portion out</li>
+<li> {{sense|administer in portions}} administer, allot, deal out, dish out, dispense, distribute, dole out, hand out, lot, mete out, parcel out, shell out</li>
+<li> {{sense|distribute (cards)}}</li>
+<li> {{sense|baseball slang: to pitch}} pitch, throw</li>
+<li> {{sense|have dealings with}}</li>
+<li> {{sense|trade}} sell, trade, bargain</li>
+<li> {{sense|sell (illicit drugs)}} sell</li>
+<li> {{sense|be concerned with}}</li>
+<li> {{sense|handle, cope}}</li>
+</ul>
+
+<h5>Derived terms</h5>
+<ul><li> deal with</li>
+<li> dealer</li>
+<li> dealy</li>
+</ul>
+
+<h4>Noun</h4>
+{en-noun}
+<ol><li> {{archaic|_|in general sense}} An act of dealing or sharing.</li>
+<li> The distribution of cards to players; a player's turn for this.</li>
+<ul><li> <em>I didn’t have a good <b>deal</b> all evening.</em></li>
+<li> <em>I believe it's your <b>deal</b>.</em></li>
+</ul>
+<li> A particular instance of buying or selling, a transaction</li>
+<ul><li> <em>We need to finalise the <b>deal</b> with Henderson by midnight.</em></li>
+</ul>
+<li> Specifically, a transaction offered which is financially beneficial; a bargain.</li>
+<ul><li> <b>2009</b>, <em>The Guardian</em>, Virginia Wallis, 22 Jul 2009:</li>
+<ul><li> You also have to look at the kind of mortgage <b>deals</b> available to you and whether you will be able to trade up to the kind of property you are looking for.</li>
+</ul>
+</ul>
+<li> An agreement between parties; an arrangement</li>
+<ul><li> <b>2009</b>, Jennifer Steinhauer, <em>New York Times</em>, 20 Jul 2009:</li>
+<ul><li> California lawmakers, their state broke and its credit rating shot, finally sealed the <b>deal</b> with the governor Monday night on a plan to close a $26 billion budget gap.</li>
+</ul>
+<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>
+<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>
+<li> {informal} A thing, an unspecified or unidentified object.</li>
+<ul><li> </em>The <b>deal</b> with four tines is called a pitchfork.<em></li>
+</ul>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|cards held in a card game by a player at any given time}} hand</li>
+<li> {{sense|instance of buying or selling}} business deal, sale, trade, transaction</li>
+<li> {{sense|a beneficial transaction}} steal, bargain</li>
+<li> {{sense|agreement between parties fixing obligations of each}} contract, pact</li>
+</ul>
+
+<h5>Derived terms</h5>
 {{rel-top3|Terms derived from the noun "deal"}}
-* [[no deal]]
-* [[package deal]]
-{{rel-mid3}}
-* [[raw deal]]
-{{rel-mid3}}
-* [[sweetheart deal]]
-{{rel-bottom}}
-
-=====Translations=====
-{{trans-top|distribution of cards}}
-* Bulgarian: {{t|bg|раздаване|n}}
-* Finnish: {{t+|fi|jako}}
-* French: {{t+|fr|pli|m}}, {{t+|fr|donne|f}}
-* Polish: [[rozdanie]] kart
-{{trans-mid}}
-* Russian: {{t+|ru|сдача|f|tr=sdáča}}
-* Spanish: {{t+|es|reparto|m}}
-* Swedish: {{t+|sv|giv|c}}
-{{trans-bottom}}
-
-{{trans-top|instance of buying or selling}}
-* Bulgarian: {{t+|bg|сделка|f}}
-* Czech: {{t+|cs|obchod|m}}
-* Finnish: [[kauppa]], [[diili]] {{qualifier|slang}}
-* German: {{t+|de|Handel|m}}, {{t+|de|Deal|m}} (Econ.)
-* Hebrew: [[עסקה]] ('ysqa) {{f}}
-{{trans-mid}}
-* Polish: [[transakcja]], [[interes]], [[sprzedaż]]
-* Russian: {{t+|ru|сделка|f|tr=sdélka}}
-* Spanish: {{t+|es|transacción|f}}, {{t|es|negocio|m}}
-* Swedish: {{t+|sv|affär|c}}, {{t+|sv|transaktion|c}}
-{{trans-bottom}}
-
-{{trans-top|agreement, arrangement}}
-* Catalan: [[tracte]], {{m}}
-* Finnish: [[sopimus]], [[diili]] {{qualifier|slang}}
-* French: {{t+|fr|contrat|m}}
-* German: {{t+|de|Pakt|m}}, {{t+|de|Abkommen|n}}, {{t+|de|Abmachung|f}}, {{t+|de|Abschluss|m}}
-* Italian: {{t+|it|contratto|m}}
-{{trans-mid}}
-* Polish: {{t+|pl|porozumienie}}, {{t+|pl|układ}}, {{t+|pl|kontrakt}}, {{t+|pl|umowa}}
-* Russian: {{t+|ru|сделка|f|tr=sdélka}}
-* Spanish: {{t+|es|acuerdo|m}}
-* Swedish: {{t+|sv|kontrakt|n}}, {{t-|sv|pakt|c}}, {{t+|sv|uppgörelse|c}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|hi}}: [[भाग]] (bhāg), [[बांट]] (bāmt), [[परिमाण]] (parimān), [[मात्रा]] (mātrā), [[अंश]] (amsh), [[बाहुल्य]] (bāhulya) (1); ''(quantity)'' [[मात्रा]] (mātrā), [[परिमाण]], [[बंटाई]] (bantāī), [[बांट]] (bāmt); ''(treat)'' [[व्यवहार]]; ''(bargain)'' [[सौदा]] (saudā)
-* {{ttbc|id}}: [[sepakat|kesepakatan]] (1,2)
-* {{ttbc|ja}}: [[取引]] ([[とりひき]], torihiki) (1,2), [[合意]] ([[ごうい]], gōi) (2)
-{{trans-bottom}}
-
-===Etymology 3===
+<ul><li> no deal</li>
+<li> package deal</li>
+</ul>
+{rel-mid3}
+<ul><li> raw deal</li>
+</ul>
+{rel-mid3}
+<ul><li> sweetheart deal</li>
+</ul>
+{rel-bottom}
+<h3>Etymology 3</h3>
 {{etyl|gml}} {{term|dele|lang=gml}}, cognate with Old English {{term|þille|lang=ang}}.
-
-====Noun====
-{{en-noun}}
-
-# {{uncountable}} [[wood|Wood]] that is easy to [[saw]] (from [[conifer]]s such as pine or fir)
-# {{countable}} A [[plank]] of [[softwood]] (fir or pine board)
-
-=====Synonyms=====
-* {{sense|wood that is easy to saw, from conifers such as pine or fir}}
-* {{sense|plank of softwood}}
-
-=====Translations=====
-{{trans-top|wood that is easy to saw}}
-* Bulgarian: {{t-|bg|чам|m}}
-{{trans-mid}}
-* German: {{t+|de|Bohle|f}}
-{{trans-bottom}}
-
-{{trans-top|plank of softwood}}
-* Bulgarian: {{t|bg|чамова дъска}}
-{{trans-mid}}
-* German: {{t+|de|Planke|f}}
-{{trans-bottom}}
-
-====Adjective====
+<h4>Noun</h4>
+{en-noun}
+<ol><li> {uncountable} Wood that is easy to saw (from conifers such as pine or fir)</li>
+<li> {countable} A plank of softwood (fir or pine board)</li>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|wood that is easy to saw, from conifers such as pine or fir}}</li>
+<li> {{sense|plank of softwood}}</li>
+</ul>
+
+<h4>Adjective</h4>
 {{en-adj|-}}
-
-# Made of deal.
-#: ''A plain '''deal''' table''
-
-=====Translations=====
-{{trans-top|made of deal}}
-* Bulgarian: {{t|bg|елов}}, {{t|bg|чамов}}
-{{trans-mid}}
-{{trans-bottom}}
-
-====Statistics====
-* {{rank|knows|try|loved|624|deal|distance|thinking|beginning}}
-
-===Anagrams===
-* [[Adel#English|Adel]]
-* [[dale#English|dale]], [[Dale#English|Dale]]
-* [[E.D. La.#English|E.D. La.]]
-* [[lade#English|lade]]
-* [[lead#English|lead]]
-
-[[Category:English irregular verbs]]
-[[Category:English terms with multiple etymologies]]
-
-----
-
-
-business deal: 
-
-===Noun===
-{{en-noun|sg=[[business]] [[deal]]}}
-
-# A [[particular]] [[instance]] of buying or selling
-#:"it was a package deal"
-#:"I had no further trade with him"
-#:"he's a master of the business deal" 
-
-====Synonyms====
-* [[deal]]
-* [[trade]]
-
-[[it:business deal]]
+<ol><li> Made of deal.</li>
+<ul><li> </em>A plain <b>deal</b> table<em></li>
+</ul>
+</ol>
+
+<h4>Statistics</h4>
+<ul><li> {{rank|knows|try|loved|624|deal|distance|thinking|beginning}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> Adel</li>
+<li> dale, Dale</li>
+<li> E.D. La.</li>
+<li> lade</li>
+<li> lead</li>
+</ul>
+Category:English irregular verbsCategory:English terms with multiple etymologies----
+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>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> deal</li>
+<li> trade</li>
+</ul>
+it:business deal
 ***December***
-December: 
-
-===Alternative forms===
-* [[Decembre]] {{qualifier|obsolete}}
-
-===Etymology===
-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]] *''dekm'', ten; December was the tenth month in the Roman calendar.
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/dɪˈsɛmbə/}}, {{X-SAMPA|/dI"sEmb@/}}
-* {{a|US}} {{enPR|dĭ-sĕmʹbər}}, {{IPA|/dɪˈsɛmbəɹ/}}, {{X-SAMPA|/dI"sEmb@r/}}
-* {{audio|en-us-December.ogg|Audio (US)}}
-* {{rhymes|ɛmbə(r)}}
-
-===Proper noun===
+December:
+
+<h3>Alternative forms</h3>
+<ul><li> Decembre {{qualifier|obsolete}}</li>
+</ul>
+
+<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>
+<li> {{audio|en-us-December.ogg|Audio (US)}}</li>
+<li> {{rhymes|ɛmbə(r)}}</li>
+</ul>
+
+<h3>Proper noun</h3>
 {{en-proper noun|Decembers}}
-
-# The twelfth and last [[month]] of the [[Gregorian calendar]], following [[November]] and preceding the [[January]] of the following year. Abbreviation: '''[[Dec]]''' or '''[[Dec.]]'''
-
-====Derived terms====
-* [[December effect]]
-* [[Decemberish]]
-* [[Decemberly]]
-* {{w|Decembermoorden|December Murders}}
-* {{w|December Revolt}}
-* [[December solstice]]
-* {{w|December Revolt|December Uprising}}
-* [[Decembrist]]
-* [[May and December]], [[May-December]]
-* [[mid-December]]
-
-====Translations====
-{{trans-top|twelfth month of the Gregorian calendar}}
-* Abaza: {{tø|abq|декабрь}}
-* Abkhaz: {{t|ab|ҧхынҷкәын|tr=ṗĥənč̤kwən}}
-* Afrikaans: {{t+|af|Desember|xs=Afrikaans}}
-* Alabama: [[hasiholtina istapókkòolawah tóklo]], [[hasiholtina istanóoka]]
-* Albanian: {{t|sq|dhjetor}}
-* Alsatian: [[Dezember]] {{m}}
-* Alutiiq: {{tø|ems|Qanim Iralua}}
-* Amharic: {{t|am|ዲሴምበር|tr=disembär|sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Zas Nłtʼees}}
-* Arabic: {{t|ar|ديسمبر|alt=دِيسمْبِر|tr=disímbir, disámbir|m}}, {{t|ar|كانون الاول|alt=کانونُ الأوّلُ|tr=kanūnu l-’áwwal|m}}
-* Aragonese: {{t|an|abiento|m}}
-* Armenian: {{t+|hy|դեկտեմբեր|tr=dektember}}
-*: Old Armenian: {{tø|xcl|դեկտեմբեր|tr=dektember|sc=Armn}}
-* Asturian: {{t|ast|avientu|m}}
-* Azeri: {{t+|az|dekabr|xs=Azeri}}
-* Basque: {{t+|eu|abendu|xs=Basque}}
-* Belarusian: {{t|be|сьнежань|tr=s’nežan’|xs=Belarusian}}
-* Bengali: {{t-|bn|ডিসেম্বর|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|desemba}}
-* Breton: {{t+|br|Kerzu|xs=Breton}}, [[miz Kerzu]]
-* Bulgarian: {{t+|bg|декември|m|tr=dekémvri}}
-* Burmese: {{t|my|ဒီဇင်ဘာ|sc=Mymr|tr=dizinba}}
-* Catalan: {{t+|ca|desembre|m}}
-* Cherokee: {{t|chr|ᎥᏍᎩᏱ|tr=Vsgiyi|sc=Cher}}
-* Chinese:
-*: Mandarin: {{t|cmn|十二月|tr=shí’èryuè}}
-* Chuvash: {{tø|cv|раштав|sc=Cyrl|xs=Chuvash|tr=raštav}}
-* Czech: {{t+|cs|prosinec|m}}
-* Dakota: {{tø|dak|Wiiakenoŋpa}}
-* Danish: {{t+|da|december}}
-* Dutch: {{t+|nl|december|m}}
-* Esperanto: {{t+|eo|decembro|xs=Esperanto}}, {{t-|eo|Decembro|xs=Esperanto}}
-* Estonian: {{t+|et|detsember}}
-* Ewe: {{t|ee|Dzome}}, {{t|ee|Dezember}}
-* Faroese: {{t|fo|desember|m}}, {{t|fo|desembur|m}}
-* Fijian: {{t|fj|Tiseba}}
-* Finnish: {{t+|fi|joulukuu}}
-* French: {{t+|fr|décembre|m}}
-* Friulian: {{t|fur|disembar|m}}
-* Galician: {{t|gl|decembro|m}}
-* Georgian: {{t-|ka|დეკემბერი|tr=dekemberi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Dezember|m}}, {{t+|de|Julmond|m}}
-* Gilbertese: {{tø|gil|Ritembwa|sc=Cyrl}}
-* Greek: {{t+|el|Δεκέμβριος|m|tr=Dekémvrios}}, {{t+|el|Δεκέμβρης|m|tr=Dekémvris}}
-* Greenlandic: {{t+|kl|Decembari|xs=Greenlandic}}
-* Haitian Creole: {{tø|ht|desanm}}
-* Hawaiian: {{tø|haw|Kēkēmapa}}
-* Hebrew: {{t|he|דצמבר|alt=דֶּצֶמְבֶּר|tr=detzémber}}
-* Hindi: {{t+|hi|दिसम्बर|tr=disambar|xs=Hindi}}
-* Hungarian: {{t+|hu|december}}
-* Icelandic: {{t+|is|desember|m}}, {{t-|is|desembermánuður|m}}
-* Ido: {{t|io|decembro}}
-* Indonesian: {{t+|id|Desember|xs=Indonesian}}
-* Interlingua: {{t|ia|decembre}}
-* Interlingue: {{t|ie|decembre}}
-* Irish: {{t+|ga|Nollaig|xs=Irish}}
-* Italian: {{t+|it|dicembre|m}}
-* Japanese: {{t+|ja|十二月|tr=じゅうにがつ, jūnigatsú}}, {{t+|ja|師走|tr=しわす, shiwasu}}
-* Kabuverdianu:
-*: [[Badiu]]: [[Dezembru]] {{m}}
-*: [[São Vicente]]: [[D'zembr']] {{m}}
-* Kazakh: {{t|kk|желтоқсан|tr=jeltoqsan|sc=Cyrl}}
-{{trans-mid}}
-* Khmer: {{t|km|ធ្នូ|tr=tnū}}
-* Kongo: {{tø|kg|desembele}}
-* Korean: {{t+|ko|십이월|tr=sibiwol|sc=Kore}}
-* Latin: {{t+|la|december}}
-* Latvian: {{t+|lv|decembris|m|xs=Latvian}}
-* Limburgish: {{t|li|December|m}}
-* Lingala: {{t|ln|dɛsɛ́mbɛ}}
-* Lithuanian: {{t+|lt|gruodis|m|xs=Lithuanian}}
-* Livonian: {{t|liv|detsembõr}}
-* Low German: {{t|nds|Dezember|m}}, {{t|nds|Dezembermaand|m}}
-* Luxembourgish: {{t|lb|Dezember|m}}, {{t|lb|Chrëschtmount|m}}
-* Macedonian: {{t+|mk|декември|m|tr=dekémvri}}
-* Malay: {{t|ms|Disember}}
-* Maltese: {{t-|mt|Diċembru|xs=Maltese}}
-* Manchu: (jorgon biya)
-* Maori: [[tïhema]]
-* Marathi: {{t|mr|डिसेंबर|tr=d.ise.mbar}}
-* Montagnais: {{tø|moe|pishimuss}}
-* Navajo: {{tø|nv|Níłchʼitsoh}}
-* Neapolitan: {{t|nap|deciémbro}}, {{t|nap|dicèmbre}}
-* Northern Sotho: {{tø|nso|Manthole}}
-* Norwegian: {{t+|no|desember}}
-* Novial: {{t|nov|desembre}}
-* Occitan: {{t|oc|decembre|m}}
-* Ojibwe: {{t|oj|manidoo-giizisoons}}
-* Old English: {{t-|ang|ærra geola|m|alt=ǣrra ġēola|xs=Old English}}
-* Oriya: {{t|or|ଡିସେମ୍ବର|sc=Orya}}
-* Ossetian: {{tø|os|декабрь|tr=dekábr’|sc=Cyrl|xs=Ossetian}}
-* Persian: {{t-|fa|دسامبر|tr=desâmbr|xs=Persian}}
-* Polish: {{t+|pl|grudzień|m}}
-* Portuguese: {{t+|pt|dezembro|m}}
-* Romanian: {{t+|ro|decembrie}}, {{qualifier|pop}} {{t+|ro|undrea}}
-* Romansch: {{t|rm|december|m}}, {{t|rm|dezember|m}}, {{t|rm|schember|m}}
-* Russian: {{t+|ru|декабрь|m|tr=dekábr’}}
-* Samoan: {{t|sm|tesema}}
-* Scots: {{tø|sco|December|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|Dùbhlachd|f|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|децембар|m|sc=Cyrl}}
-*: Roman: {{t|sh|decembar|m}}, {{t|sh|prosinac|m}} {{qualifier|Croatia}}
-* Sicilian: {{t|scn|decemmiru|m}}
-* Skolt Sami: {{tø|sms|rosttovmään}}
-* Slovak: {{t+|sk|december|m}}
-* Slovene: {{t+|sl|december|m}}
-* Sotho: {{t|st|Tshitwe|xs=Sotho}}
-* Spanish: {{t+|es|diciembre|m}}
-* Swati: {{t|ss|íNgongóni}}
-* Swedish: {{t+|sv|december}}
-* Tagalog: {{t|tl|Disyembre}}
-* Tahitian: {{tø|ty|tītema}}
-* Tajik: {{t-|tg|декабр|tr=dekabr|sc=Cyrl|xs=Tajik}}
-* Tatar: {{t-|tt|dekäber|xs=Tatar}}
-* Telugu: {{t|te|డిసెంబరు|tr=DiseMbaru}}
-* Thai: {{t|th|ธันวาคม|tr=than waa khohm}}
-* Tok Pisin: {{t|tpi|disemba}}
-* Tongan: {{t|to|tisema}}
-* Turkish: {{t+|tr|aralık}}, {{t|tr|Kanuni Evvel}} {{qualifier|obsolete}}
-* Ukrainian: {{t+|uk|грудень|tr=hrúden’|xs=Ukrainian}}
-* Veps: {{tø|vep|tal'vku}}
-* Vietnamese: {{t+|vi|tháng mười|xs=Vietnamese}}
-* Volapük: {{t|vo|dekul}}
-* Võro: {{t|vro|joulukuu}}
-* Welsh: {{t+|cy|Rhagfyr|m|xs=Welsh}}
-* West Frisian: {{t|fy|desimber}}, {{t|fy|wintermoanne}}
-* Wolof: {{t|wo|Disembar}}
-* Yiddish: {{t+|yi|דעצעמבער|m|tr=detsember|sc=Hebr|xs=Yiddish}}
-{{trans-bottom}}
-
-====See also====
-* [[Undecimber]]<!--see Wikipedia article-->
-* {{list|en|Gregorian calendar months}}
-
+<ol><li> The twelfth and last month of the Gregorian calendar, following November and preceding the January of the following year. Abbreviation: <b>Dec</b> or <b>Dec.</b></li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> December effect</li>
+<li> Decemberish</li>
+<li> Decemberly</li>
+<li> {{w|Decembermoorden|December Murders}}</li>
+<li> {{w|December Revolt}}</li>
+<li> December solstice</li>
+<li> {{w|December Revolt|December Uprising}}</li>
+<li> Decembrist</li>
+<li> May and December, May-December</li>
+<li> mid-December</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> Undecimber</li>
+<li> {{list|en|Gregorian calendar months}}</li>
+</ul>
 ----
-
-
 ***denotation***
-denotation: 
-{{wikipedia}}
-
-===Etymology===
-From to [[denote]] (from {{etyl|frm}} [[denoter]], from {{etyl|la}} [[denotare]] "denote, mark out", itself from [[de-]] "completely" + [[notare]] "to mark") + [[-ation]]
-
-===Pronunciation===
-* {{rhymes|eɪʃən}}
-
-===Noun===
-{{en-noun}}
-
-# The act of [[denoting]], or something (such as a [[symbol]]) that [[denote]]s
-# {{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.
-#: ''The '''denotations''' 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.''
-# {{philosophy|logic}} The [[intension]] and [[extension]] of a word
-# {{semantics}} Something signified or referred to; a particular meaning of a [[symbol]]
-# {{semiotics}} The [[surface]] or [[literal]] meaning encoded to a [[signifier]], and the definition most likely to appear in a [[dictionary]]
-# {{computer science}} Any mathematical object which describes the meanings of expressions from the languages, formalized in the theory of [[denotational semantics]]
-# {{context|media-studies}} A first level of [[analysis]]: what the audience can visually see on a page. Denotation often refers to something [[literal]], and avoids being a [[metaphor]].
-
-====Derived terms====
-* [[denotative]]
-
-====Related terms====
-* [[connotation]]
-
-====Translations====
-{{trans-top|act of denoting}}
-* Bulgarian: {{t|bg|означаване|n}}
-* Dutch: [[denotatie]], [[beschrijving]]
-* Hungarian: {{t|hu|megjelölés}}
-{{trans-mid}}
-* Portuguese: {{t+|pt|denotação|f}}
-* Spanish: {{t|es|denotación|f}}
-{{trans-bottom}}
-
-{{trans-top|primary or explicit meaning}}
-* Bulgarian: {{t|bg|главно значение|n}}
-* Dutch: [[denotatie]], [[betekenis]]
-* Hungarian: {{t+|hu|jelentés}}
-{{trans-mid}}
-* Portuguese: {{t+|pt|denotação|f}}
-* Spanish: {{t|es|denotación|f}}
-{{trans-bottom}}
-
-{{trans-top|something signified or referred to}}
-* Bulgarian: {{t+|bg|обозначение|n}}
-* Dutch: [[aanduiding]], [[denotatie]], [[betekenis]]
-* Hungarian: {{t+|hu|jel}}
-{{trans-mid}}
-* Portuguese: {{t+|pt|denotação|f}}
-* Spanish: {{t|es|denotación|f}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|es}}: [[denotación]]
-{{trans-bottom}}
-
-====References====
-* {{R:OED2}}
-
-===Anagrams===
-* [[detonation#English|detonation]]
-* [[taeniodont#English|taeniodont]]
-
-[[pl:denotation]]
-[[pt:denotation]]
-[[ru:denotation]]
-[[cs:denotation]]
-[[et:denotation]]
-[[fi:denotation]]
-[[ta:denotation]]
-[[vi:denotation]]
-[[tr:denotation]]
-[[zh:denotation]]
+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
+<h3>Pronunciation</h3>
+<ul><li> {{rhymes|eɪʃən}}</li>
+</ul>
+
+<h3>Noun</h3>
+{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> {{philosophy|logic}} The intension and extension of a word</li>
+<li> {semantics} Something signified or referred to; a particular meaning of a symbol</li>
+<li> {semiotics} The surface or literal meaning encoded to a signifier, and the definition most likely to appear in a dictionary</li>
+<li> {computer science} Any mathematical object which describes the meanings of expressions from the languages, formalized in the theory of denotational semantics</li>
+<li> {{context|media-studies}} A first level of analysis: what the audience can visually see on a page. Denotation often refers to something literal, and avoids being a metaphor.</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> denotative</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> connotation</li>
+</ul>
+
+<h4>References</h4>
+<ul><li> {R:OED2}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> detonation</li>
+<li> taeniodont</li>
+</ul>
+pl:denotationpt:denotationru:denotationcs:denotationet:denotationfi:denotationta:denotationvi:denotationtr:denotationzh:denotation
 ***dialect***
-dialect: 
-{{wikipedia}}
-
-===Etymology===
-From {{etyl|grc}} {{term|διάλεκτος|tr=diálektos||conversation, the language of a country or a place or a nation, the local [[idiom]] which derives from a dominant language|sc=polytonic}}, from {{term|διαλέγομαι|tr=dialégomai||I participate in a [[dialogue]]|sc=polytonic}}, from {{term|διά|tr=diá||inter, through|sc=polytonic}} + {{term|λέγω|tr=légō||I speak|sc=polytonic}}.
-
-===Pronunciation===
-* {{IPA|/ˈdaɪ.ə.ˌlɛkt/}}
-* {{audio|En-us-dialect.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun}}
-
-# {{linguistics}} A variety of a [[language]] (specifically, often a spoken variety) that is characteristic of a particular area, community or group, often with relatively minor differences in vocabulary, style, spelling and pronunciation.
-#: ''A language is a '''dialect''' with an army and a navy.''
-# A dialect of a language perceived as substandard and wrong.
-#* Roger W. Shuy, ''Discovering American dialects'', National Council of Teachers of English, 1967, page 1:
-#*: Many even deny it and say something like this: "No, we don't speak a '''dialect''' around here. <nowiki>[...]</nowiki>
-#* ''Linguistic perspectives on black English'', H. Carl, 1975, pg. 219:
-#*: Well, those children don't speak '''dialect''', not in this school. Maybe in the public schools, but not here.
-#* H. Nigel Thomas, ''Spirits in the dark'', Heinemann, 1994, pg. 11:
-#*: <nowiki>[...]</nowiki> on the second day, Miss Anderson gave the school a lecture on why it was wrong to speak '''dialect'''. She had ended by saying "Respectable people don't speak '''dialect'''."
-
-====Usage notes====
-* The difference between a language and a dialect is not always clear, but it is generally considered that people who speak different dialects can understand each other, while people who speak different languages cannot. Compare '''[[species]]''' in the biological sense.
-
-====Derived terms====
-* [[dialectal]]
-* [[dialectic]]
-
-====Related terms====
-* [[dialectally]]
-* [[dialectical]]
-* [[dialectician]]
-* [[dialectics]]
-
-====See also====
-* [[dialogue]]
-* [[ethnolect]]
-* [[idiolect]]
-* [[sociolect]]
-
-====Translations====
-{{trans-top|variety of a language}}
-* Arabic: {{t+|ar|لهجة|f|tr=lahja}}, {{t-|ar|عامية|f|tr=3aammíyya}}, {{t|ar|دارجة|f|tr=daarija}}
-*: [[Egyptian Arabic]]: {{tø|arz|لهجة|f|tr=lahga|sc=Arab}}
-* Armenian: {{t+|hy|բարբառ|tr=barbaṙ}}
-* Bulgarian: {{t+|bg|диалект|m|tr=dialekt}}
-* Catalan: {{t+|ca|dialecte|m}}
-* Chinese:
-*: [[Dungan]]: {{tø|dng|фон-ян|sc=Cyrl}}
-*: Mandarin: {{t-|cmn|方言|tr=fāngyán|sc=Hani}},  {{qualifier|suffix}} {{t-|cmn|話|sc=Hani}},  {{t-|cmn|话|tr=-huà|sc=Hani}}
-* Croatian: {{t-|hr|narječje|n|alt=nárjēčje}}, {{t-|hr|dijalekt|m|alt=dijàlekt}}
-* Czech: {{t+|cs|nářečí|n}},  {{t+|cs|dialekt|m}}
-* Danish: {{t-|da|dialekt|c}}
-* Dutch: {{t+|nl|dialect|n}}
-* Esperanto: {{t-|eo|dialekto|xs=Esperanto}}
-* Finnish: {{t+|fi|murre}}, {{t|fi|aluemurre}}
-* French: {{t+|fr|dialecte|m}},  {{t+|fr|patois|m}}
-* {{trreq|Georgian}}
-* German: {{t+|de|Dialekt|m}}, {{t|de|Mundart}}
-* Greek: {{t+|el|διάλεκτος|f|tr=diálektos}}
-* Hebrew: {{t-|he|ניב|m|tr=niv}}
-* Hungarian: {{t+|hu|nyelvjárás}}
-* Icelandic: {{t-|is|mállýska|f}}
-* Indonesian: {{t|id|dialek|xs=Indonesian}}
-* Italian: {{t+|it|dialetto|m}}
-* Japanese: {{t+|ja|方言|tr=[[ほうげん]], hōgen}},  {{qualifier|suffix}} {{t+|ja|弁|alt=-弁|tr=-べん, -ben}}
-* Khmer: {{t|km|ប្រាក្រឹត|tr=bra kruet|sc=Khmr}}, {{t|km|គ្រាមភាសា|tr=kream phea sa|sc=Khmr}}
-{{trans-mid}}
-* Korean: {{t+|ko|사투리|tr=saturi|sc=Hang}}, {{t|ko|방언|tr=bang-eon|sc=Kore}}
-* Kurdish:
-*: Sorani: {{t|ku|زاراو|tr=zaraw|sc=ku-Arab}}
-* Latin: {{t-|la|dialectos|f}}, {{t|la|dialectus|f}}
-* Latvian: {{t-|lv|dialekts|m|xs=Latvian}}
-* Lithuanian: {{t-|lt|tarmė|f|xs=Lithuanian}}, {{t-|lt|dialektas|m|xs=Lithuanian}}
-* Macedonian: {{t|mk|дијалект|m|tr=dijalékt}},  {{t-|mk|наречје|n|tr=nárečje}},  {{t-|mk|говор|m|tr=góvor}}
-* {{trreq|mt}}
-* Mongolian: {{t|mn|аялгуу|tr=ayalguu|sc=Cyrl}}
-* Norwegian: {{t+|no|dialekt|m}}
-* Persian: {{t|fa|لحجه|tr=lahje|sc=fa-Arab}}, {{t|fa|لغت|tr=loğat|sc=fa-Arab}}, {{t|fa|گویش|tr=guyeš|sc=fa-Arab}}
-* Polish: {{t+|pl|dialekt|m}}
-* Portuguese: {{t+|pt|dialeto|m}} {{qualifier|Brazil}}, {{t+|pt|dialecto|m}} {{qualifier|Portugal}}
-* Russian: {{t+|ru|диалект|m|tr=dialékt}},  {{t+|ru|наречие|n|tr=naréčije}},  {{t+|ru|говор|m|tr=góvor}}
-* Santali: {{tø|sat|ᱵᱳᱞᱤ|tr=boli|sc=Olck}}
-* Scottish Gaelic: {{t-|gd|dualchainnt|f|xs=Scottish Gaelic}}
-* Serbian: {{t-|sr|наречје|n}}, {{t-|sr|narečje|n}}
-* Slovak: {{t-|sk|nárečie|n}}
-* Slovene: {{t+|sl|narečje|n|alt=naréčje}}
-* Spanish: {{t+|es|dialecto|m}}
-* Swedish: {{t+|sv|dialekt|c}}
-* Turkish: {{t+|tr|lehçe}}
-* Vietnamese: {{t|vi|thổ ngư}}
-* Volapük: {{t|vo|dialeg}}
-* Welsh: {{t|cy|tafodiaith|f|xs=Welsh}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[citadel#English|citadel]], [[deltaic#English|deltaic]], [[edictal#English|edictal]], [[lactide#English|lactide]]
-
+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}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈdaɪ.ə.ˌlɛkt/}}</li>
+<li> {{audio|En-us-dialect.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> {linguistics} A variety of a language (specifically, often a spoken variety) that is characteristic of a particular area, community or group, often with relatively minor differences in vocabulary, style, spelling and pronunciation.</li>
+<ul><li> <em>A language is a <b>dialect</b> with an army and a navy.</em></li>
+</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> <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>
+</ul>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> The difference between a language and a dialect is not always clear, but it is generally considered that people who speak different dialects can understand each other, while people who speak different languages cannot. Compare <b>species</b> in the biological sense.</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> dialectal</li>
+<li> dialectic</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> dialectally</li>
+<li> dialectical</li>
+<li> dialectician</li>
+<li> dialectics</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> dialogue</li>
+<li> ethnolect</li>
+<li> idiolect</li>
+<li> sociolect</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> citadel, deltaic, edictal, lactide</li>
+</ul>
 ----
-
-
 ***dictionary***
-dictionary: 
-
-{{wikipedia|dab=Dictionary (disambiguation)|Dictionary}}
-[[Image:Latin dictionary.jpg|thumb|250px|A multi-volume Latin dictionary in the [[w:University Library of Graz|University Library of Graz]].]]
-
-===Etymology===
-{{etyl|ML.|en}} {{term|dictionarium|lang=la}}, from {{etyl|la|en}} {{term|dictionarius|lang=la}}, from {{term|dictio||speaking|lang=la}}, from {{term|dictus|lang=la}}, perfect past participle of {{term|dico|dīcō|speak|lang=la}} + {{term|-arium||room, place|lang=la}}.
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈdɪkʃən(ə)ɹi/}}, {{X-SAMPA|/"dIkS@n(@)ri/}}
-* {{a|North America}} {{enPR|dĭk'shə-nĕr-ē}}, {{IPA|/ˈdɪkʃənɛɹi/}}, {{X-SAMPA|/"dIkS@nEri/}}
-* {{audio|en-us-dictionary.ogg|Audio (US)}}
-* {{audio|en-uk-dictionary.ogg|Audio (UK)}}
-
-===Noun===
+dictionary:
+{{wikipedia|Dictionary|dab=Dictionary (disambiguation)}}A multi-volume Latin dictionary in the University Library of Graz.
+<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>
+<li> {{audio|en-us-dictionary.ogg|Audio (US)}}</li>
+<li> {{audio|en-uk-dictionary.ogg|Audio (UK)}}</li>
+</ul>
+
+<h3>Noun</h3>
 {{en-noun|dictionaries}}
-
-# A [[reference work]] with a list of [[word]]s from one or more languages, normally ordered [[alphabetical]]ly and explaining each word's meaning and sometimes containing information on its etymology, usage, translations{{,}} and other data.
-# {{computing}} An [[associative array]], a data structure where each value is referenced by a particular key, analogous to words and definitions in a physical dictionary.
-
-* {{seeCites}}
-
-====Synonyms====
-* {{l|en|wordbook}}
-
-====Derived terms====
-* [[encyclopedic dictionary]]
-* [[explanatory dictionary]]
-* [[fictionary]]
-* [[pedagogical dictionary]]
-* [[Pictionary]]
-* [[subdictionary]]
-* [[translating dictionary]]
-* [[translationary]]
-
-====See also====
-* [[lexicon]]
-* [[encyclopedia]]
-* [[vocabulary]]
-
-====Translations====
-{{trans-top|publication that explains the meanings of an ordered list of words}}
-* Adyghe: {{tø|ady|гущыӀалъ|tr=gwš'yʕaɬ|sc=Cyrl}}
-* Afrikaans: {{t+|af|woordeboek|xs=Afrikaans}}
-* Albanian: {{t+|sq|fjalor|xs=Albanian}}
-* American Sign Language: [[D@NearPalm-PalmDown-OpenB@CenterChesthigh-PalmUp CirclesMidlineContact]]
-* Amharic: {{tø|am|መዝገበ ቃላት|tr=mäzgäbä qalat|sc=Ethi}}
-* Amuzgo: [[tzoⁿ 'tzítyui' jñ'o]]
-* Arabic: {{t+|ar|قاموس|m|tr=qamuus}}, {{t+|ar|معجم|m|tr=mú3jam}}
-*: [[Egyptian Arabic]]: {{tø|arz|قاموس|m|tr= qamwus|sc=Arab}}
-* Armenian: {{t+|hy|բառարան|tr=baṙaran}}
-*: Old Armenian: {{tø|xcl|բառգիրք|tr=baṙgirkʿ|sc=Armn|xs=Old Armenian}}
-* Asturian: {{t-|ast|diccionariu|xs=Asturian}}
-* Aymara: {{t-|ay|aru pirwa|xs=Aymara}}
-* Azeri: {{t+|az|lüğət|xs=Azeri}}
-* Bashkir: {{tø|ba|һүҙлек|tr=hüðlek|sc=Cyrl|xs=Bashkir}}
-* Basque: {{t-|eu|hiztegi|xs=Basque}}
-* Belarusian: {{t-|be|слоўнік|m|tr=slóŭnik|sc=Cyrl}} (łacinka: {{t|be|słoŭnik|m|sc=Latn}})
-* Bengali: {{t+|bn|অভিধান|tr=ôbhidhan|sc=Beng|xs=Bengali}}, {{t-|bn|ডিকশনারী|tr=ḍikshônari|sc=Beng|xs=Bengali}}, {{t-|bn|ডিকশনারি|tr=ḍikshônari|sc=Beng|xs=Bengali}}
-* Binisayâ: [[pagpurulungan]]
-* Bosnian: {{t-|bs|rječnik|m}}
-* Breton: {{t+|br|geriadur|m|xs=Breton}}
-* Bulgarian: {{t+|bg|речник|m|tr=réčnik}}
-* Burmese: {{t-|my|အဘိဓာန်|tr=ăbeitdan|sc=Mymr|xs=Burmese}}
-* Catalan: {{t+|ca|diccionari|m}}
-* Chinese:
-*: [[Dungan]]: {{tø|dng|хуадян|tr=huadyan|sc=Cyrl}}
-*: Mandarin: {{t-|cmn|字典|tr=zìdiǎn|sc=Hani}} {{qualifier|character dictionary}}; {{t-|cmn|詞典|sc=Hani}}, {{t-|cmn|词典|tr=cídiǎn|sc=Hani}}
-*: Wu (Suzhou dialect): [[zïtip]]
-* Chuvash: {{tø|cv|словарь|sc=Cyrl}},  {{tø|cv|сăмахсен кĕнеки|tr=sămaxsan kĕneki|sc=Cyrl}}
-* Cornish: {{t|kw|gerlyver|m}}
-* Crimean Tatar: {{tø|crh|luğat}}
-* Croatian: {{t+|hr|rječnik|m|alt=rjȇčnīk}}
-* Czech: {{t+|cs|slovník|m}}
-* Danish: {{t+|da|ordbog|c}}, {{t|da|ordbøger|p}}
-* Dutch: {{t+|nl|woordenboek|n}}
-* Erzya: [[валкс]]
-* Esperanto: {{t+|eo|vortaro|xs=Esperanto}}
-* Estonian: {{t+|et|sõnaraamat}}, {{t-|et|sõnastik}}
-* Faroese: {{t+|fo|orðabók|f|xs=Faroese}}
-* Finnish: {{t+|fi|sanakirja}}
-* French: {{t+|fr|dictionnaire|m}}
-* Fula: [[saggitorde]]
-* Galician: {{t+|gl|dicionario|m|xs=Galician}}
-* Georgian: {{t-|ka|ლექსიკონი|tr=lek’sikoni|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Wörterbuch|n}}
-* Greek: {{t+|el|λεξικό|n|tr=lexikó}}
-* Haitian Creole: {{tø|ht|diksyonè}}
-* Hausa: {{t|ha|ƙamus|m}}
-* Hawaiian: [[puke wehewehe ‘ōlelo]]
-* Hebrew: {{t+|he|מילון|m|tr=milón}}
-* Hiligaynon: {{tø|hil|diksonaryo|xs=Hiligaynon}}, {{tø|hil|kapulungan|xs=Hiligaynon}}
-* Hindi: {{t+|hi|शब्दकोश|m|tr=śabdkoś|xs=Hindi}}, {{t-|hi|कोश|m|tr=koś|xs=Hindi}}, {{t-|hi|डिक्शनरी|tr=ḍikśanrī|xs=Hindi}}
-* Hopi: [[lavaytutuveni]]
-* Hungarian: {{t+|hu|szótár}}
-* Icelandic: {{t+|is|orðabók|f}}
-* Ido: {{t+|io|vortaro|xs=Ido}}
-* Igbo: [[nkowaokwu]]
-* Indonesian: {{t+|id|kamus|xs=Indonesian}}
-* Interlingua: [[dictionario]]
-* Inuktitut: {{t-|iu|ᕿᒥᕐᕈᐊᑦ ᐅᓐᓂᖅᑐᖅ ᒥᑦᓯ ᑐᑭᐊ|tr=qimirruat unniqtuq mitsi tukia|sc=Cans|xs=Inuktitut}}
-* Irish: {{t+|ga|foclóir|m|xs=Irish}}
-* Italian: {{t+|it|dizionario|m}}
-* Japanese: {{t+|ja|辞書|tr=[[じしょ]], jisho}}, {{t-|ja|字書|tr=[[じしょ]], jisho}}, {{t+|ja|辞典|tr=[[じてん]], jiten}}, {{t-|ja|字典|tr=[[じてん]], jiten}}, {{t-|ja|字引|tr=[[じびき]], jibiki}}
-* Javanese: {{t+|jv|bausastra|xs=Javanese}}
-* Kannada: {{t|kn|ನಿಘಂಟು|tr=nighangṭu|sc=Knda}}, {{t|kn|ಅರ್ಥಕೋಶ|tr=arthakōsh|sc=Knda}}
-* Kapampangan: [[talabaldugan]]
-* Karachay-Balkar: {{tø|krc|сёзлюк}}
-* Kashubian: {{t-|csb|słowôrz|xs=Kashubian}}
-* Kazakh: {{t+|kk|сөздік|tr=sözdik|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t+|km|វចនានុក្រម|tr=wachanānūgrom|sc=Khmr}}
-* Kikuyu: {{tø|ki|kamusi}}
-* Korean: {{t+|ko|사전|tr=sajeon|sc=Hang}} ({{t+|ko|辭典|sc=Hani}}), {{t-|ko|자서|tr=jaseo|sc=Hang}} ({{t-|ko|字書|sc=Hani}})
-* Kurdish: {{t+|ku|ferheng|f}}, {{t+|ku|peyvname|f}}, {{t+|ku|bêjename|f}}, {{t+|ku|qamûs|f}}, {{t+|ku|فه‌رهه‌نگ|sc=ku-Arab}}
-* Kyrgyz: {{t|ky|сөздүк|tr=sözdük|sc=Cyrl}}
-* Lao: {{t|lo|ວັດຈະນານຸກົມ|tr=vatchanānukom|sc=Laoo}} <!--  {{t|lo|ປະທານຸກົມ|tr=pá tʰáː nū kom|sc=Laoo}}) -->
-* Latin: {{t-|la|dictionarium|n}}, {{t|la|glossarium|n}}, {{t|la|index verborum}}
-* Latvian: {{t+|lv|vārdnīca|f|xs=Latvian}}
-* Ligurian: {{tø|lij|dizionario}}
-* Limburgish: {{t-|li|diksjenaer|xs=Limburgish}}, {{t-|li|waordebook|xs=Limburgish}}
-{{trans-mid}}
-* Lithuanian: {{t+|lt|žodynas|m|xs=Lithuanian}}
-* Low Saxon: {{t|nds|Wöörbook|n}}
-* Luhya: {{tø|luy|ekamusi}}
-* Luxembourgish: {{t|lb|Dictionnaire|m}}, {{t|lb|Wierderbuch|n}}
-* Macedonian: {{t-|mk|речник|m|tr=réčnik}}
-* Malagasy: {{t-|mg|rakibolana|xs=Malagasy}}
-* Malay: {{t+|ms|kamus|xs=Malay}}
-* Malayalam: {{t|ml|നിഘണ്ടു|tr=nighaṇṭu|sc=Mlym}}
-* Maltese: {{t|mt|dizzjunarju|m}}
-* Manchu: (buleku bithe)
-* Manx: {{t|gv|fockleyr|m}}
-* Maori: [[pukapuka taki kupu]]
-* Marathi: {{t|mr|शब्दकोष|m|tr=śabdkoś|sc=Deva}}, {{t|mr|विश्वकोष|m|tr=viśvakoṣ|sc=Deva}}
-* Meru: {{tø|mer|kamusi}}
-* Mongolian: {{t-|mn|толь бичиг|tr=tol’ bičig|sc=Cyrl|xs=Mongolian}}
-* Nahuatl: {{t-|nah|tlahtōltecpantiliztli|xs=Nahuatl}}
-* Narom: {{tø|nrm|dictionnaithe}}
-* Navajo: {{tø|nv|naaltsoos saad bee siʼánígíí}}
-* Neapolitan: {{tø|nap|dezziunario}}
-* Nepali: {{t|ne|शब्दकोश|tr=śabdkoś|sc=Deva}}
-* Northern Sami: [[sátnegirji]]
-* Norwegian:
-*: Bokmål: {{t+|no|ordbok|m|f}}
-*: Nynorsk: {{t-|nn|ordbok|f|xs=Norwegian Nynorsk}}
-* Novial: [[lexike]]
-* Occitan: {{t+|oc|diccionari|xs=Occitan}}
-* Ossetian:
-*: Digor: {{tø|os|дзурдуат|tr=dzurduat|sc=Cyrl|xs=Ossetian}}
-*: Iron: {{tø|os|дзырдуат|tr=dzyrduat|sc=Cyrl|xs=Ossetian}}
-* Papiamentu: {{tø|pap|dictionario|xs=Papiamentu}}
-* Persian: {{t-|fa|لغت‌نامه|tr=loğat-nâme}}, {{t+|fa|فرهنگ|tr=farhang}}, {{t-|fa|لغت|tr=loğat}}
-* Plautdietsch: {{tø|pdt|Weadbüak}}
-* Polish: {{t+|pl|słownik|m}}
-* Portuguese: {{t+|pt|dicionário|m}}
-* Punjabi: {{t|pa|ਸ਼ਬਦਕੋਸ਼|tr=śabdkoś|sc=Guru}}, {{t|pa|ਡਿਕਸ਼ਨਰੀ|tr=ḍikśanrī|sc=Guru}}
-* Quechua: {{t-|qu|simi qullqa|xs=Quechua}}
-* Romanian: {{t+|ro|dicționar|n}}
-* Romansch: {{t-|rm|pledari|m|xs=Romansch}}, {{tø|rm|dicziunari|m}}, {{tø|rm|vocabulari|m}}, {{tø|rm|glossari|m}}
-* Russian: {{t+|ru|словарь|m|tr=slovár’}}
-* Sanskrit: {{t-|sa|शब्दकोश|m|tr=śábda-kośa|xs=Sanskrit}}, {{t-|sa|निघण्टु|m|tr=nighaṇṭu|xs=Sanskrit}}, {{t-|sa|अभिधान|n|tr=abhi-dhāna|xs=Sanskrit}}
-* Sardinian: [[dizionariu]] {{m}}
-* Scots: {{tø|sco|dictionar}}
-* Scottish Gaelic: {{t|gd|faclair|m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t-|sh|речник|m|sc=Cyrl}}
-*: Roman: {{t-|sh|rečnik|m}}
-* Sicilian: {{t+|scn|dizziunariu|m|xs=Sicilian}}, {{t+|scn|vocabbulariu|m|xs=Sicilian}}
-* Sinhalese: {{t-|si|ශබ්ද කෝෂය|tr=shabda koshaya|sc=Sinh|xs=Sinhalese}}, {{t|si|ශබ්දකෝෂය|tr=shabdakoshaya|sc=Sinh}}
-* Slovak: {{t-|sk|slovník|m}}
-* Slovene: {{t+|sl|slovar|m}}
-* Somali: [[qaamuus]], [[abwan-ka]]
-* Sotho: {{t+|st|bukantswe|xs=Sotho}}
-* Spanish: {{t+|es|diccionario|m}}
-* Swahili: {{t+|sw|kamusi|xs=Swahili}} (''noun 5'')
-* Swedish: {{t+|sv|ordbok|c}}, {{t+|sv|lexikon|n}}
-* Tagalog: {{t+|tl|diksyunaryo|xs=Tagalog}}, {{t+|tl|talahuluganan|xs=Tagalog}}, {{t+|tl|talasalitaan|xs=Tagalog}}, {{t|tl|talatinigan}}
-* Tajik: {{t-|tg|луғат|tr=luġat|sc=Cyrl|xs=Tajik}},  {{t+|tg|фарҳанг|tr=farhang|sc=Cyrl|xs=Tajik}},  {{t-|tg|қомус|tr=qomus|sc=Cyrl|xs=Tajik}}
-* Tamil: {{t+|ta|அகரமுதலி|tr=akaramutali|xs=Tamil}}
-* Tatar: {{t-|tt|süzlek|xs=Tatar}},  {{t+|tt|сүзлек|tr=süzlek|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t+|te|నిఘంటువు|tr=nighamtuvu}}, {{t+|te|పద కోశము|tr=pada kosamu}}
-* Thai: {{t+|th|พจนานุกรม|tr=pótjànaanúgrom}}
-* Tibetan: [[ཚིག་མཛོད་]] (tshig mdzod)
-* Tok Pisin: {{t|tpi|dikseneri}}
-* Turkish: {{t+|tr|sözlük}}, {{t|tr|lügat}} {{qualifier|obsolete}}
-* Ukrainian: {{t+|uk|словник|m|tr=slovnýk|xs=Ukrainian}}
-* Upper Sorbian: {{tø|hsb|słownik|m|xs=Upper Sorbian}}
-* Urdu: {{t+|ur|لغت|f|tr=luġat|xs=Urdu}}, {{t-|ur|ڈکشنری|tr=ḍikśanrī|xs=Urdu}}, {{t-|ur|فرہنگ|tr=farhang|xs=Urdu}}, {{t-|ur|شبدکوش|m|tr=śabdkoś|sc=ur-Arab}}
-* Uyghur: {{t+|ug|لۇغەت|tr=lughet|sc=ug-Arab|xs=Uyghur}}
-* Uzbek: {{t-|uz|луғат|tr=lughat|sc=Cyrl|xs=Uzbek}}, {{t-|uz|lug'at|xs=Uzbek}}
-* Venda: {{tø|ve|ṱhalusamaipfi|xs=Venda}}
-* Vietnamese: {{t+|vi|tự điển|xs=Vietnamese}} ({{t+|vi|字典|sc=Hani|xs=Vietnamese}})
-* Volapük: {{t+|vo|vödabuk}}, {{qualifier|older term, cf. de: Wörterbuch}} {{t-|vo|vödasbuk}}
-* Võro: {{tø|vro|sõnaraamat}}
-* Walloon: {{t-|wa|motî|xs=Walloon}}
-* Welsh: {{t+|cy|geiriadur|m|xs=Welsh}}
-* West Frisian: {{t+|fy|wurdboek|n|xs=West Frisian}}
-* Xhosa: [[idikshinari]] ''noun 5''
-* Yiddish: {{t+|yi|ווערטערבוך|tr=verterbukh|xs=Yiddish|n|m}}, {{t-|yi|ווערטעביכער|p|tr=verterbikher, werterbicher|xs=Yiddish}}
-* Zazaki: {{tø|zza|vatebend|m}}
-* Zulu: [[isichazimazwi]] ''noun 4''
-{{trans-bottom}}
-
-{{trans-top|an associative array}}
-* French: {{t-|fr|tableau associatif|m}},  {{t+|fr|dictionnaire|m}},  {{t-|fr|table d'association|f}}
-* German: {{t|de|assoziatives Datenfeld|n}}
-* Japanese: {{t+|ja|辞書|tr=[[じしょ]], jisho}}
-* Latin: {{t|la|glossarium|n}}, {{t|la|index verborum}}
-{{trans-mid}}
-* Polish: {{t+|pl|słownik|m}}
-* Portuguese: {{t+|pt|dicionário|m}},  {{t-|pt|array associativo|m}}
-* Swahili: {{t+|sw|kamusi|xs=Swahili}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[indicatory#English|indicatory]]
-
-[[Category:en:Reference works]]
-
-===Verb===
+<ol><li> A reference work with a list of words from one or more languages, normally ordered alphabetically and explaining each word's meaning and sometimes containing information on its etymology, usage, translations{,} and other data.</li>
+<li> {computing} An associative array, a data structure where each value is referenced by a particular key, analogous to words and definitions in a physical dictionary.</li>
+</ol>
+<ul><li> {seeCites}</li>
+</ul>
+
+<h4>Synonyms</h4>
+<ul><li> {{l|en|wordbook}}</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> encyclopedic dictionary</li>
+<li> explanatory dictionary</li>
+<li> fictionary</li>
+<li> pedagogical dictionary</li>
+<li> Pictionary</li>
+<li> subdictionary</li>
+<li> translating dictionary</li>
+<li> translationary</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> lexicon</li>
+<li> encyclopedia</li>
+<li> vocabulary</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> indicatory</li>
+</ul>
+Category:en:Reference works
+<h3>Verb</h3>
 {{en-verb|dictionar|i|ed}}
-
-# {{transitive}} To look up in a dictionary
-# {{transitive}} To add to a dictionary
-# {{intransitive}} To appear in a dictionary
-
-[[ar:dictionary]]
-[[az:dictionary]]
-[[zh-min-nan:dictionary]]
-[[bg:dictionary]]
-[[bs:dictionary]]
-[[br:dictionary]]
-[[ca:dictionary]]
-[[cs:dictionary]]
-[[cy:dictionary]]
-[[da:dictionary]]
-[[de:dictionary]]
-[[et:dictionary]]
-[[el:dictionary]]
-[[es:dictionary]]
-[[eo:dictionary]]
-[[eu:dictionary]]
-[[fa:dictionary]]
-[[fr:dictionary]]
-[[fy:dictionary]]
-[[gl:dictionary]]
-[[ko:dictionary]]
-[[hy:dictionary]]
-[[hi:dictionary]]
-[[io:dictionary]]
-[[id:dictionary]]
-[[is:dictionary]]
-[[it:dictionary]]
-[[kn:dictionary]]
-[[ka:dictionary]]
-[[kk:dictionary]]
-[[sw:dictionary]]
-[[ku:dictionary]]
-[[lo:dictionary]]
-[[lv:dictionary]]
-[[lb:dictionary]]
-[[lt:dictionary]]
-[[li:dictionary]]
-[[hu:dictionary]]
-[[mk:dictionary]]
-[[mg:dictionary]]
-[[ml:dictionary]]
-[[my:dictionary]]
-[[nl:dictionary]]
-[[ja:dictionary]]
-[[no:dictionary]]
-[[oc:dictionary]]
-[[km:dictionary]]
-[[tpi:dictionary]]
-[[pl:dictionary]]
-[[pt:dictionary]]
-[[ro:dictionary]]
-[[ru:dictionary]]
-[[sq:dictionary]]
-[[simple:dictionary]]
-[[sl:dictionary]]
-[[sr:dictionary]]
-[[su:dictionary]]
-[[fi:dictionary]]
-[[sv:dictionary]]
-[[tl:dictionary]]
-[[ta:dictionary]]
-[[te:dictionary]]
-[[th:dictionary]]
-[[tg:dictionary]]
-[[tr:dictionary]]
-[[uk:dictionary]]
-[[ur:dictionary]]
-[[vi:dictionary]]
-[[zh:dictionary]]
+<ol><li> {transitive} To look up in a dictionary</li>
+<li> {transitive} To add to a dictionary</li>
+<li> {intransitive} To appear in a dictionary</li>
+</ol>
+ar:dictionaryaz:dictionaryzh-min-nan:dictionarybg:dictionarybs:dictionarybr:dictionaryca:dictionarycs:dictionarycy:dictionaryda:dictionaryde:dictionaryet:dictionaryel:dictionaryes:dictionaryeo:dictionaryeu:dictionaryfa:dictionaryfr:dictionaryfy:dictionarygl:dictionaryko:dictionaryhy:dictionaryhi:dictionaryio:dictionaryid:dictionaryis:dictionaryit:dictionarykn:dictionaryka:dictionarykk:dictionarysw:dictionaryku:dictionarylo:dictionarylv:dictionarylb:dictionarylt:dictionaryli:dictionaryhu:dictionarymk:dictionarymg:dictionaryml:dictionarymy:dictionarynl:dictionaryja:dictionaryno:dictionaryoc:dictionarykm:dictionarytpi:dictionarypl:dictionarypt:dictionaryro:dictionaryru:dictionarysq:dictionarysimple:dictionarysl:dictionarysr:dictionarysu:dictionaryfi:dictionarysv:dictionarytl:dictionaryta:dictionaryte:dictionaryth:dictionarytg:dictionarytr:dictionaryuk:dictionaryur:dictionaryvi:dictionaryzh:dictionary
 ***dog***
-dog: 
-{{slim-wikipedia}}
-[[Image:YellowLabradorLooking.jpg|thumb|A dog (a [[Labrador retriever]])]]
-
-===Alternative forms===
-* [[darg]] {{qualifier|dialectical}}
-* [[dawg]] {{qualifier|dialectical}}
-* [[doggie]] {{qualifier|childish}}
-* [[doggy]] {{qualifier|childish}}
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/dɒɡ/}}, {{X-SAMPA|/dQg/}}
-* {{a|US}} {{IPA|/dɔɡ/}}, {{X-SAMPA|/dOg/}}
-* {{a|US}} also {{IPA|/dɑɡ/}}, {{X-SAMPA|/dAg/}}
-* {{audio|en-us-dog.ogg|Audio (US)}}
-* {{audio|En-uk-a dog.ogg|Audio (UK)}}
-* {{rhymes|ɒɡ}}
-
-===Etymology===
-From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|lang=ang||hound, powerful breed of dog}}, a pet-form diminutive of {{etyl|ang|-}} {{recons|docce|docce|lang=ang|muscle}} (found in compound {{term|fingerdocce||lang=ang|finger-muscle}} with suffix {{term|-ga|-ga|lang=ang}} (compare {{term|frocga||lang=ang|frog}}, {{term|picga||lang=ang|pig}}), from {{proto|Germanic|dukkōn|power, strength, muscle|lang=en}}. More at [[dock]]. In the 16th century, it superseded {{etyl|ang|-}} {{term|hund|lang=ang}} and was adopted by many continental European languages.
-
-===Noun===
-{{en-noun}}
-
-# An animal, member of the genus ''[[Canis]]'' (probably descended from the common [[wolf]]) that has been [[domesticated]] for thousands of years; occurs in many breeds. Scientific name: ''[[Canis lupus familiaris]]''.
-#: ''The '''dog''' barked all night long.''
-# A male dog, [[wolf]] or [[fox]], as opposed to a [[bitch]] (a female dog, wolf or fox).
-# {{derogatory}} A dull, unattractive [[girl]] or [[woman]].
-#: ''She’s a real '''dog'''.''
-# {{slang}} A [[man]].
-#: ''You lucky '''dog'''!''
-# {{slang}} A [[coward]]
-#: ''Come back and fight you '''dogs'''!''
-# {{derogatory}} Someone who is morally reprehensible.
-#: ''You dirty '''dog'''.''
-#* '''1599''' — Robert Greene, ''Alphonsus, King of Aragon'' (1599). Act 3.
-#*: Blasphemous '''dog''', I wonder that the earth
-#*: Doth cease from renting vnderneath thy feete,
-#*: To swallow vp those cankred corpes of thine.
-# Any of various mechanical devices for holding, gripping, or fastening something, particularly with a tooth-like projection.
-# "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]])
-#: '''1897''' ''Universal Dictionary of the English Language'', Robert Hunter and Charles Morris, eds., v2 p1700.
-# A metal support for [[log]]s in a fireplace.
-#: ''The '''dogs''' were too hot to touch.''
-#* '''1902''', [[w:Arthur Conan Doyle|Arthur Conan Doyle]], ''[[s:The Hound of the Baskervilles|The Hound of the Baskervilles]]''
-#*: In the great old-fashioned fireplace behind the high iron '''dogs''' a log-fire crackled and snapped.
-# A [[hot dog]].
-# {{poker|_|slang}} [[underdog|Underdog]]
-# {{slang|almost always|_|in the plural}} [[foot|feet]].
-#: "My '''dogs''' are barking!" meaning "My feet hurt!"
-
-====Synonyms====
-* {{sense|scientific names of animal}} ''[[Canis familiaris]]'', ''[[Canis domesticus]]'', ''Canis familiarus domesticus'', ''[[Canis canis]]'', ''Canis aegyptius'', ''Canis familiarus aegyptius'', ''Canis melitaeus'', ''Canis familiarus melitaeus'', ''Canis molossus'', ''Canis familiarus molossus'', ''Canis saultor'', ''Canis familiaris saultor''
-* {{sense|animal}} See also [[Wikisaurus:dog]], [[domestic dog]], [[hound]], [[canine]]
-* {{sense|man}} See also [[Wikisaurus:man]], [[bloke]] {{qualifier|British}}, [[chap]] {{qualifier|British}}, [[dude]], [[fellow]], [[guy]], [[man]]
-* {{sense|morally reprehensible person}} [[cad]], [[bounder]], [[blackguard]], [[fool]], [[hound]], [[heel]], [[scoundrel]]
-* {{sense|mechanical device}} [[click]], [[detent]], [[pawl]]
-* {{sense|metal support for logs}} [[andiron]], [[firedog]], [[dogiron]]
-
-====Coordinate terms====
-* {{sense|male adult dog}} [[bitch]], [[pup]], [[puppy]]
-
-====Hyponyms====
-* {{sense|animal}} [[Afghan hound]], [[bloodhound]], [[chihuahua]], [[coonhound]], [[dachshund]], [[deerhound]], [[foxhound]], [[gazehound]], [[German shepherd]], [[greyhound]], [[hound]], [[Irish Wolfhound]], [[Norwegian Elkhound]], [[otterhound]], [[pointer]], [[poodle]], [[retriever]], [[Russian Wolfhound]], [[scenthound]], [[setter]], [[sheepdog]], [[shepherd]], [[sighthound]], [[spaniel]], [[staghound]], [[terrier]], [[wolfhound]]
-
-====Hypernyms====
-* {{sense|animal}} [[canid]]
-
-====Derived terms====
-{{rel-top3|Terms derived from ''dog'' (noun)}}
-* [[a dog's chance]]
-* [[a dog's breakfast]]
-* [[a dog's dinner]]
-* [[a dog's life]]
-* [[Alsatian dog]]
-* [[as sick as a dog]]
-* [[assistance dog]]
-* [[attack dog]]
-* [[avalanche dog]]
-* [[avalanche rescue dog]]
-* [[barking dogs seldom bite]]
-* [[be like a dog with two tails]]
-* [[be top dog]]
-* [[be top the dog]]
-* [[Beware of dog!]]
-* [[Beware of the dog!]]
-* [[Big Dog]]
-* [[bird dog]]
-* [[bottom dog]]
-* [[brace of dogs]]
-* [[bulldog]]
-* [[bulldog breeder]]
-* [[cadaver dog]]
-* [[Canaan dog]]
-* [[cash-sniffing dog]]
-* [[cat-and-dog]]
-* [[cattle dog]]
-* [[clever old dog]]
-* [[companion dog]]
-* [[corndog]]
-* [[cunning dog]]
-* [[designer dog]]
-* [[diner's dog]]
-* [[dirty dog]]
-* [[dog accessories]]
-* [[dog accessory]]
-* [[dog act]]
-* [[dog and pony show]]
-* [[dog-ape]], [[dog ape]]
-* [[dog ass]]
-* [[dog attack]]
-* [[dog bed]]
-* [[dogbane]]
-* [[dogbane family]]
-* [[dog basket]]
-* [[dogberry]]
-* [[Dogberry]]
-* [[dogberryism]], [[Dogberryism]]
-* [[dog biscuit]]
-* [[dog-bite]], [[dog bite]]
-* [[dog-bludgeoner]]
-* [[dog book]]
-* [[dog bootie]]
-* [[dog booties]]
-* [[dog bowl]]
-* [[dog box]]
-* [[dog breed]]
-* [[dog breeder]]
-* [[dog breeding]]
-* [[dog cadaver]]
-* [[dog care]]
-* [[dogcart]]
-* [[dogcatcher]], [[dog-catcher]]
-* [[dogcatching]]
-* [[dogcheap]]
-* [[dog claw]]
-* [[dog clothes]]
-* [[dog clothing]]
-* [[dog club]]
-* [[dog clutch]]
-* [[dog coat]]
-* [[dog collar]]
-* [[dog coupling]]
-* [[dog crate]]
-* [[dog curtain]]
-* [[dog daisy]]
-* [[dog dander]]
-* [[dog dandruff]]
-* [[dog-day cicada]]
-* [[dog days]]
-* [[dog diabetes]]
-* [[dog dirt]]
-* [[dogdom]]
-* [[dog-doo]]
-* [[dog door]]
-* [[dog-ear]], [[dog ear]]
-* [[dog-eared]]
-* [[dog-eared book]]
-* [[dog-eared magazine]]
-* [[dog eat dog]]
-* [[dog-eat-dog]]
-* [[dog-eat-dog society]]
-* [[dog-end]]
-* [[dog excrement]]
-* [[dogface]]
-* [[dog faeces]]
-* [[dog family]]
-* [[dog fancier]]
-* [[dog fancy]]
-* [[dog fancying]]
-* [[dog fashion]]
-* [[dog feces]]
-* [[dog fennel]]
-* [[dogfight]]
-* [[dogfish]]
-* [[dog flap]]
-* [[dog flea]]
-* [[dog flu]]
-* [[dogfood]], [[dog-food]], [[dog food]]
-* [[dog fox]]
-* [[dogfought]]
-* [[dog-friendly]]
-* [[dog eat dog]]
-* [[dog figurine]]
-* [[dog fly]]
-* [[dog fouling]]
-* [[dogged]]
-* [[dogged it]]
-* [[doggedly]]
-* [[doggedness]]
-* [[dogger]]
-* [[doggerel]], [[doggrel]], [[dogrel]]
-* [[doggerel rhyme]]
-* [[doggerel verse]]
-* [[doggery]]
-* [[doggie]]
-* [[doggie do]]
-* [[doggie door]]
-* [[doggie paddle]]
-* [[doggie-paddle]]
-* [[doggie position]]
-* [[doggier]]
-* [[doggiest]]
-* [[dogging]]
-* [[doggish]]
-* [[doggishly]]
-* [[doggishness]]
-* [[doggone]]
-* [[doggoned]]
-{{rel-mid3}}
-* [[doggonedest]]
-* [[doggrel]]
-* [[dog groomer]]
-* [[dog grooming]]
-* [[doggy]]
-* [[doggy bag]]
-* [[doggy door]]
-* [[doggy paddle]]
-* [[doggy-paddle]]
-* [[doggy person]]
-* [[doggystyle]], [[doggy-style]]
-* [[doggystyle position]]
-* [[dog hair]]
-* [[dog handler]]
-* [[dog harness]]
-* [[doghead]]
-* [[dog-headed]]
-* [[dog hook]]
-* [[doghouse]], [[dog house]]
-* [[dog hutch]]
-* [[dog influenza]]
-* [[dog in the manger]]
-* [[dog-in-the-manger]]
-* [[dogiron]]
-* [[dog it]]
-* [[dog kennel]]
-* [[dog killer]] ( = [[canicide]])
-* [[dog Latin]], [[Dog Latin]]
-* [[dog lead]], [[dog-lead]]
-* [[dog leash]], [[dog-leash]]
-* [[dogleg]]
-* [[dogleg fence]]
-* [[doglegged]]
-* [[dog-legged stair]]
-* [[doglegging]]
-* [[dogleg jack]]
-* [[dog-leg stair]]
-* [[dogless]]
-* [[dog licence]]
-* [[dog licence disc]]
-* [[dog licence fee]]
-* [[doglike]]
-* [[doglike devotion]]
-* [[dogling]]
-* [[dogly]]
-* [[dog lover]]
-* [[dog magazine]]
-* [[dog minder]]
-* [[dog minding]]
-* [[dog muzzle]]
-* [[dog my cats]]
-* [[dog nail]]
-* [[dognap]]
-* [[dognaped]]
-* [[dognaper]]
-* [[dognaping]]
-* [[dognapped]]
-* [[dognapper]]
-* [[dognapping]]
-* [[dognapping]]
-* [[dognaps]]
-* [[dog owner]]
-* [[dog ownership]]
-* [[dog pack]]
-* [[dogpaddle]]
-* [[dogpaddling]]
-* [[dog paddle]]
-* [[dog park]]
-* [[dog parlor]]
-* [[dog parlour]]
-* [[dog patrol]]
-* [[dog pen]]
-* [[dog person]]
-* [[dogpile]]
-* [[dog poop]]
-* [[dog pooper scooper]], [[dog pooper-scooper]]
-* [[dog poop scoop]]
-* [[dogpoor]]
-* [[dog portrait]]
-* [[dog pound]]
-* [[dog puppy]]
-* [[dog racing]]
-* [[dogrel]]
-* [[dog robber]]
-* [[dog run]]
-* [[dogs]]
-* [[dog salmon]]
-* [[dogsbodied]]
-* [[dogsbodies]]
-* [[dogsbodying]]
-* [[dogsbody]]
-* [[dog's breakfast]]
-* [[dog screw]]
-* [[dog's dinner]]
-* [[dog's dirt]]
-* [[dog's disease]]
-* [[dog's ear]]
-* [[dogshit]], [[dog shit]]
-* [[dogshore]]
-* [[dog show]]
-* [[dog showing]]
-* [[dogsitter]], [[dog-sitter]], [[dog sitter]]
-* [[dogsitting]], [[dog-sitting]], [[dog sitting]]
-* [[dog skull]]
-* [[dogsled]], [[dog-sled]], [[dog sled]]
-* [[dogsledder]], [[dog-sledder]], [[dog sledder]]
-* [[dogsledding]], [[dog-sledding]], [[dog sledding]]
-* [[dog sledge]], [[dog-sledge]]
-* [[dog sleigh]]
-* [[dog's letter]]
-* [[dog's life]]
-* [[dog's meat]]
-* [[dog's mess]]
-* [[dog's mercury]]
-* [[dog's muck]]
-* [[dog's muzzle]]
-* [[dog's nose]]
-* [[dog somebody's steps]]
-* [[dog's paw]]
-* [[dog speak]]
-* [[dog spike]]
-* [[dog sport]]
-* [[dog's skull]]
-* [[dog's tail]]
-* [[dog's-tail]]
-* [[Dog Star]]
-* [[dog's tongue]]
-* [[dog's-tongue]]
-* [[dog's-tooth]]
-* [[dog's-tooth check]]
-* [[dog tag]]
-* [[dog tapeworm]]
-* [[dog tax]]
-* [[dog team]] / [[team of dogs]]
-* [[dog tick]]
-* [[dog-tired]]
-* [[dogtooth]], [[dog tooth]]
-* [[dogtooth check]]
-* [[dogtooth violet]]
-* [[dog track]]
-* [[dog train]]
-{{rel-mid3}}
-* [[dog trainer]]
-* [[dog training]]
-* [[dog training school]]
-* [[dog treat]]
-* [[dog treats]]
-* [[dogtrot]]
-* [[dog tucker]]
-* [[dog turd]]
-* [[dogvane]]
-* [[dog violet]]
-* [[dog walk]]
-* [[dogwalker]], [[dog-walker]], [[dog walker]]
-* [[dogwalking]], [[dog-walking]], [[dog walking]]
-* [[dog warden]]
-* [[dogwash]]
-* [[dogwatch]], [[dog watch]]
-* [[dog whelk]]
-* [[dogwhip]], [[dog-whip]]
-* [[dog whisperer]]
-* [[dog whistle]], [[dog-whistle]]
-* [[dogwood]]
-* [[dogwood family]]
-* [[dogwood winter]]
-* [[dog work]]
-* [[dog world]]
-* [[dog year]]
-* [[Dog Years]]
-* [[domestic dog]]
-* [[domesticated dog]]
-* [[double dog dare]]
-* [[European dogwood]]
-* [[every dog has its day]]
-* [[feral dog]]
-* [[firedog]], [[fire dog]]
-* [[fogdog]]
-* [[four-legged dog]]
-* [[give a dog a bad name]]
-* [[give a dog a bad name and hang him]]
-* [[go to the dogs]]
-* [[Greater Dog]]
-* [[guard dog]]
-* [[guide dog]]
-* [[gun dog]]
-* [[hair of the dog]]
-* [[hearing-ear dog]]
-* [[hotdog]], [[hot dog]]
-* [[hot-dog]]
-* [[hot-dogged]]
-* [[hotdogger]], [[hot-dogger]]
-* [[hot-dogs]]
-* [[house dog]]
-* [[hunting dog]]
-* [[in a dog's age]]
-* [[in the dog box]]
-* [[in the doghouse]]
-* [[it is easy to find a stick to beat a dog]]
-* [[junkyard dog]]
-* [[lapdog]], [[lap dog]]
-* [[lazy dog]]
-* [[lead a dog's life]]
-* [[lead dog]]
-* [[Lesser Dog]]
-* [[let sleeping dogs lie]]
-* [[lie doggo]]
-* [[like a dog]]
-* [[like a dog in heat]] / [[like a dog on heat]]
-* [[like a dog's dinner]]
-* [[like a dog with a bone]]
-* [[little dog]]
-* [[Little Dog]]
-* [[lucky dog]]
-* [[mad dog]]
-* [[mountain dog]]
-* [[one-legged dog]]
-* [[pedigree dog]]
-* [[pet dog]]
-* [[pi-dog]]
-* [[pie-dog]]
-* [[police dog]]
-* [[prairie dog]]
-* [[puppy dog]]
-* [[puppy-dog eyes]], [[puppy dog eyes]]
-* [[purebred dog]]
-* [[purebreed dog]]
-* [[put on the dog]]
-* [[pye-dog]]
-* [[raccoon dog]]
-* [[railroad police dog]]
-* [[railway police dog]]
-* [[rain cats and dogs]]
-* [[rescue dog]]
-* [[Saint Bernard dog]]
-* [[sausage dog]]
-* [[seadog]]
-* [[see a man about a dog]]
-* [[seeing-eye dog]]
-* [[service dog]]
-* [[sheepdog]], [[sheepdog]]
-* [[show dog]]
-* [[sick as a dog]]
-* [[silk dog]]
-* [[sled dog]]
-* [[sled dog breed]]
-* [[sled dog race]]
-* [[sled dog racer]]
-* [[sled dog racing]]
-* [[sly dog]]
-* [[smooth dogfish]]
-* [[spiny dogfish]]
-* [[spotted dogfish]]
-* [[stray dog]]
-* [[sundog]], [[sun dog]]
-* [[swing dog]]
-* [[the dogs]]
-* [[there's life in the old dog yet]]
-* [[three-legged dog]]
-* [[throw it to the dogs]]
-* [[tinned dog]]
-* [[top dog]]
-* [[top dog behavior]]
-* [[top dog behaviour]]
-* [[toy dog]]
-* [[toy dog breed]]
-* [[two-legged dog]]
-* [[underdog]]
-* [[veggie dog]]
-* [[war dog]]
-* [[water dog]]
-* [[wiener dog]]
-* [[wild dog]]
-* [[wise old dog]]
-* [[working dog]]
-* [[yard dog]]
-* [[yellow dog]]
-* [[you can't teach an old dog new tricks]]
-* [[young dog]]
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|animal}}
-* Abau: {{tø|aau|nwoh}}
-* Abaza: {{tø|abq|ла|tr=la}}
-* Abenaki: [[adia]]; [[alemos]]
-* Abkhaz: {{t-|ab|ала|tr=ala|sc=Cyrl}}
-* Adyghe: {{tø|ady|хьэ}}
-* Afrikaans: {{t+|af|hond|xs=Afrikaans}}
-* Aghul: {{tø|agx|гъуй|sc=Cyrl|xs=Aghul}}
-* Ainu: [[セタ]] (seta), {{tø|ain|レエㇷ゚|tr=reep}}
-* Akhvakh: {{qualifier|Southern}} {{tø|akv|хве}}, {{qualifier|Northern}} {{tø|akv|хвай}}
-* Akkadian: {{tø|akk|𒌨|m|tr=kalbu, UR|sc=Xsux}}
-* Alabama: {{tø|akz|ifa}}
-* Albanian: {{t+|sq|qen|m|xs=Albanian}}
-* Aleut: {{tø|ale|sabaakax}}
-* Ama: {{tø|amm|aluwou}}
-* Amharic: ውሻ (wsha), {{t-|am|ከልብ|tr=kälb|sc=Ethi|xs=Amharic}}
-* Amuzgo: [[kítzë']]
-* Andi: {{tø|ani|хой}}
-* Anglo-Norman: {{tø|xno|chen|m}}
-* Angor: {{tø|agg|yaforɨ}}
-* Apache:
-*: [[Western Apache]]: {{tø|apw|góshé}}
-* Arabic: {{t|ar|كلب|m|tr=kalb|alt=كَلْب|sc=Arab}}, ({{Arab|[[كلاب|كِلاب]]}} (kilaab) {{p}})
-*: [[Egyptian Arabic]]: {{tø|arz|كلب|m|tr=kalb|sc=Arab}}
-* Aragonese: {{t|an|gos}}
-* Aramaic:
-*: Syriac: [[ܟܠܒܐ]] (kalbā’) {{m}}, [[ܟܠܒܬܐ]] (kalbtā’) {{f}}
-*: Hebrew: [[כלבא]] (kalbā’) {{m}}, [[כלבתא]] (kalbtā’) {{f}}
-* Arapaho: [[heθ]]
-* Armenian: {{t+|hy|շուն|tr=šun}}
-* Aromanian: {{t+|rup|cãne}}
-* Assamese: {{t|as|কুকুৰ |tr=kukur|sc=Beng}}
-* Assiniboine: [[šunga]]
-* Asturian: {{t|ast|perru|m}}
-* Avar: {{t|av|гьой|sc=Cyrl}}
-* Aymara: {{t|ay|anu}}
-* Azeri: {{t+|az|it|xs=Azeri}}, {{t+|az|köpək|xs=Azeri}}
-* Bagvalal: {{tø|kva|гьвай}}
-* Baluchi: {{tø|bal|کچک|tr=kucak}}
-* Bambara: {{t|bm|wùlù}}
-* Bashkir: {{tø|ba|эт|sc=Cyrl}}
-* Basque: [[txakur]], [[etxe-txakur]]
-* Bau Bidayuh: {{tø|sne|kosuong}}
-* Bavarian: {{tø|bar|Hund}}
-* Belarusian: {{t+|be|сабака|f|tr=sabáka|xs=Belarusian}}
-* Bemba: {{tø|bem|imbwa}}
-* Bengali: {{t-|bn|কুকুর|tr=kukur|sc=Beng|xs=Bengali}}
-* Bezhta: {{tø|kap|во}}
-* Blackfoot: {{tø|bla|imita}}
-* Borôro: {{tø|bor|arigao}}
-* Bosnian: {{t-|bs|pas|m}}, {{t-|bs|kučka|f}}
-* Botlikh: {{tø|bph|хай|sc=Cyrl}}
-* Breton: {{t+|br|ki|m|xs=Breton}}, {{t+|br|chas|p|xs=Breton}}; [[kiez]] {{f}}, [[kiez]]ed {{p}}
-* Budukh: {{tø|bdk|хор|sc=Cyrl}}, {{tø|bdk|тІартІа|sc=Cyrl}}
-* Bulgarian: {{t+|bg|куче|n|tr=kuče}}, {{t+|bg|пес|m|tr=pes}} {{qualifier|colloquial}}, {{t-|bg|псе|n|tr=pse}} {{qualifier|colloquial}}
-* Burmese: {{t-|my|ခွေး|tr=hkwe:|sc=Mymr|xs=Burmese}}
-* Buryat: {{tø|bua|нохой}}
-* Caddo: [[díˀṣi]]
-* Carrier: [[ɫi]]
-* Catalan: {{t+|ca|gos}}, {{t+|ca|ca|m}}, [[gossa]] {{f}}
-* Cebuano: [[irô]], [[ayam]]
-* Central Atlas Tamazight: {{tø|tzm|ⴰⵢⴷⵉ|m|tr=aydi|sc=Tfng}}
-* Ch'orti': [[ƈi']]
-* Chamalal: {{tø|cji|хва̅й|sc=Cyrl}}
-* Chamicuro: {{tø|ccc|ma'nali}}
-* Chamorro: {{t|ch|ga'lagu}}
-* Chechen: {{tø|ce|жӀаьла}}
-* Cherokee: {{tø|chr|ᎩᏟ|tr=giɬi}}, {{tø|chr|ᎩᎵ|tr=gili}}
-* Cheyenne: {{tø|chy|oeškeso}}
-* Chinese:
-*: Cantonese: {{tø|yue|狗|tr=gau2|sc=Hant}}, {{tø|yue|犬|tr=hyun1|sc=Hant}}
-*: Mandarin: {{t|zh|狗|tr=gǒu|sc=Hani}}, {{t|zh|犬|tr=quǎn|sc=Hani}}
-* Chukchi: {{tø|ckt|ы'ттъыын|tr=ʔǝttʔǝn}}, {{tø|ckt|ы'ттъыыт|p|tr=ʔǝttʔǝt}}
-* Chumash: [[huču]]
-* Chuvash: {{tø|cv|йытӑ|sc=Cyrl}}
-* Coastal Kadazan: {{tø|kzj|tasu}}
-* Comanche: [[sarrie]]
-* Cora: [[ẓʌ'ʌ]]
-* Cornish: {{t|kw|ki}}
-* Corsican: {{t|co|cane}}, {{t|co|ghjacaru}}
-* Cree: [[ᐊᑎᒼ]] (atim)
-* Creek: [[éfv]]
-* Crimean Tatar: [[köpek]], [[it]], [[boşuq]]
-* Croatian: {{t+|hr|pas|m}}
-* Czech: {{t+|cs|pes|m}}, {{t-|cs|fena|f}}
-* Dalmatian: {{tø|dlm|cun|m}}
-* Danish: {{t+|da|hund|c}}
-* Dargwa: {{tø|dar|хя}}
-* Darkinjung: {{tø|aus-dar|mirri}}
-* Dena'ina: {{tø|tfn|łik'a}}
-* Dhivehi: {{t|dv|ބަޅު |tr=baḷu|sc=Thaa}}, {{t|dv|ކުއްތާ |tr=kuttā|sc=Thaa}}
-* Dogrib: {{tø|dgr|tłı̨}}
-* Dutch: {{t+|nl|hond|m}}
-* Dyirbal: [[guda]] {{qualifier|class II noun}}, {{unicode|[[gudaɖaran]]}} ''dual'', [[gudaguda]] {{p}}
-* Egyptian: {{tø|egy|𓍿𓊃𓅓𓃡|tr=ṯzm|sc=Egyp}}
-* Erzya: [[киска]] (kiska), [[пине]] (pine)
-* Eshtehardi: {{tø|esh|اسپ|m|alt=اِسپَ|tr=espa|sc=fa-Arab}}, {{tø|esh|ماچیه|f|alt=ماچیَه|tr=mâĉiya|sc=fa-Arab}}, {{tø|esh|کوت|alt=کوتَ|tr=kōta or kōtiyak: WHELP|sc=fa-Arab}}
-* Esperanto: {{qualifier|♂♀}} {{t+|eo|hundo}}, {{qualifier|♂}} {{t-|eo|virhundo}}, {{qualifier|neologism ♂}} {{t-|eo|hundiĉo}}, {{qualifier|♀}} {{t+|eo|hundino}}, {{qualifier|diminutive ♂♀}} {{t-|eo|hundeto}}, {{qualifier|augmentative ♂♀}} {{t-|eo|hundego}}, {{qualifier|pejorative ♂♀}} {{t-|eo|hundaĉo}}
-* Estonian: {{t+|et|koer}}, {{t|et|peni}}
-* Even: {{tø|eve|ӈен}}
-* Evenki: {{tø|evn|ӈинакин}}
-* Ewe: {{tø|ee|avu}}
-* Faroese: {{t+|fo|hundur|m|xs=Faroese}}
-* Fijian: {{t|fj|koli}}
-* Finnish: {{t+|fi|koira}}
-* Flathead: [[ʔn̩qʷqʷ̕osǝ́ˀmí]]
-* Fon: {{tø|fon|agla}}, {{tø|fon|avun}}
-* French: {{t+|fr|chien|m}}
-* Friulian: [[čhan]] {{qualifier|new orthography}}, [[cjan]] {{qualifier|old orthography}}
-* Gagauz: {{tø|gag|köpek}}
-* Galician: [[can#Galician|can]] {{m}}, [[cadela]] {{f}}
-* Gamilaraay: [[buruma]] (tame), [[marayin]] {{qualifier|wild}}, [[mirri]] {{qualifier|wild}}, [[ngurran]] {{qualifier|wild}}
-* Georgian: {{t-|ka|ძაღლი|tr=jağli|sc=Geor|xs=Georgian}}
-* German: {{qualifier|♂♀}} {{t+|de|Hund|m}}, {{qualifier|♂}} {{t+|de|Hündin|f}}
-* Ghodoberi: {{tø|gdo|хвайи|sc=Cyrl}}
-* Gothic: {{tø|got|𐌷𐌿𐌽𐌳𐍃|m|tr=hunds|sc=Goth|xs=Gothic}}
-* Greek: {{t+|el|σκύλος|tr=skílos}}, {{t+|el|κύων|tr=kíon}}
-*: [[Ancient Greek]]: {{tø|grc|κύων|tr=kuōn|sc=polytonic}}, {{tø|grc|σκύλαξ|tr=skulaks|sc=polytonic}}, {{tø|grc|σκύλλος|tr=skullos|sc=polytonic}}, {{tø|grc|τραβίτης|tr=trabitēs|sc=polytonic}}
-* Guaraní: {{t|gn|jagua}}
-* Gujarati: {{t|gu|કુતરો|tr=kutro|m}}, {{t|gu|કુતરી|tr=kutrī|f}}, {{t|gu|કુતરાઓ|tr=kutrāo|p}} / {{t|gu|કુતરીઓ|tr=kutrīo|p}}
-* Haida: {{tø|hai|x̌a}}, {{tø|hai|xa}}
-* Hausa: {{t|ha|kàṛe̋ }}
-* Hawaiian: {{tø|haw|ʻīlio}}
-* Hebrew: [[כלב]] (kélev) {{m}}
-* Hindi: {{t|hi|कुत्ता|m|tr=kuttā|sc=Deva}}, {{t|hi|कुत्ती|f|tr=kuttī|sc=Deva}}
-* Hinukh: {{tø|gin|гъвве|sc=Cyrl}}, {{tø|gin|кача|sc=Cyrl}}
-* Hittite: [[kuwas]]; [[suwana]]
-* Hopi: {{tø|hop|pòoko}}
-* Hungarian: {{t+|hu|kutya}}, {{t+|hu|eb}}
-* Hunzib: {{tø|huz|ве|sc=Cyrl}}
-* Icelandic: {{t+|is|hundur|m}}
-* Ido: {{qualifier|♂♀}} {{t+|io|hundo|xs=Ido}}, {{qualifier|♂}} {{t+|io|hundulo|xs=Ido}}, {{qualifier|♀}} {{t+|io|hundino|xs=Ido}}
-* Igbo: {{tø|ig|n'kita}}
-* Ilocano: {{tø|ilo|aso}}
-* Inari Sami: {{tø|smn|peenuv}}
-* Indonesian: {{t|id|anjing}}
-*: Acehnese: {{t|ace|asèë}}
-*: Balinese: {{t|ban|cicing}}
-*: Banjarese: {{t|bjn|hadupan}}
-*: Buginese: {{t|bug|asu}}
-*: Javanese: {{t|jv|asu}}
-*: Madurese: {{t|mad|pateʔ}}
-*: Minangkabau: {{t|min|anjiang}}
-*: Sundanese: {{t|su|anjing}}
-* Ingush: {{tø|inh|жӀали|tr=žˤali|sc=Cyrl}}
-* Interlingua: {{t|ia|can}}
-* Inuktitut: [[ᕿᒻᒥᖅ]], [[qimmiq]]
-*: [[Inuinnaqtun]]: [[qinmiq]]
-*: West Inuktitun: [[qingmiq]]
-* Irish: {{t+|ga|madra|m|xs=Irish}}, {{t+|ga|gadhar|m|xs=Irish}}, {{t+|ga|madadh|m|xs=Irish}}
-* Isthmus Zapotec: [[biʼcuʼ]]
-* Italian: {{t+|it|cane|m}}
-* Itelmen: {{tø|itl|ӄосҳ}}, {{tø|itl|ӄсҳай}}, {{qualifier|plural}} {{tø|itl|ӄсҳa’н}}
-* Japanese: {{t+|ja|犬|tr=[[いぬ]], inu}}
-* Jèrriais: {{tø|roa-jer|tchian|m}}
-* Kabardian: {{tø|kbd|хьэ}}
-* Kalaallisut: [[qimmeq]]
-* Kalmyk: {{tø|xal|ноха}}
-* Kannada: {{t|kn|ನಾಯಿ |tr=nāyi|sc=Knda}}
-* Kapampangan: {{tø|pam|asu}}
-* Karachay-Balkar: {{tø|krc|ит|sc=Cyrl}}
-* Karakalpak: {{tø|kaa|iyt}}
-* Karata: {{tø|kpt|хвай|sc=Cyrl}}
-* Karelian: {{tø|krl|koira}}
-* Kashubian: {{t|csb|tósz}}
-* Kazakh: {{t-|kk|ит|tr=ît|sc=Cyrl|xs=Kazakh}}
-* Ket: {{tø|ket|tīp}}
-* Khakas: {{tø|kjh|адай|sc=Cyrl}}
-* Khanty: {{tø|kca|амп|tr=amp}}
-* Khinalug: {{tø|kjj|пхра|sc=Cyrl}}
-* Khmer: {{t|km|ឆ្កែ|tr=chkae|sc=Khmr}}
-* Kickapoo: [[ə́nɛ̏mwə̏]]
-* Kildin Sami: {{tø|sjd|пе̄ннэ}}
-* Kinyarwanda: {{t|rw|bwa}}
-* Klallam: [[sqáx̣əʔ]]; [[sqməy̕]]
-* Klamath-Modoc: [[waṣ̓a·k]]
-* Komi-Permyak: {{tø|koi|пон}}
-* Komi-Zyrian: {{tø|kpv|пон}}
-* Kongo: {{tø|kg|mbwa}}
-* Konkani: {{tø|kok|सूणे|tr=sūṇe}}
-* Korean: {{t|ko|개|tr=gae|sc=Hang}}, {{t|ko|견|tr=gyeon|sc=Hang}} ({{t|ko|犬}}), {{t|ko|구|tr=gu|sc=Hang}} ({{t|ko|狗}})
-* Koryak: {{tø|kpy|г'ытг'ын|tr=ʕǝtʕǝn}}, {{qualifier|plural}} {{tø|kpy|г'ытг'у|tr=ʕǝtʕu}}
-* Kumyk: {{tø|kum|ит}}
-* Kuna: [[achu]]
-* Kurdish:
-*: Kurmanji: {{t|ku|se}}, [[kûç]], [[kûçik]]
-*: Sorani: {{t|ku|سه‌گ|sc=ku-Arab}}
-* Kyrgyz: {{t|ky|ит|sc=Cyrl}}
-* Ladin: [[cian#Ladin|cian]]
-* Ladino: {{tø|lad|פירו|tr=pero}}
-* Lak: {{tø|lbe|ккаччи}}
-* Lakota: [[šúŋka]]
-{{trans-mid}}
-* Lao: {{t|lo|ໝາ|tr=maa|sc=Laoo}}
-* Latgalian: {{tø|ltg|suņs|m}}
-* Latin: {{t+|la|canis|c}}
-* Latvian: {{t+|lv|suns|m|xs=Latvian}}, {{t|lv|kuce|f}}
-* Lenape:
-*: Munsee: {{tø|umu|mwaakaneew}}
-*: Unami: {{tø|unm|mwekane}}
-* Lezgi: {{tø|lez|кицӀ|sc=Cyrl}}
-* Limburgish: {{t|li|hóndj}}
-* Lingala: {{t|ln|mbwá}}
-* Lithuanian: [[šuo]] {{m}}, [[šuva]] {{m}} {{qualifier|colloquial}}, {{t-|lt|kalė|f|xs=Lithuanian}}
-* Livonian: {{tø|liv|piņ}}
-* Lojban: [[gerku]]
-* Low Saxon: {{t|nds|Hund|m}}, {{qualifier|colloquial}} {{t|nds|Köter|m}}
-* Luhya: {{tø|luy|imbwa}}
-* Luxembourgish: {{t|lb|Hond|m}}, {{t|lb|Mupp|m}}, {{t|lb|Mudder|f}}
-* Maasai: {{tø|mas|oldia}}
-* Macedonian: {{t-|mk|куче|n}}, {{t-|mk|пес|m|tr=pes}}
-* Mainstream Kenyah: {{tø|xkl|acu`}}
-* Malagasy: {{t|mg|alika}}
-* Malay: {{t|ms|anjing}}, {{t|ms|asu}} {{qualifier|unused}}, {{t|ms|kuyuk}} {{qualifier|unused}}
-* Malayalam: {{t|ml|നായ|tr=naaya|sc=Mlym}}, {{t|ml|പട്ടി|tr=patti|sc=Mlym}}
-* Malecite-Passamaquoddy: {{tø|pqm|olomuss|s}}, {{tø|pqm|olomussok|p}}, {{tø|pqm|'tolomussomol}} {{qualifier|possessed}}, {{tø|pqm|olomussis}} {{qualifier|diminutive}}
-* Maltese: {{t|mt|kelb|m}}, {{t|mt|kelba|f}}
-* Manchu: {{tø|mnc|indahūn}}
-* Mansi: {{tø|mns|āмп|tr=amp}}
-* Manx: {{t|gv|moddey}}, {{t|gv|coo}}
-* Maori: {{t-|mi|kurī}}
-* Mapudungun: {{tø|arn|xewa}}
-* Marathi: {{t|mr|कुत्रा|tr=kutra|sc=Deva}}
-* Mari: {{tø|chm|пий}}
-* Maricopa: {{tø|mrc|xat}}
-* Mayo: [[čū’u]]
-* Mbabaram: [[dog#Mbabaram|dog]]
-* Mende: {{tø|men|ngílà}}
-* Mi'kmaq: {{tø|mic|lmu'j}} / {{tø|mic|nmu'j|s}}, {{tø|mic|lmu'jig}} / {{tø|mic|nmu'jig|p}}, {{tø|mic|lmu'ji'j}} / {{tø|mic|nmu'ji'j}} {{qualifier|diminutive}}, {{tø|mic|lmu'jl}} / {{tø|mic|nmu'jl}} (''indef.'')
-* Miami-Illinois: [[alemwa]]
-* Middle Breton: {{tø|xbm|ci|m}}
-* Middle Dutch: {{tø|dum|hont|m}}
-* Middle English: {{tø|enm|dogge}}
-* Middle High German: {{tø|gmh|hunt}}
-* Middle Low German: {{tø|gml|hund}}
-* Mingo: [[tsíyæ]] {{s}}, [[tsiyæshö'ö]] {{p}}
-* Miwok: [[hajūṣa]]
-* Miyako: {{tø|mvi|イン|tr=in}}
-* Mohawk: [[ěrhar]]
-* Moksha: {{tø|mdf|пине}}
-* Mongolian: {{t+|mn|нохой|tr=nohoĭ|sc=Cyrl|xs=Mongolian}}
-* Montagnais: {{tø|moe|atimᵘ}}
-* Muslim Tat: {{tø|ttt|сэг}}
-* Nahuatl: [[chichi]]; [[itzcuintli]]
-* Nama: {{tø|naq|arib}}
-* Nanai: {{tø|gld|инда}}
-* Naskapi: [[atim]]
-* Nauruan: {{t|na|robar}}
-* Navajo: {{tø|nv|łééchąąʼí}}
-* Nenets: {{tø|yrk|вэʼ|tr=vė|sc=Cyrl}}, {{tø|yrk|вэʼн|tr=vėn|sc=Cyrl}}, {{tø|yrk|вэнеко|tr=vėneko|sc=Cyrl}}
-* Nepali: {{t|ne|कुकुर|tr=kukur|m|sc=Deva}}, {{t|ne|कुकुरनी|tr=kukurnī|f|sc=Deva}}
-* Nganasan: {{tø|nio|баӈ}}, {{tø|nio|bang}}
-* Nivkh: {{tø|niv|ӄан|tr=qan}}
-* Nogai: {{tø|nog|ийт|sc=Cyrl}}
-* Northern Yukaghir: {{tø|ykg|лаамэ}}
-* Norwegian: {{t+|no|hund|m}}, {{t+|no|bikkje|f}}
-* Novial: {{qualifier|♂♀}} {{tø|nov|hunde|s}}, {{tø|nov|hundes|p|}}, {{qualifier|♂}} {{tø|nov|hundo|s}}, {{tø|nov|hundos|p}}, {{qualifier|♀}} {{tø|nov|hunda|s}}, {{tø|nov|hundas|p}}
-* O'odham: [[gogs]]
-* Occitan: {{t+|oc|gos|xs=Occitan}}, {{t+|oc|can|xs=Occitan}}
-* Ojibwe: [[ᐊᓂᒧᔥ]] ([[animosh]]) {{s}}, [[ᐊᓂᒧᔕᒃ]] ([[animoshag]]) {{p}}
-* Okinawan: {{tø|ryu|いん|tr=ʔin}}
-* Old Church Slavonic: {{tø|cu|пьсъ|m|tr=pĭsŭ|sc=Cyrs}}
-* Old English: {{t-|ang|hund}}, {{t-|ang|docga}}
-* Old French: [[chen]] {{m}}, {{tø|fro|chien|m}}
-* Old Frisian: [[hund]]
-* Old High German: {{tø|goh|hunt}}
-* Old Irish: {{tø|sga|cú|m}}; {{tø|sga|matad|m}}
-* Old Norse: [[hundr]] {{m}}, [[grey]] {{n}}, [[bikkja]] {{f}}
-* Old Prussian: [[Sunis]]
-* Old Saxon: {{tø|osx|hund}}
-* Osage: {{tø|osa|šóᴺke}}
-* Ossetian: {{tø|os|куыдз|tr=kuydz|sc=Cyrl}}
-* Papiamentu: {{tø|pap|kachó}}
-* Pashto: {{t|ps|سپۍ |tr=spəy|sc=ps-Arab}}
-* Persian: {{t|fa|سگ|tr=sag|alt=سَگ|sc=fa-Arab}}
-* Pitjantjatjara: [[papa]]
-* Polish: {{t+|pl|pies|m}}, {{t+|pl|suka|f}}
-* Portuguese: {{t+|pt|cão|m}}, {{t+|pt|cadela|f}}, {{t+|pt|cachorro|m}}, {{t+|pt|cachorra|f}}
-* Powhatan: [[atemos]]
-* Punjabi: {{t|pa|ਕੁੱਤਾ|tr=kuttā|sc=Guru}}
-* Quechua: {{t|qu|alkho}}, {{t|qu|allqu}}
-* Quileute: [[kadí·do]]
-* Rapa Nui: [[paihéŋa]]
-* Rohingya: [[kutta]]
-* Romani: [[zhukel]] {{m}}, [[zhuklyi]] {{f}}
-* Romanian: [[câine]] {{qualifier|current orthography}}, [[cîine]] (''1950s orthography''), {{t|ro|câini|m|p}}
-* Romansch: [[chaun]], [[tgaun]]
-* Russian: {{t+|ru|собака|f|tr=sobáka}}, {{t+|ru|пёс|m|tr=pjos}}, {{qualifier|colloquial}} {{t+|ru|псина|f|tr=psína}}
-* Rutul: {{tø|rut|тыла|sc=Cyrl}}
-* Sami: [[beana]]
-* Samoan: {{t|sm|maile}}
-* Sanskrit: {{t-|sa|श्वन्|m|tr=śván|sc=Deva}}
-* Santali: {{tø|sat|ᱥᱮᱛᱚ|tr=seta|sc=Olck}}
-* Sardinian: [[cani]] / [[cane#Sardinian|cane]], [[perru]], [[catteddu]]
-* Scottish Gaelic: [[cù]] {{m}}, [[madadh]] {{m}}
-* Serbian: [[pas#Serbian|pas]] {{m}}, [[kučka]] {{f}}, [[kuče]] {{m}}, [[kuca]] {{f}} (dim.), [[džukela]] {{f}}
-* Seri: [[ʔɑχʃ]]
-* Shan: {{tø|shn|မႃ|tr=maa}}
-* Sherpa: {{tø|xsr|कि |tr=ki}}
-* Shona: {{t|sn|imbwá}}
-* Shor: {{tø|cjs|адай}}, {{tø|cjs|ит}}
-* Shoshone: [[sadee’]]
-* Sichuan Yi: {{tø|ii|ꈌ|tr=ke}}
-* Sicilian: {{t+|scn|cani|m|xs=Sicilian}}
-* Sindhi: {{t|sd|ڪتو |tr=kuto|sc=sd-Arab}}
-* Sinhalese: {{t|si|බල්ලා|sc=Sinh}}, {{t|si|සුනඛයා|sc=Sinh}}, {{t|si|බැල්ලී|f|sc=Sinh}}, {{t|si|බැල්ලී|f|sc=Sinh}}, {{t|si|සුනඛයා|sc=Sinh}}
-* Skolt Sami: {{tø|sms|piânnai}}
-* Slovak: {{t+|sk|pes|m}}, {{t-|sk|suka|f}}
-* Slovene: {{t+|sl|pes|m}}, {{t+|sl|psica|f}}
-* Somali: {{t|so|eey}}, {{t|so|ey}}
-* Sorbian:
-*: Lower Sorbian: {{tø|dsb|pjas|m}}
-*: Upper Sorbian: {{tø|hsb|pos|m|xs=Upper Sorbian}}, {{tø|hsb|psyk|m|xs=Upper Sorbian}}
-* Sotho: {{t+|st|ntja}}
-* Southern Altai: {{tø|alt|ийт}}
-* Southern Puebla Mixtec: {{tø|mit|tsi'ína|tr=aydi}}
-* Spanish: {{t+|es|perro|m}}
-* Sumerian: {{tø|sux|𒌨|tr=UR|sc=Xsux}}
-* Swahili: [[mbwa]] {{s}}/{{p}} (''noun 9/10'')
-* Swati: {{t|ss|î-njá}}
-* Swedish: {{t+|sv|hund|c}}, {{t|sv|hynda|f|c}}
-* Tabassaran: {{tø|tab|ху}}
-* Tachelhit: {{tø|shi|aydi|m|sc=Latinx|xs=Tachelhit}}
-* Tagalog: [[aso]]
-* Tahitian: {{tø|ty|ʻurī}}, {{tø|ty|ʻūrī}}
-* Tajik: {{t-|tg|саг|tr=sag|sc=Cyrl|xs=Tajik}}, {{t-|tg|кучук|tr=kučuk|sc=Cyrl|xs=Tajik}}
-* Talysh: {{tø|tly|сыпа|tr=sypa}}
-* Tamil: {{t+|ta|நாய்|tr=naay|xs=Tamil}}
-* Taos: [[cùlo’óna]]
-* Tatar: {{t+|tt|эт|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t+|te|కుక్క|tr=kukka}}, {{t+|te|శునకము}}
-* Thai: {{t|th|หมา|tr=mǎa|sc=Thai}}, {{t|th|สุนัข|tr=sùnák|sc=Thai}}
-* Tibetan: {{t|bo|ཁྱི|tr=kiy|sc=Tibt}}
-* Tigrinya: {{t|ti|ከልቢ|tr=kälbi|sc=Ethi}}
-* Tindi: {{tø|tin|хва|sc=Cyrl}}
-* Tlingit: [[kèƛ]]
-* Tok Pisin: {{t|tpi|dok}}
-* Tongan: {{t|to|kulī }}
-* Tonkawa: [[ˀɛkʷʌn]]
-* Tsakhur: {{tø|tkr|хва|sc=Cyrl}}
-* Tsez: {{tø|ddo|гъІвай|sc=Cyrl}}, {{tø|ddo|бахІри|sc=Cyrl}}
-* Tswana: {{t-|tn|ntša|xs=Tswana}} (9/10)
-* Tulu: {{tø|tcy|ನಾಯಿ |tr=nAyi}}
-* Tupinambá: [[îagûara]]
-* Turkish: {{t+|tr|köpek}}, {{t+|tr|it}}
-* Turkmen: {{t|tk|it}}
-* Tuvan: {{tø|tyv|ыт}}
-* Twi: {{t|tw|kraman}}
-* Tz'utujil: [[tz'i'|tz’i’]]
-* Uab Meto: {{tø|aoz|asu}}
-* Udi: {{tø|udi|хаъ|sc=Cyrl}}
-* Udmurt: {{tø|udm|пуны}}
-* Ukrainian: {{t+|uk|собака|m|f|tr=sobáka|xs=Ukrainian}}<!-- mainly masculine, unlike the Russian word-->, {{t+|uk|пес|m|tr=pes|xs=Ukrainian}}
-* Urdu: {{t|ur|کتا|m|tr=kuttā|sc=ur-Arab}}, {{t|ur|کلب|tr=kalb|sc=ur-Arab}}, {{t|ur|سگ|m|tr=sag|sc=ur-Arab}}
-* Uyghur: {{t+|ug|ئىت|sc=ug-Arab|xs=Uyghur}}, {{t|ug|it|sc=ug-Arab}}, {{t|ug|ит|sc=ug-Arab}}
-* Uzbek: {{t|uz|it}}
-* Venetian: {{tø|vec|can|m}}
-* Veps: {{tø|vep|koir}}
-* Vietnamese: {{t+|vi|chó}}
-* Vilamovian: {{tø|wym|hund}}
-* Volapük: {{qualifier|♂♀}} {{t+|vo|dog}}, {{qualifier|♂}} {{t|vo|hidog}}, {{qualifier|♀}} {{t|vo|jidog}}, {{qualifier|♂♀ offspring}} {{t|vo|dogül}}, {{qualifier|♂ offspring}} {{t|vo|hidogül}}, {{qualifier|♀ offspring}} {{t|vo|jidogül}}, {{qualifier|diminutive ♂♀}} {{t|vo|dogil}}, {{qualifier|augmentative ♂♀}} {{t|vo|ledog}}, {{qualifier|castrated ♂}} {{t|vo|hodog}}, {{qualifier|spayed ♀}} {{t|vo|jodog}}
-* Votic: {{tø|vot|koira}}
-* Võro: [[pini]]
-* Waray-Waray: {{tø|war|ayam}}, {{tø|war|idó}}
-* Warlpiri: [[maliki]]
-* Welsh: {{t+|cy|ci|m}}
-*: Middle Welsh: {{tø|wlm|ki|m}}
-* West Coast Bajau: {{tø|bdr|owa'}}, {{tø|bdr|oa'}}
-* West Frisian: {{t+|fy|hûn|c}}
-* Western Maninkakan: {{tø|mlq|wulu}}
-* Wolof: {{t+|wo|xaj|xs=Wolof}}
-* Xhosa: {{t|xh|inja}}
-* Yakut: {{tø|sah|ыт|tr=ıt|sc=Cyrl}}
-* Yiddish: {{t+|yi|הונט|m|tr=hunt}}, {{t|yi|הינט|p|tr=hint}}
-* Yoruba: {{t|yo|ajá}}
-* Yucatec Maya: [[peek’]]
-* Yuchi: [[tsɛnɔ̣]]
-* Yup'ik: [[qimugta]] {{s}}, [[qimugtak]] ''dual'', [[qimugtat]] {{p}}
-* Zazaki: {{tø|zza|kutık m}}
-* Zulu: [[inja]] ''(nc 9)''
-* Záparo: {{tø|zro|ariawko}}
-{{trans-bottom}}
-
-{{trans-top|male canine}}
-* Afrikaans: {{t|af|reun|m|xs=Afrikaans}}
-* Aramaic:
-*: Syriac: [[ܟܠܒܐ]] (kalbā’) {{m}}
-*: Hebrew: [[כלבא]] (kalbā’) {{m}}
-* Bulgarian: {{t+|bg|пес|m}}
-* Czech: {{t|cs|pes|m}}
-* Dutch: {{t+|nl|reu|m}}
-* Eshtehardi: {{tø|esh|اسپ|alt=اِسپَ|tr=espa|sc=fa-Arab}}
-* Esperanto: {{t-|eo|virhundo|m}}, {{qualifier|neologism ♂}} {{t-|eo|hundiĉo}}
-* French: {{t+|fr|chien|m}}
-* German: {{t+|de|Rüde|m}}
-* Greek: {{t+|el|σκύλος|m}}, {{t|el|κύνας|m}}
-* Hindi: {{t|hi|कुत्ता |m|tr=kutta}}
-* Interlingua: {{t|ia|can}}
-* Italian: {{t+|it|cane|m}}
-* Japanese: {{t|ja|牡犬|tr=osu-inu}}, {{t|ja|雄犬|tr=osu-inu}}
-* Khmer: {{t|km|ឆ្កែបា|sc=Khmr|tr=chkae baa}}
-* Latvian: {{t|lv|suns|m}}
-* Lithuanian: {{t+|lt|šuo|m|xs=Lithuanian}}
-* Lojban: {{t-|jbo|gerku|xs=Lojban}}
-* Luhya: {{tø|luy|imbwa}}
-* Luxembourgish: {{t|lb|Hond|m}}, {{t|lb|Mupp|m}}
-{{trans-mid}}
-* Malay: {{t|ms|anjing jantan}}, {{t|ms|asu jantan}}, {{t|ms|kuyuk jantan}}
-* Marathi: {{t|mr|कुत्रा|m|tr=kutra|sc=Deva|xs=Marathi}}
-* Mongolian: {{t+|mn|нохой|tr=nohoĭ|sc=Cyrl|xs=Mongolian}}
-* Novial: {{tø|nov|hundo|s|xs=Novial}}, {{tø|nov|hundos|p|xs=Novial}}
-* Ojibwe: [[naabesim]], [[naabesimoog]] {{p}}
-* Old French: {{tø|fro|chien|m}}
-* Persian: {{t+|fa|سگ|tr=sag|xs=Persian}}
-* Polish: {{t+|pl|pies|m}}
-* Portuguese: {{t+|pt|cão|m}}, {{t+|pt|cães|p}}, {{t|pt|cachorro|m}}, {{t|pt|cachorro|m}}
-* Romani: [[zhukel]] {{m}}
-* Romanian: {{t+|ro|câine|m}}
-* Russian: {{t+|ru|кобель|m|tr=kobél’}}, {{t+|ru|пёс|m|tr=pjos}}
-* Sicilian: {{t+|scn|cani|m|xs=Sicilian}}
-* Slovene: {{t+|sl|pes|m}}
-* Spanish: {{t+|es|perro|m}}
-* Sundanese: {{t-|su|asu|xs=Sundanese}}
-* Swahili: {{t+|sw|mbwa|xs=Swahili}}
-* Talysh: {{tø|tly|сыпа|tr=sypa}}
-* Tamil: [[நாய்]] (nāy)
-* Telugu: {{t+|te|మగకుక్క|tr=maga-kukka}}
-* Ukrainian: {{t+|uk|пес|m|tr=pes|xs=Ukrainian}}, {{t+|uk|собака|f|tr=sobáka|xs=Ukrainian}}
-* Volapük: {{t|vo|hidog}}, {{qualifier|castrated}} {{t|vo|hodog}}
-{{trans-bottom}}
-
-{{trans-top|dull, unattractive girl or woman}}
-* French: {{t+|fr|thon|m}}
-* Japanese: {{t|ja|ぶす|tr=busu|sc=Jpan}}
-* Portuguese: {{t|pt|cachorra|f}}
-{{trans-mid}}
-* Russian: {{t+|ru|крокодил|m|tr=krokodil}}, {{t+|ru|жаба|f|tr=žába}}
-* Swahili: {{t+|sw|mbwa|xs=Swahili}}
-{{trans-bottom}}
-
-{{trans-see|slang: man; see [[guy]]|guy}}
-{{trans-top|morally reprehensible person, ''See also [[scoundrel]]''}}
-* French: {{t+|fr|chien|m}}
-* German: {{t+|de|Hund|m}}
-* Interlingua: [[can#Interlingua|can]]
-* Italian: {{t+|it|cane|m}}
-* Japanese: {{t|ja|悪党|tr=あくとう, akutō|sc=Jpan}}
-* Korean: {{t|ko|개같은놈|tr=gaegateunnom|sc=Kore}}
-{{trans-mid}}
-* Luxembourgish: {{t|lb|Hond|m}}
-* Romanian: {{t+|ro|câine|m}}
-* Russian: {{t+|ru|негодяй|m|tr=negodjáj}}, {{t|ru|негодяйка|f|tr=negodjájka}}, {{t+|ru|подлец|m|tr=podléts}}, {{t|ru|подлая|f|tr=pódlaja}}
-* Spanish: {{t+|es|perro|m}}
-* Swahili: {{t+|sw|mbwa|xs=Swahili}}
-{{trans-bottom}}
-
-{{trans-see|hinged catch|pawl}}
-{{trans-see|metal support for logs|andiron}}
-
-====See also====
-* {{specieslite|Canis}}
-* {{commonslite|Dog}}
-* {{topicsee|en|canids}}
-* [[canine]]
-* [[cynomorphic]]
-* [[cynomorphism]]
-* [[flea bag]]
-
-====References====
-* Weisenberg, Michael (2000) ''[http://www.poker1.com/mcu/pokerdictionary/mculib_dictionary_info.asp The Official Dictionary of Poker].'' MGI/Mike Caro University. ISBN 978-1880069523
-
-===Verb===
+dog:
+{slim-wikipedia}A dog (a Labrador retriever)
+<h3>Alternative forms</h3>
+<ul><li> darg {{qualifier|dialectical}}</li>
+<li> dawg {{qualifier|dialectical}}</li>
+<li> doggie {{qualifier|childish}}</li>
+<li> doggy {{qualifier|childish}}</li>
+</ul>
+
+<h3>Pronunciation</h3>
+<ul><li> {{a|RP}} {{IPA|/dɒɡ/}}, {{X-SAMPA|/dQg/}}</li>
+<li> {{a|US}} {{IPA|/dɔɡ/}}, {{X-SAMPA|/dOg/}}</li>
+<li> {{a|US}} also {{IPA|/dɑɡ/}}, {{X-SAMPA|/dAg/}}</li>
+<li> {{audio|en-us-dog.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-a dog.ogg|Audio (UK)}}</li>
+<li> {{rhymes|ɒɡ}}</li>
+</ul>
+
+<h3>Etymology</h3>
+From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound, powerful breed of dog|lang=ang}}, a pet-form diminutive of {{etyl|ang|-}} {{recons|docce|docce|muscle|lang=ang}} (found in compound {{term|fingerdocce|finger-muscle|lang=ang}} with suffix {{term|-ga|-ga|lang=ang}} (compare {{term|frocga|frog|lang=ang}}, {{term|picga|pig|lang=ang}}), from {{proto|Germanic|dukkōn|power, strength, muscle|lang=en}}. More at dock. In the 16th century, it superseded {{etyl|ang|-}} {{term|hund|lang=ang}} and was adopted by many continental European languages.
+<h3>Noun</h3>
+{en-noun}
+<ol><li> An animal, member of the genus <em>Canis</em> (probably descended from the common wolf) that has been domesticated for thousands of years; occurs in many breeds. Scientific name: <em>Canis lupus familiaris</em>.</li>
+<ul><li> <em>The <b>dog</b> barked all night long.</em></li>
+</ul>
+<li> A male dog, wolf or fox, as opposed to a bitch (a female dog, wolf or fox).</li>
+<li> {derogatory} A dull, unattractive girl or woman.</li>
+<ul><li> <em>She’s a real <b>dog</b>.</em></li>
+</ul>
+<li> {slang} A man.</li>
+<ul><li> <em>You lucky <b>dog</b>!</em></li>
+</ul>
+<li> {slang} A coward</li>
+<ul><li> <em>Come back and fight you <b>dogs</b>!</em></li>
+</ul>
+<li> {derogatory} Someone who is morally reprehensible.</li>
+<ul><li> <em>You dirty <b>dog</b>.</em></li>
+<li> <b>1599</b> — Robert Greene, <em>Alphonsus, King of Aragon</em> (1599). Act 3.</li>
+<ul><li> Blasphemous <b>dog</b>, I wonder that the earth</li>
+<li> Doth cease from renting vnderneath thy feete,</li>
+<li> To swallow vp those cankred corpes of thine.</li>
+</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>
+<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>
+<ul><li> <em>The <b>dogs</b> were too hot to touch.</em></li>
+<li> <b>1902</b>, Arthur Conan Doyle, <em>The Hound of the Baskervilles</em></li>
+<ul><li> In the great old-fashioned fireplace behind the high iron <b>dogs</b> a log-fire crackled and snapped.</li>
+</ul>
+</ul>
+<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>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|scientific names of animal}} <em>Canis familiaris</em>, <em>Canis domesticus</em>, <em>Canis familiarus domesticus</em>, <em>Canis canis</em>, <em>Canis aegyptius</em>, <em>Canis familiarus aegyptius</em>, <em>Canis melitaeus</em>, <em>Canis familiarus melitaeus</em>, <em>Canis molossus</em>, <em>Canis familiarus molossus</em>, <em>Canis saultor</em>, <em>Canis familiaris saultor</em></li>
+<li> {{sense|animal}} See also Wikisaurus:dog, domestic dog, hound, canine</li>
+<li> {{sense|man}} See also Wikisaurus:man, bloke {{qualifier|British}}, chap {{qualifier|British}}, dude, fellow, guy, man</li>
+<li> {{sense|morally reprehensible person}} cad, bounder, blackguard, fool, hound, heel, scoundrel</li>
+<li> {{sense|mechanical device}} click, detent, pawl</li>
+<li> {{sense|metal support for logs}} andiron, firedog, dogiron</li>
+</ul>
+
+<h4>Coordinate terms</h4>
+<ul><li> {{sense|male adult dog}} bitch, pup, puppy</li>
+</ul>
+
+<h4>Hyponyms</h4>
+<ul><li> {{sense|animal}} Afghan hound, bloodhound, chihuahua, coonhound, dachshund, deerhound, foxhound, gazehound, German shepherd, greyhound, hound, Irish Wolfhound, Norwegian Elkhound, otterhound, pointer, poodle, retriever, Russian Wolfhound, scenthound, setter, sheepdog, shepherd, sighthound, spaniel, staghound, terrier, wolfhound</li>
+</ul>
+
+<h4>Hypernyms</h4>
+<ul><li> {{sense|animal}} canid</li>
+</ul>
+
+<h4>Derived terms</h4>
+{{rel-top3|Terms derived from <em>dog</em> (noun)}}
+<ul><li> a dog's chance</li>
+<li> a dog's breakfast</li>
+<li> a dog's dinner</li>
+<li> a dog's life</li>
+<li> Alsatian dog</li>
+<li> as sick as a dog</li>
+<li> assistance dog</li>
+<li> attack dog</li>
+<li> avalanche dog</li>
+<li> avalanche rescue dog</li>
+<li> barking dogs seldom bite</li>
+<li> be like a dog with two tails</li>
+<li> be top dog</li>
+<li> be top the dog</li>
+<li> Beware of dog!</li>
+<li> Beware of the dog!</li>
+<li> Big Dog</li>
+<li> bird dog</li>
+<li> bottom dog</li>
+<li> brace of dogs</li>
+<li> bulldog</li>
+<li> bulldog breeder</li>
+<li> cadaver dog</li>
+<li> Canaan dog</li>
+<li> cash-sniffing dog</li>
+<li> cat-and-dog</li>
+<li> cattle dog</li>
+<li> clever old dog</li>
+<li> companion dog</li>
+<li> corndog</li>
+<li> cunning dog</li>
+<li> designer dog</li>
+<li> diner's dog</li>
+<li> dirty dog</li>
+<li> dog accessories</li>
+<li> dog accessory</li>
+<li> dog act</li>
+<li> dog and pony show</li>
+<li> dog-ape, dog ape</li>
+<li> dog ass</li>
+<li> dog attack</li>
+<li> dog bed</li>
+<li> dogbane</li>
+<li> dogbane family</li>
+<li> dog basket</li>
+<li> dogberry</li>
+<li> Dogberry</li>
+<li> dogberryism, Dogberryism</li>
+<li> dog biscuit</li>
+<li> dog-bite, dog bite</li>
+<li> dog-bludgeoner</li>
+<li> dog book</li>
+<li> dog bootie</li>
+<li> dog booties</li>
+<li> dog bowl</li>
+<li> dog box</li>
+<li> dog breed</li>
+<li> dog breeder</li>
+<li> dog breeding</li>
+<li> dog cadaver</li>
+<li> dog care</li>
+<li> dogcart</li>
+<li> dogcatcher, dog-catcher</li>
+<li> dogcatching</li>
+<li> dogcheap</li>
+<li> dog claw</li>
+<li> dog clothes</li>
+<li> dog clothing</li>
+<li> dog club</li>
+<li> dog clutch</li>
+<li> dog coat</li>
+<li> dog collar</li>
+<li> dog coupling</li>
+<li> dog crate</li>
+<li> dog curtain</li>
+<li> dog daisy</li>
+<li> dog dander</li>
+<li> dog dandruff</li>
+<li> dog-day cicada</li>
+<li> dog days</li>
+<li> dog diabetes</li>
+<li> dog dirt</li>
+<li> dogdom</li>
+<li> dog-doo</li>
+<li> dog door</li>
+<li> dog-ear, dog ear</li>
+<li> dog-eared</li>
+<li> dog-eared book</li>
+<li> dog-eared magazine</li>
+<li> dog eat dog</li>
+<li> dog-eat-dog</li>
+<li> dog-eat-dog society</li>
+<li> dog-end</li>
+<li> dog excrement</li>
+<li> dogface</li>
+<li> dog faeces</li>
+<li> dog family</li>
+<li> dog fancier</li>
+<li> dog fancy</li>
+<li> dog fancying</li>
+<li> dog fashion</li>
+<li> dog feces</li>
+<li> dog fennel</li>
+<li> dogfight</li>
+<li> dogfish</li>
+<li> dog flap</li>
+<li> dog flea</li>
+<li> dog flu</li>
+<li> dogfood, dog-food, dog food</li>
+<li> dog fox</li>
+<li> dogfought</li>
+<li> dog-friendly</li>
+<li> dog eat dog</li>
+<li> dog figurine</li>
+<li> dog fly</li>
+<li> dog fouling</li>
+<li> dogged</li>
+<li> dogged it</li>
+<li> doggedly</li>
+<li> doggedness</li>
+<li> dogger</li>
+<li> doggerel, doggrel, dogrel</li>
+<li> doggerel rhyme</li>
+<li> doggerel verse</li>
+<li> doggery</li>
+<li> doggie</li>
+<li> doggie do</li>
+<li> doggie door</li>
+<li> doggie paddle</li>
+<li> doggie-paddle</li>
+<li> doggie position</li>
+<li> doggier</li>
+<li> doggiest</li>
+<li> dogging</li>
+<li> doggish</li>
+<li> doggishly</li>
+<li> doggishness</li>
+<li> doggone</li>
+<li> doggoned</li>
+</ul>
+{rel-mid3}
+<ul><li> doggonedest</li>
+<li> doggrel</li>
+<li> dog groomer</li>
+<li> dog grooming</li>
+<li> doggy</li>
+<li> doggy bag</li>
+<li> doggy door</li>
+<li> doggy paddle</li>
+<li> doggy-paddle</li>
+<li> doggy person</li>
+<li> doggystyle, doggy-style</li>
+<li> doggystyle position</li>
+<li> dog hair</li>
+<li> dog handler</li>
+<li> dog harness</li>
+<li> doghead</li>
+<li> dog-headed</li>
+<li> dog hook</li>
+<li> doghouse, dog house</li>
+<li> dog hutch</li>
+<li> dog influenza</li>
+<li> dog in the manger</li>
+<li> dog-in-the-manger</li>
+<li> dogiron</li>
+<li> dog it</li>
+<li> dog kennel</li>
+<li> dog killer ( = canicide)</li>
+<li> dog Latin, Dog Latin</li>
+<li> dog lead, dog-lead</li>
+<li> dog leash, dog-leash</li>
+<li> dogleg</li>
+<li> dogleg fence</li>
+<li> doglegged</li>
+<li> dog-legged stair</li>
+<li> doglegging</li>
+<li> dogleg jack</li>
+<li> dog-leg stair</li>
+<li> dogless</li>
+<li> dog licence</li>
+<li> dog licence disc</li>
+<li> dog licence fee</li>
+<li> doglike</li>
+<li> doglike devotion</li>
+<li> dogling</li>
+<li> dogly</li>
+<li> dog lover</li>
+<li> dog magazine</li>
+<li> dog minder</li>
+<li> dog minding</li>
+<li> dog muzzle</li>
+<li> dog my cats</li>
+<li> dog nail</li>
+<li> dognap</li>
+<li> dognaped</li>
+<li> dognaper</li>
+<li> dognaping</li>
+<li> dognapped</li>
+<li> dognapper</li>
+<li> dognapping</li>
+<li> dognapping</li>
+<li> dognaps</li>
+<li> dog owner</li>
+<li> dog ownership</li>
+<li> dog pack</li>
+<li> dogpaddle</li>
+<li> dogpaddling</li>
+<li> dog paddle</li>
+<li> dog park</li>
+<li> dog parlor</li>
+<li> dog parlour</li>
+<li> dog patrol</li>
+<li> dog pen</li>
+<li> dog person</li>
+<li> dogpile</li>
+<li> dog poop</li>
+<li> dog pooper scooper, dog pooper-scooper</li>
+<li> dog poop scoop</li>
+<li> dogpoor</li>
+<li> dog portrait</li>
+<li> dog pound</li>
+<li> dog puppy</li>
+<li> dog racing</li>
+<li> dogrel</li>
+<li> dog robber</li>
+<li> dog run</li>
+<li> dogs</li>
+<li> dog salmon</li>
+<li> dogsbodied</li>
+<li> dogsbodies</li>
+<li> dogsbodying</li>
+<li> dogsbody</li>
+<li> dog's breakfast</li>
+<li> dog screw</li>
+<li> dog's dinner</li>
+<li> dog's dirt</li>
+<li> dog's disease</li>
+<li> dog's ear</li>
+<li> dogshit, dog shit</li>
+<li> dogshore</li>
+<li> dog show</li>
+<li> dog showing</li>
+<li> dogsitter, dog-sitter, dog sitter</li>
+<li> dogsitting, dog-sitting, dog sitting</li>
+<li> dog skull</li>
+<li> dogsled, dog-sled, dog sled</li>
+<li> dogsledder, dog-sledder, dog sledder</li>
+<li> dogsledding, dog-sledding, dog sledding</li>
+<li> dog sledge, dog-sledge</li>
+<li> dog sleigh</li>
+<li> dog's letter</li>
+<li> dog's life</li>
+<li> dog's meat</li>
+<li> dog's mess</li>
+<li> dog's mercury</li>
+<li> dog's muck</li>
+<li> dog's muzzle</li>
+<li> dog's nose</li>
+<li> dog somebody's steps</li>
+<li> dog's paw</li>
+<li> dog speak</li>
+<li> dog spike</li>
+<li> dog sport</li>
+<li> dog's skull</li>
+<li> dog's tail</li>
+<li> dog's-tail</li>
+<li> Dog Star</li>
+<li> dog's tongue</li>
+<li> dog's-tongue</li>
+<li> dog's-tooth</li>
+<li> dog's-tooth check</li>
+<li> dog tag</li>
+<li> dog tapeworm</li>
+<li> dog tax</li>
+<li> dog team / team of dogs</li>
+<li> dog tick</li>
+<li> dog-tired</li>
+<li> dogtooth, dog tooth</li>
+<li> dogtooth check</li>
+<li> dogtooth violet</li>
+<li> dog track</li>
+<li> dog train</li>
+</ul>
+{rel-mid3}
+<ul><li> dog trainer</li>
+<li> dog training</li>
+<li> dog training school</li>
+<li> dog treat</li>
+<li> dog treats</li>
+<li> dogtrot</li>
+<li> dog tucker</li>
+<li> dog turd</li>
+<li> dogvane</li>
+<li> dog violet</li>
+<li> dog walk</li>
+<li> dogwalker, dog-walker, dog walker</li>
+<li> dogwalking, dog-walking, dog walking</li>
+<li> dog warden</li>
+<li> dogwash</li>
+<li> dogwatch, dog watch</li>
+<li> dog whelk</li>
+<li> dogwhip, dog-whip</li>
+<li> dog whisperer</li>
+<li> dog whistle, dog-whistle</li>
+<li> dogwood</li>
+<li> dogwood family</li>
+<li> dogwood winter</li>
+<li> dog work</li>
+<li> dog world</li>
+<li> dog year</li>
+<li> Dog Years</li>
+<li> domestic dog</li>
+<li> domesticated dog</li>
+<li> double dog dare</li>
+<li> European dogwood</li>
+<li> every dog has its day</li>
+<li> feral dog</li>
+<li> firedog, fire dog</li>
+<li> fogdog</li>
+<li> four-legged dog</li>
+<li> give a dog a bad name</li>
+<li> give a dog a bad name and hang him</li>
+<li> go to the dogs</li>
+<li> Greater Dog</li>
+<li> guard dog</li>
+<li> guide dog</li>
+<li> gun dog</li>
+<li> hair of the dog</li>
+<li> hearing-ear dog</li>
+<li> hotdog, hot dog</li>
+<li> hot-dog</li>
+<li> hot-dogged</li>
+<li> hotdogger, hot-dogger</li>
+<li> hot-dogs</li>
+<li> house dog</li>
+<li> hunting dog</li>
+<li> in a dog's age</li>
+<li> in the dog box</li>
+<li> in the doghouse</li>
+<li> it is easy to find a stick to beat a dog</li>
+<li> junkyard dog</li>
+<li> lapdog, lap dog</li>
+<li> lazy dog</li>
+<li> lead a dog's life</li>
+<li> lead dog</li>
+<li> Lesser Dog</li>
+<li> let sleeping dogs lie</li>
+<li> lie doggo</li>
+<li> like a dog</li>
+<li> like a dog in heat / like a dog on heat</li>
+<li> like a dog's dinner</li>
+<li> like a dog with a bone</li>
+<li> little dog</li>
+<li> Little Dog</li>
+<li> lucky dog</li>
+<li> mad dog</li>
+<li> mountain dog</li>
+<li> one-legged dog</li>
+<li> pedigree dog</li>
+<li> pet dog</li>
+<li> pi-dog</li>
+<li> pie-dog</li>
+<li> police dog</li>
+<li> prairie dog</li>
+<li> puppy dog</li>
+<li> puppy-dog eyes, puppy dog eyes</li>
+<li> purebred dog</li>
+<li> purebreed dog</li>
+<li> put on the dog</li>
+<li> pye-dog</li>
+<li> raccoon dog</li>
+<li> railroad police dog</li>
+<li> railway police dog</li>
+<li> rain cats and dogs</li>
+<li> rescue dog</li>
+<li> Saint Bernard dog</li>
+<li> sausage dog</li>
+<li> seadog</li>
+<li> see a man about a dog</li>
+<li> seeing-eye dog</li>
+<li> service dog</li>
+<li> sheepdog, sheepdog</li>
+<li> show dog</li>
+<li> sick as a dog</li>
+<li> silk dog</li>
+<li> sled dog</li>
+<li> sled dog breed</li>
+<li> sled dog race</li>
+<li> sled dog racer</li>
+<li> sled dog racing</li>
+<li> sly dog</li>
+<li> smooth dogfish</li>
+<li> spiny dogfish</li>
+<li> spotted dogfish</li>
+<li> stray dog</li>
+<li> sundog, sun dog</li>
+<li> swing dog</li>
+<li> the dogs</li>
+<li> there's life in the old dog yet</li>
+<li> three-legged dog</li>
+<li> throw it to the dogs</li>
+<li> tinned dog</li>
+<li> top dog</li>
+<li> top dog behavior</li>
+<li> top dog behaviour</li>
+<li> toy dog</li>
+<li> toy dog breed</li>
+<li> two-legged dog</li>
+<li> underdog</li>
+<li> veggie dog</li>
+<li> war dog</li>
+<li> water dog</li>
+<li> wiener dog</li>
+<li> wild dog</li>
+<li> wise old dog</li>
+<li> working dog</li>
+<li> yard dog</li>
+<li> yellow dog</li>
+<li> you can't teach an old dog new tricks</li>
+<li> young dog</li>
+</ul>
+{rel-bottom}
+<h4>See also</h4>
+<ul><li> {{specieslite|Canis}}</li>
+<li> {{commonslite|Dog}}</li>
+<li> {{topicsee|en|canids}}</li>
+<li> canine</li>
+<li> cynomorphic</li>
+<li> cynomorphism</li>
+<li> flea bag</li>
+</ul>
+
+<h4>References</h4>
+<ul><li> Weisenberg, Michael (2000) <em>[http://www.poker1.com/mcu/pokerdictionary/mculib_dictionary_info.asp The Official Dictionary of Poker].</em> MGI/Mike Caro University. ISBN 978-1880069523</li>
+</ul>
+
+<h3>Verb</h3>
 {{en-verb|dog|g|ed}}
-
-# {{transitive}} To pursue with the intent to catch.
-# {{transitive}} To follow in an annoying way, to constantly be affected by.
-#: ''The woman cursed him so that trouble would '''dog''' his every step.''
-#* {{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 '''dogged''' Marcelo Bielsa's sides. }}
-# {{transitive|nautical}} To fasten a [[hatch]] securely.
-#: ''It is very important to '''dog''' down these hatches...''
-# {{transitive|emerging usage in|_|British}} To watch, or participate, in sexual activity in a public place, on the pretence of ''walking the dog''; see also [[dogging]].
-#: ''I admit that I like to '''dog''' at my local country park.''
-# {{intransitive|transitive}} To intentionally restrict one's productivity as employee; to work at the slowest rate that goes unpunished.
-#: ''A surprise inspection of the night shift found that some workers were '''dogging''' it.''
-# {{intransitive|with ''up''}} To position oneself on all fours, after the manner of a dog - probably related to [[doggy style]].
-#: ''I'd ask why you're dogged up in the middle of the room, but I probably don't want to know...''
-
-====Synonyms====
-* {{sense|to pursue with intent to catch}} [[chase]], [[chase after]], [[go after]], [[pursue]], [[tag]], [[tail]], [[track]], [[trail]]
-* {{sense|to restrict one's productivity}} [[soldier]], [[goldbrick]]
-
-===Anagrams===
-* [[god#English|god]], [[God#English|God]]
-
-[[Category:1000 English basic words]]
-[[Category:English three-letter words]]
-[[Category:en:Dogs| ]]
-[[Category:en:Mammals]]
-
-----
-
-
+<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>
+</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>
+</ul>
+<li> {{transitive|emerging usage in|_|British}} To watch, or participate, in sexual activity in a public place, on the pretence of <em>walking the dog</em>; see also dogging.</li>
+<ul><li> <em>I admit that I like to <b>dog</b> at my local country park.</em></li>
+</ul>
+<li> {{intransitive|transitive}} To intentionally restrict one's productivity as employee; to work at the slowest rate that goes unpunished.</li>
+<ul><li> <em>A surprise inspection of the night shift found that some workers were <b>dogging</b> it.</em></li>
+</ul>
+<li> {{intransitive|with <em>up</em>}} To position oneself on all fours, after the manner of a dog - probably related to doggy style.</li>
+<ul><li> <em>I'd ask why you're dogged up in the middle of the room, but I probably don't want to know...</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|to pursue with intent to catch}} chase, chase after, go after, pursue, tag, tail, track, trail</li>
+<li> {{sense|to restrict one's productivity}} soldier, goldbrick</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> god, God</li>
+</ul>
+Category:1000 English basic wordsCategory:English three-letter words Category:en:Mammals----
 ===dogs===
-rain cats and dogs: 
-
-===Etymology===
-Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά||lang=grc|tr=cata|against}} and {{term|δόξα||tr=doxa|lang=grc|opinion, expectation}}, but see Etymology in [[:Citations:rain cats and dogs#Etymology|Citations]]
-
-===Verb===
-{{en-verb|head=[[rain]] [[cat]]s and [[dog]]s|rains cats and dogs|raining cats and dogs|rained cats and dogs}}
-
-# {{idiomatic}} To [[rain]] very [[heavily]].
-
-====Synonyms====
-* {{sense|to rain very heavily}} [[bucket]], [[bucket down]], [[chuck it down]], [[rain buckets]], [[rain pitchforks]], [[pelt]], [[piss down]] {{qualifier|coarse slang}}, [[pour]], [[stream]], [[teem]]
-
-====Translations====
-{{trans-top|to rain very heavily}}
-* Arabic: {{t|ar|إنها تمطر بغزارة|tr='innahaa tumTir bi-ghazaara|sc=Arab}}
-* Catalan: {{t|ca|ploure a bots i barrals}}
-* Chinese:
-*: Mandarin: {{t|cmn|傾盆大雨|sc=Hani}},  {{t|cmn|倾盆大雨|tr=qīngpéndàyǔ|sc=Hani}}
-* Czech: {{t-|cs|lít jako z konve}}
-* Dutch: {{t|nl|pijpenstelen regenen}}, {{t|nl|regenen dat het giet}}
-* Finnish: {{t-|fi|sataa kaatamalla}}, {{t-|fi|sataa äkäisiä ämmiä äkeet selässä}}, {{t-|fi|sataa kuin saavista kaataen}}, {{t|fi|kuin esterin perseestä}}
-* French: {{t+|fr|pleuvoir des cordes}}, {{t+|fr|pleuvoir à verse}}, {{t+|fr|pleuvoir des hallebardes}}, {{t+|fr|pleuvoir comme vache qui pisse}}, {{qualifier|Québec}} {{t+|fr|pleuvoir à boire debout}}, {{qualifier|Belgium}} {{t+|fr|dracher}}
-* German: {{t+|de|Bindfäden regnen}}, {{t+|de|in Strömen regnen}}, {{t-|de|aus allen Kannen gießen}}, {{t-|de|aus allen Kannen schütten}}, {{t|de|wie aus Eimern schütten}}
-* Greek: {{t+|el|βρέχει καρεκλοπόδαρα}},  {{t|el|ρίχνει καρεκλοπόδαρα}},  {{t|el|βρέχει με το τουλούμι}}
-* Hungarian: {{t|hu|zuhog, mintha dézsából öntenék}}
-{{trans-mid}}
-* Icelandic: {{t|is|vera mígandi rigning}}, {{t|is|rigna eldi og brennisteini}}
-* Interlingua: [[pluver]] [[torrentialmente]]
-* Italian: {{t-|it|piovere a catinelle}}
-* Japanese: {{t|ja|土砂降りになる|tr=どしゃぶりになる, doshaburi-ni naru}}
-* Norwegian: {{t+|no|høljeregne}}
-* Polish: {{t-|pl|leje jak z cebra}}
-* Portuguese: {{qualifier|Portugal}} {{t+|pt|chover a cântaros}}, {{qualifier|Portugal}} {{t-|pt|chover a potes}}, [[chover]] [[torrencialmente]], {{qualifier|Brazil}} [[cair]] [[um]] [[toró]]
-* Romanian: {{t-|ro|a ploua cu găleata}}
-* Russian: {{t-|ru|лить как из ведра|tr=lit’ kak iz v'edrá}}
-* Spanish: {{t-|es|llover a cántaros}}
-* Swedish: {{t+|sv|ösregna}}, {{t+|sv|spöregna}}, {{t-|sv|stå som spön i backen}}
-* Turkish: {{t|tr|bardaktan boşalırcasına yağmak}}
-* Vietnamese: [[trời]] [[mưa]] [[như]] [[trút]]
-* Welsh: {{t|cy|bwrw hen wragedd â ffyn}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[rain dogs and cats#English|rain dogs and cats]]
-
-[[cy:rain cats and dogs]]
-[[de:rain cats and dogs]]
-[[et:rain cats and dogs]]
-[[es:rain cats and dogs]]
-[[fr:rain cats and dogs]]
-[[gl:rain cats and dogs]]
-[[ja:rain cats and dogs]]
-[[no:rain cats and dogs]]
-[[pl:rain cats and dogs]]
-[[pt:rain cats and dogs]]
-[[ru:rain cats and dogs]]
-[[sv:rain cats and dogs]]
-[[zh:rain cats and dogs]]
+rain cats and dogs:
+
+<h3>Etymology</h3>
+Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}} and {{term|δόξα|opinion, expectation|tr=doxa|lang=grc}}, but see Etymology in Citations
+<h3>Verb</h3>
+{{en-verb|rains cats and dogs|raining cats and dogs|rained cats and dogs|head=rain cats and dogs}}
+<ol><li> {idiomatic} To rain very heavily.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|to rain very heavily}} bucket, bucket down, chuck it down, rain buckets, rain pitchforks, pelt, piss down {{qualifier|coarse slang}}, pour, stream, teem</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> rain dogs and cats</li>
+</ul>
+cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs
 ===domain===
-Wiktionary:Public domain sources: 
+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].
+***eagle***
+eagle:
+Golden eagle (bird).
+<h3>Etymology</h3>
+{{etyl|enm}} {{term|egle|lang=enm}}, from {{etyl|xno}} {{term|egle|lang=xno}}, from {{etyl|fro}} {{term|aigle|lang=fro}}, from {{etyl|la}} {{term|aquila|lang=la}}. Displaced native Middle English {{term|earn|ern, earn, arn|lang=enm}}, from {{etyl|ang|-}} {{term|earn|lang=ang}}. More at {{term|erne|lang=en}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈiːɡəl/}}</li>
+<li> {{audio|en-us-eagle.ogg|Audio (US)}}</li>
+<li> {{rhymes|iːɡəl}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> Any of several large carnivorous and carrion-eating birds in the family <em>Accipitridae</em>, having a powerful hooked bill and keen vision.</li>
+<li> A representation of such a bird carried as an emblem</li>
+<li> {{US|currency}} A gold coin with a face value of $10.00 formerly used in the United States.</li>
+<li> {golf} A score of two under par for a hole.</li>
+</ol>
+
+<h4>Derived terms</h4>
+{{rel-top|terms derived from the carnivorous bird}}
+<ul><li> American eagle</li>
+<li> bald eagle</li>
+<li> eagle-eye, eagle-eyed</li>
+<li> eaglet</li>
+<li> eagle owl</li>
+<li> fish eagle</li>
+</ul>
+{rel-mid}
+<ul><li> golden eagle</li>
+<li> Haast’s eagle</li>
+<li> sea eagle</li>
+<li> spread eagle</li>
+<li> white-tailed eagle</li>
+<li> Eagle Scout</li>
+</ul>
+{rel-bottom}{{rel-top|terms derived from U.S. coin}}
+<ul><li> double eagle</li>
+</ul>
+{rel-mid}
+<ul><li> half eagle</li>
+</ul>
+{rel-bottom}
+<h4>Synonyms</h4>
+<ul><li> erne</li>
+<li> broadwing</li>
+</ul>
+
+<h3>Verb</h3>
+{{en-verb|eagles|eagling|eagled|eagled}}
+<ol><li> {golf} To score an eagle.</li>
+</ol>
 
-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.
+<h3>External links</h3>
+<ul><li> {{pedia|Eagle (disambiguation)}}</li>
+</ul>
 
-Some scanned fascicles of Oxford English Dictionary under the title ''A New English Dictionary on Historical Principles'' by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.
+<h3>Anagrams</h3>
+<ul><li> aglee</li>
+</ul>
+Category:en:Birds*Category:en:Golf----
+***elephant***
+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}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈɛləfənt/|/ˈɛlɪfənt/}}</li>
+<li> {{audio|En-us-elephant.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}An African bush elephant.
+<ol><li> A mammal of the order <em>Proboscidea</em>, having a trunk, and two large ivory tusks jutting from the upper jaw.</li>
+<li> {figuratively} Anything huge and ponderous.</li>
+<li> {{context|paper|printing}} A printing-paper size measuring 30 inches x 22 inches.</li>
+<li> {{British|childish}} used when counting to add length.</li>
+<ul><li> <em>Let's play hide and seek. I'll count. One <b>elephant</b>, two <b>elephant</b>, three <b>elephant</b>...</em></li>
+</ul>
+</ol>
+
+<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>
+</ul>
+
+<h4>Derived terms</h4>
+{{rel-top4|Terms derived from the noun <em>elephant</em>}}
+<ul><li> African bush elephant</li>
+<li> African elephant</li>
+<li> African forest elephant</li>
+<li> Asian elephant</li>
+<li> Asiatic elephant</li>
+<li> Borneo elephant, Borneo pygmy elephant</li>
+<li> double elephant, double elephant paper</li>
+<li> dwarf elephant</li>
+<li> elephant apple</li>
+<li> elephant bed</li>
+<li> elephant beetle</li>
+<li> elephant bird, elephantbird</li>
+<li> elephant chess</li>
+<li> elephant-color, elephant-colour</li>
+<li> elephant cord</li>
+<li> elephant creeper</li>
+<li> elephant ear, elephant ears</li>
+<li> elephant fish</li>
+<li> elephant flipping</li>
+<li> elephant folio</li>
+<li> Elephant Gambit</li>
+<li> elephant garlic</li>
+<li> elephant grass</li>
+<li> elephant-gravel</li>
+<li> elephant-gray, elephant-grey</li>
+</ul>
+{rel-mid4}
+<ul><li> elephant gun</li>
+<li> Elephant Hall</li>
+<li> elephant hawk moth</li>
+<li> elephanticide</li>
+<li> elephantide</li>
+<li> elephant in Cairo</li>
+<li> elephant in the corner, elephant in the kitchen, elephant in the living room, elephant in the room</li>
+<li> Elephant Island</li>
+<li> elephantitis</li>
+<li> elephant joke</li>
+<li> elephant juice</li>
+<li> elephant leg</li>
+<li> Elephant Man</li>
+<li> elephant man's disease</li>
+<li> elephant man's syndrome</li>
+<li> elephant on the dinner table</li>
+<li> elephant paper</li>
+<li> elephant-path</li>
+<li> elephant pearl</li>
+<li> elephant polo</li>
+<li> elephant-rain</li>
+<li> elephantry</li>
+<li> elephant's breath</li>
+<li> elephant seal</li>
+</ul>
+{rel-mid4}
+<ul><li> elephant's ear, elephant's ears</li>
+<li> elephant's foot</li>
+<li> elephant's foot umbrella stand</li>
+<li> elephant's-grass</li>
+<li> elephants' graveyard</li>
+<li> elephantship</li>
+<li> elephant shrew</li>
+<li> elephant's teeth</li>
+<li> elephant's trunk, elephant trunk</li>
+<li> Elephant's Trunk Nebula</li>
+<li> elephant's trunk plant</li>
+<li> elephant's trunk snake</li>
+<li> elephant's tusk</li>
+<li> elephant's-tusks</li>
+<li> elephant's-vine</li>
+<li> elephant test</li>
+<li> elephant trank</li>
+<li> elephant tranquilizer, elephant tranquilliser, elephant tranquillizer</li>
+<li> Elephant Trap</li>
+<li> elephant tree</li>
+<li> elephant-trumpet</li>
+<li> elephant-trunk fish</li>
+<li> Elephant Trunk nebula</li>
+<li> elephant-tusk</li>
+<li> elephant yam</li>
+</ul>
+{rel-mid4}
+<ul><li> Flying Elephant</li>
+<li> forest elephant</li>
+<li> get a look at the elephant</li>
+<li> imperial elephant</li>
+<li> Indian elephant</li>
+<li> Most Exalted Order of the White Elephant</li>
+<li> Order of the Elephant</li>
+<li> pad elephant</li>
+<li> pink elephant</li>
+<li> pink elephants</li>
+<li> pseudelephant</li>
+<li> pygmy elephant</li>
+<li> retail elephant</li>
+<li> rogue elephant</li>
+<li> savanna elephant, savannah elephant</li>
+<li> sea elephant</li>
+<li> see the elephant</li>
+<li> show the elephant</li>
+<li> Sri Lankan elephant</li>
+<li> straight-tusked elephant</li>
+<li> Sumatran elephant</li>
+<li> temple elephant</li>
+<li> war elephant</li>
+<li> water elephant</li>
+<li> white elephant</li>
+</ul>
+{rel-bottom}
+<h4>Related terms</h4>
+{rel-top4}
+<ul><li> chryselephantine</li>
+<li> elephancy</li>
+<li> elephanta</li>
+</ul>
+{rel-mid4}
+<ul><li> elephanter</li>
+<li> elephantiac</li>
+<li> elephantiasis</li>
+</ul>
+{rel-mid4}
+<ul><li> elephantic</li>
+<li> <em>Elephantidae</em></li>
+<li> elephantine</li>
+</ul>
+{rel-mid4}
+<ul><li> elephantoid</li>
+<li> Elephantopus</li>
+<li> <em>Elephas</em></li>
+</ul>
+{rel-bottom}
+<h3>External links</h3>
+<ul><li> {pedia}</li>
+<li> {{pedia|Elephant (disambiguation)}}</li>
+</ul>
+Category:Paper sizes*----
+***encyclopaedia***
+encyclopaedia:
 
-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].
+<h3>Alternative forms</h3>
+<ul><li> encyclopædia (<em>UK</em>)</li>
+<li> encyclopedia (<em>US, Canada</em>)</li>
+</ul>
 
+<h3>Pronunciation</h3>
+<ul><li> {{audio|en-us-encyclopaedia.ogg|Audio (US)}}</li>
+<ul><li> {{rhymes|iːdiə}}</li>
+</ul>
+</ul>
 
-***eagle***
-eagle: 
-[[Image:GoldenEagle-Nova.jpg|thumb|Golden eagle (bird).]]
+<h3>Noun</h3>
+{{en-noun|pl=encyclopaedias|pl2=encyclopaediae}}
+<ol><li> {{chiefly|_|UK}} A reference work (often in several volumes) containing in-depth articles on various topics (often arranged in alphabetical order or by category) dealing with a wide range of subjects or with some particular specialty</li>
+</ol>
 
-===Etymology===
-{{etyl|enm}} {{term|egle|lang=enm}}, from {{etyl|xno}} {{term|egle|lang=xno}}, from {{etyl|fro}} {{term|aigle|lang=fro}}, from {{etyl|la}} {{term|aquila|lang=la}}. Displaced native [[Middle English]] {{term|earn|ern, earn, arn|lang=enm}}, from {{etyl|ang|-}} {{term|earn|lang=ang}}. More at {{term|erne|lang=en}}.
+<h3>See also</h3>
+<ul><li> Wikipedia</li>
+</ul>
+zh-min-nan:encyclopaediacs:encyclopaediaet:encyclopaediael:encyclopaediaes:encyclopaediafr:encyclopaediaio:encyclopaediaid:encyclopaediait:encyclopaedialo:encyclopaediahu:encyclopaediamy:encyclopaediapl:encyclopaediaro:encyclopaediafi:encyclopaediata:encyclopaediatr:encyclopaediavi:encyclopaediazh:encyclopaedia
+***encyclopedia***
+encyclopedia:
+{wikipedia}
+<h3>Alternative forms</h3>
+<ul><li> encyclopædia</li>
+<li> {{qualifier|chiefly British}} encyclopaedia</li>
+</ul>
+
+<h3>Etymology</h3>
+From {{etyl|la}} {{term|encyclopaedia|lang=la}}, from {{etyl|grc}} {{term|ἐγκύκλιος παιδεία|the circle of arts and sciences, curriculum|lang=grc}}, from {{term|ἐγκύκλιος|circular, rounded, round|tr=enkyklios|lang=grc}}, from {{term|κύκλος|circle|lang=grc|tr=kyklos}} + {{term|παιδεία|the rearing of a child, education|lang=grc|tr=paideia}}, from {{term|παιδίον|child|lang=grc|tr=paidion}}.
+<h3>Pronunciation</h3>
+<ul><li> {{a|Canada}} {{IPA|/ənˌsəɪkləˈpidiə/}}</li>
+<li> {{a|UK|US}} {{IPA|/ɪnˌsaɪ.kləˈpi(ː).diə/}}</li>
+<li> {{audio|en-ca-synth-encyclopedia.ogg|CA synth}}</li>
+<li> {{audio|en-us-encyclopedia.ogg|Audio (US)}}</li>
+<li> {{rhymes|iːdiə}}</li>
+</ul>
+
+<h3>Noun</h3>
+The National Scientific Publishers encyclopedia (Polish){{en-noun|s|pl2=encyclopediae|pl3=encyclopediæ}}
+<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>
+</ol>
+
+<h4>Usage notes</h4>
+The spelling <em>encyclopedia</em> is standard in American English, preferred in Canadian English, accepted in Australian and International English, and also very common in British English. It is more common than <em>encyclopaedia</em>, for example, in UK newspapers on Google News in 2009 by a 7:3 margin.
+<h4>Derived terms</h4>
+<ul><li> -pedia</li>
+</ul>
+
+<h4>Related terms</h4>
+{rel-top}
+<ul><li> encyclopedical</li>
+<li> encyclopedic</li>
+<li> encyclopedic fiction</li>
+</ul>
+{rel-mid}
+<ul><li> encyclopedist</li>
+<li> encyclopedic dictionary</li>
+</ul>
+{rel-bottom}
+<h4>See also</h4>
+<ul><li> dictionary</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/ˈiːɡəl/}}
-* {{audio|en-us-eagle.ogg|Audio (US)}}
-* {{rhymes|iːɡəl}}
+===English===
+Appendix:English pronunciation:
+The following tables show the IPA, SAMPA and enPR/AHD representations of English pronunciation, in both Received Pronunciation (UK) and General American (US). For vowels in other dialects, see IPA chart for English.
+<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/>
+<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/>
+<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.
+===Entry===
+Wiktionary:Entry layout explained:
 
-===Noun===
-{{en-noun}}
+<h3>Noun</h3>
+{en-noun}
+<ol><li> A piece of furniture to sleep on.</li>
+</ol>
 
-# Any of several large carnivorous and [[carrion]]-eating [[bird]]s in the family ''[[Accipitridae]]'', having a powerful [[hooked]] [[bill]] and [[keen]] [[vision]].
-# A [[representation]] of such a bird carried as an [[emblem]]
-# {{US|currency}} A [[gold coin]] with a face value of $10.00 formerly used in the United States.
-# {{golf}} A score of [[two]] [[under par]] for a [[hole]].
+<h3>References</h3>
+        
+<ul><li> <em>The Oxford Paperback Dictionary</em>       </li>
+</ul>
+</pre>
+<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:
 
-====Derived terms====
-{{rel-top|terms derived from the carnivorous bird}}
-* [[American eagle]]
-* [[bald eagle]]
-* [[eagle-eye]], [[eagle-eyed]]
-* [[eaglet]]
-* [[eagle owl]]
-* [[fish eagle]]
-{{rel-mid}}
-* [[golden eagle]]
-* [[Haast's eagle|Haast’s eagle]]
-* [[sea eagle]]
-* [[spread eagle]]
-* [[white-tailed eagle]]
-* [[Eagle Scout]]
-{{rel-bottom}}
-
-{{rel-top|terms derived from U.S. coin}}
-* [[double eagle]]
-{{rel-mid}}
-* [[half eagle]]
-{{rel-bottom}}
-
-====Synonyms====
-* [[erne]]
-* [[broadwing]]
-
-====Translations====
-{{trans-top|Any of several large carnivorous birds in the family Accipitridae}}
-* Abkhaz: {{t|ab|ауарба|tr=auarba|sc=Cyrl}}
-* Adyghe: {{tø|ady|бгъэжъ|tr=bʁɑʑ}}, {{tø|ady|мэкъухэшъобгъэжъ|tr=mɑqʷxɑɕʷɑbʁɑʑ}}
-* Afrikaans: {{t-|af|arend|xs=Afrikaans}}
-* Albanian: {{t|sq|shqiponja}}, {{t|sq|shkabë}}
-* Amharic: {{t|am|ንስር|tr=nəsər|sc=Ethi}}
-* Amuzgo: [[kíchi]]
-* Arabic: {{t|ar|نسر|m|tr=nasr}}, {{t|ar|عقاب|m|tr=ʿuqāb}}
-* Aragonese: {{t|an|alica|f}}, {{t|an|aliga|f}}
-* Aramaic:
-*: Syriac: [[ܢܫܪܐ]] (nišrā’) {{m}}
-* Armenian: {{t+|hy|արծիվ|tr=arçiv}}
-*: Old Armenian: {{tø|xcl|արծուի|tr=arcui|sc=Armn|xs=Old Armenian}}
-* {{trreq|as}}
-* Avar: [[цӀум]] (cʼum)
-* Aymara: [[paca]]
-* Azeri: {{t|az|qartal}}
-* Bashkir: {{tø|ba|бөркөт|tr=bôrkôt|sc=Cyrl}}
-* Basque: [[arrano]]
-* Belarusian: {{t-|be|арол|m|tr=aról|xs=Belarusian}}
-* Bemba: [[lubambe]]
-* Bengali: {{t|bn|ঈগল|tr=igôl|sc=Beng}}, {{t|bn|ইগল|tr=igôl|sc=Beng}}
-* Bezhta: [[цуⁿгьа]] (cuⁿha)
-* Breton: [[erer]]
-* Bulgarian: {{t+|bg|орел|m|tr=orél}}
-* Burmese: {{t|my|လင်းယုန်|tr=lin:yon|sc=Mymr}}
-* Buryat: {{tø|bua|мӱркӱт|tr=mürküt}}
-* Catalan: {{t|ca|àliga|f}}, {{t|ca|àguila|f}}
-* Cebuano: [[agila]]
-* Central Atlas Tamazight: {{tø|tzm|ⵉⴳⵉⴷⵔ|m|tr=igidr}}
-* Chamorro: [[ágila]]
-* Chechen: [[аьрзу]] (ärzu) ''j''
-* Cherokee: [[ᎠᏩᎯᎵ]] (awahili)
-* Cheyenne: [[netse]]
-* Chinese:
-*: Hakka: {{tø|hak|ên-tiâu|sc=Hans}}
-*: Mandarin: {{t|zh|老鷹|sc=Hani}}, {{t|zh|老鹰|tr=lǎoyīng|sc=Hani}}, {{t|zh|鷹|sc=Hani}}, {{t|zh|鹰|tr=yīng|sc=Hani}}
-*: Min Nan: {{tø|nan|eng-á|sc=Hans}}
-* Chuvash: {{tø|cv|ăмăрткайăк|tr=ămărtkаjăk|sc=Cyrl}}
-* Cornish: [[er]]
-* Crimean Tatar: {{tø|crh|qartal}}
-* Czech: {{t+|cs|orel|m}}
-* Danish: {{t-|da|ørn|c}}
-* Dutch: {{t+|nl|arend}}, {{t+|nl|adelaar}}
-* Eshtehardi: {{tø|esh|دال|tr=dâl|sc=fa-Arab}}
-* Esperanto: {{t-|eo|aglo|xs=Esperanto}}
-* Estonian: {{t+|et|kotkas}}
-* Ewe: [[hɔ̃]]
-* Faroese: {{t-|fo|ørn|xs=Faroese}}
-* Finnish: {{t+|fi|kotka}}
-* French: {{t+|fr|aigle|m}}
-* Friulian: [[acuile]]
-* Galician: [[aguia]] {{f}}
-* Georgian: {{t-|ka|არწივი|tr=arcivi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Adler|m}}, {{qualifier|poetic}} {{t+|de|Aar|m}} 
-* Gothic: {{tø|got|𐌰𐍂𐌰|tr=ara|sc=Goth|xs=Gothic}}
-* Greek: {{t+|el|αετός|m|tr=aetós}}, {{t|el|αϊτός|m|tr=aïtós}}
-*: [[Ancient Greek]]: {{tø|grc|ἀετός|tr=aetos|sc=polytonic|xs=Ancient Greek}}
-* Greenlandic: {{t-|kl|nattoralik|xs=Greenlandic}}
-* Guernésiais: {{tø|roa-grn|aiglle|m}}
-* Gujarati: {{t|gu|ગરુડ|tr=garuḍ|sc=Gujr}}
-* Hausa: {{t|ha|shaho}}
-*: Hebrew: [[נשרא]] (nišrā’) {{m}}
-* Hebrew: {{t-|he|עיט|m|tr=áyit}}
-* Hindi: {{t|hi|गरुड|m|tr=garuḍ}}, {{t|hi|चील|m|tr=cīl}}
-* Hinukh: [[цой]] (coj)
-* Hittite: {{tø|hit|𒄩𒀀𒊏𒀸|tr=ḫāras|sc=Xsux|xs=Hittite}}
-* Hopi: {{tø|hop|nuvakwahu}}
-* Hungarian: {{t+|hu|sas}}
-* Hunzib: [[цу]] (cu)
-* Icelandic: {{t+|is|örn}}
-* Indonesian: {{t+|id|elang|xs=Indonesian}}
-* Interlingua: [[aquila]]
-* Inuktitut: [[ᓇᒃᑐᕋᓕᒃ]] ([[nakturalik]])
-* Irish: {{t-|ga|iolar|m|xs=Irish}}
-* Italian: {{t+|it|aquila|f}}
-* Japanese: {{t|ja|鷲|tr=[[わし]], washi|sc=Jpan}}, {{t|ja|ワシ|tr=washi|sc=Jpan}}
-* Jèrriais: {{tø|roa-jer|aigl'ye|m}}
-* Kannada: {{t|kn|ಗರುಡ|tr=garuḍa|sc=Knda}}
-* Kazakh: {{t|kk|бүркіт|tr=bürkit|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|សត្វឥន្ទ្រី|tr=sat əntrii|sc=Khmr}}, {{t|km|ឥន្ទ្រី|tr=əntrii|sc=Khmr}}
-* Khvarshi: [[цеⁿ]] (ceⁿ)
-* Korean: {{t+|ko|독수리|tr=doksuri|sc=Hang}}
-* Kurdish:
-*: Sorani: {{ku-Arab|[[هه‌ڵۆ]]}}
-* Kutenai: {{tø|kut|kyaq̓nukat}}
-* Kyrgyz: {{t|ky|бүркүт|tr=bürküt|sc=Cyrl}}
-* Ladin: [[eguia]] {{f}}
-* Lao: {{t|lo|ອິນທີ|tr=in tʰiː|sc=Laoo}}
-* Latin: {{t+|la|aquila|f}}
-* Latvian: {{t+|lv|ērglis|xs=Latvian}}
-* Lithuanian: {{t+|lt|aras|m|xs=Lithuanian}}, {{t+|lt|erelis|m|xs=Lithuanian}}
-* Low German: [[Aadler]] {{m}}, [[Arend]] {{m}}
-* Lower Sorbian: {{tø|dsb|jerjoł|m|xs=Lower Sorbian}}
-{{trans-mid}}
-* Macedonian: {{t-|mk|орел|m|tr=órel}}
-* Malay: {{t|ms|lang}}
-* Malayalam: {{t|ml|പരുന്ത്|tr=parunthu|sc=Mlym}}
-* Maltese: {{t-|mt|ajkla|xs=Maltese}}
-* Manx: [[urley]]
-* Maori: {{t|mi|ihorua|sc=Arab}}
-* Marathi: {{t|mr|गरूड|tr=garūḍ}}
-* Maricopa: {{tø|mrc|shpa}}
-* Meänkieli: {{tø|fit|kokko}}
-* Middle High German: [[ar]], [[adelar]]
-* Mongolian: {{t-|mn|бүргэд|tr=bürged|sc=Cyrl|xs=Mongolian}}
-* Montagnais: {{tø|moe|mitshishu}}
-* Nahuatl: [[cuāuhtli]]
-* Navajo: [[atsá]]
-* Nepali: {{t|ne|चील|tr=cīl|sc=Deva}}
-* Northern Sami: [[goaskin]]
-* Northern Sotho: [[ntšhu]]
-* Norwegian: {{t+|no|ørn|m}}
-* Novial: [[agle]]
-* O'odham: {{tø|ood|baʼag}}
-* Occitan: [[agla]] {{f}}
-* Old Church Slavonic:
-*: Cyrillic: {{tø|cu|орьлъ|m|tr=orĭlŭ|sc=Cyrl|xs=Old Church Slavonic}}
-*: Glagolitic: {{tø|cu|ⰑⰓⰠⰎⰟ|m|tr=orĭlŭ|sc=Glag|xs=Old Church Slavonic}}
-* Old English: {{t-|ang|earn|xs=Old English}}
-* Old French: {{tø|fro|aigle|m}}
-* Old High German: {{tø|goh|arn|m|xs=Old High German}}, {{tø|goh|aro|m|xs=Old High German}}
-* Old Irish: {{tø|sga|irar|m|xs=Old Irish}}
-* Old Prussian: {{tø|prg|arelie|xs=Old Prussian}}
-* {{trreq|or}}
-* Ossetian: {{tø|os|арцъиу|sc=Cyrl|xs=Ossetian}}, {{tø|os|цæргæс|sc=Cyrl|xs=Ossetian}}
-* Ottoman Turkish: {{tø|ota|باز|tr=bâz|sc=ota-Arab}}, {{tø|ota|شهباز|tr=şehbâz, şahbâz|sc=ota-Arab}}
-* Pali: {{t|pi|mahāsena|m}}, {{t|pi|garuḷa|m}}
-* Pashto: {{t|ps|ګوربت}}
-* Persian: {{t-|fa|شهباز|tr=šahbâz|xs=Persian}}, {{t+|fa|عقاب|tr='oqâb|xs=Persian}}, {{t|fa|دال|tr=dâl|xs=Persian}}
-* Polabian: {{tø|pox|viŕål|m|xs=Polabian}}
-* Polish: {{t+|pl|orzeł|m}}
-* Portuguese: {{t+|pt|águia|f}}
-* Potawatomi: [[kno]]
-* {{trreq|pa}}
-* Quechua: [[anca]]
-* Romani: [[orla]] {{f}}
-* Romanian: {{t+|ro|acvilă|f}}, {{t+|ro|aceră}}, {{t+|ro|vultur}}, {{t|ro|pajură}}
-* Romansch: {{t|rm|evla|f}}
-* Russian: {{t+|ru|орёл|m|tr=orjól}}, {{t|ru|орлица|f|tr=orlíca|sc=Cyrl}}
-* Sami: [[goaskin]]
-* Samoan: [[aeto]]
-* Sanskrit: {{t|sa|गरुड|tr=garuḍa|m}}, {{t|sa|गरुडः|tr=garuḍaḥ|sc=Deva}}, {{t|sa|उत्क्रोशः|tr=utkrośaḥ|sc=Deva}}
-* Sardinian: [[àcuila]], [[altanera]], [[àbbile]], [[àbbila]]
-* Scottish Gaelic: {{t-|gd|iolair|f|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|орао|alt=о̀рао|m|sc=Cyrl}}
-*: Roman: {{t|sh|orao|alt=òrao|m|sc=Latn}}
-* Shona: {{t|sn|gondo}}
-* Sinhalese: {{t|si|රාජාලියා|tr=rājāliyā|sc=Sinh}}
-* Slovak: {{t-|sk|orol|m}}
-* Slovene: {{t+|sl|orel|m}}, {{t+|sl|orlica|f}}
-* Southern Zazaki: {{tø|diq|hêli}}
-* Spanish: {{t+|es|águila|f}}
-* Swahili: {{t+|sw|tai|xs=Swahili}}
-* Swazi: [[lú-khôzi]]
-* Swedish: {{t+|sv|örn}}
-* Tagalog: {{t|tl|agila}}, {{t|tl|banoy}}
-* Tajik: {{t|tg|уқоб|tr=uqob|sc=Cyrl}}
-* Tamil: {{t|ta|எருவை|tr=eruvai}}, {{t|ta|கங்கம்|tr=kaṅkam}}
-* Taos: [[cíwena]]
-* Tatar: {{t|tt|бөркет|tr=börket|sc=Cyrl}}
-* Telugu: {{t|te|గ్రద్ద|tr=gradda}}
-* Thai: {{t|th|อินทรี|tr=insee}}
-* Tibetan: {{t|bo|གོ་བོ་|tr=go.bo|sc=Tibt}}
-* Tongan: [['ikale]]
-* Tsez: [[цей]] (cey) ''3''
-* Turkish: {{t+|tr|kartal}}, {{t+|tr|baz}}, {{t|tr|şehbaz}}, {{t|tr|şahbaz}}
-* Turkmen: {{t+|tk|bürgüt|xs=Turkmen}}
-* Udmurt: {{tø|udm|ӧрӟи}}
-* Ukrainian: {{t+|uk|орел|m|tr=orél|xs=Ukrainian}}
-* Upper Sorbian: {{tø|hsb|worjoł|m|xs=Upper Sorbian}}
-* Urdu: {{t|ur|عقاب|m|tr='uqāb|xs=Urdu}}, {{t|ur|چیل|m|tr=cīl|xs=Urdu}}, {{t|ur|گرڈ|m|tr=garuḍ|xs=Urdu}}
-* Uzbek: {{t|uz|burgut|xs=Uzbek}}
-* Vietnamese: {{t|vi|chim đại bàng}}, {{t|vi|đại bàng}}
-* Vilamovian: {{tø|wym|oduł}}
-* Volapük: {{qualifier|♂♀}} {{t+|vo|kvil}}, {{qualifier|collective ♂♀}} {{t+|vo|kvilem}}, {{qualifier|♂}} {{t+|vo|hikvil}}, {{qualifier|♀}} {{t+|vo|jikvil}}, {{qualifier|♂♀ offspring}} {{t+|vo|kvilül}}, {{qualifier|♂ offspring}} {{t+|vo|hikvilül}}, {{qualifier|♀ offspring}} {{t+|vo|jikvilül}}, {{qualifier|obsolete}} {{t-|vo|gil}}
-* Võro: {{tø|vro|kodask}}, {{tø|vro|kodas}}
-* Welsh: {{t+|cy|eryr|xs=Welsh}}
-* West Frisian: {{t-|fy|earn|c|xs=West Frisian}}
-* Wolof: {{t|wo|jaxaay|alt=jaxaay ji}}
-* Yiddish: {{t|yi|אָדלער|m|tr=odler|sc=Hebr}}
-* Zulu: [[ukhozi]], [[inkwazi]]
-{{trans-bottom}}
-
-{{trans-top|A gold coin with a face value of $10.00}}
-* French: [[pièce]] de [[dix]] [[dollar]]s
-* German: [[Zehn-Dollar-Note]] {{f}}
-* Italian: [[moneta]] di [[dieci]] [[dollaro|dollari]]
-{{trans-mid}}
-* Manx: [[Peesh Jeih Dollar]]
-* Swahili: {{t+|sw|tai|xs=Swahili}}
-* Turkish: {{t|tr|on dolar}}
-{{trans-bottom}}
-
-{{trans-top|In golf, a score of two under par for a hole}}
-* Danish: {{t-|da|eagle}}
-* Finnish: {{t+|fi|eagle}}
-{{trans-mid}}
-* Swahili: {{t+|sw|tai|xs=Swahili}}
-{{trans-bottom}}
-
-===Verb===
-{{en-verb|eagles|eagling|eagled|eagled}}
+<h3>Alternative forms</h3>
 
-# {{golf}} To [[score]] an eagle.
+<h3>Etymology</h3>
 
-===External links===
-* {{pedia|Eagle (disambiguation)}}
+<h3>Pronunciation</h3>
+<ul><li> Phonetic transcriptions</li>
+<li> Audio files in any relevant dialects</li>
+<li> Rhymes</li>
+<li> Homophones</li>
+<li> Hyphenation</li>
+</ul>
 
-===Anagrams===
-* [[aglee#English|aglee]]
+<h3>Noun</h3>
+Declension
+<ol><li> Meaning 1</li>
+<ul><li> Quotations</li>
+</ul>
+<li> Meaning 2</li>
+<ul><li> Quotations</li>
+</ul>
+</ol>
+     etc.
+<h4>Usage notes</h4>
 
-[[Category:en:Birds]]
-[[Category:en:Eagles|*]]
-[[Category:en:Golf]]
+<h4>Synonyms</h4>
 
-----
+<h4>Antonyms</h4>
 
+<h4>Derived terms</h4>
 
-***elephant***
-elephant: 
-
-===Etymology===
-{{etyl|enm}} {{term|elefant|lang=enm}}, {{term|elefaunt|lang=enm}}, from {{etyl|frm}} {{term|elephant|lang=frm}}, learned borrowing from {{etyl|la}} {{term|elephantus|lang=la}}, from {{etyl|grc}} {{term|ἐλέφας|sc=polytonic|tr=eléphās|lang=grc}} (gen. {{term|ἐλέφαντος|tr=eléphantos|lang=grc}}), compound of Berber {{recons|eḷu|lang=ber}} ‘elephant’ (compare Tamahaq (Tahaggart) {{term|êlu|lang=thv}}, (Ghat) {{term|alu|lang=taq}}) and {{etyl|egy}} {{term|𓍋𓃀𓅱𓌟|tr=ȝbw|sc=Egyp}} (''ābu'') ‘elephant; ivory’. More at {{l|en|ivory}}. Replaced Middle English {{term|olifant|lang=enm}}, which replaced Old English {{term|elpend|lang=la}}, {{term|olfend|lang=ang}}.
-
-===Pronunciation===
-* {{IPA|/ˈɛləfənt/|/ˈɛlɪfənt/}}
-* {{audio|En-us-elephant.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun}}
-[[Image:African Bush Elephant Mikumi cropped.jpg|right|thumb|An African bush elephant.]]
-
-# A [[mammal]] of the order ''[[Proboscidea]]'', having a [[trunk]], and two large [[ivory]] [[tusks]] jutting from the upper [[jaw]].
-# {{figuratively}} Anything [[huge]] and [[ponderous]].
-# {{context|paper|printing}} A printing-paper size measuring 30 inches x 22 inches.
-# {{British|childish}} used when counting to add length.
-#: ''Let's play hide and seek. I'll count. One '''elephant''', two '''elephant''', three '''elephant'''...''
-
-====Synonyms====
-* {{sense|animal}} ''[[Elephas]] [[maximus]]'', ''[[Loxodonta]] [[africana]]''
-* {{sense|counting term}} (<I>US</I>) ''[[alligator]]''
-
-====Derived terms====
-{{rel-top4|Terms derived from the noun ''elephant''}}
-* [[African bush elephant]]
-* [[African elephant]]
-* [[African forest elephant]]
-* [[Asian elephant]]
-* [[Asiatic elephant]]
-* [[Borneo elephant]], [[Borneo pygmy elephant]]
-* [[double elephant]], [[double elephant paper]]
-* [[dwarf elephant]]
-* [[elephant apple]]
-* [[elephant bed]]
-* [[elephant beetle]]
-* [[elephant bird]], [[elephantbird]]
-* [[elephant chess]]
-* [[elephant-color]], [[elephant-colour]]
-* [[elephant cord]]
-* [[elephant creeper]]
-* [[elephant ear]], [[elephant ears]]<!--type of food-->
-* [[elephant fish]]
-* [[elephant flipping]]
-* [[elephant folio]]
-* [[Elephant Gambit]]
-* [[elephant garlic]]
-* [[elephant grass]]
-* [[elephant-gravel]]
-* [[elephant-gray]], [[elephant-grey]]
-{{rel-mid4}}
-* [[elephant gun]]
-* [[w:Elephant Hall|Elephant Hall]]
-* [[elephant hawk moth]]
-* [[elephanticide]]
-* [[elephantide]]
-* [[elephant in Cairo]]
-* [[elephant in the corner]], [[elephant in the kitchen]], [[elephant in the living room]], [[elephant in the room]]
-* [[w:Elephant Island|Elephant Island]]
-* [[elephantitis]]
-* [[elephant joke]]
-* [[elephant juice]]
-* [[elephant leg]]
-* [[w:Elephant Man|Elephant Man]]
-* [[elephant man's disease]]
-* [[elephant man's syndrome]]
-* [[elephant on the dinner table]]
-* [[elephant paper]]
-* [[elephant-path]]
-* [[elephant pearl]]
-* [[elephant polo]]
-* [[elephant-rain]]
-* [[elephantry]]
-* [[elephant's breath]]
-* [[elephant seal]]
-{{rel-mid4}}
-* [[elephant's ear]], [[elephant's ears]]
-* [[elephant's foot]]
-* [[elephant's foot umbrella stand]]<!--game: see Wikipedia article-->
-* [[elephant's-grass]]
-* [[elephants' graveyard]]
-* [[elephantship]]
-* [[elephant shrew]]
-* [[elephant's teeth]]
-* [[elephant's trunk]], [[elephant trunk]]<!--rhyming slang-->
-* [[Elephant's Trunk Nebula]]<!--or Elephant's Trunk Nebula?-->
-* [[elephant's trunk plant]]
-* [[elephant's trunk snake]]
-* [[elephant's tusk]]
-* [[elephant's-tusks]]
-* [[elephant's-vine]]
-* [[elephant test]]
-* [[elephant trank]]
-* [[elephant tranquilizer]], [[elephant tranquilliser]], [[elephant tranquillizer]]
-* [[Elephant Trap]]
-* [[elephant tree]]
-* [[elephant-trumpet]]
-* [[elephant-trunk fish]]
-* [[Elephant Trunk nebula]]<!--or Elephant's Trunk nebula?-->
-* [[elephant-tusk]]<!--plant-->
-* [[elephant yam]]
-{{rel-mid4}}
-* [[w:Flying Elephant|Flying Elephant]]
-* [[forest elephant]]
-* [[get a look at the elephant]]
-* [[imperial elephant]]
-* [[Indian elephant]]
-* [[Most Exalted Order of the White Elephant]]
-* [[Order of the Elephant]]
-* [[pad elephant]]
-* [[pink elephant]]<!--something extraordinary or impossible-->
-* [[pink elephants]]<!--hallucination-->
-* [[pseudelephant]]
-* [[pygmy elephant]]
-* [[retail elephant]]
-* [[rogue elephant]]
-* [[savanna elephant]], [[savannah elephant]]
-* [[sea elephant]]
-* [[see the elephant]]
-* [[show the elephant]]
-* [[Sri Lankan elephant]]
-* [[straight-tusked elephant]]
-* [[Sumatran elephant]]
-* [[temple elephant]]
-* [[war elephant]]
-* [[water elephant]]
-* [[white elephant]]
-{{rel-bottom}}
-
-====Related terms====
-{{rel-top4}}
-* [[chryselephantine]]
-* [[elephancy]]
-* [[elephanta]]
-{{rel-mid4}}
-* [[elephanter]]
-* [[elephantiac]]
-* [[elephantiasis]]
-{{rel-mid4}}
-* [[elephantic]]
-* ''[[Elephantidae]]''
-* [[elephantine]]
-{{rel-mid4}}
-* [[elephantoid]]
-* [[Elephantopus]]
-* ''[[Elephas]]''
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|mammal}}
-* Abkhaz: {{t|ab|аслан|tr=aslan|sc=Cyrl}}
-* Afrikaans: {{t-|af|olifant|xs=Afrikaans}}
-* Albanian: {{t+|sq|elefant|xs=Albanian}}
-* Amharic: {{t|am|ዝሆን|tr=zəhonə|sc=Ethi}}
-* Anglo-Norman: {{tø|xno|olifan|m}}
-* Arabic: {{t|ar|فيل|m|tr=fīl|sc=Arab}}
-* Aramaic:
-*: Syriac: [[ܦܝܠܐ]] (pīlā’) {{m}}, [[ܦܝܠܬܐ]] (pīltā’) {{f}}
-* Armenian: {{t|hy|փիղ|tr=p'iġ|sc=Armn}}
-* Assamese: {{t|as|হাতী|tr=hati|sc=Beng}}
-* Asturian: {{t|ast|elefante|m}}
-* Azeri: {{t|az|fil}}
-* Bashkir: {{tø|ba|фил|tr=fil|sc=Cyrl}}
-* Basque: [[elefante]]
-* Belarusian: {{t-|be|слон|m|tr=slon|xs=Belarusian}}, {{t|be|сланіха|f|tr=slaníxa|sc=Cyrl}}
-* Bengali: {{t|bn|হাতি|tr=hati|sc=Beng}}
-* Blackfoot: {{tø|bla|innóóhksisii}}
-* Breton: [[olifant]] {{m}}, olifanted {{p}}
-* Bulgarian: {{t+|bg|слон|m|tr=slon}}
-* Burmese: {{t|my|ဆင်|sc=Mymr|tr=hsin}}
-* Catalan: {{t+|ca|elefant|m}}
-* Chechen: {{tø|ce|пийл|tr=pijl}}
-* Cherokee: {{t-|chr|ᎧᎹᎹ|tr=kamama|sc=Cher|xs=Cherokee}}, {{t|chr|ᎧᎹᎹ ᎤᏔᎾ|tr=kamama utana|sc=Cher}}
-* Chinese:
-*: Mandarin: {{t|zh|象|tr=xiàng|sc=Hani}}, {{t|zh|大象|tr=dàxiàng|sc=Hani}}
-* Czech: {{t+|cs|slon|m}}, {{t|cs|slonice|f}}
-* Danish: {{t+|da|elefant}}
-* Dutch: {{t+|nl|olifant|m}}
-* Egyptian: {{tø|egy|ȝbw|sc=Egyp}}
-*: <hiero>Ab*b*w:E26</hiero>
-* Esperanto: {{qualifier|♂♀}} {{t+|eo|elefanto}}, {{qualifier|♂}} {{t-|eo|virelefanto}}, {{qualifier|♀}} {{t-|eo|elefantino}}, {{qualifier|♂♀ offspring}} {{t-|eo|elefantido}}, {{qualifier|♂ offspring}} {{t-|eo|virelefantido}}, {{qualifier|♀ offspring}} {{t-|eo|elefantidino}}
-* Estonian: {{t-|et|elevant}}
-* Faroese: {{t-|fo|fílur|m|xs=Faroese}}
-* Finnish: {{t+|fi|norsu}}, {{t+|fi|elefantti}}
-* French: {{t+|fr|éléphant|m}}, {{t+|fr|éléphante|f}}, {{t+|fr|éléphanteau|m}}, {{qualifier|rare}} {{t+|fr|éléphantelle|f}}
-*: [[Old French]]: {{tø|fro|olifan|m}}
-*: [[Middle French]]: {{tø|frm|elephant|m}}
-* Friulian: [[elefant]]
-* Galician: [[elefante]] {{m}}
-* Georgian: {{t-|ka|სპილო|tr=spilo|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Elefant|m}}, {{t-|de|Elefantenbulle|m}}, {{t-|de|Elefantin|f}}, {{t-|de|Elefantenkuh|f}}, {{t-|de|Elefantenkalb|n}}
-* Greek: {{t+|el|ελέφαντας|m|tr=eléfantas}}
-*: [[Ancient Greek]]: {{tø|grc|ἐλέφας|tr=elephas|sc=polytonic}}
-* Gujarati: {{t|gu|હાથી|m|tr=hāthī|sc=Gujr}}
-* Hausa: {{t|ha|giwa|f}}
-* Hawaiian: {{tø|haw|'elepani}}
-*: Hebrew: [[פילא]] (pīlā’) {{m}}, [[פילתא]] (pīltā’) {{f}}
-* Hebrew: {{t+|he|פיל|m|alt=פִּיל|tr=pil}}
-* Hindi: {{t|hi|हाथी|m|tr=hāthī|sc=Deva}}, {{t|hi|हस्ती|m|tr=hastī|sc=Deva}}, {{t|hi|गज|m|tr=gaj|sc=Deva}}
-* Hungarian: {{t+|hu|elefánt}}
-* Icelandic: {{t+|is|fíll|m}}
-* Ido: {{qualifier|♂♀}} {{t+|io|elefanto}}, {{qualifier|♂}} {{t-|io|elefantulo}}, {{qualifier|♀}} {{t-|io|elefantino}}, {{qualifier|♂♀ offspring}} {{t-|io|elefantyuno}}, {{qualifier|♂ offspring}} {{t-|io|efantyunulo}}, {{qualifier|♀ offspring}} {{t-|eo|elefantyunino}}
-* Indonesian: {{t+|id|gajah|xs=Indonesian}}
-* Interlingua: [[elephante]]
-* Irish: {{t-|ga|eilifint|xs=Irish}}
-* Italian: {{t+|it|elefante|m}}
-* Japanese: {{t|ja|象|tr=[[ぞう]], zō|sc=Jpan}}, {{t|ja|ゾウ|tr=zō|sc=Jpan}}
-* Kalenjin: {{tø|kln|ebelio}}
-* Kannada: {{t|kn|ಆನೆ|tr=āne|sc=Knda}}
-* Kazakh: {{t|kk|піл|tr=pil|sc=Cyrl}}
-* Khmer: {{t|km|ដំរី|tr=dɑmrəy|sc=Khmr}}
-* Kongo: {{tø|kg|nzau}}
-* Korean: {{t|ko|코끼리|tr=kokkiri|sc=Kore}}
-* Kurdish:
-*: Sorani: {{t-|ku|فیل|sc=ku-Arab}}
-* Kyrgyz: {{t|ky|пил|tr=pil|sc=Cyrl}}
-* Ladin: [[elefant]]
-* Lao: {{t|lo|ຊ້າງ|tr=saang|sc=Laoo}}
-* Latin: {{t+|la|elephantus}}, {{t+|la|elephas}}
-{{trans-mid}}
-* Latvian: {{t-|lv|zilonis|m|xs=Latvian}}
-* Lithuanian: {{t+|lt|dramblys|m|xs=Lithuanian}}
-* Lower Sorbian: [[elefant]], [[(słon)]]
-* Luhya: {{tø|luy|enjofu}}
-* Macedonian: {{t|mk|слон|m|tr=slon|sc=Cyrl}}
-* Malagasy: {{t|mg|elefanta}}
-* Malay: {{t-|ms|gajah|xs=Malay}}, {{t|ms|biram}}
-* Malayalam: {{t|ml|ആന|tr=āna|sc=Mlym}}
-* Maltese: {{t-|mt|iljunfant|xs=Maltese}}
-* Marathi: {{t|mr|हत्ती|m|tr=hattī|sc=Deva}}
-* Mongolian: {{t+|mn|заан|tr=zaan|sc=Cyrl|xs=Mongolian}}
-* Nahuatl: {{t|nah|elefante}}
-* Nama: {{tø|naq|ǂkhoab}}
-* Navajo: {{tø|nv|bichį́į́h yee adilohii}}
-* Nepali: {{t|ne|हात्ती|tr=hāttī|sc=Deva}}
-* Norwegian: {{t+|no|elefant|m}}
-* Occitan: [[elefant]] {{m}}
-* Ojibwe: {{tø|oj|jejiibajikii}}
-* Old English: {{t-|ang|elpend|m|xs=Old English}}
-* Old Norse: {{tø|non|fíll|m}}
-* Ossetian: {{tø|os|пыл|tr=pyl|sc=Cyrl}}
-* Pali: {{tø|pi|hatthin|m}}, {{tø|pi|nāga|m}}, {{tø|pi|gaja|m}}
-* Pashto: {{t|ps|پيل|tr=pīl|sc=ps-Arab}}
-* Persian: {{t|fa|فیل|tr=fil|sc=fa-Arab}}, {{t|fa|پیل|tr=pil|sc=fa-Arab}}
-* Polish: {{t+|pl|słoń|m}}, {{t+|pl|słonica|f}}
-* Portuguese: {{t+|pt|elefante|m}}, {{t+|pt|elefanta|f}}
-* Punjabi: {{t|pa|ਹਾਥੀ|tr=hāthī|sc=Guru}}
-* Romani: [[woroslano]] {{m}}, [[woroslanka]] {{f}}
-* Romanian: {{t+|ro|elefant|m}}
-* Romansch: {{t-|rm|elefant|xs=Romansch}}
-* Russian: {{t+|ru|слон|m|tr=slon}}, {{t|ru|слониха|f|tr=sloníxa|sc=Cyrl}}
-* Sami: [[elefánta]]
-* Samoan: {{t|sm|'elefane}}
-* Sanskrit: {{t|sa|इभ|tr=ibhas|m}}, {{t|sa|गज|tr=gaja|m}}, {{t|sa|गजः|m|tr=gajaḥ|sc=Deva}}
-* Sardinian: [[elefante]]/[[elefanti]]
-* Scottish Gaelic: {{t|gd|ailbhean|m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|слон|m|sc=Cyrl}}, {{t|sh|слоница|f|sc=Cyrl}}
-*: Roman: {{t|sh|slon|m}}, {{t|sh|slonica|f}}
-* Sicilian: [[liotru]] {{m}}, [[lifanti]] {{m}}
-* Sindhi: {{t|sd|ہاٿيِ|tr=hāthī|sc=sd-Arab}}
-* Sinhalese: {{t|si|අලියා|tr=aliyā|sc=Sinh}}
-* Slovak: {{t-|sk|slon|m}}
-* Slovene: {{t+|sl|slon|m}}, {{t-|sl|slonica|f}}
-* Spanish: {{t+|es|elefante|m}}
-* Swahili: {{t+|sw|ndovu|xs=Swahili}}, {{t+|sw|tembo|xs=Swahili}}
-* Swedish: {{t+|sv|elefant}}
-* Tagalog: {{t|tl|elepante}}
-* Tajik: {{t|tg|фил|tr=fil|sc=Cyrl}}
-* Tamil: {{t|ta|யானை|tr=yāṉai|sc=Taml}}
-* Tatar: {{t+|tt|фил|tr=fil|sc=Cyrl}}
-* Telugu: {{t+|te|ఏనుగు|tr=ēnugu|sc=Telu}}, {{t+|te|గజము|tr=gajamu}}
-* Thai: {{t+|th|ช้าง|tr=chang}}
-* Tswana: {{t-|tn|tlou|xs=Tswana}} (9/10)
-* Turkish: {{t+|tr|fil}}
-* Turkmen: {{t|tk|pil}}
-* Ukrainian: {{t+|uk|слон|m|tr=slon|xs=Ukrainian}}, {{t|uk|слониха|f|tr=slonýxa|sc=Cyrl}}
-* Upper Sorbian: [[elefant]], [[(słon)]]
-* Urdu: {{t|ur|ہاتھی|m|tr=hāthī|sc=ur-Arab}}, {{t|ur|ہستی|m|tr=hastī|sc=ur-Arab}}, {{t|ur|گج|m|tr=gaj|sc=ur-Arab}}, {{t|ur|فیل|m|tr=fīl|sc=ur-Arab}}, {{t|ur|پیل|m|tr=pīl|sc=ur-Arab}}
-* Uyghur: {{t|ug|پىل|tr=pil|sc=ug-Arab}}
-* Uzbek: {{t|uz|fil}}
-* Vietnamese: {{t|vi|voi}}
-* Vilamovian: {{tø|wym|elefaont}}
-* Volapük: {{qualifier|♂♀}} {{t+|vo|leefad}}, {{qualifier|♂}} {{t-|vo|hileefad}}, {{qualifier|♀}} {{t-|vo|jileefad}}, {{qualifier|♂♀ offspring}} {{t-|vo|leefadül}}, {{qualifier|♂ offspring}} {{t-|vo|hileefadül}}, {{qualifier|♀ offspring}} {{t-|vo|jileefadül}}, {{qualifier|older term, obsolete}} {{t-|vo|nelfan}}
-* Welsh: {{t+|cy|eliffant|xs=Welsh}}
-* West Frisian: {{t-|fy|oaljefant|c|xs=West Frisian}}
-* Wolof: {{t|wo|ñey|alt=ñey wi}}
-* Yiddish: {{t|yi|העלפֿאַנד|m|tr=helfand|sc=Hebr}}
-{{trans-bottom}}
-
-{{trans-top|anything huge and ponderous}}
-* French: {{t|fr|éléphantesque|m|f}}
-* Portuguese: {{t|pt|elefantino|m}}
-{{trans-mid}}
-* Swahili: {{t|sw|kubwa|xs=Swahili}}
-{{trans-bottom}}
-
-===External links===
-* {{pedia}}
-* {{pedia|Elephant (disambiguation)}}
-
-[[Category:Paper sizes]]
-[[Category:en:Elephants|*]]
+<h4>Related terms</h4>
 
-----
+<h4>References</h4>
 
+<h4>External links</h4>
 
-***encyclopaedia***
-encyclopaedia: 
+<h3>Verb</h3>
+Conjugation
+<ol><li> Meaning 1</li>
+<ul><li> Quotations</li>
+</ul>
+</ol>
+     etc.
+<h4>Usage notes</h4>
 
-===Alternative forms===
-* [[encyclopædia]] (''UK'')
-* [[encyclopedia]] (''US, Canada'')
+<h4>Synonyms</h4>
 
-===Pronunciation===
-* {{audio|en-us-encyclopaedia.ogg|Audio (US)}}
-*: {{rhymes|iːdiə}}
+<h4>Antonyms</h4>
 
-===Noun===
-{{en-noun|pl=encyclopaedias|pl2=encyclopaediae}}
+<h4>Derived terms</h4>
 
-# {{chiefly|_|UK}} A reference work (often in several volumes) containing in-depth articles on various topics (often arranged in alphabetical order or by category) dealing with a wide range of subjects or with some particular specialty
-
-====Translations====
-{{trans-top|reference book}}
-* Arabic: [[موسوعة]]
-* Armenian: {{t-|hy|հանրագիտարան|tr=hanragitaran}}
-* [[Azeri]]: {{t-|az|ensiklopediya|xs=Azeri}}
-* Belarusian: {{t|be|энцыклапедыя|f|tr=èncyklapedyja|xs=Belarusian}}
-* [[Catalan]]: [[enciclopèdia]]
-* Chinese: [[百科全书]] (bǎikēquánshū)
-* [[Crimean Tatar]]: {{tø|crh|entsiklopediya}}
-* Czech: {{t+|cs|encyklopedie|f}}
-* Danish: {{t-|da|leksikon|n}}, {{t-|da|encyklopædi|c}}
-* Dutch: {{t+|nl|encyclopedie|m}}
-* Estonian: [[entsüklopeedia]]
-* Finnish: {{t+|fi|tietosanakirja}}, {{t+|fi|ensyklopedia}}
-* French: {{t+|fr|encyclopédie|f}}
-* Georgian: {{t-|ka|ენციკლოპედია|tr=enc’iklopedia|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Lexikon|n}}, {{t|de|Enzyklopädie|f}}
-* Greek: {{t+|el|εγκυκλοπαίδεια|f|tr=egkyklopaídeia}}
-* Hebrew: [[אנציקלופדיה]] (entsiklopediya) {{n}}
-{{trans-mid}}
-* Icelandic: {{t+|is|alfræðirit|n}}
-* Indonesian: {{t+|id|ensiklopedia|xs=Indonesian}}
-* [[Interlingua]]: [[encyclopedia]]
-* Italian: {{t+|it|enciclopedia|f}}
-* Japanese: [[大事典]] (だいじてん, dai-jiten), [[事典]], [[百科事典]]
-* Korean: {{t+|ko|백과사전|sc=Hang}}
-* Latvian: [[enciklopēdija]] {{f}}
-* Persian: {{t-|fa|دانشنامه|tr=dâneshnâmeh|xs=Persian}}
-* Polish: {{t+|pl|encyklopedia|f}}
-* Portuguese: {{t+|pt|enciclopédia|f}}
-* Romanian: {{t+|ro|enciclopedie|f}}, {{t|ro|enciclopedii|f|p}}
-* Russian: {{t+|ru|энциклопедия|f|tr=enciklopédija}}
-* Spanish: {{t+|es|enciclopedia|m}}
-* Swedish: {{t+|sv|encyklopedi}}
-* Turkish: {{t+|tr|ansiklopedi}}
-* Ukrainian: {{t|uk|енциклопедія|f|tr=enciklopédija|xs=Ukrainian}}
-* [[Volapük]]: {{t|vo|sikloped}}, {{qualifier|synonym}} {{t|vo|züklopäod}}
-{{trans-bottom}}
-
-===See also===
-* [[Wikipedia]]
-
-[[zh-min-nan:encyclopaedia]]
-[[cs:encyclopaedia]]
-[[et:encyclopaedia]]
-[[el:encyclopaedia]]
-[[es:encyclopaedia]]
-[[fr:encyclopaedia]]
-[[io:encyclopaedia]]
-[[id:encyclopaedia]]
-[[it:encyclopaedia]]
-[[lo:encyclopaedia]]
-[[hu:encyclopaedia]]
-[[my:encyclopaedia]]
-[[pl:encyclopaedia]]
-[[ro:encyclopaedia]]
-[[fi:encyclopaedia]]
-[[ta:encyclopaedia]]
-[[tr:encyclopaedia]]
-[[vi:encyclopaedia]]
-[[zh:encyclopaedia]]
-***encyclopedia***
-encyclopedia: 
-{{wikipedia}}
-
-===Alternative forms===
-* [[encyclopædia]]
-* {{qualifier|chiefly British}} [[encyclopaedia]]
-
-===Etymology===
-From {{etyl|la}} {{term|encyclopaedia|lang=la}}, from {{etyl|grc}} {{term|ἐγκύκλιος παιδεία||lang=grc|the circle of arts and sciences, curriculum}}, from {{term|ἐγκύκλιος|tr=enkyklios||lang=grc|circular, rounded, round}}, from {{term|κύκλος||lang=grc|tr=kyklos|circle}} + {{term|παιδεία||lang=grc|tr=paideia|the rearing of a child, education}}, from {{term|παιδίον||lang=grc|tr=paidion|child}}.
-
-===Pronunciation===
-* {{a|Canada}} {{IPA|/ənˌsəɪkləˈpidiə/}}
-* {{a|UK|US}} {{IPA|/ɪnˌsaɪ.kləˈpi(ː).diə/}}
-* {{audio|en-ca-synth-encyclopedia.ogg|CA synth}}
-* {{audio|en-us-encyclopedia.ogg|Audio (US)}}
-* {{rhymes|iːdiə}}
-
-===Noun===
-[[Image:PWN Encyclopedia.jpg|thumb|right|The National Scientific Publishers encyclopedia (Polish)]]
-{{en-noun|s|pl2=encyclopediae|pl3=encyclopediæ}}
-
-# A [[comprehensive]] [[reference work]] with articles on a range of [[subjects]].
-#: ''I only use the library for the '''encyclopedia''', as we’ve got most other books here.''
-
-====Usage notes====
-The spelling ''encyclopedia'' is standard in American English, preferred in Canadian English, accepted in Australian and International English, and also very common in British English. It is more common than ''encyclopaedia'', for example, in UK newspapers on Google News in 2009 by a 7:3 margin.
-
-====Derived terms====
-* [[-pedia]]
-
-====Related terms====
-{{rel-top}}
-* [[encyclopedical]]
-* [[encyclopedic]]
-* [[encyclopedic fiction]]
-{{rel-mid}}
-* [[encyclopedist]]
-* [[encyclopedic dictionary]]
-{{rel-bottom}}
-
-====See also====
-* [[dictionary]]
-
-====Translations====
-{{trans-top|comprehensive reference with articles on a range of topic}}
-* Afrikaans: [[ensiklopedie]]
-* Alsatian: [[Enzyklopädie]]
-* Arabic: {{t|ar|موسوعة|f|tr=mausuu3a|sc=Arab}}
-* Armenian: {{t-|hy|հանրագիտարան|tr=hanragitaran}}
-* Basque: [[entziklopedia]]
-* Belarusian: {{t|be|энцыклапедыя|f|tr=encyklapédyja|sc=Cyrl}}
-* Bulgarian: {{t|bg|енциклопедия|f|tr=enciklopédija|sc=Cyrl}}
-* Catalan: {{t|ca|enciclopèdia}}
-* Chinese:
-*: Mandarin: {{t|zh|百科全書|sc=Hani}}, {{t|zh|百科全书|tr=bǎikē quánshū|sc=Hani}}
-* Chuvash: {{tø|cv|энциклопеди|tr=entsiklopédi|sc=Cyrl}}
-* Czech: {{t+|cs|encyklopedie|f}}
-* Danish: {{t-|da|encyklopædi}}
-* Dutch: {{t+|nl|encyclopedie|m}}
-* Esperanto: {{t+|eo|enciklopedio|xs=Esperanto}}
-* Estonian: [[entsüklopeedia]]
-* Faroese: {{t|fo|Alfrøðibók}}
-* Finnish: {{t+|fi|tietosanakirja}}, {{t+|fi|ensyklopedia}}
-* French: {{t+|fr|encyclopédie|f}}
-* German: {{t+|de|Enzyklopädie|f}}
-* Gothic: (einkeiklopeidya)?
-* Greek: {{t+|el|εγκυκλοπαίδεια|f|tr=egkyklopaídeia|sc=Grek}}
-* Haitian Creole: {{tø|ht|ansiklopedi}}
-* Hebrew: {{t|he|אנציקלופדיה|f|tr=entsiklopédya|alt=אֶנְצִיקְלוֹפֶּדְיָה|sc=Hebr}}
-* Hindi: {{t|hi|ज्ञानकोष|m|tr=gyānkoṣ|sc=Deva}}, {{t|hi|विश्वकोश|m|tr=viśvakoś|sc=Deva}}
-* Hungarian: {{t+|hu|enciklopédia}}, {{t+|hu|lexikon}}
-* Icelandic: {{t+|is|alfræðiorðabók|f}}
-* Ido: {{t|io|enciklopedio}}
-* Indonesian: {{t+|id|ensiklopedia|xs=Indonesian}}
-* Interlingua: {{t|ia|encyclopedia}}
-* Irish: {{t|ga|ciclipéid|f}}
-* Italian: {{t+|it|enciclopedia|f}}
-* Japanese: {{t|ja|百科事典|tr=ひゃっかじてん, hyakkajiten|sc=Jpan}}, {{t|ja|大事典|tr=だいじてん, dai-jiten|sc=Jpan}}
-* Karachay-Balkar: {{tø|krc|энциклопедия|sc=Cyrl}}, {{tø|krc|энциклопедия|tr=entsiklopédija|sc=Cyrl}}
-* Korean: {{t|ko|백과사전|tr=baekkwasajeon|sc=Kore}} ({{t|ko|百科事典|sc=Kore}})
-{{trans-mid}}
-* Latin: {{t-|la|encyclopaedia}}, {{t-|la|pandectes|m|alt=pandectēs}}
-* Latvian: {{t|lv|enciklopēdija|f}}
-* Limburgish: [[encyklopedie]]
-* Lithuanian: {{t+|lt|enciklopedija|f|xs=Lithuanian}}
-* Low Saxon: [[nokieksel]]
-* Luxembourgish: [[encyklopedie]]
-* Malayalam: {{t|ml|സര്‍വവിജ്ഞാനകോശം|tr=sarvavijñānakōśam|sc=Mlym}}, {{t|ml|വിജ്ഞാനകോശം|tr=vijñānakōśam|sc=Mlym}}
-* Navajo: {{tø|nv|ínsadoobíídiiya}}
-* Norwegian: {{t+|no|encyklopedi}}
-* Persian: {{t-|fa|دانشنامه|tr=dânešnâmeh|xs=Persian}}, {{t|fa|دایرةالمعارف|tr=dâyeratolma'âref|sc=fa-Arab}}, {{t|fa|دائرةالمعارف|tr=dâ'eratolma'âref|sc=fa-Arab}}
-* Polish: {{t+|pl|encyklopedia|f}}
-* Portuguese: {{t+|pt|enciclopédia|f}}
-* Romanian: {{t+|ro|enciclopedie|f}}
-* Russian: {{t|ru|энциклопедия|f|tr=enciklopédija|sc=Cyrl}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|енциклопедија|f|alt=енциклопе́дија|sc=Cyrl}}
-*: Roman: {{t|sh|enciklopedija|f|alt=enciklopédija}}
-* Slovak: {{t-|sk|encyklopédia|f}}
-* Slovene: {{t+|sl|enciklopedija|f}}
-* Spanish: {{t+|es|enciclopedia|f}}
-* Swedish: {{t+|sv|encyklopedi|c}}, {{t-|sv|konversationslexikon|n}}, {{t+|sv|uppslagsverk|n}}
-* Tagalog: [[ensiklopedya]]
-* Tatar: {{t|tt|énsíklopédí|sc=Cyrl}}
-* Telugu: {{t+|te|విజ్ఞానసర్వస్వం}}
-* Thai: {{t|th|สารานุกรม|tr=săaraanúkrom|sc=Thai}}
-* Turkish: {{t+|tr|ansiklopedi}}
-* Ukrainian: {{t|uk|енциклопедія|f|tr=encyklopédija|sc=Cyrl}}
-* {{ttbc|ur}}: {{ur-Arab|[[جامع]]}} (jāme), {{ur-Arab|[[قاموس]]}} (qāmus)
-* Uzbek: {{t|uz|ensiklopediya}}
-* Vietnamese: {{t|vi|sách bách khoa}} ({{t|vi|冊百科}})
-* [[Volapük]]: {{t|vo|sikloped|xs=Volapük}}, {{qualifier|synonym}} {{t|vo|züklopäod}}, {{t|vo|realasikloped}}
-* Welsh: {{t|cy|gwyddoniadur|m}}
-* [[Yakut]]: {{tø|sah|энциклопедия|tr=entsiklopédija|sc=Cyrl}}
-{{trans-bottom}}
-
-[[Category:en:Reference works]]
-
-[[af:encyclopedia]]
-[[ar:encyclopedia]]
-[[zh-min-nan:encyclopedia]]
-[[cs:encyclopedia]]
-[[cy:encyclopedia]]
-[[et:encyclopedia]]
-[[el:encyclopedia]]
-[[es:encyclopedia]]
-[[eo:encyclopedia]]
-[[eu:encyclopedia]]
-[[fa:encyclopedia]]
-[[fr:encyclopedia]]
-[[ko:encyclopedia]]
-[[io:encyclopedia]]
-[[id:encyclopedia]]
-[[it:encyclopedia]]
-[[kn:encyclopedia]]
-[[lo:encyclopedia]]
-[[lt:encyclopedia]]
-[[li:encyclopedia]]
-[[hu:encyclopedia]]
-[[ml:encyclopedia]]
-[[my:encyclopedia]]
-[[nl:encyclopedia]]
-[[ja:encyclopedia]]
-[[no:encyclopedia]]
-[[pl:encyclopedia]]
-[[ro:encyclopedia]]
-[[ru:encyclopedia]]
-[[simple:encyclopedia]]
-[[fi:encyclopedia]]
-[[sv:encyclopedia]]
-[[ta:encyclopedia]]
-[[tt:encyclopedia]]
-[[te:encyclopedia]]
-[[tr:encyclopedia]]
-[[vi:encyclopedia]]
-[[zh:encyclopedia]]
-===English===
-Appendix:English pronunciation: 
-The following tables show the [[Wiktionary:International Phonetic Alphabet|IPA]], [[SAMPA]] and enPR/[[w:American Heritage Dictionary|AHD]] representations of English pronunciation, in both [[Received Pronunciation]] (UK) and [[General American]] (US). For vowels in other dialects, see [[w:IPA chart for English|IPA chart for English]].
-
-===[[vowel|Vowels]]===
-
-The vowel table lists both monophthongs and [[diphthong|diphthongs]].
-
-{| {{wikitable}}
-! rowspan="2" | enPR<br/>([[w:American Heritage Dictionary|AHD]])
-! colspan="2" | [[w:International Phonetic Alphabet|IPA]]
-! colspan="2" | [[w:SAMPA|SAMPA]]
-! rowspan="2" | Examples
-|-
-! [[Received Pronunciation|RP]]
-! [[General American|GA]]
-! [[Received Pronunciation|RP]]
-! [[General American|GA]]
-|-align="center"
-| {{enPRchar|ă}}
-| colspan="2" | {{IPAchar2|Near-open front unrounded vowel.ogg|æ}}
-| colspan="2" | <tt>{</tt>
-| [[bad|b'''a'''d]], [[cat|c'''a'''t]], [[ran|r'''a'''n]]
-|-align="center"
-| {{enPRchar|ăr}}
-| colspan="2" | {{IPAchar|æɹ}}
-| colspan="2" | <tt>{r\</tt>
-| [[carry|c'''arr'''y]]
-|-align="center"
-| {{enPRchar|ā}}
-| colspan="2" | {{IPAchar|eɪ}}
-| colspan="2" | <tt>eI</tt>
-| [[bait|b'''ai'''t]], [[play|pl'''ay''']], [[same|s'''a'''me]]
-|-align="center"
-| {{enPRchar|ä}}
-| {{IPAchar|ɑː}}
-| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}
-| <tt>A:</tt>
-| <tt>A</tt>
-| [[father|f'''a'''ther]]
-|-align="center"
-| {{enPRchar|är}}
-| {{IPAchar|ɑː(ɹ)}}
-| {{IPAchar|ɑɹ}}
-| <tt>A:</tt>
-| <tt>Ar\</tt>
-| [[arm|'''ar'''m]], [[bard|b'''ar'''d]], [[aria|'''ar'''ia]]
-|-align="center"
-| {{enPRchar|âr}}
-| {{IPAchar|ɛə(ɹ)}}
-| {{IPAchar|ɛɹ}}
-| <tt>E@</tt>
-| <tt>Er\</tt>
-| [[hair|h'''air''']], [[pear|p'''ear''']], [[there|th'''ere''']], [[scary|sc'''ar'''y]]
-|-align="center"
-| {{enPRchar|ĕ}}
-| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}
-| colspan="2" | <tt>E</tt>
-| [[bed|b'''e'''d]], [[bet|b'''e'''t]], [[end|'''e'''nd]]
-|-align="center"
-| {{enPRchar|ĕr}}
-| colspan="2" | {{IPAchar|ɛɹ}}
-| colspan="2" | <tt>Er\</tt>
-| [[merry|m'''err'''y]]
-|-align="center"
-| {{enPRchar|ē}}
-| {{IPAchar|iː}}
-| {{IPAchar2|Close front unrounded vowel.ogg|i}}
-| <tt>i:</tt>
-| <tt>i</tt>
-| [[ease|'''ea'''se]], [[see|s'''ee''']]
-|-align="center"
-| {{enPRchar|ĭ}}
-| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}
-| colspan="2" | <tt>I</tt>
-| [[city|c'''i'''ty]], [[bit|b'''i'''t]]
-|-align="center"
-| {{enPRchar|i}}<ref>Not an [[w:American Heritage Dictionary|AHD]] symbol. Often written as AHD ''ē'' in Wiktionary entries.</ref>
-| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}
-| colspan="2" | <tt>i</tt>
-| [[city|cit'''y''']], [[very|ver'''y''']], [[ready|read'''y''']]
-|-align="center"
-| {{enPRchar|ĭr}}
-| colspan="2" | {{IPAchar|ɪɹ}}
-| colspan="2" | <tt>Ir\</tt>
-| [[syrup|s'''yr'''up]], [[Sirius|S'''ir'''ius]]
-|-align="center"
-| {{enPRchar|ī}}
-| colspan="2" | {{IPAchar|aɪ}}
-| colspan="2" | <tt>aI</tt>
-| [[my|m'''y''']], [[rise|r'''i'''se]]
-|-align="center"
-| {{enPRchar|îr}}
-| {{IPAchar|ɪə(ɹ)}}
-| {{IPAchar|ɪɹ}}
-| <tt>I@</tt>
-| <tt>Ir\</tt>
-| [[here|h'''ere''']], [[near|n'''ear''']], [[peer|p'''eer''']], [[serious|s'''er'''ious]]
-|-align="center"
-| {{enPRchar|ŏ}}
-| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}
-| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}
-| <tt>Q</tt>
-| <tt>A</tt>
-| [[not|n'''o'''t]]
-|-align="center"
-| {{enPRchar|ō}}
-| {{IPAchar|əʊ}}
-| {{IPAchar|oʊ}}
-| <tt>@U</tt>
-| <tt>oU</tt>
-| [[go|g'''o''']], [[hope|h'''o'''pe]], [[know|kn'''ow''']]
-|-align="center"
-| {{enPRchar|ōr}}
-| {{IPAchar|ɔə(ɹ)}}
-| {{IPAchar|oɹ, ɔɹ}}
-| <tt>O@</tt>
-| <tt>or\, Or\</tt>
-| [[hoarse|h'''oar'''se]], [[glory|gl'''or'''y]]
-|-align="center"
-| {{enPRchar|ô}}
-| {{IPAchar|ɔː}}
-| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}
-| <tt>O:</tt>
-| <tt>O</tt>
-| [[law|l'''aw''']], [[caught|c'''au'''ght]], [[saw|s'''aw''']]
-|-align="center"
-| {{enPRchar|ôr}}
-| {{IPAchar|ɔː(ɹ)}}
-| {{IPAchar|ɔɹ}}
-| <tt>O:</tt>
-| <tt>Or\</tt>
-| [[horse|h'''or'''se]], [[more|m'''ore''']], [[laureate|l'''aur'''eate]]
-|-align="center"
-| {{enPRchar|oi}}
-| colspan="2" | {{IPAchar|ɔɪ}}
-| colspan="2" | <tt>OI</tt>
-| [[boy|b'''oy''']], [[noise|n'''oi'''se]]
-|-align="center"
-| {{enPRchar|o͝o, ŏŏ}}
-| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}
-| colspan="2" | <tt>U</tt>
-| [[put|p'''u'''t]], [[foot|f'''oo'''t]]
-|-align="center"
-| {{enPRchar|o͝or, ŏŏr}}
-| {{IPAchar|ʊə(ɹ)}}
-| {{IPAchar|ʊɹ}}
-| <tt>U@</tt>
-| <tt>Ur\</tt>
-| [[poor|p'''oor''']], [[tour|t'''our''']], [[tourism|t'''our'''ism]]
-|-align="center"
-| {{enPRchar|o͞o, ōō}}
-| {{IPAchar|uː}}
-| {{IPAchar2|Close back rounded vowel.ogg|u}}
-| <tt>u:</tt>
-| <tt>u</tt>
-| [[lose|l'''o'''se]], [[soon|s'''oo'''n]], [[through|thr'''ou'''gh]]
-|-align="center"
-| {{enPRchar|ou}}
-| colspan="2" | {{IPAchar|aʊ}}
-| colspan="2" | <tt>aU</tt>
-| [[house|h'''ou'''se]], [[now|n'''ow''']]
-|-align="center"
-| {{enPRchar|ŭ}}
-| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}
-| colspan="2" | <tt>V</tt>
-| [[run|r'''u'''n]], [[enough|en'''ou'''gh]], [[up|'''u'''p]]
-|-align="center"
-| {{enPRchar|ûr}}
-| {{IPAchar|ɜː(ɹ)}}
-| {{IPAchar|ɝ}}
-| <tt>3:</tt>
-| <tt>3`</tt>
-| [[fur|f'''ur''']], [[bird|b'''ir'''d]]
-|-align="center"
-| {{enPRchar|ə}}
-| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}
-| colspan="2" | <tt>@</tt>
-| [[about|'''a'''bout]]
-|-align="center"
-| {{enPRchar|ər}}
-| {{IPAchar|ə(ɹ)}}
-| {{IPAchar|ɚ}}
-| <tt>@</tt>
-| <tt>@`</tt>
-| [[enter|ent'''er''']]
-|}
-<references/>
+<h4>Related terms</h4>
 
-===[[consonant|Consonants]]===
-{| {{wikitable}}
-! enPR<br>([[w:American Heritage Dictionary|AHD]])
-! [[w:International_Phonetic_Alphabet|IPA]]
-! [[w:SAMPA|SAMPA]]
-! Examples
-|-
-| {{enPRchar|b}}
-| {{IPAchar2|Voiced bilabial plosive.ogg|b}}
-| <tt>b</tt>
-| [[but|'''b'''ut]], [[able|a'''b'''le]], [[cab|ca'''b''']], [[wobble|wo'''bb'''le]], [[ebb|e'''bb''']]
-|-
-| {{enPRchar|ch}}
-| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}<ref name=tiebar>May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}</ref>
-| <tt>tS</tt>
-| [[chat|'''ch'''at]], [[teach|tea'''ch'''er]], [[inch|in'''ch''']], [[catch|ca'''tch''']], [[nature|na'''t'''ure]]
-|-
-| {{enPRchar|d}}
-| {{IPAchar2|Voiced alveolar plosive.ogg|d}}
-| <tt>d</tt>
-| [[dot|'''d'''ot]], [[idea|i'''d'''ea]], [[nod|no'''d''']], [[fodder|fo'''dd'''er]], [[odd|o'''dd''']]
-|-
-| {{enPRchar|f}}
-| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}
-| <tt>f</tt>
-| [[fan|'''f'''an]], [[left|le'''f'''t]], [[leaf|lea'''f''']], [[enough|enou'''gh''']], [[phase|'''ph'''ase]], [[graphic|gra'''ph'''ic]], [[epitaph|epita'''ph''']]
-|-
-| {{enPRchar|g}}
-| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}
-| <tt>g</tt>
-| [[get|'''g'''et]], [[magnet|ma'''g'''net]], [[bag|ba'''g''']]
-|-
-| {{enPRchar|h}}
-|{{IPAchar2|Voiceless glottal fricative.ogg|h}}
-| <tt>h</tt>
-| [[ham|'''h'''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>
-| [[which|'''wh'''ich]]
-|-
-| {{enPRchar|j}}
-| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />
-| <tt>dZ</tt>
-| [[joy|'''j'''oy]], [[ajar|a'''j'''ar]], [[gin|'''g'''in]], [[agile|a'''g'''ile]], [[age|a'''ge''']], [[edge|e'''dge''']]
-|-
-| {{enPRchar|k}}
-| {{IPAchar2|Voiceless velar plosive.ogg|k}}
-| <tt>k</tt>
-| [[cat|'''c'''at]], [[kit|'''k'''it]], [[queen|'''q'''ueen]], [[pique|pi'''que''']], [[choir|'''ch'''oir]], [[ache|a'''ch'''e]], [[tack|ta'''ck''']]
-|-
-| {{enPRchar|ᴋʜ}}
-| {{IPAchar2|voiceless velar fricative.ogg|x}}
-| <tt>x</tt>
-| (''Scottish'') [[loch|lo'''ch''']]
-|-
-| {{enPRchar|l}}
-| {{IPAchar2|Alveolar lateral approximant.ogg|l}}
-| <tt>l</tt>
-| [[left|'''l'''eft]] (''before vowel of syllable'')
-|-
-| {{enPRchar|l}}
-| {{IPAchar|l̩ (əl)}}<ref name="cons">Phonologists may deny that {{IPAchar|/l̩, n̩, m̩/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.</ref>
-| <tt>l=</tt>
-| [[little|litt'''le''']]
-|-
-| {{enPRchar|m}}
-| {{IPAchar2|Bilabial nasal.ogg|m}}
-| <tt>m</tt>
-| [[man|'''m'''an]], [[animal|ani'''m'''al]], [[him|hi'''m''']]
-|-
-| {{enPRchar|m}}
-| {{IPAchar|m̩ (əm)}}<ref name="cons"/>
-| <tt>m=</tt>
-| [[spasm|spas'''m''']], [[prism|pris'''m''']]
-|-
-| {{enPRchar|n}}
-| {{IPAchar2|Alveolar nasal.ogg|n}}
-| <tt>n</tt>
-| [[note|'''n'''ote]], [[ant|a'''n'''t]], [[pan|pa'''n''']]
-|-
-| {{enPRchar|n}}
-| {{IPAchar|n̩ (ən)}}<ref name="cons"/>
-| <tt>n=</tt>
-| [[hidden|hidd'''en''']]
-|-
-| {{enPRchar|ng}}
-| {{IPAchar2|Retroflex nasal.ogg|ŋ}}
-| <tt>N</tt>
-| [[singer|si'''ng'''er]], [[ring|ri'''ng''']]
-|-
-| {{enPRchar|p}}
-| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}
-| <tt>p</tt>
-| [[pen|'''p'''en]], [[spin|s'''p'''in]], [[top|to'''p''']], [[apple|a'''pp'''le]]
-|-
-| {{enPRchar|r}}
-| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>
-| <tt>r\</tt>
-| [[run|'''r'''un]], [[very|ve'''r'''y]]
-|-
-| {{enPRchar|s}}
-| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}
-| <tt>s</tt>
-| [[set|'''s'''et]], [[list|li'''s'''t]], [[pass|pa'''ss''']], [[city|'''c'''ity]], [[ice|i'''ce''']]
-|-
-| {{enPRchar|sh}}
-| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}
-| <tt>S</tt>
-| [[she|'''sh'''e]], [[ash|a'''sh''']], [[sure|'''s'''ure]], [[ration|ra'''t'''ion]]
-|-
-| {{enPRchar|t}}
-| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}
-| <tt>t</tt>
-| [[ton|'''t'''on]], [[stab|s'''t'''ab]], [[mat|ma'''t''']], [[attend|a'''tt'''end]], [[butt|bu'''tt''']], [[ought|ou'''ght''']]
-|-
-| {{enPRchar|th}}
-| {{IPAchar2|Voiceless dental fricative.ogg|θ}}
-| <tt>T</tt>
-| [[thin|'''th'''in]], [[nothing|no'''th'''ing]], [[moth|mo'''th''']]
-|-
-| {{enPRchar|''th''}}
-| {{IPAchar2|voiced dental fricative.ogg|ð}}
-| <tt>D</tt>
-| [[this|'''th'''is]], [[father|fa'''th'''er]], [[clothe|clo'''the''']]
-|-
-| {{enPRchar|v}}
-| {{IPAchar2|Voiced labiodental fricative.ogg|v}}
-| <tt>v</tt>
-| [[voice|'''v'''oice]], [[navel|na'''v'''el]], [[save|sa'''ve''']], [[of|o'''f''']]
-|-
-| {{enPRchar|w}}
-| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}
-| <tt>w</tt>
-| [[wet|'''w'''et]]
-|-
-| {{enPRchar|y}}
-| {{IPAchar2|Palatal approximant.ogg|j}}
-| <tt>j</tt>
-| [[yes|'''y'''es]]
-|-
-| {{enPRchar|z}}
-| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}
-| <tt>z</tt>
-| [[zoo|'''z'''oo]], [[quiz|qui'''z''']], [[fuzz|fu'''zz''']], [[rose|ro'''s'''e]], [[xylem|'''x'''ylem]]
-|-
-| {{enPRchar|zh}}
-| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}
-| <tt>Z</tt>
-| [[vision|vi'''s'''ion]], [[treasure|trea'''s'''ure]], [[beige|bei'''ge''']]
-|}
+<h4>Descendants</h4>
 
-<references/>
+<h4>References</h4>
 
-===Other symbols===
-A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. 
-
-{| {{wikitable}}
-! enPR<br>([[w:American Heritage Dictionary|AHD]])
-! [[w:International Phonetic Alphabet|IPA]]
-! [[w:SAMPA|SAMPA]]
-! Indicates
-|-
-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})
-| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)
-| <tt>"</tt> (<tt>"</tt>a)
-| primary [[w:Stress (linguistics)|stress]]
-|-
-| {{enPRchar|'}} (a{{enPRchar|'}})
-| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)
-| <tt>%</tt> (<tt>%</tt>a)
-| [[w:secondary stress|secondary stress]], sometimes tertiary stress
-|-
-| a{{enPRchar|-}}a
-| a{{IPAchar|.}}a
-| a<tt>.</tt>a
-| division between [[syllable|syllables]]
-|}
-
-'''Note:''' The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme.<!--When in the order secondary-primary, they represent the same phoneme. However, when primary-secondary, they do not, and dictionaries such as the OED simply omit the secondary.-->
+<h4>External links</h4>
 
+<h3>Anagrams</h3>
+---- (Dividing line between languages)
+***etymology***
+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>
+
+<h3>Noun</h3>
+{wikipedia}{{seeCites|pos=right}}{{en-noun|etymolog|ies}}
+<ol><li> {uncountable} The study of the historical development of languages, particularly as manifested in individual words.</li>
+<li> {countable} An account of the origin and historical development of a word.</li>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> Not to be confused with {{term|entomology|the study of insects|lang=en}} or {{term|etiology|the study of causes or origins|lang=en}}.</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> etymological</li>
+<li> fake etymology</li>
+<li> false etymology</li>
+<li> folk etymology</li>
+<li> popular etymology</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> etymon</li>
+<li> etymologist</li>
+<li> etymologize</li>
+</ul>
+
+<h4>Hyponyms</h4>
+<ul><li> onomastics</li>
+</ul>
+
+<h4>References</h4>
+<ul><li> {{R:American Heritage 2000|etymology}}</li>
+<li> {{R:Dictionary.com|etymology}}</li>
+<li> {{R:WordNet 2003|etymology}}</li>
+</ul>
+Category:English words suffixed with -ologyCategory:en:Linguisticsar:etymologyast:etymologyca:etymologyco:etymologycy:etymologyet:etymologyel:etymologyes:etymologyeo:etymologyfa:etymologyfr:etymologyko:etymologyio:etymologyid:etymologyit:etymologykn:etymologyli:etymologyhu:etymologymg:etymologyml:etymologymy:etymologynl:etymologyja:etymologyno:etymologyoc:etymologypl:etymologypt:etymologyscn:etymologysimple:etymologyfi:etymologysv:etymologyta:etymologyte:etymologyth:etymologytr:etymologyvi:etymologyzh:etymology
+===events===
+current events:
 
-===Entry===
-Wiktionary:Entry layout explained: 
+<h3>Noun</h3>
+{{en-plural noun|head=current events|sg=current event}}
+<ol><li> current affairs; those events and issues of interest currently found in the news.</li>
+</ol>
 
-===Noun===
-{{en-noun}}
+<h3>See also</h3>
+<ul><li> current affairs</li>
+</ul>
+am:current eventsang:current eventszh-min-nan:current eventset:current eventsel:current eventsfr:current eventsia:current eventskk:current eventsmg:current eventsru:current eventssd:current eventsst:current eventssu:current eventsta:current eventsth:current eventstt:current events
+===explained===
+Wiktionary:Entry layout explained:
 
-# A piece of [[furniture]] to [[sleep]] on.
+<h3>Noun</h3>
+{en-noun}
+<ol><li> A piece of furniture to sleep on.</li>
+</ol>
 
-===References===        
-* ''The Oxford Paperback Dictionary''   
+<h3>References</h3>
+        
+<ul><li> <em>The Oxford Paperback Dictionary</em>       </li>
+</ul>
 </pre>
+<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:
 
-===Variations for languages other than English===
-Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.
+<h3>Alternative forms</h3>
 
-Some languages do have characteristics that require variation from the standard format.  For links to these variations see [[Wiktionary:Language considerations]].
+<h3>Etymology</h3>
 
+<h3>Pronunciation</h3>
+<ul><li> Phonetic transcriptions</li>
+<li> Audio files in any relevant dialects</li>
+<li> Rhymes</li>
+<li> Homophones</li>
+<li> Hyphenation</li>
+</ul>
 
-Wiktionary:Entry layout explained: 
-===Alternative forms===
-===Etymology===
-===Pronunciation===
-* Phonetic transcriptions
-* Audio files in any relevant dialects
-* Rhymes
-* Homophones
-* Hyphenation
-===Noun===
+<h3>Noun</h3>
 Declension
-# Meaning 1
-#* Quotations
-# Meaning 2
-#* Quotations
-     etc.
-====Usage notes====
-====Synonyms====
-====Antonyms====
-====Derived terms====
-====Related terms====
-====Translations====
-====References====
-====External links====
-===Verb===
-Conjugation
-# Meaning 1
-#* Quotations
+<ol><li> Meaning 1</li>
+<ul><li> Quotations</li>
+</ul>
+<li> Meaning 2</li>
+<ul><li> Quotations</li>
+</ul>
+</ol>
      etc.
-====Usage notes====
-====Synonyms====
-====Antonyms====
-====Derived terms====
-====Related terms====
-====Translations====
-====Descendants====
-====References====
-====External links====
-===Anagrams===
----- (Dividing line between languages)
-
-***etymology***
-etymology: 
-
-===Etymology===
-From {{etyl|enm}} {{term|etimologie|lang=enm}}, from {{etyl|fro}} {{term|ethimologie|lang=fro}}, from {{etyl|la}} {{term|etymologia|lang=la}}, from {{etyl|grc}} {{term|sc=polytonic|ἐτυμολογία|tr=etumologia|lang=grc}}, from {{term|sc=polytonic|ἔτυμον|tr=etumon||true sense}} and {{term|sc=polytonic|-λογία|tr=-logia||study of}} (from {{term|sc=polytonic|λόγος|tr=logos}}).
-
-===Pronunciation===
-* {{a|RP}} {{enPR|ĕt"ə-mŏl'ə-jē}}, {{IPA|/ˌɛt.ɪˈmɒl.ə.dʒi/}}, {{X-SAMPA|/%Et.I"mQl.@.dZi/}}
-* {{a|GenAm}} {{enPR|ĕt"ə-mŏl'ə-jē}}, {{IPA|/ˌɛtəˈmɑlədʒi/}}, {{X-SAMPA|/%Et@"mAl@dZi/}}
-
-===Noun===
-{{wikipedia}}
-{{seeCites|pos=right}}
-{{en-noun|etymolog|ies}}
-
-# {{uncountable}} The study of the [[historical]] development of languages, particularly as manifested in individual words.
-# {{countable}} An account of the [[origin]] and [[historical]] development of a word.
-
-====Usage notes====
-* Not to be confused with {{term|entomology|lang=en||the study of insects}} or {{term|etiology|lang=en||the study of causes or origins}}.
-
-====Derived terms====
-* [[etymological]]
-* [[fake etymology]]
-* [[false etymology]]
-* [[folk etymology]]
-* [[popular etymology]]
-
-====Related terms====
-* [[etymon]]
-* [[etymologist]]
-* [[etymologize]]
-
-====Hyponyms====
-* [[onomastics]]
-
-====Translations====
-{{trans-top|study of the historical development of languages, particularly of individual words}}
-* Ancient Greek: {{t|grc|ἡ ἐτυμολογία|f|tr=hē etumologia}}
-* Arabic: {{t|ar|تأثيل|m|tr=ta‘thiil}}
-* Aragonese: {{t-|an|etimolochía|f|xs=Aragonese}}
-* Armenian: {{t|hy|ստուգաբանություն|tr=stugabanut'yun}}
-* Asturian: {{t+|ast|etimoloxía|f|xs=Asturian}}
-* Basque: {{t-|eu|etimologia|xs=Basque}}
-* Bosnian: [[etimologija#Bosnian|etimologija]] {{f}}
-* Bulgarian: [[етимология]] (etimológija) {{f}}
-* Catalan: {{t+|ca|etimologia|f}}
-* Chinese:
-*: [[Gan]]: {{tø|gan|語源學|sc=Hans}}, {{tø|gan|语源学|tr=ngi3 ngion4 hok6|sc=Hans}}
-*: Mandarin: {{t|cmn|語源學|sc=Hani}}, {{t|cmn|语源学|tr=yǔyuánxué|sc=Hani}}
-* Corsican: {{t+|co|etimulugia|xs=Corsican}}
-* Croatian: {{t+|hr|etimologija|f|alt=etimològija}}
-* Czech: {{t+|cs|etymologie|f}}
-* Danish: {{t-|da|etymologi|c}}
-* Dutch: {{t+|nl|etymologie|f}}
-* Esperanto: {{t|eo|etimologio|xs=Esperanto}}
-* Estonian: {{t|et|etümoloogia}}
-* Faroese: {{t|fo|upprunafrøði|f}}
-* Finnish: {{t+|fi|etymologia}}
-* French: {{t+|fr|étymologie|f}}
-* Galician: {{t+|gl|etimoloxía|f|xs=Galician}}
-* Georgian: {{t|ka|ეტიმოლოგია|tr=etimologia|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Etymologie|f}}
-* Greek: {{t+|el|ετυμολογία|f|tr=etymología}}
-* Hebrew: {{t+|he|אטימולוגיה|f|tr=etimológya}}
-* Hindi: {{t|hi|व्युत्पत्ति|tr=vyutpatti|xs=Hindi}}, {{t|hi|व्युत्पत्तिशास्त्र|tr=vyutpattiśāstr|xs=Hindi}}
-* Hungarian: {{t+|hu|etimológia}}, {{t|hu|szófejtés}}
-* Icelandic: {{t+|is|orðsifjafræði|f}}
-* Ido: {{t|io|etimologio|xs=Ido}}
-* Indonesian: {{t+|id|etimologi|xs=Indonesian}}
-* Interlingua: {{t-|ia|etymologia|xs=Interlingua}}
-* Italian: {{t+|it|etimologia|f}}
-* Japanese: {{t|ja|語源学|tr=[[ごげんがく]], gogengaku}}
-{{trans-mid}}
-* Kannada: {{t+|kn|ಪದದ ಹಿನ್ನೆಲೆ|tr=padada hinnele|sc=Knda|xs=Kannada}}
-* Khmer: {{t|km|និរុត្តិសាស្ត្រ|sc=Khmr|tr=nirutte saah}}
-* Korean: {{t+|ko|어원학|tr=eowonhak|sc=Hang}} ({{t|ko|語源學|sc=Hani}}), {{t|ko|어원|sc=Kore}}
-* Kurdish:
-*: Kurmanji: {{t|kmr|bêjenasî|f}}
-* Macedonian: {{t-|mk|етимологија|f|tr=etimológija}}
-* Malay: {{t-|ms|etimologi|xs=Malay}}
-* Maltese: {{t|mt|etimoloġija|f|xs=Maltese}}
-* Navajo: {{tø|nv|bizhiʼígíí}}
-* Norwegian: {{t+|no|etymologi|m}} ''(both Bokmål and Nynorsk)''
-* Novial: {{tø|nov|etimologia}}
-* Occitan: {{t+|oc|etimologia|f|xs=Occitan}}
-* Persian: {{t-|fa|ریشه‌شناسی|tr=rīsheshenāsi|xs=Persian}}, {{t|fa|اشتقاق|sc=fa-Arab}}
-* Polish: {{t+|pl|etymologia|f}}
-* Portuguese: {{t+|pt|etimologia|f}}
-* Romanian: {{t+|ro|etimologie|f}}
-* Russian: {{t+|ru|этимология|f|tr=etimológija}}
-* Serbian:
-*: Cyrillic: [[етимологија#Serbian|етимологија]] {{f}}
-*: Roman: [[etimologija#Serbian|etimologija]] {{f}}
-* Serbo-Croatian:
-*: Roman: [[etimologija#Serbian|etimologija]] {{f}}
-*: Cyrillic: [[етимологија#Serbian|етимологија]] {{f}}
-* Sicilian: {{t+|scn|etimoluggìa|f|xs=Sicilian}}
-* Slovak: {{t-|sk|etymológia|f}}
-* Slovene: {{t+|sl|etimologija|f}}
-* Spanish: {{t+|es|etimología|f}}
-* Swedish: {{t+|sv|etymologi|c}}
-* Tagalog: {{t|tl|etimolohiya|xs=Tagalog}}
-* Tamil: {{t|ta|சொற்பிறப்பியல்|tr=coṟpiṟappiyal|sc=Taml}}
-* Thai: {{t-|th|นิรุกติศาสตร์|tr=níróoktì sàat}}
-* Turkish: {{t+|tr|köken bilimi}}]], {{t+|tr|etimoloji}}
-* Ukrainian: {{t|uk|етимологія|f|tr=etymolóhija|xs=Ukrainian}}
-* Vietnamese: {{t+|vi|từ nguyên học|xs=Vietnamese}} ({{t|vi|詞源學|sc=Hani|xs=Vietnamese}}), {{t+|vi|từ nguyên|xs=Vietnamese}} ({{t|vi|詞源|sc=Hani|xs=Vietnamese}})
-* Volapük: {{t|vo|tümolog}}
-{{trans-bottom}}
-
-{{trans-top|account of the origin and historical development of a word}}
-* Arabic: {{t-|ar|إشتقاق|m|tr='ishtiqaaq}}, {{t|ar|تأثيل|m|tr=ta‘thiil}}
-* Armenian: {{t|hy|ստուգաբանություն|tr=stugabanut'yun}}
-* Bosnian: [[etimologija#Bosnian|etimologija]] {{f}}
-* Bulgarian: [[етимология]] (etimológija) {{f}}
-* Catalan: {{t+|ca|etimologia|f}}
-* Chinese:
-*: Mandarin: {{t-|cmn|詞源|sc=Hani}}, {{t-|cmn|词源|tr=cíyuán|sc=Hani}}, {{t-|cmn|語源|sc=Hani}}, {{t-|cmn|语源|tr=yǔyuán|sc=Hani}}, {{t-|cmn|字源|tr=zìyuán|sc=Hani}}
-* Corsican: {{t+|co|etimulugia|xs=Corsican}}
-* Croatian: {{t+|hr|etimologija|f|alt=etimològija}}
-* Czech: {{t+|cs|etymologie|f}}
-* Danish: {{t-|da|etymologi|c}}
-* Dutch: {{t+|nl|etymologie|f}}
-* Esperanto: {{t|eo|etimo}}, {{t|eo|vortodeveno}}
-* Estonian: {{t|et|etümoloogia}}
-* Finnish: {{t+|fi|etymologia}}
-* French: {{t+|fr|étymologie|f}}
-* Georgian: {{t|ka|ეტიმოლოგია|tr=etimologia|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Etymologie|f}}
-* Greek: {{t+|el|ετυμολόγηση|f|tr=etymológisi}}
-* Hungarian: {{t+|hu|etimológia}}, {{t|hu|szófejtés}}
-* Icelandic: {{t-|is|orðsifjar|f|p}}
-* Irish: {{t|ga|sanasaíocht|f}}
-* Italian: {{t+|it|etimologia|f}}
-* Japanese: {{t+|ja|語源|tr=ごげん, gogen}}
-* Khmer: {{t|km|ដើមកំណើតពាក្យ|sc=Khmr|tr=daəm kɑmnaət piek}}
-{{trans-mid}}
-* Korean: {{t+|ko|어원|tr=eoweon|sc=Hang}} ({{t+|ko|語源|sc=Hani}})
-* Macedonian: {{t-|mk|етимологија|f|tr=etimológija}}
-* Manx: {{t|gv|bun-ocklaght|f}}
-* Norwegian: {{t+|no|etymologi|m}} ''(both Bokmål and Nynorsk)''
-* Occitan: {{t+|oc|etimologia|f|xs=Occitan}}
-* Persian: {{t-|fa|ریشه‌شناسی|tr=rišešenâsi|xs=Persian}}
-* Polish: {{t+|pl|etymologia|f}}, {{t+|pl|źródłosłów|m}}
-* Portuguese: {{t+|pt|etimologia|f}}
-* Romanian: {{t+|ro|etimologie|f}}
-* Russian: {{t+|ru|этимология|f|tr=etimológija}}
-* Serbian:
-*: Cyrillic: [[етимологија#Serbian|етимологија]] {{f}}
-*: Roman: [[etimologija#Serbian|etimologija]] {{f}}
-* Serbo-Croatian:
-*: Roman: [[etimologija#Serbian|etimologija]] {{f}}
-*: Cyrillic: [[етимологија#Serbian|етимологија]] {{f}}
-* Slovak: {{t-|sk|etymológia|f}}
-* Slovene: {{t+|sl|etimologija|f}}
-* Spanish: {{t+|es|etimología|f}}
-* Swedish: {{t+|sv|etymologi|c}}
-* Tagalog: {{t|tl|etimolohiya|xs=Tagalog}}
-* Tamil: {{t|ta|சொற்பிறப்பியல்|tr=coṟpiṟappiyal|sc=Taml}}
-* Turkish: {{t+|tr|köken bilimi}}]], {{t+|tr|etimoloji}}
-* Ukrainian: {{t|uk|етимологія|f|tr=etymolóhija|xs=Ukrainian}}
-* Vietnamese: {{t+|vi|từ nguyên|xs=Vietnamese}} ({{t|vi|詞源|sc=Hani|xs=Vietnamese}})
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|af}}: [[etimologie]]
-* {{ttbc|eu}}: [[etimologia]]
-* {{ttbc|et}}: [[etümoloogia]]
-* {{ttbc|id}}: [[etimologi]]
-{{trans-mid}}
-* {{ttbc|ia}}: [[etymologia]]
-* {{ttbc|la}}: [[etymologia]] {{f}}
-* {{ttbc|nov}}: [[etimologia]]
-* {{ttbc|sd}}: {{sd-Arab|[[بڻڀياس|بُڻڀياسُ]]}} (bunn bhiyaasu) {{m}}
-{{trans-bottom}}
-
-====References====
-* {{R:American Heritage 2000|etymology}}
-* {{R:Dictionary.com|etymology}}
-* {{R:WordNet 2003|etymology}}
-
-[[Category:English words suffixed with -ology]]
-[[Category:en:Linguistics]]
-
-[[ar:etymology]]
-[[ast:etymology]]
-[[ca:etymology]]
-[[co:etymology]]
-[[cy:etymology]]
-[[et:etymology]]
-[[el:etymology]]
-[[es:etymology]]
-[[eo:etymology]]
-[[fa:etymology]]
-[[fr:etymology]]
-[[ko:etymology]]
-[[io:etymology]]
-[[id:etymology]]
-[[it:etymology]]
-[[kn:etymology]]
-[[li:etymology]]
-[[hu:etymology]]
-[[mg:etymology]]
-[[ml:etymology]]
-[[my:etymology]]
-[[nl:etymology]]
-[[ja:etymology]]
-[[no:etymology]]
-[[oc:etymology]]
-[[pl:etymology]]
-[[pt:etymology]]
-[[scn:etymology]]
-[[simple:etymology]]
-[[fi:etymology]]
-[[sv:etymology]]
-[[ta:etymology]]
-[[te:etymology]]
-[[th:etymology]]
-[[tr:etymology]]
-[[vi:etymology]]
-[[zh:etymology]]
-===events===
-current events: 
-
-===Noun===
-{{en-plural noun|head=[[current]] [[events]]|sg=current event}}
-
-# [[current]] [[affairs]]; those [[event]]s and issues of interest currently found in the news.
-
-====Translations====
-{{trans-top|news items}}
-* Danish: {{t-|da|aktuelle begivenheder}}
-* Dutch: {{t|nl|actualiteiten}}
-* Finnish: {{t|fi|nykyiset tapahtumat}}
-* French: {{t+|fr|actualités}}
-* German: {{t|de|aktuelle Veranstaltungen}}
-* Japanese: {{t-|ja|時事|tr=jiji}}
-* Navajo: {{tø|nv|ádahooníłígíí}}
-{{trans-mid}}
-* Norwegian: {{t|no|aktuelle hendelser}}
-* Portuguese: {{t|pt|eventos atuais}}
-* Spanish: [[acontecimiento|acontecimientos]] de [[actualidad]] {{m|p}}
-* Swedish: {{t|sv|aktualitet|alt=aktualiteter}},  {{t|sv|aktuell|alt=aktuella}} {{t|sv|händelse|alt=händelser}}
-* Telugu: {{t|te|ప్రస్తుత ఘటనలు|sc=Telu}}
-{{trans-bottom}}
-
-===See also===
-* [[current affairs]]
-
-[[am:current events]]
-[[ang:current events]]
-[[zh-min-nan:current events]]
-[[et:current events]]
-[[el:current events]]
-[[fr:current events]]
-[[ia:current events]]
-[[kk:current events]]
-[[mg:current events]]
-[[ru:current events]]
-[[sd:current events]]
-[[st:current events]]
-[[su:current events]]
-[[ta:current events]]
-[[th:current events]]
-[[tt:current events]]
-===explained===
-Wiktionary:Entry layout explained: 
+<h4>Usage notes</h4>
 
-===Noun===
-{{en-noun}}
+<h4>Synonyms</h4>
 
-# A piece of [[furniture]] to [[sleep]] on.
+<h4>Antonyms</h4>
 
-===References===        
-* ''The Oxford Paperback Dictionary''   
-</pre>
+<h4>Derived terms</h4>
 
-===Variations for languages other than English===
-Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.
+<h4>Related terms</h4>
 
-Some languages do have characteristics that require variation from the standard format.  For links to these variations see [[Wiktionary:Language considerations]].
+<h4>References</h4>
 
+<h4>External links</h4>
 
-Wiktionary:Entry layout explained: 
-===Alternative forms===
-===Etymology===
-===Pronunciation===
-* Phonetic transcriptions
-* Audio files in any relevant dialects
-* Rhymes
-* Homophones
-* Hyphenation
-===Noun===
-Declension
-# Meaning 1
-#* Quotations
-# Meaning 2
-#* Quotations
-     etc.
-====Usage notes====
-====Synonyms====
-====Antonyms====
-====Derived terms====
-====Related terms====
-====Translations====
-====References====
-====External links====
-===Verb===
+<h3>Verb</h3>
 Conjugation
-# Meaning 1
-#* Quotations
+<ol><li> Meaning 1</li>
+<ul><li> Quotations</li>
+</ul>
+</ol>
      etc.
-====Usage notes====
-====Synonyms====
-====Antonyms====
-====Derived terms====
-====Related terms====
-====Translations====
-====Descendants====
-====References====
-====External links====
-===Anagrams===
----- (Dividing line between languages)
-
-===false===
-false friend: 
-{{was wotd|2007|May|4}}
-{{wikipedia}}
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/ˌfɒls ˈfrɛnd/|/ˌfɔːls ˈfrɛnd/}}
-* {{a|US}} {{IPA|/ˌfɑːls ˈfrɛnd/}}
-* {{audio|en-us-false friend.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun|sg=[[false]] [[friend]]}}
-
-# {{linguistics|idiomatic}} A [[word]] in a foreign language bearing a [[deceptive]] resemblance to a word in one's own language.
-
-====Usage notes====
-* Examples:
-** The French ''[[nous]] [[demandons]]'' means "''we [[ask]]''", but sounds like "''we [[demand]]''", which can turn negotiation into confrontation.
-** The Spanish word ''[[embarazada]]'' means "''[[pregnant]]''", not "''[[embarrassed]]''" &mdash; "''Estoy embarazada''" means "''I am pregnant''", not "''I am embarrassed''".
-** The German word ''[[will]]'' ([[want]]) is not a future tense marker &mdash; "''Ich will gehen''" means "''I want to go''", not "''I will go''".
-*** Same for Dutch and Afrikaans, "''Ik wil gaan''" and "''Ek wil gaan''" mean "''I want to go''".
-** The Italian word ''[[triviale]]'' ([[vulgar]]) is written almost like ''[[trivial]]'', but the two words share only a common Latin root (''[[trivium]]'' in Latin means [[crossroad]]) and no longer any meaning; "''Questo è triviale''" means "''This is in bad taste''", not "''This is obvious''".
-** The Danish word ''[[gift]]'' does not mean gift as in present, but can mean a verb form of [[married|to marry]]; ''Han er gift'' means ''He is married''. The word for gift is [[gave]], which is close to the past tense of the verb [[giver]]. If ''du gav en gave'', you gave a gift. Likewise, if ''du gav en gift'', you actually gave [[poison]].
-
-====Hyponyms====
-* [[partial false friend]]
-
-====Translations====
-{{trans-top|false friend}}
-* Arabic: {{t|ar|صديق كاذب|m|tr=Sadiiq kaaDib}}
-* [[Catalan]]: {{t|ca|fals amic|m}}
-* Chinese:
-*: Mandarin: {{t|cmn|偽友|sc=Hani}},  {{t|cmn|伪友|tr=wěi yǒu|sc=Hani}},  {{t|cmn|假友|tr=jiǎ yǒu|sc=Hani}},  {{t|cmn|假等義|sc=Hani}},  {{t|cmn|假等义|tr=jiǎ děngyì|sc=Hani}}
-* Danish: {{t-|da|falsk ven}}
-* Esperanto: {{t|eo|falsa amiko|xs=Esperanto}}
-* Finnish: {{t|fi|väärä ystävä}}, {{t|fi|petollinen ystävä}}
-* French: {{t+|fr|faux-ami|m}}
-* [[Galician]]: {{t-|gl|falso amigo|m|xs=Galician}}
-* German: {{t|de|falscher Freund|m}}, {{t|de|Übersetzungsfalle|f}}
-* Hindi: {{t|hi|झूठा दोस्त|tr=jhūṭhā dost|xs=Hindi}}, {{t|hi|झूठे दोस्त|p|tr=jhūṭhē dōst|xs=Hindi}}
-* Hungarian: {{t|hu|hamis barát}}
-{{trans-mid}}
-* Icelandic: {{t|is|falsvinir|m|p}},  {{t|is|svikatengsl|n|p}}
-* Indonesian: {{t|id|teman palsu|xs=Indonesian}}
-* [[Interlingua]]: {{t|ia|false amico|xs=Interlingua}}
-* Italian: {{t-|it|falso amico|m}}
-* Japanese: {{t|ja|偽りの友|tr=いつわりのとも, itsuwari-no tomo}}
-* Korean: {{t|ko|거짓 친구|tr=geojit chingu|sc=Hang}}
-* Norwegian: {{t-|no|falsk venn}}
-* Polish: {{t+|pl|fałszywy przyjaciel|m}}
-* Portuguese: {{t-|pt|falso amigo|m}}
-* Romanian: {{t|ro|prieten fals|m}}
-* Russian: {{t|ru|ложный друг|m|tr=lóžnyj drug}}, {{t|ru|ложные друзья|m|p|tr=lóžnyje druzjá}}
-* Slovene: {{t|sl|lažni prijatelj|m}}
-* Spanish: {{t+|es|falso amigo|m}}
-* Swedish: {{t|sv|falsk vän|c}}
-{{trans-bottom}}
-
-===See also===
-* [[cognate]]
-* [[false cognate]]
-
-[[fr:false friend]]
-[[id:false friend]]
-[[pl:false friend]]
-[[sv:false friend]]
-===FAQ===
-Help:FAQ: 
+<h4>Usage notes</h4>
 
-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?
+<h4>Synonyms</h4>
 
-A: No.  It is very much a required heading.
+<h4>Antonyms</h4>
 
-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.
+<h4>Derived terms</h4>
 
-:Some more reasons why "==English==" is required:
-:# Introduces newcomers to wiki* syntax
-:# Indicates (by implication) to newcomers that a single entry can have more than one language
-:# Indicates ''which'' parts are English
-:# It reminds new contributors that they can enter words and definitions of other languages.
-:# The absence of the English heading is an indication that the person entering it is new, and the article probably needs cleanup.
-<!--:# The use of 1<sup>st</sup> level English headings implies a vandal, therefore candidate for deletion.
+<h4>Related terms</h4>
 
-I COMMENTED OUT THIS BIT, AS IT IS VERY MISLEADING. User:Keene - 3 Jan 2006-->
-:# The presence of the English heading makes it readily apparent how another language definition can be added to a page.
-:# 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.)
-:#The presence of the English heading makes parsing articles by internal "bots" easier/possible.
+<h4>Descendants</h4>
 
+<h4>References</h4>
 
-===FDL===
-GNU FDL: 
-{{wikipedia}}
-
-==={{initialism}}===
-'''GNU FDL'''
+<h4>External links</h4>
 
-# [[GNU]] [[free|Free]] [[documentation|Documentation]] [[license|License]]
+<h3>Anagrams</h3>
+---- (Dividing line between languages)
+===false===
+false friend:
+{{was wotd|2007|May|4}}{wikipedia}
+<h3>Pronunciation</h3>
+<ul><li> {{a|RP}} {{IPA|/ˌfɒls ˈfrɛnd/|/ˌfɔːls ˈfrɛnd/}}</li>
+<li> {{a|US}} {{IPA|/ˌfɑːls ˈfrɛnd/}}</li>
+<li> {{audio|en-us-false friend.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|sg=false friend}}
+<ol><li> {{linguistics|idiomatic}} A word in a foreign language bearing a deceptive resemblance to a word in one's own language.</li>
+</ol>
+
+<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 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 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>
+
+<h4>Hyponyms</h4>
+<ul><li> partial false friend</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> cognate</li>
+<li> false cognate</li>
+</ul>
+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>
+<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>
+<li> It reminds new contributors that they can enter words and definitions of other languages.</li>
+<li> The absence of the English heading is an indication that the person entering it is new, and the article probably needs cleanup.</li>
+</ol>
+</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>
+</ol>
+</ul>
 
-[[pl:GNU FDL]]
+===FDL===
+GNU FDL:
+{wikipedia}
+<h3>{initialism}</h3>
+<b>GNU FDL</b>
+<ol><li> GNU Free Documentation License</li>
+</ol>
+pl:GNU FDL
 ***February***
-February: 
-
-===Etymology===
-Re-[[Latinize]]d from {{etyl|enm}} {{term|feoverel|lang=enm}}, from {{etyl|fro}} {{term|feverier|lang=fro}}, from {{etyl|la}} {{term|februarius|februārius|lang=la}}, of the month of purification, from ''februa'', the Roman festival of purification, plural of {{term|februum|lang=la}}; perhaps from {{etyl|la}} {{term|febris||fever|lang=la}}, from [[Proto-Indo-European]] base *''dhegh-'', to burn.
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈfɛb.rʊ.ə.ɹi/|/ˈfɛb.j(ʊ.)ə.ɹi/}}; {{X-SAMPA|/"fEb.rU.@.ri/|/"fEb.j(U.)@.ri/}}
-* {{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/}}
-* {{audio|en-us-February.ogg|Audio (US)}}
-
-===Proper noun===
-{{en-proper noun|''plural:'' '''[[Februarys]]''' or '''[[Februaries]]'''}}
-
-# The second [[month]] of the [[Gregorian calendar]], following [[January]] and preceding [[March]].
-
-====Usage notes====
-* The pronunciation of the first ''r'' as /j/ has come about by [[dissimilation]] and [[analogy]] with [[January]]. Abbreviation: '''[[Feb]]''' or '''[[Feb.]]'''
-
-====Derived terms====
-{{top2}}
-* [[February daphne]]
-* [[February fill-dike]]
-* [[February Patent]]
-* [[February red]]
-{{mid2}}
-* [[February Revolution]]
-* [[February Strike]]
-* [[February Uprising]]
-* [[mid-February]]
-{{bottom}}
-
-====Related terms====
-* [[februate]]
-* [[februation]]
-
-====Translations====
-{{trans-top|second month of the Gregorian calendar}}
-* Abaza: {{tø|abq|мазахӀван}}
-* Abkhaz: {{t-|ab|жәабран|tr=žwabran|sc=Cyrl|xs=Abkhaz}}
-* Afrikaans: {{t-|af|Februarie|xs=Afrikaans}}
-* Alabama: {{tø|akz|hasiholtina istatókla|xs=Alabama}}, {{tø|akz|Febwiiri|xs=Alabama}}
-* Albanian: {{t+|sq|shkurti|xs=Albanian}}
-* Alemannic German: {{tø|gsw|februar|xs=Alemannic German}}
-* Alutiiq: {{tø|ems|Nanicqaaq Iraluq}}
-* Amharic: {{t|am|ፌብሩወሪ|tr=februwări|sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Múhshchiiʼ}}
-* Arabic: {{t+|ar|فبراير|m|alt=فِبْرَايِر|tr=fibrāyir}}, {{t+|ar|شباط|m|alt=شُبَاطٌ|tr=šubāṭ}}
-*: Moroccan: {{Arab|[[شهر جوج]]}} (šhr jūj)
-* Aragonese: {{t+|an|febrero|xs=Aragonese}}
-* Aramaic: {{tø|arc|ܫܒܛ}}
-* Armenian: {{t+|hy|փետրվար|tr=p'etrvar}}
-*: Old Armenian: {{tø|xcl|փեբրուարիոս|tr=pʿebruarios|sc=Armn}}
-* Asturian: {{t+|ast|febreru|m|xs=Asturian}}
-* Aymara: {{t-|ay|anata phaxsi|xs=Aymara}}
-* Azeri: {{t+|az|fevral|xs=Azeri}}
-* Bashkir: {{tø|ba|февраль|sc=Cyrl|xs=Bashkir}}
-* Basque: {{t+|eu|otsail|xs=Basque}}
-* Belarusian: {{t-|be|люты|m|tr=ljuty|xs=Belarusian}}
-* Bengali: {{t-|bn|ফেব্রুয়ারি|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|februari}}
-* Breton: {{t-|br|c'hwevrer|xs=Breton}} {{t-|br|miz c'hwevrer|xs=Breton}}
-* Bulgarian: {{t+|bg|февруари|m|tr=fevruari}}
-* Burmese: {{t+|my|ဖေဖော်ဝါရီ|tr=hpehpawwari|sc=Mymr|xs=Burmese}}
-* Catalan: {{t+|ca|febrer|m}}
-* Cebuano: {{tø|ceb|pebrero}}
-* Cherokee: {{t|chr|ᎧᎦᎵ|tr=kagali}}
-* Chinese:
-*: Mandarin: {{t|cmn|二月|tr=èryuè}}
-* Chuvash: {{tø|cv|нарăс|tr=naras|sc=Cyrl}}
-* Cornish: {{t-|kw|mis Whevrer|xs=Cornish}}
-* Corsican: {{t+|co|ferraghju|xs=Corsican}}
-* Czech: {{t+|cs|únor|m}}
-* Dakota: {{tø|dak|Wicatawi}}
-* Dalmatian: {{t|dlm|februar}}
-* Danish: {{t+|da|februar|c}}, {{t-|da|blidemåned}} {{qualifier|archaic}}
-* Dhivehi: {{t-|dv|ފެބްރުއަރީ|xs=Dhivehi}}
-* Dutch: {{t+|nl|februari|m}}
-*: [[Flemish]]: {{tø|vls|februoari}}
-* Dutch Low Saxon: {{tø|nds-nl|febrewaori}}
-* Erzya: {{tø|myv|даволков}}
-* Esperanto: {{t+|eo|februaro|xs=Esperanto}}, {{t-|eo|Februaro|xs=Esperanto}}
-* Estonian: {{t+|et|veebruar}}
-* Ewe: {{tø|ee|Dzodze}}, {{tø|ee|Februar}}
-* Extremaduran: {{tø|ext|hebreru}}
-* Faroese: {{t-|fo|februar|xs=Faroese}}
-* Fiji Hindi: {{tø|hif|february}}
-* Fijian: {{t|fj|Veverueri}}
-* Finnish: {{t+|fi|helmikuu}}
-* Franco-Provençal: {{tø|frp|fevriér}}
-* French: {{t+|fr|février|m}}
-* Friulian: {{tø|fur|fevrâr}}
-* Galician: {{t+|gl|febreiro|m|xs=Galician}}
-* Gan: {{tø|gan|feabhra}}
-* Georgian: {{t-|ka|თებერვალი|tr=t'ebervali|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Februar|m}}
-*: {{qualifier|Austria}} {{t-|de|Feber}}, {{t+|de|Hornung|m}}
-*: Kölsch: {{tø|ksh|Febrowaa}}
-* Gilbertese: {{tø|gil|Beberuare|sc=Cyrl}}
-* Greek: {{t+|el|Φεβρουάριος|m|tr=Fevrouários}}, {{t+|el|Φλεβάρης|m|tr=Fleváris}}
-* Greenlandic: {{t+|kl|Februaari|xs=Greenlandic}}
-* Guaraní: {{t-|gn|jasykõi|xs=Guaraní}}
-* Gujarati: {{t-|gu|ફેબ્રુઆરી|sc=Gujr|xs=Gujarati}}
-* Haitian Creole: {{tø|ht|fevriye}}
-* Hawaiian: {{tø|haw|Pepeluali}}
-* Hebrew: {{t+|he|פברואר|tr=fébruar}}
-* Hindi: {{t+|hi|फरवरी|tb=pharvarī|xs=Hindi}}
-* Hungarian: {{t+|hu|február}}
-* Icelandic: {{t+|is|febrúar|m}}, {{t-|is|febrúarmánuður|m}}
-* Ido: {{t+|io|februaro|xs=Ido}}
-* Igbo: {{tø|ig|february}}
-* Ilocano: {{tø|ilo|febrero}}
-* Inari Sami: [[kuovâmáánu]]
-* Indonesian: {{t-|id|februari|xs=Indonesian}}
-* Interlingua: {{t-|ia|februario|xs=Interlingua}}
-* Interlingue: {{t-|ie|februar|xs=Interlingue}}
-* Inuktitut: {{t-|iu|ᕕᐳᐊᕆ|tr=vipuari|sc=Cans|xs=Inuktitut}}
-* Irish: {{t+|ga|Feabhra|f|xs=Irish}}
-* Italian: {{t+|it|febbraio|m}}
-* Japanese: {{t+|ja|二月|tr=[[にがつ]], nigatsu}}, {{t+|ja|如月|tr=きさらぎ, kisaragi}}
-* Javanese: {{t-|jv|februari|xs=Javanese}}
-* [[Kabuverdianu]]:
-*: [[Badiu]] Creole (revised): [[febereru]] {{m}}
-*: [[São Vicente]] Creole: [[fevrer']]
-* Kabyle: {{tø|kab|furar}}
-* Kannada: {{t-|kn|ಫೆಬ್ರುವರಿ|sc=Knda|xs=Kannada}}
-* Kapampangan: {{tø|pam|pebreru}}
-* Kashubian: {{t+|csb|gromicznik|xs=Kashubian}}
-* Kazakh: {{t+|kk|ақпан|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|កុម្ភៈ|tr=gŭmpeyă}}
-* Komi-Zyrian: {{tø|kv|урасьӧм тӧлысь|sc=Cyrl}}
-* Korean: {{t+|ko|이월|tr=iweol|sc=Kore}}
-* Kurdish: {{t+|ku|reşemî}}
-{{trans-mid}}
-* Kyrgyz: {{t-|ky|февраль|sc=Cyrl|xs=Kyrgyz}}
-* Ladino: {{tø|lad|fevrero}}
-* Lao: {{t-|lo|ກຸມພາ|sc=Laoo|xs=Lao}}
-* Latin: {{t+|la|februarius|februārius}}
-* Latvian: {{t-|lv|februāris|xs=Latvian}}
-* Ligurian: {{tø|lij|frevâ}}
-* Limburgish: {{t+|li|Fibberwarie|xs=Limburgish}}
-* Lingala: {{t-|ln|sánzá ya míbalé|xs=Lingala}}
-* Lithuanian: {{t+|lt|vasaris|m|xs=Lithuanian}}
-* Livonian: {{t|liv|februar}}, {{t|liv|kīņḑõļkū}}
-* Lombard: {{tø|lmo|febrar}}
-* Low German: {{t|nds|Februor|m}}, {{t|nds|Februormaand|m}}
-* Low Saxon: {{t-|nds|februar|xs=Low Saxon}}
-* Lower Sorbian: {{tø|dsb|swěckowny}}
-* Luxembourgish: {{t|lb|Febuar|m}}, {{t|lb|Februar|m}}, {{t|lb|Spierkel|m}}
-* Macedonian: {{t+|mk|февруари|m|tr=fevruári}}
-* Malagasy: {{t-|mg|febroary|xs=Malagasy}}
-* Malay: {{t-|ms|februari|xs=Malay}}
-* Malayalam: {{t-|ml|ഫെബ്രുവരി|sc=Mlym|xs=Malayalam}}
-* Maltese: {{t-|mt|Frar|xs=Maltese}}
-* [[Manchu]]: ([[juwe biya]])
-* Manx: {{t-|gv|Toshiaght Arree|xs=Manx}}
-* Maori: {{t-|mi|Hui-tanguru|xs=Maori}}, {{t-|mi|Pēpuere|xs=Maori}}
-* Marathi: {{t-|mr|फेब्रुवारी|sc=Deva|xs=Marathi}}
-* Moksha: {{tø|mdf|февральков}}
-* Montagnais: {{tø|moe|epishiminishkueu}}
-* Nahuatl: {{t-|nah|tlaōnti|xs=Nahuatl}}
-* Narom: {{tø|nrm|févri}}
-* Navajo: {{tø|nv|Atsá Biyáázh}}
-* Neapolitan: {{tø|nap|frevaro}}
-* Northern Sami: {{tø|se|guovvamánnu}}
-* Norwegian: {{t+|no|februar}}
-*: [[Nynorsk]]: {{t+|no|februar}}
-* Novial: {{tø|nov|februare}}
-* Occitan: {{t+|oc|febrièr|m|xs=Occitan}}
-* Ojibwe: {{t|oj|namebini-giizis}}
-* Old English: {{t-|ang|solmonaþ|m|xs=Old English}}
-* Oriya: {{t|or|ଫେବୃଆରୀ|sc=Orya}}
-* Ossetian: {{tø|os|февраль|tr=fevral'|sc=Cyrl|xs=Ossetian}}
-* Persian: {{t-|fa|فوریه|tr=fevriye|xs=Persian}}
-* Piedmontese: {{tø|pms|fërvé}}
-* Polish: {{t+|pl|luty|m}}
-* Portuguese: {{t+|pt|fevereiro|m}}
-* Punjabi: {{t-|pa|ਫ਼ਰਵਰੀ|sc=Guru|xs=Punjabi}}
-* Quechua: {{t-|qu|hatun puquy killa|xs=Quechua}}
-* Romanian: {{t+|ro|februarie|m}}, {{qualifier|popular}} {{t+|ro|făurar}}
-* Romansch: {{t|rm|favrer|m}}, {{t|rm|fevrer|m}}
-* Russian: {{t+|ru|февраль|m|tr=fevrál’}}
-* Samoan: {{t|sm|fepuari}}
-* Samogitian: {{tø|sgs|vasaris}}
-* Sardinian: {{tø|sc|freàrgiu|xs=Sardinian}}, {{t|sro|fiàrzu}}
-* Scots: {{tø|sco|Februar}}
-* Scottish Gaelic: {{t-|gd|Gearran|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|фебруар|m|sc=Cyrl}}, {{t|sh|вељача|f|sc=Cyrl}}
-*: Roman: {{t|sh|februar|m}}, {{t|sh|veljača|f}}
-* Sicilian: {{t+|scn|frivaru|m|xs=Sicilian}}
-* Silesian: {{tø|szl|luty}}
-* Skolt Sami: {{tø|sms|tä´lvvmään}}
-* Slovak: {{t+|sk|február|m}}
-* Slovene: {{t+|sl|februar|m}}
-* Somali: {{t+|so|febraayo|xs=Somali}}
-* Sotho: {{t|st|Hlakola|xs=Sotho}}
-* Spanish: {{t+|es|febrero|m}}
-* Sundanese: {{t-|su|pébruari|xs=Sundanese}}
-* Swahili: {{t+|sw|februari|xs=Swahili}}
-* Swati: {{t-|ss|iNdlóvana|xs=Swati}}
-* Swedish: {{t+|sv|februari}}
-* Tagalog: {{t+|tl|Pebrero|xs=Tagalog}}
-* Tahitian: {{tø|ty|fepuare}}
-* Tajik: {{t-|tg|феврал|sc=Cyrl|xs=Tajik}}
-* Tamil: {{t-|ta|பெப்ரவரி|xs=Tamil}}
-* Tatar: {{t-|tt|febräl|xs=Tatar}}
-* Telugu: {{t+|te|ఫిబ్రవరి|tr=phibravari}}
-* Tetum: {{tø|tet|fevereiru}}
-* Thai: {{t+|th|กุมภาพันธ์|tr=goom phaa phan}}
-* Tok Pisin: {{t-|tpi|februeri|xs=Tok Pisin}}
-* Tongan: {{t|to|fēpueli}}
-* Turkish: {{t+|tr|şubat}}
-* Turkmen: {{t+|tk|fewral|xs=Turkmen}}
-* Ukrainian: {{t+|uk|лютий|tr=ljútyj|xs=Ukrainian}}
-* Upper Sorbian: {{t-|hsb|februar|xs=Upper Sorbian}}
-* Urdu: {{t-|ur|فروری|xs=Urdu}}
-* Vietnamese: {{t+|vi|tháng hai|xs=Vietnamese}}
-* Volapük: {{t+|vo|febul|xs=Volapük}}
-* Võro: {{tø|vro|radokuu}}
-* Walloon: {{t-|wa|fevrî|xs=Walloon}}
-* Waray-Waray: {{tø|war|pebrero}}
-* Welsh: {{t+|cy|Chwefror|xs=Welsh}}
-* West Frisian: {{t+|fy|febrewaris|c|xs=West Frisian}}, {{t+|fy|sellemoanne|c|xs=West Frisian}}
-* Wolof: {{t|wo|Fewriyee}}
-* Xhosa: [[Februwari]]
-* Yakut: {{tø|sah|олунньу}}
-* Yiddish: {{t-|yi|פעברואר|m|tr=februar|xs=Yiddish}}
-* Yoruba: {{t-|yo|february|xs=Yoruba}}
-* Zulu: [[uFebruwari]]
-{{trans-bottom}}
-
-====See also====
-* {{list|en|Gregorian calendar months}}
-
-[[ast:February]]
-[[az:February]]
-[[zh-min-nan:February]]
-[[be:February]]
-[[cs:February]]
-[[co:February]]
-[[cy:February]]
-[[da:February]]
-[[de:February]]
-[[et:February]]
-[[el:February]]
-[[es:February]]
-[[eo:February]]
-[[eu:February]]
-[[fr:February]]
-[[fy:February]]
-[[ga:February]]
-[[gl:February]]
-[[ko:February]]
-[[hy:February]]
-[[hr:February]]
-[[io:February]]
-[[id:February]]
-[[is:February]]
-[[it:February]]
-[[kl:February]]
-[[ka:February]]
-[[csb:February]]
-[[kk:February]]
-[[ku:February]]
-[[lo:February]]
-[[la:February]]
-[[lv:February]]
-[[lb:February]]
-[[lt:February]]
-[[ln:February]]
-[[hu:February]]
-[[mk:February]]
-[[ml:February]]
-[[my:February]]
-[[nl:February]]
-[[ja:February]]
-[[no:February]]
-[[oc:February]]
-[[om:February]]
-[[uz:February]]
-[[km:February]]
-[[pl:February]]
-[[pt:February]]
-[[ro:February]]
-[[ru:February]]
-[[scn:February]]
-[[simple:February]]
-[[so:February]]
-[[sr:February]]
-[[fi:February]]
-[[sv:February]]
-[[ta:February]]
-[[th:February]]
-[[ti:February]]
-[[tg:February]]
-[[chr:February]]
-[[tr:February]]
-[[tk:February]]
-[[uk:February]]
-[[vi:February]]
-[[vo:February]]
-[[zh:February]]
+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>
+<li> {{audio|en-us-February.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+{{en-proper noun|<em>plural:</em> <b>Februarys</b> or <b>Februaries</b>}}
+<ol><li> The second month of the Gregorian calendar, following January and preceding March.</li>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> The pronunciation of the first <em>r</em> as /j/ has come about by dissimilation and analogy with January. Abbreviation: <b>Feb</b> or <b>Feb.</b></li>
+</ul>
+
+<h4>Derived terms</h4>
+{top2}
+<ul><li> February daphne</li>
+<li> February fill-dike</li>
+<li> February Patent</li>
+<li> February red</li>
+</ul>
+{mid2}
+<ul><li> February Revolution</li>
+<li> February Strike</li>
+<li> February Uprising</li>
+<li> mid-February</li>
+</ul>
+{bottom}
+<h4>Related terms</h4>
+<ul><li> februate</li>
+<li> februation</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> {{list|en|Gregorian calendar months}}</li>
+</ul>
+ast:Februaryaz:Februaryzh-min-nan:Februarybe:Februarycs:Februaryco:Februarycy:Februaryda:Februaryde:Februaryet:Februaryel:Februaryes:Februaryeo:Februaryeu:Februaryfr:Februaryfy:Februaryga:Februarygl:Februaryko:Februaryhy:Februaryhr:Februaryio:Februaryid:Februaryis:Februaryit:Februarykl:Februaryka:Februarycsb:Februarykk:Februaryku:Februarylo:Februaryla:Februarylv:Februarylb:Februarylt:Februaryln:Februaryhu:Februarymk:Februaryml:Februarymy:Februarynl:Februaryja:Februaryno:Februaryoc:Februaryom:Februaryuz:Februarykm:Februarypl:Februarypt:Februaryro:Februaryru:Februaryscn:Februarysimple:Februaryso:Februarysr:Februaryfi:Februarysv:Februaryta:Februaryth:Februaryti:Februarytg:Februarychr:Februarytr:Februarytk:Februaryuk:Februaryvi:Februaryvo:Februaryzh:February
 ***floccinaucinihilipilification***
-floccinaucinihilipilification: 
-{{wikiquote}}
-===Etymology===
-A jocular coinage, apparently by pupils at [[w:Eton College|Eton]], combining a number of roughly synonymous Latin stems.  {{etyl|la}} ''flocci'', from ''[[floccus]]'', a wisp or piece of wool + ''nauci'', from ''[[naucum]]'', a trifle + ''nihili'', from the {{etyl|la}} pronoun, {{term|nihil||nothing|lang=la}} + ''pili'', from ''[[pilus]]'', a hair, something insignificant (all therefore having the sense of "pettiness" or "nothing") + [[-fication]].  "Flocci non facio" was a Latin expression of indifference, literally "I do not make a straw of...".
-
-===Pronunciation===
-* {{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/}}
-* {{audio|en-us-floccinaucinihilipilification.ogg|Audio (US)}}
-* {{audio|en-uk-floccinaucinihilipilification.ogg|Audio (UK)}}
-
-===Noun===
+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...".
+<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>
+<li> {{audio|en-us-floccinaucinihilipilification.ogg|Audio (US)}}</li>
+<li> {{audio|en-uk-floccinaucinihilipilification.ogg|Audio (UK)}}</li>
+</ul>
+
+<h3>Noun</h3>
 {{en-noun|-}}
+<ol><li> The act or habit of describing or regarding something as unimportant,  of having no value or being worthless.</li>
+<ul><li> <b>1741:</b> William Shenstone, <em>Letters</em>,</li>
+<ul><li> I loved him for nothing so much as his <b>flocci-nauci-nihili-pili-fication</b> of money.</li>
+</ul>
+<li> <b>1970</b>: Patrick O'Brian, <em>Master and Commander</em>,</li>
+<ul><li> There is a systematic <b>flocci-nauci-nihili-pilification</b> of all other aspects of existence that angers me.</li>
+</ul>
+</ul>
+</ol>
+
+<h4>Usage notes</h4>
+Often cited as the longest non-technical word in the English language, being one letter longer than the commonly-cited antidisestablishmentarianism.
+<h4>Related terms</h4>
+<ul><li> floccinaucinihilipilificate</li>
+</ul>
 
-# The act or habit of describing or regarding something as [[unimportant]],  of having no value or being [[worthless]].
-#* '''1741:''' [[w:William Shenstone|William Shenstone]], ''Letters'',
-#*: I loved him for nothing so much as his '''flocci-nauci-nihili-pili-fication''' of money.
-#* '''1970''': [[w:Patrick O'Brian|Patrick O'Brian]], ''Master and Commander'',
-#*: There is a systematic '''flocci-nauci-nihili-pilification''' of all other aspects of existence that angers me.
-
-====Usage notes====
-Often cited as the longest non-technical word in the English language, being one letter longer than the commonly-cited [[antidisestablishmentarianism]].
-
-====Related terms====
-* [[floccinaucinihilipilificate]]
-
-====Translations====
-{{trans-top|act or habit of describing or regarding something as unimportant}}
-* Chinese:
-*: Mandarin: [[把]][[某]][[東西]][[看作]][[是]][[無]][[價值]][[的]], [[把]][[某]][[东西]][[看作]][[是]][[无]][[价值]][[的]] (bǎ mǒu dōngxi kànzuò shì wú jiàzhí de)
-* Dutch: [[geringschatting]]
-{{trans-mid}}
-* Finnish: {{t-|fi|vähättely}}
-* German: {{t-|de|Geringschätzung|f}}
-* Polish: {{t|pl|brak uznania dla..}}
-{{trans-bottom}}
-
-[[Category:Long English words]]
-
-[[et:floccinaucinihilipilification]]
-[[fr:floccinaucinihilipilification]]
-[[ko:floccinaucinihilipilification]]
-[[pl:floccinaucinihilipilification]]
-[[pt:floccinaucinihilipilification]]
-[[ru:floccinaucinihilipilification]]
-[[simple:floccinaucinihilipilification]]
-[[ta:floccinaucinihilipilification]]
-[[zh:floccinaucinihilipilification]]
 ***free***
-free: 
+free:
 {{wikipedia|dab=free}}
-
-===Etymology===
-{{etyl|enm}} {{term|fre||lang=enm}}, from {{etyl|ang}} {{term|freo|frēo|lang=ang}}.
-
-===Pronunciation===
-* {{IPA|/fɹiː/}}, {{X-SAMPA|/fri:/}}
-* {{audio|en-us-free.ogg|Audio (US)}}
-* {{audio|En-uk-free.ogg|Audio (UK)}}
-* {{rhymes|iː}}
-
-[[File:Free Beer.jpg|thumb|A sign advertising '''free''' beer (obtainable without payment).]]
-[[File:Buy one, get one free ^ - geograph.org.uk - 153952.jpg|thumb|A "buy one get one '''free'''" sign at a flower stand (obtainable without additional payment).]]
-[[File:Berkeley Farms Fat-Free Half & Half.jpg|thumb|This food product is labelled "fat '''free'''", meaning it contains no fat.]]
-
-===Adjective===
+<h3>Etymology</h3>
+{{etyl|enm}} {{term|fre|lang=enm}}, from {{etyl|ang}} {{term|freo|frēo|lang=ang}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/fɹiː/}}, {{X-SAMPA|/fri:/}}</li>
+<li> {{audio|en-us-free.ogg|Audio (US)}}</li>
+<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.
+<h3>Adjective</h3>
 {{en-adj|freer|freest}}
-
-# Not {{l|en|imprisoned}} or {{l|en|enslaved}}.
-#: ''a '''free''' man''
-# Obtainable without any {{l|en|payment}}.
-#: ''The government provides '''free''' health care.''
-# {{by extension|chiefly|advertising slang}} Obtainable without additional payment, as a bonus given when paying for something else.
-#: ''Buy a TV to get a '''free''' DVD player!''
-# {{l|en|unconstrained|Unconstrained}}.
-#: ''He was given '''free''' rein to do whatever he wanted'' <!--"rein", not "reign"-->
-# {{mathematics}} Unconstrained by {{l|en|relator}}s.
-#: ''The '''free''' group on three generators''
-# {{mathematics|logic}} Unconstrained by {{l|en|quantifier}}s.
-#: z'' is the '''free''' variable in "<math>\forall x\exists y:xy=z</math>".''
-# Unobstructed, without {{l|en|blockage}}s.
-#: ''The drain was '''free'''.''
-# Not in use
-#: ''Go sit on this chair, it's '''free'''.''
-# Without {{l|en|obligation}}s.
-#: '''''free''' time''
-# {{software}} With very few {{l|en|limitations}} on distribution or improvement.
-#: ''OpenOffice is {{l|en|free software|'''free''' software}}.''
-# Without; not containing (what is specified).
-#: ''We had a wholesome, filling meal, '''free''' of meat''
-# {{programming}} Of {{l|en|identifier}}s, not {{l|en|bound}}.
-# {{botany|mycology}} Not {{l|en|attached}}; {{l|en|loose}}.
-#: ''In this group of mushrooms, the gills are '''free'''.''
-#* {{RQ:Schuster Hepaticae V|7}}
-#*: Furthermore, the '''free''' anterior margin of the lobule is arched toward the lobe and is often involute{{...}}
-# {{of a|morpheme}} That can be used by itself, {{l|en|unattached}} to another {{l|en|morpheme}}.
-# {{software}} Intended for {{l|en|release}}, as opposed to a {{l|en|checked}} version.
-
-====Synonyms====
-* {{sense|obtainable without payment}} {{l|en|free of charge}}, {{l|en|gratis}}
-* {{sense|unconstrained}} {{l|en|unconstrained}}, {{l|en|unfettered}}, {{l|en|unhindered}}
-* {{sense|unobstructed}} {{l|en|clear}}, {{l|en|unobstructed}}
-* {{sense|software: with very few limitations on distribution or improvement}} {{l|en|libre}}
-* {{sense|without}} {{l|en|without}}
-* {{sense|programming: not bound}} {{l|en|unbound}}
-
-====Antonyms====
-* {{sense|not imprisoned or enslaved}} {{l|en|bound}}, {{l|en|enslaved}}, {{l|en|imprisoned}}
-* {{sense|unconstrained}} {{l|en|constrained}}, {{l|en|restricted}}
-* {{sense|logic: unconstrained by quantifiers}} {{l|en|bound}}
-* {{sense|unobstructed}} {{l|en|blocked}}, {{l|en|obstructed}}
-* {{sense|of identifiers, not bound}} {{l|en|bound}}
-* {{sense|software: with very few limitations on distribution or improvement}} {{l|en|proprietary|proprietary software}}
-
-====Derived terms====
-{{rel-top3|Terms derived from ''free''}}
-* {{l|en|-free}}
-* {{l|en|free Abelian group}}<!--UK spelling-->, {{l|en|free abelian group}}<!--US spelling-->
-* {{l|en|free algebra}}
-* {{l|en|free as a bird}}
-* {{l|en|freeball}}
-* {{l|en|freebooter}}
-* {{l|en|free fall}}
-* {{l|en|free group}}
-* {{l|en|freelance}}
-* {{l|en|freeloader}}
-* {{l|en|free lunch}}
-{{rel-mid3}}
-* {{l|en|freely}}
-* {{l|en|free market}}
-* {{l|en|free marketeer}}
-* {{l|en|Freemason}}
-* {{l|en|free module}}
-* {{l|en|free object}}
-* {{l|en|free of charge}}
-* {{l|en|free rein}}<!--Note: this is the only correct spelling of this expression-->
-* {{l|en|free ride}}
-* {{l|en|free rider}}
-* {{l|en|free semigroup}}
-{{rel-mid3}}
-* {{l|en|free spirit}}
-* {{l|en|free-thinker}}
-* {{l|en|free time}}
-* {{l|en|free variable}}
-* {{l|en|free vote}}
-* {{l|en|freeware}}
-* {{l|en|freeway}}
-* {{l|en|freewheel}}
-* {{l|en|free will}}
-* {{l|en|unfree}}
-{{rel-bottom}}
-
-====Related terms====
-* {{l|en|freedom}}<!--from Old English-->
-* {{l|en|friend}}
-
-====Translations====
-{{trans-top|not imprisoned}}
-* Afrikaans: {{t|af|vrye}}
-* Albanian: {{t|sq|lirë}} (i/e)
-* Amharic: [[ነፃ]]
-* Arabic: {{t+|ar|حر|m|tr=Hurr}}
-* Armenian: {{t-|hy|ազատ|tr=azat}}
-* Azeri: {{t|az|azad}}
-* Bambara: [[hɔrɔn]]
-* Bulgarian: {{t|bg|свободен|m|sc=Cyrl}}
-* Catalan: {{t|ca|lliure}}
-* Chinese:
-*: Mandarin: {{zh-ts|[[自由]]的|[[自由]]的}} (zìyóu de)
-* Croatian: {{t-|hr|slobodan}}
-* Czech: {{t-|cs|svobodný|m}}, {{t+|cs|volný|m}}
-* Danish: {{t-|da|fri}}
-* Dutch: {{t+|nl|vrij}}, {{t+|nl|los}} <!-- move inflection to "[[vrij]]": [[losse]] -->
-* Esperanto: {{t+|eo|libera|xs=Esperanto}}
-* Estonian: {{t|et|vaba}}, {{t|et|prii}}
-* Finnish: {{t+|fi|vapaa}}
-* French: {{t+|fr|libre|m|f}}
-* German: {{t+|de|frei}}, {{t-|de|ungebunden}}
-* Gothic: [[𐍆𐍂𐌴𐌹𐍃]] (freis)
-* Greek: {{t+|el|ελεύθερος|m|tr=eléftheros}}
-* Haitian Creole: {{tø|ht|lib}}
-* Hebrew: {{t-|he|חופשי|tr=khofshí}}
-* Hindi: {{t-|hi|मुक्त|tr=mukt|xs=Hindi}}, {{t-|hi|आज़ाद|tr=āzād|xs=Hindi}}
-* Hungarian: {{t+|hu|szabad}}
-* Icelandic: {{t|is|frjáls}}
-* Ido: {{t|io|libera}}
-* Indonesian: {{t-|id|bebas|xs=Indonesian}}
-* Interlingua: [[libere]]
-* Irish: {{t-|ga|saor|xs=Irish}}
-* Italian: {{t+|it|libero|m}}
-* Japanese: {{t-|ja|自由|tr=[[じゆう]], jiyū}}
-* Korean: {{t+|ko|자유|tr=jayu|sc=Hang}}
-{{trans-mid}}
-* Kurdish:
-*: Kurmanji: [[azad]], [[serbest]], [[rizgar]]
-*: Sorani: {{t|ku|ئازاد|tr=AzAd|sc=ku-Arab}}, {{t|ku|ڕزگار|tr=RizgAr|sc=ku-Arab}}
-* Latin: {{t+|la|liber|m|alt=līber}}
-* Latvian: {{t|lv|brīvs|m}}
-* Limburgish: [[vrie]]
-* Lithuanian: [[laisvas]] {{m}}, {{t|lt|laisva|f|xs=Lithuanian}}
-* Luxembourgish: {{t|lb|fräi}}
-* Malayalam: [[സ്വതന്ത്രം]] (svathanthram)
-* Norwegian: {{t+|no|fri}}
-* Novial: [[liberi]]
-* Occitan: {{t|oc|liure}}
-* Old English: {{t|ang|freo|alt=frēo}}, {{t|ang|freolic|alt=frēolic}}
-* Persian: {{t+|fa|آزاد|tr=āzād|xs=Persian}}, {{t|fa|رها|tr=rahā|xs=Persian}}
-* Polish: {{t+|pl|wolny}}
-* Portuguese: {{t+|pt|livre|m|f}}
-* Romanian: {{t-|ro|liber|m}}, {{t|ro|slobod}}
-* Russian: {{t+|ru|свободный|tr=svobódnyj}}, {{t+|ru|вольный|tr=vól’nyj}}
-* Sanskrit: {{t|sa|मुक्त|tr=mukta|sc=Deva}}, {{t|sa|स्वतन्त्र|tr=svatantra|sc=Deva}}
-* Scottish Gaelic: {{t-|gd|saor|xs=Scottish Gaelic}}
-* Serbian: {{t-|sr|slobodan|m}}
-* Sindhi: {{t|sd|آزاد|tr=āzād}}
-* Slovak: {{t-|sk|slobodný}}
-* Slovene: {{t+|sl|svoboden|m}}
-* Spanish: {{t+|es|libre}}
-* Swahili: {{t-|sw|huru|xs=Swahili}}
-* Swedish: {{t+|sv|fri}}
-* Telugu: {{t|te|విడుదల|tr=vidudala|sc=Telu}}
-* Turkish: {{t+|tr|özgür}}
-* Ukrainian: {{t+|uk|вільний|m|xs=Ukrainian}}
-* Urdu: {{t+|ur|آزاد|tr=āzād|xs=Urdu}}, {{t|ur|سوتنتر|tr=svatantra|sc=ur-Arab}}
-* Welsh: {{t|cy|rhydd}}
-* West Frisian: {{t+|fy|frijlitten|xs=West Frisian}}, {{t-|fy|frij|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|obtainable without payment}}
-* Afrikaans: {{t|af|verniet|xs=Afrikaans}}, {{t-|af|gratis|xs=Afrikaans}}
-* Albanian: {{t-|sq|falas|xs=Albanian}}
-* Amharic: [[ነፃ]]
-* Armenian: {{t|hy|անվճար|tr=anvtshar}}
-* Azeri: {{t|az|ödənişsiz}}, {{t|az|pulsuz}}
-* Bambara: [[gansan]]
-* Burmese: {{t|my|အခမဲ့|tr=əkʰa̰ mḛ|sc=Mymr}}
-* Catalan: {{t|ca|de franc}}, {{t|ca|gratuït}}, {{t-|ca|gratis}}
-* Chinese:
-*: Mandarin: {{zh-ts|[[免]][[費]]的|[[免]][[费]]的}} (miǎnfèi de)
-* Croatian: {{t+|hr|besplatan}}
-* Czech: {{t-|cs|bezplatný|m}}, {{t+|cs|volný|m}}
-* Danish: {{t-|da|gratis}}, {{t-|da|fri}}
-* Dutch: {{t+|nl|gratis}}, {{t-|nl|kosteloos}}, {{t-|nl|kosteloze}}, {{t|nl|verniet}} (Flanders)
-* Esperanto: {{t-|eo|senkosta|xs=Esperanto}}, {{t-|eo|senpaga|xs=Esperanto}}
-* Estonian: {{t|et|tasuta}}
-* Finnish: {{t+|fi|ilmainen}}, {{t+|fi|maksuton}}
-* French: {{t+|fr|gratuit}}, {{t+|fr|gratis}}
-* Georgian: {{t|ka|უფასო|tr=up'aso|sc=Geor}}
-* German: {{t+|de|umsonst}}, {{t+|de|gratis}}, {{t+|de|kostenlos}}
-* Greek: {{t+|el|δωρεάν|tr=doreán}} <!--is this ancient Greek? Yes but it's a perfectly good MGr word too.-->
-* Hebrew: {{t-|he|חינם|tr=khinám}}, {{t-|he|חופשי|tr=khofshí}}
-* Hindi: {{t|hi|मुफ़्त|tr=muft|sc=Deva}}
-* Hungarian: {{t+|hu|ingyenes}}
-* Ido: {{t|io|gratuita}}
-* Indonesian: {{t+|id|gratis|xs=Indonesian}}, [[bebas biaya]]
-* Interlingua: {{t|ia|gratis}}, {{t|ia|gratuite}}
-* Irish: {{t-|ga|saor|xs=Irish}}, {{t|ga|saor in aisce|xs=Irish}}
-* Italian: {{t+|it|gratuito}}, {{t+|it|gratis}}
-{{trans-mid}}
-* Japanese: {{t|ja|無料|tr=[[むりょう]], muryō}}
-* Korean: {{t|ko|무료||alt=무료의|tr=muryo-ui|sc=Hang}}<!-- show "無料" in "무료"-->, {{t+|ko|공짜|alt=공짜(의)|tr=gongjja(ui)|sc=Hang}}
-* Kurdish:
-*: Kurmanji: [[belaş]], [[bêpare]], [[bedewa]], [[herwe]]
-*: Sorani: {{t|ku|به‌لاش|tr=balAsh|sc=ku-Arab}}
-* Latvian: {{t|lv|bezmaksas}}
-* Lithuanian: {{t+|lt|nemokamas|m|xs=Lithuanian}}
-* Malay: {{t-|ms|gratis|xs=Malay}}, {{t+|ms|percuma|xs=Malay}}
-* Malayalam: [[സൌജന്യം]] (soujanyam)
-* Norwegian: {{t+|no|gratis}}
-* Persian: {{t|fa|رایگان|tr=râygân|xs=Persian}}, {{t|fa|مفت|tr=moft|xs=Persian}}, {{t|fa|مجانی|tr=majjâni|xs=Persian}}
-* Polish: {{t|pl|darmowy}}, {{t|pl|bezpłatny}}
-* Portuguese: {{t+|pt|grátis}}, {{t+|pt|gratuito}}, {{t|pt|de graça}}
-* Romanian: {{t-|ro|gratis}}, {{t-|ro|gratuit}}
-* Russian: {{t+|ru|бесплатный|tr=besplátnyj}}
-* Scottish Gaelic: {{t-|gd|saor|xs=Scottish Gaelic}}
-* Serbian: {{t-|sr|besplatno}}, {{t-|sr|džaba}}
-* Sindhi: {{t|sd|مفت}}
-* Slovene: [[zastonj]]
-* Spanish: {{t-|es|gratis}}
-* Swahili: {{t+|sw|bure|xs=Swahili}}
-* Swedish: {{t+|sv|gratis}}, {{t+|sv|fri}}, {{t-|sv|kostnadsfri}}
-* Telugu: {{t|te|ఉచితము|tr=ucitamu|sc=Telu}}
-* Turkish: {{t+|tr|bedava}}, {{t|tr|ücretsiz}}
-* Ukrainian: {{t+|uk|безкоштовний|m|xs=Ukrainian}}
-* Welsh: {{t|cy|yn rhad ac am ddim}}, {{t|cy|di-dâl}}
-* West Frisian: {{t+|fy|fergees|xs=West Frisian}}, {{t-|fy|frij|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|unconstrained}}
-* Albanian: {{t|sq|pafre}}
-* Amharic: [[ነፃ]]
-* Arabic: {{t+|ar|حر|m|tr=Hurr}}
-* Armenian: {{t|hy|առանց|tr=arranc‛}}
-* Azeri: {{t|az|sərbəst}}
-* Bambara: [[hɔrɔn]]
-* Catalan: {{t|ca|lliure}}
-* Chinese:
-*: Mandarin: {{zh-ts|[[自由]]的|[[自由]]的}} (zìyóu de)
-* Croatian: {{t-|hr|neograničen}}, {{t-|hr|slobodan}}
-* Czech: {{t+|cs|volný|m}}
-* Danish: {{t-|da|fri}}
-* Dutch: {{t+|nl|vrij}}, {{t+|nl|los}}, {{t|nl|loslopend}}
-* Esperanto: {{t+|eo|libera|xs=Esperanto}}
-* Estonian: {{t-|et|vaba}}, {{t|et|prii}}
-* Finnish: {{t+|fi|vapaa}}, {{t-|fi|rajoittamaton}}
-* French: {{t+|fr|libre}}
-* German: {{t+|de|frei}}
-* Greek: {{t+|el|ελεύθερος|m|tr=eléftheros}}, {{t|el|ανεμπόδιστος|m|tr=anembódistos}}
-* Hebrew: {{t-|he|פנוי|tr=panúy}}
-* Ido: {{t|io|libera}}
-* Interlingua: {{t|ia|libere}}, {{t|ia|franc}}
-* Irish: {{t-|ga|saor|xs=Irish}}
-{{trans-mid}}
-* Italian: {{t+|it|libero|m}}
-* Japanese: {{t-|ja|自由|tr=[[じゆう]], jiyū}}
-* Korean: {{t-|ko|자유적|tr=jayujeok|sc=Hang}} <!-- 自由的 -->
-* Kurdish:
-*: Kurmanji: [[berdayî]]
-*: Sorani: {{t|ku|سه‌ربه‌ست|tr=sarbast|sc=ku-Arab}}
-* Latin: {{t|la|līber|m}}
-* Limburgish: [[vrie]]
-* Norwegian: {{t+|no|fri}}, {{t-|no|løs}}
-* Novial: [[liberi]]
-* Old English: {{t-|ang|freo|alt=frēo|xs=Old English}}
-* Persian: {{t+|fa|آزاد|tr=âzâd|xs=Persian}}
-* Polish: {{t+|pl|wolny}}, {{t|pl|swobodny|m}}
-* Portuguese: {{t|pt|livre}}
-* Romanian: {{t-|ro|liber|m}}, {{t|ro|neîmpiedicat}}
-* Russian: {{t+|ru|свободный|tr=svobódnyj}}
-* Scottish Gaelic: {{t-|gd|saor|xs=Scottish Gaelic}}
-* Serbian: [[povoljno]], [[voljno]]
-* Sindhi: {{t|sd|چٽل|m}}; {{t|sd|چٽل|f}}
-* Spanish: {{t+|es|libre}}
-* Swedish: {{t+|sv|fri}}
-* Turkish: {{t+|tr|serbest}}
-* Welsh: {{t|cy|rhydd}}
-{{trans-bottom}}
-
-{{trans-top|mathematics: unconstrained}}
-* Czech: {{t+|cs|volný|m}}
-* Finnish: {{t+|fi|vapaa}}
-{{trans-mid}}
-* Norwegian: {{t+|no|fri}}
-* Portuguese: {{t+|pt|livre}}
-{{trans-bottom}}
-
-{{trans-top|unobstructed}}
-* Albanian: {{t|sq|lirë}} (i/e)
-* Azeri: {{t|az|maneə törədilməmiş}}
-* Catalan: {{t|ca|lliure}}
-* Chinese:
-*: Mandarin: {{zh-ts|[[通暢]]的|[[通畅]]的}} (tōngchàng de), {{zh-ts|[[順暢]]的|[[順畅]]的}} (shùnchàng de)
-* Croatian: {{t-|hr|slobodan}}, {{t-|hr|otvoren}}
-* Czech: {{t+|cs|volný|m}}
-* Dutch: {{t+|nl|vrij}}, {{t+|nl|vrije}}, {{t+|nl|open}}
-* Esperanto: {{t+|eo|libera|xs=Esperanto}}
-* Estonian: {{t|et|piiramatu}}, {{t|et|takistamatu}}
-* Finnish: {{t|fi|auki}} {{qualifier|adverb}}, {{t|fi|aukinainen}}, {{t|fi|avoin}}, {{t|fi|esteetön}}, {{t|fi|selvä}}
-* French: {{t+|fr|libre}}
-* German: {{t+|de|frei}}
-* Greek: {{t+|el|ελεύθερος|m|tr=eléftheros}}, {{t|el|ανεμπόδιστος|m|tr=anembódistos}}
-* Hebrew: {{t-|he|פנוי|tr=panúy}}
-* Ido: {{t|io|libera}}
-* Interlingua: {{t|ia|libere}}, {{t|ia|franc}}
-* Italian: {{t+|it|libero|m}}
-{{trans-mid}}
-* Japanese: {{t|ja|そのままの|tr=sonomamano}}
-* Korean: {{t-|ko|막힘|alt=막힘없는|tr=makhimeopneun|sc=Hang}}
-* Kurdish:
-*: Kurmanji: [[vekirî]], [[vebûyî]]
-* Limburgish: {{t|li|vrie|xs=Limburgish}}
-* Norwegian: {{t+|no|åpen}}, {{t+|no|fri}}
-* Novial: [[liberi]]
-* Polish: {{t+|pl|wolny}}, {{t|pl|swobodny|m}}
-* Portuguese: {{t+|pt|livre}}
-* Romanian: {{t-|ro|liber|m}}, {{t|ro|neîmpiedicat}}
-* Russian: {{t|ru|беспрепятственный|tr=besprepjátstvennyj}}, {{t+|ru|свободный|tr=svobódnyj}}
-* Scottish Gaelic: {{t-|gd|saor|xs=Scottish Gaelic}}
-* Sindhi: {{t|sd|خلاصو|m}}; {{t|sd|خلاصي|f}}
-* Slovene: {{t+|sl|prost|m}}
-* Spanish: {{t+|es|libre}}
-* Telugu: {{t|te|అడ్డగించని|tr=addagincani|sc=Telu}}
-* Turkish: {{t+|tr|engellenmemiş}}
-{{trans-bottom}}
-
-{{trans-top|not in use}}
-* Arabic: {{t|ar|شاغر|tr=shaghir|sc=Arab}}
-* Azeri: {{t|az|boş}}
-* Catalan: {{t|ca|desocupat|m}}
-* Czech: {{t+|cs|volný|m}}
-* Finnish: {{t+|fi|vapaa}}
-* Greek: {{t+|el|ελεύθερος|m|tr=eléftheros}}
-{{trans-mid}}
-* Norwegian: {{t-|no|ledig}}
-* Persian: {{t+|fa|آزاد|tr=āzād|xs=Persian}}, {{t|fa|بی کار|tr=bikār|xs=Persian}}
-* Swedish: {{t|sv|ledig}}
-* Telugu: {{t|te|ఉపయోగించని|tr=upayogincani|sc=Telu}}
-* Turkish: {{t+|tr|boş}}
-{{trans-bottom}}
-
-{{trans-top|without obligations}}
-* Albanian: {{t|sq|pazënë}} (i/e)
-* Azeri: {{t|az|çətininsiz}}
-* Bambara: [[hɔrɔn]]
-* Catalan: {{t|ca|lliure}}
-* Chinese:
-*: Mandarin: {{zh-ts|[[自由]]的|[[自由]]的}} (zìyóu de)
-* Croatian: {{t-|hr|slobodan}}
-* Czech: {{t+|cs|volný|m}}
-* Danish: {{t-|da|fri}}
-* Dutch: {{t+|nl|vrij}}, {{t-|nl|ongedwongen}}
-* Esperanto: {{t+|eo|libera|xs=Esperanto}}
-* Estonian: {{t-|et|vaba}}
-* Finnish: {{t+|fi|vapaa}}
-* French: {{t+|fr|libre}}
-* German: {{t+|de|frei}}
-* Greek: {{t+|el|ελεύθερος|m|tr=eléftheros}}
-* Hebrew: {{t-|he|פנוי|tr=panúy}}, {{t-|he|חופשי|tr=khofshí}}
-* Hungarian: {{t+|hu|szabad}}
-* Ido: {{t|io|libera}}
-* Interlingua: {{t|ia|libere}}
-* Irish: {{t-|ga|saor|xs=Irish}}
-{{trans-mid}}
-* Italian: {{t+|it|libero}}
-* Japanese:
-* Korean: {{t+|ko|자의|tr=ja-ui|sc=Hang}} <!-- 自意 -->
-* Kurdish:
-*: Kurmanji: [[azad]], [[serbest]]
-* Limburgish: [[vrie]]
-* Norwegian: {{t+|no|fri}}, {{t-|no|ledig}}
-* Novial: [[liberi]]
-* Old English: {{t-|ang|freo|alt=frēo|xs=Old English}}
-* Polish: {{t+|pl|wolny}}
-* Portuguese: {{t+|pt|livre}}
-* Romanian: {{t-|ro|liber|m}}
-* Russian: {{t+|ru|свободный|tr=svobódnyj}}
-* Scottish Gaelic: {{t-|gd|saor|xs=Scottish Gaelic}}
-* Serbian: [[bezobavezno]]
-* Sindhi: {{t|sd|فارِغ}}; {{t|sd|واندو|m}}
-* Slovene: {{t+|sl|prost|m}}
-* Spanish: {{t+|es|libre}}
-* Swedish: {{t+|sv|fri}}
-* Telugu: {{t|te|నిబంధన లేని|tr=nibandhana leni|sc=Telu}}
-* Turkish: {{t+|tr|serbest}}, {{t|tr|zorunsuz}}
-{{trans-bottom}}
-
-{{trans-top|software: with very few limitations on distribution or improvement}}
-* Albanian: {{t|sq|lejuar}} (i/e)
-* Azeri: {{t|az|azad}}
-* Bambara: [[hɔrɔn]]
-* Catalan: {{t|ca|lliure}}
-* Chinese:
-*: Mandarin: {{zh-ts|[[自由]]的|[[自由]]的}} (zìyóu de)
-* Croatian: {{t-|hr|slobodan}}
-* Czech: {{t-|cs|svobodný|m}}
-* Danish: {{t-|da|fri}}
-* Dutch: {{t+|nl|vrij}}, {{t+|nl|vrije}}
-* Esperanto: {{t+|eo|libera|xs=Esperanto}}
-* Estonian: {{t-|et|vaba}}
-* Finnish: {{t+|fi|avoin}}, {{t+|fi|vapaa}}
-* French: {{t+|fr|libre}}
-* German: {{t+|de|frei}}
-* Greek: {{t+|el|ελεύθερος|m|tr=eléftheros}}
-* Hebrew: {{t-|he|חופשי|tr=khofshí}}
-* Ido: {{t|io|libera}}
-* Interlingua: {{t|ia|libere}}
-{{trans-mid}}
-* Irish: {{t-|ga|saor|xs=Irish}}
-* Italian: {{t|it|libero}}, {{t|it|free}}, {{t|it|libre}} {{gloss|software}}
-* Japanese: {{t|ja|フリー|tr=furī}}
-* Korean: {{t+|ko|자유|tr=jayu|sc=Hang}}
-* Kurdish:
-*: Kurmanji: [[azad]], [[vekirî]], [[serbest]]
-* Limburgish: [[vrie]]
-* Lithuanian: {{t+|lt|nemokama|xs=Lithuanian}}
-* Norwegian: {{t+|no|fri}}
-* Novial: [[liberi]]
-* Polish: {{t+|pl|wolny}}
-* Portuguese: {{t+|pt|livre}}
-* Romanian: {{t-|ro|gratuit}}, {{t-|ro|liber}}
-* Russian: {{t+|ru|бесплатный|tr=besplátnyj}}
-* Sindhi: {{t|sd|کليل|m}}
-* Spanish: {{t+|es|libre}}
-* Swedish: {{t+|sv|fri}}
-* Telugu: {{t|te|ఉచిత దిగుమతి|tr=ucita digumati|sc=Telu}}
-* Turkish: {{t+|tr|özgür}}
-{{trans-bottom}}
-
-{{trans-top|without}}
-* Czech: {{t-|cs|prostý}}
-* Dutch: {{t|nl|zonder}}
-* Finnish: {{t+|fi|-ton}}, {{t|fi|ilman}} ([[jotakin]]), {{t+|fi|vapaa|alt=-vapaa}}
-* French: {{t|fr|sans}}
-{{trans-mid}}
-* Irish: {{t|ga|gan}}
-* Norwegian: {{t|no|fri}}, {{t|no|uten}}
-* Persian: {{t|fa|بدون|sc=fa-Arab}}
-* Telugu: {{t|te|లేకుండా|tr=lekumda|sc=Telu}}
-{{trans-bottom}}
-
-{{trans-top|programming: not bound}}
-* Czech: {{t+|cs|volný}}
-* Finnish: {{t-|fi|riippumaton}}
-{{trans-mid}}
-* Telugu: {{t|te|పరిమితి లేని|tr=parimiti leni|sc=Telu}}
-{{trans-bottom}}
-
-{{trans-top|mycology: not attached to the stipe}}
-* Azeri: {{t|az|zəif}}
-* Finnish: {{t-|fi|irtonainen}}
-{{trans-mid}}
-* Turkish: {{t|tr|gevşek}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|sq}}: [[lirë]] (i/e), {{t-|sq|pa|xs=Albanian}}
-* {{ttbc|sh}}: {{t-|hr|oslobođen}}, {{t-|hr|pušten}}
-* {{ttbc|de}}: {{t+|de|entlassen}}, {{t+|de|befreit}}, [[frei von]]
-* {{ttbc|id}}: [[bebas]] / [[merdeka]] (1), [[gratis]] / [[cuma-cuma]] (2), [[bebas]] / [[merdeka]], [[gratis]] (5), [[cuma-cuma]], [[tanpa]], [[kosong]]
-* {{ttbc|ia}}: [[libere]]
-* {{ttbc|it}}: {{t+|it|senza}}
-* {{ttbc|lt}}: [[be]] (3); [[neribotas]] (4);
-* {{ttbc|nds}}: [[fri]], [[leddig]], [[lerrig]], [[ledig]]
-{{trans-mid}}
-* {{ttbc|oc}}: [[liure]] (1,3), [[dobèrt]] (2), [[gratis]] (5), [[gratuït]] (5),
-* {{ttbc|sh}}: [[slobodan]] (1), [[besplatan]] (5)
-* {{ttbc|sk}}: [[slobodný]], [[bezplatný]], [[slobodný]] (1), [[voľný]] (1, 2, 4), [[bezplatný]] (5)
-* {{ttbc|sv}}: {{t+|sv|fri}}, {{t+|sv|lös}}, {{t+|sv|släppt}}
-* {{ttbc|ta}}: [[இலவசம்]] (ilvacam)
-* {{ttbc|vo}}: [[libik]], [[livik]]
-* {{ttbc|fy}}: {{t+|fy|frijlitten|xs=West Frisian}}, {{t+|fy|befrijt|xs=West Frisian}}
-{{trans-bottom}}
-
-===Adverb===
-{{en-adv}}
-
-# Without needing to {{l|en|pay}}.
-#: ''I got this bike '''free'''.''
-
-====Synonyms====
-* {{sense|informal, without needing to pay}} {{l|en|for free}}, {{l|en|for nothing}}
-
-====Translations====
-{{trans-top|without needing to pay}}
-* Albanian: {{t-|sq|falas|xs=Albanian}}
-* Czech: {{t-|cs|zadarmo}}
-* Finnish: {{t-|fi|ilmaiseksi}}
-* French: {{t+|fr|gratuitement}}, {{qualifier|informal}} {{t+|fr|gratis}}, {{qualifier|informal}} {{t+|fr|gratos}}
-* Hindi: {{t|hi|मुफ़्त|sc=Deva}}
-* Irish: {{t|ga|saor}}
-* Italian: {{t|it|gratuitamente}}
-* Latvian: {{t|lv|bezmaksas}}
-{{trans-mid}}
-* Norwegian: {{t+|no|gratis}}
-* Polish: {{t|pl|za darmo}}, {{t|pl|bezpłatnie}}
-* Portuguese: {{t|pt|grátis}}, {{t|pt|de graça}}
-* Russian: {{t+|ru|бесплатно|tr=b'esplátno}}, {{t+|ru|даром|tr=dárom}}
-* Scottish Gaelic: {{t-|gd|an asgaidh|xs=Scottish Gaelic}}
-* Spanish: {{t-|es|gratis}}
-* Swedish: {{t+|sv|gratis}}
-* Telugu: {{t|te|చెల్లించనవసరం లేని|tr=cellincanavasaram leni|sc=Telu}}
-{{trans-bottom}}
-
-[[File:Peter Paul Rubens - Perseus Freeing Andromeda - WGA20306.jpg|thumb|A painting depicting mythical Greek hero Perseus '''freeing''' Andromeda, who was imprisoned by a sea monster.]]
-
-===Verb===
+<ol><li> Not {{l|en|imprisoned}} or {{l|en|enslaved}}.</li>
+<ul><li> <em>a <b>free</b> man</em></li>
+</ul>
+<li> Obtainable without any {{l|en|payment}}.</li>
+<ul><li> <em>The government provides <b>free</b> health care.</em></li>
+</ul>
+<li> {{by extension|chiefly|advertising slang}} Obtainable without additional payment, as a bonus given when paying for something else.</li>
+<ul><li> <em>Buy a TV to get a <b>free</b> DVD player!</em></li>
+</ul>
+<li> {{l|en|unconstrained|Unconstrained}}.</li>
+<ul><li> <em>He was given <b>free</b> rein to do whatever he wanted</em> </li>
+</ul>
+<li> {mathematics} Unconstrained by {{l|en|relator}}s.</li>
+<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> Unobstructed, without {{l|en|blockage}}s.</li>
+<ul><li> <em>The drain was <b>free</b>.</em></li>
+</ul>
+<li> Not in use</li>
+<ul><li> <em>Go sit on this chair, it's <b>free</b>.</em></li>
+</ul>
+<li> Without {{l|en|obligation}}s.</li>
+<ul><li> <b><em>free</b> time</em></li>
+</ul>
+<li> {software} With very few {{l|en|limitations}} on distribution or improvement.</li>
+<ul><li> <em>OpenOffice is {{l|en|free software|<b>free</b> software}}.</em></li>
+</ul>
+<li> Without; not containing (what is specified).</li>
+<ul><li> <em>We had a wholesome, filling meal, <b>free</b> of meat</em></li>
+</ul>
+<li> {programming} Of {{l|en|identifier}}s, not {{l|en|bound}}.</li>
+<li> {{botany|mycology}} Not {{l|en|attached}}; {{l|en|loose}}.</li>
+<ul><li> <em>In this group of mushrooms, the gills are <b>free</b>.</em></li>
+<li> {{RQ:Schuster Hepaticae V|7}}</li>
+<ul><li> Furthermore, the <b>free</b> anterior margin of the lobule is arched toward the lobe and is often involute{...}</li>
+</ul>
+</ul>
+<li> {{of a|morpheme}} That can be used by itself, {{l|en|unattached}} to another {{l|en|morpheme}}.</li>
+<li> {software} Intended for {{l|en|release}}, as opposed to a {{l|en|checked}} version.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|obtainable without payment}} {{l|en|free of charge}}, {{l|en|gratis}}</li>
+<li> {{sense|unconstrained}} {{l|en|unconstrained}}, {{l|en|unfettered}}, {{l|en|unhindered}}</li>
+<li> {{sense|unobstructed}} {{l|en|clear}}, {{l|en|unobstructed}}</li>
+<li> {{sense|software: with very few limitations on distribution or improvement}} {{l|en|libre}}</li>
+<li> {{sense|without}} {{l|en|without}}</li>
+<li> {{sense|programming: not bound}} {{l|en|unbound}}</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> {{sense|not imprisoned or enslaved}} {{l|en|bound}}, {{l|en|enslaved}}, {{l|en|imprisoned}}</li>
+<li> {{sense|unconstrained}} {{l|en|constrained}}, {{l|en|restricted}}</li>
+<li> {{sense|logic: unconstrained by quantifiers}} {{l|en|bound}}</li>
+<li> {{sense|unobstructed}} {{l|en|blocked}}, {{l|en|obstructed}}</li>
+<li> {{sense|of identifiers, not bound}} {{l|en|bound}}</li>
+<li> {{sense|software: with very few limitations on distribution or improvement}} {{l|en|proprietary|proprietary software}}</li>
+</ul>
+
+<h4>Derived terms</h4>
+{{rel-top3|Terms derived from <em>free</em>}}
+<ul><li> {{l|en|-free}}</li>
+<li> {{l|en|free Abelian group}}, {{l|en|free abelian group}}</li>
+<li> {{l|en|free algebra}}</li>
+<li> {{l|en|free as a bird}}</li>
+<li> {{l|en|freeball}}</li>
+<li> {{l|en|freebooter}}</li>
+<li> {{l|en|free fall}}</li>
+<li> {{l|en|free group}}</li>
+<li> {{l|en|freelance}}</li>
+<li> {{l|en|freeloader}}</li>
+<li> {{l|en|free lunch}}</li>
+</ul>
+{rel-mid3}
+<ul><li> {{l|en|freely}}</li>
+<li> {{l|en|free market}}</li>
+<li> {{l|en|free marketeer}}</li>
+<li> {{l|en|Freemason}}</li>
+<li> {{l|en|free module}}</li>
+<li> {{l|en|free object}}</li>
+<li> {{l|en|free of charge}}</li>
+<li> {{l|en|free rein}}</li>
+<li> {{l|en|free ride}}</li>
+<li> {{l|en|free rider}}</li>
+<li> {{l|en|free semigroup}}</li>
+</ul>
+{rel-mid3}
+<ul><li> {{l|en|free spirit}}</li>
+<li> {{l|en|free-thinker}}</li>
+<li> {{l|en|free time}}</li>
+<li> {{l|en|free variable}}</li>
+<li> {{l|en|free vote}}</li>
+<li> {{l|en|freeware}}</li>
+<li> {{l|en|freeway}}</li>
+<li> {{l|en|freewheel}}</li>
+<li> {{l|en|free will}}</li>
+<li> {{l|en|unfree}}</li>
+</ul>
+{rel-bottom}
+<h4>Related terms</h4>
+<ul><li> {{l|en|freedom}}</li>
+<li> {{l|en|friend}}</li>
+</ul>
+
+<h3>Adverb</h3>
+{en-adv}
+<ol><li> Without needing to {{l|en|pay}}.</li>
+<ul><li> <em>I got this bike <b>free</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|informal, without needing to pay}} {{l|en|for free}}, {{l|en|for nothing}}</li>
+</ul>
+
+<h3>Verb</h3>
 {{en-verb|free|d}}
-
-# {{transitive}} To make free; set at {{l|en|liberty}}; {{l|en|release}}; rid of that which confines, limits, embarrasses, or oppresses.
-
-====Hyponyms====
-* {{l|en|emancipate}}
-* {{l|en|liberate}}
-* {{l|en|manumit}}
-* {{l|en|release}}
-* {{l|en|unchain}}
-* {{l|en|unfetter}}
-
-====Translations====
-{{trans-top|make free}}
-* Afrikaans: {{t|af|bevry}}, {{t|af|loslaat}}, {{t|af|laat gaan}}
-* Albanian: {{t-|sq|liroj|xs=Albanian}}
-* Arabic: {{t|ar|حرر|tr=Harrara|sc=Arab}}
-* Catalan: {{t|ca|alliberar}}
-* Chinese:
-*: Mandarin: {{t|zh|解放|tr=jiěfàng|sc=Hani}}
-* Czech: {{t-|cs|osvobodit}} {{pf.}}
-* Danish: {{t|da|befri}}, {{t|da|fritage}}, {{t|da|løslade}}
-* Dutch: {{t+|nl|bevrijden}}, {{t-|nl|loslaten}}, {{t+|nl|laten gaan}}
-* Esperanto: {{t-|eo|liberi|xs=Esperanto}}, {{t-|eo|liberigi|xs=Esperanto}}
-* Estonian: {{t|et|vabastama}}, {{t|et|vabaks laskma}}
-* Finnish: {{t+|fi|vapauttaa}}, {{t|fi|päästää}} [[vapaa|vapaaksi]]
-* French: {{t|fr|libérer}}, {{t|fr|dégager}}, {{t|fr|affranchir}}
-* German: {{t+|de|befreien}} {{t|de|freisetzen}} {{qualifier|free someone from prison}}
-* Greek: {{t+|el|ελευθερώνω|tr=eleftheróno|sc=Grek}}
-* Hebrew: {{t+|he|שחרר|tr=shikhrér}}
-* Interlingua: {{t|ia|liberar}}
-* Irish: {{t|ga|saoraigh}}
-* Italian: {{t+|it|liberare}}
-* Japanese: {{t|ja|解放|tr=かいほうする, kaihō-suru|alt=解放する|sc=Jpan}}
-* Korean: {{t|ko|해방|tr=haebang-hada|alt=해방하다|sc=Kore}} ({{t|ko|解放|sc=Kore}} + {{t|ko|하다|sc=Kore}})
-{{trans-mid}}
-* Kurdish:
-*: Sorani: {{t|ku|ڕزگار کردن|sc=Arab}}
-* Latin: {{t-|la|liberare}}
-* Lithuanian: {{t|lt|išlaisvinti}}
-* Norwegian: {{t-|no|frigjøre}}, {{t-|no|frigi}}, {{t-|no|befri}}, {{t-|no|løslate}}
-* Occitan: {{t|oc|desliurar}}
-* Old English: {{t-|ang|freogan|alt=frēoġan|xs=Old English}}
-* Persian: {{t|fa|آزاد ساختن|tr=âzâd sâxtan|xs=Persian}}, {{t-|fa|آزاد کردن|tr=âzâd kardan|sc=fa-Arab}}
-* Polish: {{t|pl|uwalniać}} {{impf}}, {{t|pl|uwolnić}} {{pf.}}
-* Portuguese: {{t+|pt|libertar}}, {{t+|pt|livrar}}, {{t+|pt|soltar}}
-* Romanian: {{t|ro|elibera}}
-* Russian: {{t|ru|освобождать|tr=osvoboždát'}} {{impf}}, {{t+|ru|освободить|tr=osvobodít'}} {{pf.}}
-* Serbian: {{t-|sr|osloboditi}} {{pf.}}
-* Slovak: {{t+|sk|oslobodiť}} {{pf.}}
-* Slovene: {{t|sl|osvoboditi}} {{pf.}}
-* Spanish: {{t-|es|librar}}
-* Swedish: {{t|sv|frigöra}}, {{t+|sv|befria}}, {{t+|sv|frita}}(ga) <!--{{t+|sv|fria}}: Someone please give an example of this?--->
-* Telugu: {{t|te|విడుదల చేయు|tr=vidudala ceyu|sc=Telu}}
-* Turkish: {{t+|tr|serbest bırakmak}}
-* Vietnamese: {{t|vi|giải phóng}} ({{t|vi|解放}})
-{{trans-bottom}}
-
-===Noun===
-{{en-noun}}
-
-# {{Australian rules football|Gaelic football}} Abbreviation of {{l|en|free kick}}.
-#* '''2006''', [http://footballlegends.org/daryn_cresswell.htm]:
-#*: Whether deserved or not, the '''free''' gave Cresswell the chance to cover himself in glory with a shot on goal after the siren. <!-- a typical, but not especially notable usage here, feel '''free''' (pun intended) to replace with a better one -->
-# {{l|en|free transfer}}
-#* {{quote-news
-|year=2011
-|date=September 21
-|author=Sam Lyon
-|title=Man City 2 - 0 Birmingham
-|work=BBC Sport
-|url=http://news.bbc.co.uk/sport2/hi/football/14910208.stm
-|page=
-|passage=Hargreaves, who left Manchester United on a '''free''' during the summer, drilled a 22-yard beauty to open the scoring.}}
-# {{hurling}} The usual means of restarting play after a foul is committed, where the non-offending team restarts from where the foul was committed.
-
-====Translations====
-<!-- Only abbreviated forms here (if they exist), please -->
-{{trans-top|abbreviation of free kick}}
-* Finnish: {{t-|fi|vapari}}
-{{trans-mid}}
-* German: {{t+|de|Freistoss}}
-{{trans-bottom}}
-
-{{trans-top|hurling}}
-* Irish: {{qualifier|hurling}} {{t|ga|poc saor|m}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{checktrans}}
-* Ghotuo: {{tø|aaa|koola}}<!--was in the "abbrev of free kick" section, but I suspect it and other aaa translations may have been added as nonsense using the trans-adder; restore it if you can verify it; -sche-->
-
-====Usage notes====
-* {{rank/test|351|en-gut}}
-
-===Anagrams===
-* {{l|en|fere}}
-* {{l|en|reef}}
-
-[[Category:1000 English basic words]]
-[[Category:Entries which need Hebrew vowels]]
-[[Category:en:Money]]
-
-[[af:free]]
-[[ar:free]]
-[[cs:free]]
-[[cy:free]]
-[[da:free]]
-[[de:free]]
-[[et:free]]
-[[el:free]]
-[[es:free]]
-[[eo:free]]
-[[fa:free]]
-[[fr:free]]
-[[fy:free]]
-[[ko:free]]
-[[hy:free]]
-[[hi:free]]
-[[io:free]]
-[[id:free]]
-[[it:free]]
-[[kn:free]]
-[[ka:free]]
-[[kk:free]]
-[[sw:free]]
-[[ku:free]]
-[[lo:free]]
-[[la:free]]
-[[lt:free]]
-[[li:free]]
-[[hu:free]]
-[[mg:free]]
-[[ml:free]]
-[[my:free]]
-[[nl:free]]
-[[ja:free]]
-[[no:free]]
-[[pl:free]]
-[[pt:free]]
-[[ru:free]]
-[[simple:free]]
-[[sd:free]]
-[[sk:free]]
-[[fi:free]]
-[[sv:free]]
-[[tl:free]]
-[[ta:free]]
-[[te:free]]
-[[th:free]]
-[[tr:free]]
-[[uk:free]]
-[[vi:free]]
-[[wa:free]]
-[[zh:free]]
+<ol><li> {transitive} To make free; set at {{l|en|liberty}}; {{l|en|release}}; rid of that which confines, limits, embarrasses, or oppresses.</li>
+</ol>
+
+<h4>Hyponyms</h4>
+<ul><li> {{l|en|emancipate}}</li>
+<li> {{l|en|liberate}}</li>
+<li> {{l|en|manumit}}</li>
+<li> {{l|en|release}}</li>
+<li> {{l|en|unchain}}</li>
+<li> {{l|en|unfetter}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> {{Australian rules football|Gaelic football}} Abbreviation of {{l|en|free kick}}.</li>
+<ul><li> <b>2006</b>, [http://footballlegends.org/daryn_cresswell.htm]:</li>
+<ul><li> Whether deserved or not, the <b>free</b> gave Cresswell the chance to cover himself in glory with a shot on goal after the siren. </li>
+</ul>
+</ul>
+<li> {{l|en|free transfer}}</li>
+<ul><li> {{quote-news|year=2011|date=September 21|author=Sam Lyon|title=Man City 2 - 0 Birmingham|work=BBC Sport|url=http://news.bbc.co.uk/sport2/hi/football/14910208.stm|page=|passage=Hargreaves, who left Manchester United on a <b>free</b> during the summer, drilled a 22-yard beauty to open the scoring.}}</li>
+</ul>
+<li> {hurling} The usual means of restarting play after a foul is committed, where the non-offending team restarts from where the foul was committed.</li>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> {{rank/test|351|en-gut}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> {{l|en|fere}}</li>
+<li> {{l|en|reef}}</li>
+</ul>
+Category:1000 English basic wordsCategory:Entries which need Hebrew vowelsCategory:en:Moneyaf:freear:freecs:freecy:freeda:freede:freeet:freeel:freees:freeeo:freefa:freefr:freefy:freeko:freehy:freehi:freeio:freeid:freeit:freekn:freeka:freekk:freesw:freeku:freelo:freela:freelt:freeli:freehu:freemg:freeml:freemy:freenl:freeja:freeno:freepl:freept:freeru:freesimple:freesd:freesk:freefi:freesv:freetl:freeta:freete:freeth:freetr:freeuk:freevi:freewa:freezh:free
 ===freedom===
-freedom of speech: 
-{{wikipedia|Freedom of speech}}
-{{wikinews|Category:Free speech}}
-{{commons|Category:Freedom of speech}}
-{{wikiquote|Freedom of speech}}
-
-===Etymology===
-{{rfe}}
-
-===Pronunciation===
-* {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}
-
-===Noun===
-{{en-noun|sg=[[freedom]] [[of]] [[speech]]|-}}
-
-# The [[right]] of [[citizen]]s to [[speak]], or otherwise [[communicate]], without fear of harm or [[prosecution]].
-#* {{quote-book|year=1720|author={{w|John Trenchard (writer)|John Trenchard}} and {{w|Thomas Gordon (writer)|Thomas Gordon}}|title={{w|Cato's Letters}}|publisher=|url=|isbn=|page=Letter Number 15, ''Of Freedom of Speech, That the Same is inseparable from Publick Liberty''|passage=All Ministers ... who were Oppressors, or intended to be Oppressors, have been loud in their Complaints against '''Freedom of Speech''', and the License of the Press; and always restrained, or endeavored to restrain, both.}}
-#* {{quote-book
-|author={{w|Frank Murphy}}
-|title={{w|Thornhill v. Alabama}}
-|publisher={{w|Supreme Court of the United States}}
-|year=1940|passage=The '''freedom of speech''' and of the press, which are secured by the First Amendment against abridgment by the United States, are among the fundamental personal rights and liberties which are secured to all persons by the Fourteenth Amendment against abridgment by a state. The safeguarding of these rights to the ends that men may speak as they think on matters vital to them and that falsehoods may be exposed through the processes of education and discussion is essential to free government. Those who won our independence had confidence in the power of free and fearless reasoning and communication of ideas to discover and spread political and economic truth.|page={{w|Case citation|310 U.S. 88 }}
-}}
-#* {{quote-book|year=1969|author={{w|Abe Fortas}}|title={{w|Tinker v. Des Moines Independent Community School District}}|publisher={{w|Supreme Court of the United States}}|url=|isbn=|page={{ussc|393|503|1969}}|passage=First Amendment rights, applied in light of the special characteristics of the school environment, are available to teachers and students. It can hardly be argued that either students or teachers shed their constitutional rights to '''freedom of speech''' or expression at the schoolhouse gate.}}
-#* {{quote-book|year=1997|author={{w|Wendy Grossman}}|title={{w|Net.wars}}|publisher={{w|New York University Press}}|url=|isbn=0814731031|page=90|passage=One question that remains is at what point an individual Net poster has the right to assume prerogatives that have traditionally been only the province of journalists and news-gathering organizations. When the Pentagon Papers landed on the doorstep of ''The New York Times'', the newspaper was able to publish under the First Amendment's guarantees of '''freedom of speech''', and to make a strong argument in court that publication was in the public interest. ... the amplification inherent in the combination of the Net's high-speed communications and the size of the available population has greatly changed the balance of power.}}
-#* {{quote-book|year=2003|author=Mike Godwin|authorlink=w:Mike Godwin|title={{w|Cyber Rights}}|publisher=The MIT Press|url=|isbn=0262571684|page=2|passage=The term ''free speech'', which appears in this book's subtitle as well as in its text, is used more or less interchangeably with ''freedom of the press'', '''''freedom of speech''''', and ''freedom of expression'' to refer to all of the expressive rights guaranteed by the forty-five words of the First Amendment, as interpreted by the U.S. courts.}}
-#* {{quote-book  | last =Green  | first =David L.  | title =IQuote: Brilliance and Banter from the Internet Age  | publisher =Globe Pequot  | date =2007  | pages =113  | isbn = 1599211505|passage={{w|Mike Godwin}} (1994): Cyberspace may give '''freedom of speech''' more muscle than the First Amendment does. It may already have become literally impossible for a government to shut people up.}}
-# {{&lit|freedom|speech}}
-#* {{quote-book|chapter=Of Simulation and Dissimulation|year=1625|title=The [[w:Essays (Francis Bacon)|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=[[w:Francis Bacon|Francis Bacon]]|year_published=1680|passage=For to him that opens himself, Men will hardly shew themselves averse, but will (fair) let him go on, and turn their '''freedom of speech''' to freedom of thought. And therefore it is a good shrewd Proverb of the ''Spaniard, Tell a lye, and find a Troth''; as if there were no way of discovery, but by ''Simulation''.|url=http://books.google.com/books?id=xjQCAAAAQAAJ&pg=PA20&dq=%22freedom+of+speech%22&hl=en&sa=X&ei=zTI-T9zcDYnr0gHcx_HOBw&ved=0CNoBEOgBMBo#v=onepage&q=%22freedom%20of%20speech%22&f=false}}
-
-====Quotations====
-{{seemoreCites}}
-
-====Related terms====
-* [[free speech]]
-* [[freedom of expression]]
-
-====Coordinate terms====
-* [[freedom of movement]], [[freedom of contract]], [[freedom of the press]], [[freedom of religion]], [[freedom of assembly]], [[right to petition]], [[right to privacy]], [[right to keep and bear arms]]
-
-====Translations====
-{{trans-top|right to speak without fear of harm}}
-* Arabic: {{t|ar|حرية التعبير|f|tr=Hurriyyat al-ta3biir}}
-* Armenian: {{t-|hy|խոսքի ազատություն|tr=xosk’i azatut’yun}}
-* Belarusian: {{t|be|свабода слова|f|tr=svabóda slóva|xs=Belarusian}}
-* Bulgarian: {{t|bg|свобода на слово|f|tr=svoboda na slovo}}
-* Chinese:
-*: Mandarin: {{t-|cmn|言論自由|sc=Hani}}, {{t-|cmn|言论自由|tr=yánlùnzìyóu|sc=Hani}}
-* Czech: {{t-|cs|svoboda slova|f}}, {{t|cs|svoboda projevu|f}}, {{t|cs|svoboda vyjadřování|f}}
-* Danish: {{t-|da|ytringsfrihed}}
-* Dutch: {{t|nl|vrijheid van meningsuiting|f}}
-* Estonian: {{t-|et|sõnavabadus}}
-* Finnish: {{t+|fi|sananvapaus}}
-* French: {{t+|fr|liberté d'expression|f}}
-* Georgian: {{t|ka|სიტყვის თავისუფლება|sc=Geor}}
-* German: {{t|de|freie Meinungsäußerung|f}}, {{t-|de|Redefreiheit|f}}
-* Greek: {{t|el|ελευθερία έκφρασης|f|tr=elefthería ékfrasis}}
-* Hebrew: {{t|he|חופש הביטוי}}
-* Hindi: {{t|hi|अभिव्यक्ति की स्वतंत्रता|tr=abhivyakti kī svatantratā|xs=Hindi}}
-* Hungarian: {{t-|hu|szólásszabadság}}
-* Icelandic: {{t|is|málfrelsi|n}}
-* Interlingua: [[libertate de parola]], [[libertate de expression]]
-* Italian: {{t|it|libertà di parola|f}}
-* Japanese: {{t|ja|言論の自由|tr=げんろんのじゆう, genron-no jiyū}} <!-- [[表現の自由]]?-->
-{{trans-mid}}
-* Korean: {{t|ko|표현의 자유|tr=pyohyeon jayu|sc=Hang}}
-* Latvian: {{t|lv|vārda brīvība|f|xs=Latvian}}
-* Macedonian: {{t|mk|слобода на говор|f|tr=sloboda na govor}}
-* Norwegian: {{t-|no|ytringsfrihet|m|f}}
-*: [[Norwegian Nynorsk]]: {{t|nn|ytringsfridom|xs=Norwegian Nynorsk}}
-* Persian: {{t-|fa|آزادی بیان|tr=âzâdi-ye bayân|xs=Persian}}
-* Polish: {{t|pl|wolność słowa|f}}
-* Portuguese: {{t|pt|liberdade de expressão|f}}
-* Russian: {{t-|ru|свобода слова|f|tr=svobóda slóva}}
-* Scottish Gaelic: {{t-|gd|saorsa cainnte|f|xs=Scottish Gaelic}}
-* Serbo-Croatian: {{t|sh|слобода говора|f|sc=Cyrl|xs=Serbo-Croatian}}, {{t|sh|sloboda govora|f|xs=Serbo-Croatian}}
-* Slovak: {{t|sk|sloboda slova|f}}
-* Slovene: {{t|sl|svoboda govora|f}}
-* Spanish: {{t|es|libertad de palabra|f}}, {{t|es|libertad de expresión|f}}
-* Swedish: {{t+|sv|yttrandefrihet}}
-* Thai: {{t|th|เสรีภาพในการพูด}}
-* Turkish: {{t|tr|ifade özgürlüğü}}
-* Ukrainian: {{t-|uk|свобода слова|f|tr=svobóda slóva|xs=Ukrainian}}
-* Urdu: {{t|ur|آزادی گفتار|xs=Urdu}}
-* Vietnamese: {{t|vi|tự do ngôn luận|xs=Vietnamese}}
-{{trans-bottom}}
-
-===See also===
-* {{pedia}}
-
-[[Category:en:Freedom of speech]]
-
-[[de:freedom of speech]]
-[[et:freedom of speech]]
-[[fr:freedom of speech]]
-[[pl:freedom of speech]]
-[[fi:freedom of speech]]
-[[ta:freedom of speech]]
+freedom of speech:
+{{wikipedia|Freedom of speech}}{{wikinews|Category:Free speech}}{{commons|Category:Freedom of speech}}{{wikiquote|Freedom of speech}}
+<h3>Etymology</h3>
+{rfe}
+<h3>Pronunciation</h3>
+<ul><li> {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|-|sg=freedom of speech}}
+<ol><li> The right of citizens to speak, or otherwise communicate, without fear of harm or prosecution.</li>
+<ul><li> {{quote-book|year=1720|author={{w|John Trenchard (writer)|John Trenchard}} and {{w|Thomas Gordon (writer)|Thomas Gordon}}|title={{w|Cato's Letters}}|publisher=|url=|isbn=|page=Letter Number 15, <em>Of Freedom of Speech, That the Same is inseparable from Publick Liberty</em>|passage=All Ministers ... who were Oppressors, or intended to be Oppressors, have been loud in their Complaints against <b>Freedom of Speech</b>, and the License of the Press; and always restrained, or endeavored to restrain, both.}}</li>
+<li> {{quote-book|author={{w|Frank Murphy}}|title={{w|Thornhill v. Alabama}}|publisher={{w|Supreme Court of the United States}}|year=1940|passage=The <b>freedom of speech</b> and of the press, which are secured by the First Amendment against abridgment by the United States, are among the fundamental personal rights and liberties which are secured to all persons by the Fourteenth Amendment against abridgment by a state. The safeguarding of these rights to the ends that men may speak as they think on matters vital to them and that falsehoods may be exposed through the processes of education and discussion is essential to free government. Those who won our independence had confidence in the power of free and fearless reasoning and communication of ideas to discover and spread political and economic truth.|page={{w|Case citation|310 U.S. 88 }}}}</li>
+<li> {{quote-book|year=1969|author={{w|Abe Fortas}}|title={{w|Tinker v. Des Moines Independent Community School District}}|publisher={{w|Supreme Court of the United States}}|url=|isbn=|page={{ussc|393|503|1969}}|passage=First Amendment rights, applied in light of the special characteristics of the school environment, are available to teachers and students. It can hardly be argued that either students or teachers shed their constitutional rights to <b>freedom of speech</b> or expression at the schoolhouse gate.}}</li>
+<li> {{quote-book|year=1997|author={{w|Wendy Grossman}}|title={{w|Net.wars}}|publisher={{w|New York University Press}}|url=|isbn=0814731031|page=90|passage=One question that remains is at what point an individual Net poster has the right to assume prerogatives that have traditionally been only the province of journalists and news-gathering organizations. When the Pentagon Papers landed on the doorstep of <em>The New York Times</em>, the newspaper was able to publish under the First Amendment's guarantees of <b>freedom of speech</b>, and to make a strong argument in court that publication was in the public interest. ... the amplification inherent in the combination of the Net's high-speed communications and the size of the available population has greatly changed the balance of power.}}</li>
+<li> {{quote-book|year=2003|author=Mike Godwin|authorlink=w:Mike Godwin|title={{w|Cyber Rights}}|publisher=The MIT Press|url=|isbn=0262571684|page=2|passage=The term <em>free speech</em>, which appears in this book's subtitle as well as in its text, is used more or less interchangeably with <em>freedom of the press</em>, <b><em>freedom of speech</b></em>, and <em>freedom of expression</em> to refer to all of the expressive rights guaranteed by the forty-five words of the First Amendment, as interpreted by the U.S. courts.}}</li>
+<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>
+</ol>
+
+<h4>Quotations</h4>
+{seemoreCites}
+<h4>Related terms</h4>
+<ul><li> free speech</li>
+<li> freedom of expression</li>
+</ul>
+
+<h4>Coordinate terms</h4>
+<ul><li> freedom of movement, freedom of contract, freedom of the press, freedom of religion, freedom of assembly, right to petition, right to privacy, right to keep and bear arms</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> {pedia}</li>
+</ul>
+Category:en:Freedom of speechde:freedom of speechet:freedom of speechfr:freedom of speechpl:freedom of speechfi:freedom of speechta:freedom of speech
 ***Friday***
-Friday: 
-
-===Etymology===
-{{etyl|ang}} {{term|frigedæg|frīġedæġ|lang=ang}}. Compound of frīġe and dæġ "day".
-Old Norse Frigg (genitive Friggjar), Old Saxon Fri, and Old English Frig are derived from Common Germanic Frijjō.[5] Frigg is cognate with Sanskrit prīyā́ which means "wife."[5] The root also appears in Old Saxon fri which means "beloved lady", in Swedish as fria ("to propose for marriage") and in Icelandic as frjá which means "to love."
-
-A calque of Latin ''[[dies Veneris]]'', via an association of the goddess [[Frigg]] with the Roman goddess of love [[Venus]].
-
-===Pronunciation===
-* {{enPR|frīʹdā|frīʹdē}}; {{IPA|/ˈfɹaɪdeɪ/|/ˈfraɪdi/}}; {{X-SAMPA|/"fraIdeI/|/"fraIdi/}}
-* {{audio|en-us-Friday.ogg|Audio (US)}}
-* {{audio|En-uk-Friday.ogg|Audio (UK)}}
-* {{rhymes|aɪdeɪ}}
-* {{rhymes|aɪdi}}
-
-===Noun===
-{{en-noun}}
-
-# The sixth [[day]] of the [[week]] in many religious traditions, and the fifth day of the week in systems using the [[w:ISO 8601|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]].
-<!--probably just an attributive form of the noun: #An appointment, person (like Man Friday in ''Robinson Crusoe''), or feeling associated with this day of the week.-->
-
-====Derived terms====
+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.
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|frīʹdā|frīʹdē}}; {{IPA|/ˈfɹaɪdeɪ/|/ˈfraɪdi/}}; {{X-SAMPA|/"fraIdeI/|/"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>
+<li> {{rhymes|aɪdi}}</li>
+</ul>
+
+<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>
+
+<h4>Derived terms</h4>
 {{rel-top4|Derived terms}}
-* [[Black Friday]]
-* [[Bloody Friday]]
-* [[casual Friday]]
-* [[dress-down Friday]]
-* [[expiration Friday]]
-* [[First Friday]]
-* [[Fri]], [[Fri.]]
-* [[Friday afternoon car]], [[Friday car]]
-* [[Friday Eve]]
-* [[Friday-face]]
-{{rel-mid4}}
-* [[Friday-faced]]
-* [[Friday-fare]]
-* [[Friday fast]]
-* [[Friday-feat]]
-* [[Friday hat]]
-* [[Fridayitis]]
-* [[Friday-look]]
-* [[Friday Mosque]]
-* [[Friday night death slot]]
-* [[Friday Prayer]]
-* [[Fridays]]<!--adverb-->
-{{rel-mid4}}
-* [[Friday the thirteenth]]
-* [[Friday tree]]
-* [[gal Friday]]
-* [[girl Friday]], [[Girl Friday]]
-* [[Golden Friday]]
-* [[Good Friday]]
-* [[Great and Holy Friday]]
-* [[Great Friday]]
-* [[guy Friday]]
-* [[Hollywood Black Friday]]
-* [[Holy Friday]]
-{{rel-mid4}}
-* the [[Long Friday]]
-* [[man Friday]], [[Man Friday]]
-* [[Marlboro Friday]]
-* [[next sitting Friday]]
-* [[person Friday]]
-* [[Red Friday]]
-* [[thank God it's Friday]], [[thank goodness it's Friday]]
-* [[virtual Friday]]
-* [[when two Fridays come together]]
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|day of the week}}
-* Abkhaz: {{t|ab|ахәуаш|tr=axwuaš|sc=Cyrl}}
-* Afrikaans: {{t|af|Vrydag|xs=Afrikaans}}
-* Alabama: {{IPAchar|[[atáɬɬàapi]], [[nihta istáɬɬàapi]]}}
-* Albanian: {{t|sq|e premte}}
-* Alutiiq: {{tø|ems|Tallimiin}}
-* Amharic: [[ዓርብ]] (arb)
-* Arabic: {{t|ar|الجمعة|m|tr=al-júmʿa|sc=Arab}}, {{t|ar|يوم الجمعة|m|tr=yawm al-júmʿa|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|الجمعة|f|tr=el-gómʿa|sc=Arab}}
-* Aramaic: {{tø|arc|ערובתא|f|tr=ʿruvta|sc=Hebr}}
-* Armenian: {{t+|hy|ուրբաթ|tr=urbat'}}
-*: Old Armenian: {{tø|xcl|ուրբաթ|tr=urbatʿ|sc=Armn}}
-* Azeri: {{t|az|cümə}}
-* Bashkir: {{tø|ba|йома|tr=yoma|sc=Cyrl}}
-* Basque: [[ostiral]]
-* Belarusian: {{t-|be|пятніца|f|tr=pjátnica|xs=Belarusian}}
-* Bengali: {{t|bn|শুক্রবার|tr=shukrôbar|sc=Beng}}
-* Blackfoot: [[mamiiksistsiko]]
-* Breton: [[Gwener]] {{m}}, [[digwener]] ''adverb''
-* Bulgarian: {{t+|bg|петък|m|tr=pétăk}}
-* Burmese: {{t-|my|သောကြာ|tr=thaukkya|sc=Mymr|xs=Burmese}}
-* Catalan: {{t|ca|divendres|m}}
-* Central Atlas Tamazight: [[ⵙⴰⵎ]] (sam)
-* Chechen: {{tø|ce|пIераска|tr=ṗeraska}}
-* Cherokee: [[ᏧᎾᎩᎶᏍᏗ]] (tsungilosdi)
-* Chichewa: {{tø|ny|lachisanu}}
-* Chinese:
-*: Mandarin: {{t|zh|星期五|tr=xīngqīwǔ|sc=Hani}}, {{t|zh|禮拜五|sc=Hani}}, {{t|zh|礼拜五|tr=lǐbàiwǔ|sc=Hani}}, {{t|zh|周五|tr=zhōuwǔ|sc=Hani}}
-* Chuvash: {{tø|cv|эрнекун|tr=ernikun|sc=Cyrl}}
-* Corsican: [[vènnari]]
-* Czech: {{t+|cs|pátek|m}}
-* Dakota: {{tø|dak|Aŋpetu Izaptaŋ}}
-* Danish: {{t+|da|fredag}}
-* Dutch: {{t+|nl|vrijdag|m}}
-* Esperanto: {{t+|eo|vendredo|xs=Esperanto}}
-* Estonian: {{t+|et|reede}}
-* Faroese: {{t-|fo|fríggjadagur|m|xs=Faroese}}
-* Fijian: {{t|fj|Vakaraubuka}}
-* Finnish: {{t+|fi|perjantai}}
-* French: {{t+|fr|vendredi|m}}
-* Galician: {{t+|gl|venres|m|xs=Galician}}
-* Georgian: {{t-|ka|პარასკევი|tr=paraskevi|sc=Geor|xs=Georgian}}
-* German: {{t|de|Freitag|m}}
-* Gilbertese: {{tø|gil|Danimabong}}
-* Greek: {{t+|el|Παρασκευή|f|tr=Paraskeví}}
-* Greenlandic: {{t+|kl|Tallimanngorneq|xs=Greenlandic}}
-* Gujarati: {{t|gu|શુક્રવાર|m|tr=śukrvār|sc=Gujr}}
-* Haitian Creole: {{tø|ht|vandredi}}
-* Hawaiian: {{tø|haw|Pōʻalima}}
-* Hebrew: {{t|he|יום שישי|m|tr=yom shishí}}
-* Hindi: {{t|hi|शुक्रवार|m|tr=śukrvār|xs=Hindi}}
-* Hungarian: {{t+|hu|péntek}}
-* Icelandic: {{t+|is|föstudagur|m}}
-* Ido: venerdio
-* Indonesian: [[hari jumat]]
-* Interlingua: [[venerdi]]
-* Irish: {{t+|ga|Aoine|f|xs=Irish}}
-* Italian: {{t+|it|venerdì|m}}
-* Japanese: {{t|ja|木曜日|tr=きんようび, kin'yōbi|sc=Jpan}}, {{t|ja|木曜|tr=きんよう, kin'yō|sc=Jpan}}
-* Kashubian: [[piątk]] {{m}}
-* Kazakh: {{t+|kk|жұма|tr=juma|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|ថ្ងៃសុក្រ|tr=tngai sok|sc=Khmr}}
-* Kinyarwanda: [[Kwagatanu]]
-* Kongo: {{tø|kg|Lumbu kia ntanu}}
-* Korean: {{t+|ko|금요일|tr=geumyoil|sc=Kore}} ({{t|ko|金曜日|sc=Kore}})
-* Kurdish:
-*: Sorani: {{ku-Arab|[[هه‌ینی]]}}, {{ku-Arab|[[جمعه‌]]}}
-* Kyrgyz: {{t|ky|жума|tr=cuma|sc=Cyrl}}
-* Lao: {{t+|lo|ວັນສຸກ|tr=wan-suk|sc=Laoo|xs=Lao}}
-* Latin: {{t+|la|dies Veneris|m}}
-* Latvian: {{t+|lv|piektdiena|xs=Latvian}}
-* Lithuanian: {{t+|lt|penktadienis|m|xs=Lithuanian}}
-* Livonian: {{tø|liv|brēḑig}}
-* Lower Sorbian: [[pětk]] {{m}}
-{{trans-mid}}
-* Luganda: {{tø|lg|Lwakutaano}}
-* Luxembourgish: , {{t|lb|Freiden|m}}, {{t|lb|Freideg|m}}
-* Macedonian: {{t+|mk|петок|m|tr=pétok}}
-* Malay: {{t+|ms|Jumaat|xs=Malay}}
-* Maltese: {{t-|mt|il-Ġimgħa|xs=Maltese}}
-* Maori: [[Paraire]], [[Rārima]], [[Rāmere]]
-* Mongolian: {{t|mn|баасан|tr=baasan|sc=Cyrl}}
-* Navajo: {{tø|nv|Ndaʼiiníísh}}
-* Neapolitan: [[viernarì]]
-* Norwegian: {{t+|no|fredag}}
-* Occitan: {{t+|oc|divendres|xs=Occitan}} {{m}}
-* Ojibwe: [[naanogiizhigad]]
-* Old English: [[Frígedæg]] {{m}}, [[Fríandæg]] {{m}}
-* Old Norse: [[frjádagr]] {{m}}
-* Old Turkic: {{tø|otk|altınç}}
-* Ossetian:
-*: Digor: {{tø|os|майрæнбон|tr=majrænbon|sc=Cyrl|xs=Ossetian}}
-*: Iron: {{tø|os|майрæмбон|tr=majræmbon|sc=Cyrl|xs=Ossetian}}
-* Papiamentu: {{tø|pap|diabièrne}}
-* Persian: {{t+|fa|آدینه|tr=âdine|xs=Persian}}, {{t+|fa|جمعه|tr=jom'e}}
-* Polish: {{t+|pl|piątek|m}}
-* Portuguese: {{t+|pt|sexta-feira|f}}
-* Romani: {{tø|rom|parashtuj}}
-* Romanian: {{t+|ro|vineri|f}}
-* Russian: {{t+|ru|пятница|f|tr=pjátnica}}
-* Sami:
-*: Northern: {{tø|se|bearjadat}}
-* Samoan: {{t|sm|Aso Faraile}}
-* Scottish Gaelic: {{t-|gd|Dihaoine|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|петак|m}}
-*: Roman: {{t|sh|petak|m}}
-* Shona: {{t|sn|Chishanu}}
-* Sinhalese: {{t|si|සිකුරාදා|tr=sikurādā|sc=Sinh}}
-* Skolt Sami: {{tø|sms|piâtnâc}}
-* Slovak: {{t+|sk|piatok|m}}
-* Slovene: {{t+|sl|petek|m}}
-* Somali: [[Jimce]]
-* Sotho: [[Labohlano]]
-* Spanish: {{t+|es|viernes|m}}
-* Swahili: {{t|sw|ijumaa|xs=Swahili}}
-* Swati: {{t|ss|Lesíhlánu}}
-* Swedish: {{t+|sv|fredag|c}}
-* Tagalog: {{t|tl|Biyernes}}, {{t|tl|biyernes}}
-* Tahitian: {{tø|ty|mahana pae}}
-* Tajik: {{t|tg|ҷумъа|tr=jum'a|sc=Cyrl}}, {{t|tg|одина|tr=odina|sc=Cyrl}}
-* Taos: [[míalnąsi]]
-* Tarantino: {{tø|roa-tar|venerdìe}}
-* Tatar: {{t+|tt|җомга|tr=comğa|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t+|te|శుక్రవారము}}
-* Thai: {{t|th|วันศุกร์|tr=wan sòòk}}
-* Tibetan: [[གཟའ་པ་སངས་]]
-* Tok Pisin: {{t|tpi|Fraide}}
-* Tongan: {{t|to|Falaite}}
-* Tswana: {{t|tn|Labotlhano}}
-* Turkish: {{t+|tr|cuma}}
-* Turkmen: {{t|tk|anna}}
-* Ukrainian: {{t|uk|п'ятниця|tr=pʹjátnycja}}
-* Upper Sorbian: [[pjatk]] {{m}}
-* Urdu: {{t|ur|جمعہ|tr=jum'ā|sc=ur-Arab}}
-* Uyghur: {{t|ug|جۈمە|sc=ug-Arab}}
-* Uzbek: {{t|uz|juma}}
-* Venetian: {{tø|vec|vènere|m}}
-* Veps: {{tø|vep|videnz'päiv}}
-* Vietnamese: {{t|vi|thứ sáu}} (lit.: ''number six'')
-* Volapük: {{t|vo|fridel}}, {{t|vo|mälüdel}}, {{t|vo|flidel}}
-* Võro: {{tø|vro|riidi}}
-* Welsh: {{t+|cy|dydd Gwener|m|xs=Welsh}}
-* West Frisian: [[freed]]
-* Wolof: [[Àjjuma]]
-* Xhosa: {{t|xh|ulwesihlanu}}
-* Yiddish: {{t|yi|פרײַטאָג|m|tr=fraytog}}
-* Zulu: {{t|zu|uLwesihlanu}}
-{{trans-bottom}}
-
-===Adverb===
+<ul><li> Black Friday</li>
+<li> Bloody Friday</li>
+<li> casual Friday</li>
+<li> dress-down Friday</li>
+<li> expiration Friday</li>
+<li> First Friday</li>
+<li> Fri, Fri.</li>
+<li> Friday afternoon car, Friday car</li>
+<li> Friday Eve</li>
+<li> Friday-face</li>
+</ul>
+{rel-mid4}
+<ul><li> Friday-faced</li>
+<li> Friday-fare</li>
+<li> Friday fast</li>
+<li> Friday-feat</li>
+<li> Friday hat</li>
+<li> Fridayitis</li>
+<li> Friday-look</li>
+<li> Friday Mosque</li>
+<li> Friday night death slot</li>
+<li> Friday Prayer</li>
+<li> Fridays</li>
+</ul>
+{rel-mid4}
+<ul><li> Friday the thirteenth</li>
+<li> Friday tree</li>
+<li> gal Friday</li>
+<li> girl Friday, Girl Friday</li>
+<li> Golden Friday</li>
+<li> Good Friday</li>
+<li> Great and Holy Friday</li>
+<li> Great Friday</li>
+<li> guy Friday</li>
+<li> Hollywood Black Friday</li>
+<li> Holy Friday</li>
+</ul>
+{rel-mid4}
+<ul><li> the Long Friday</li>
+<li> man Friday, Man Friday</li>
+<li> Marlboro Friday</li>
+<li> next sitting Friday</li>
+<li> person Friday</li>
+<li> Red Friday</li>
+<li> thank God it's Friday, thank goodness it's Friday</li>
+<li> virtual Friday</li>
+<li> when two Fridays come together</li>
+</ul>
+{rel-bottom}
+<h3>Adverb</h3>
 {{en-adv|-}}
+<ol><li> on Friday</li>
+</ol>
 
-# on Friday
-
-====Translations====
-{{trans-top|on Friday}}
-* Faroese: {{t|fo|fríggjadagin}}
-* Finnish: {{t|fi|perjantaina}}
-* Irish: {{t+|ga|Dé hAoine|xs=Irish}}
-* Latvian: {{t|lv|piektdien}}
-* Lithuanian: {{t|lt|penktadienį}}
-{{trans-mid}}
-* Macedonian: {{t|mk|во петок|tr=vo pétok}},  {{t|mk|петочно|tr=pétočno}},  {{t|mk|петочко|tr=pétočki}}
-* Romanian: {{t|ro|vineri}}, {{t|ro|vinerea}}
-* Scottish Gaelic: {{t-|gd|Dihaoine|xs=Scottish Gaelic}}
-* Volapük: {{t|vo|fridelo}}, {{t|vo|mälüdelo}}, {{t|vo|flidelo}}
-{{trans-bottom}}
-
-===See also===
-* {{list|en|days of the week}}
-
-===Anagrams===
-* [[fraidy#English|fraidy]]
-
-[[af:Friday]]
-[[ast:Friday]]
-[[az:Friday]]
-[[bs:Friday]]
-[[cs:Friday]]
-[[cy:Friday]]
-[[da:Friday]]
-[[de:Friday]]
-[[et:Friday]]
-[[el:Friday]]
-[[es:Friday]]
-[[eo:Friday]]
-[[eu:Friday]]
-[[fa:Friday]]
-[[fr:Friday]]
-[[ga:Friday]]
-[[gl:Friday]]
-[[ko:Friday]]
-[[hy:Friday]]
-[[hr:Friday]]
-[[io:Friday]]
-[[id:Friday]]
-[[it:Friday]]
-[[kl:Friday]]
-[[kn:Friday]]
-[[ka:Friday]]
-[[kk:Friday]]
-[[sw:Friday]]
-[[ku:Friday]]
-[[lo:Friday]]
-[[la:Friday]]
-[[lv:Friday]]
-[[lb:Friday]]
-[[lt:Friday]]
-[[hu:Friday]]
-[[mk:Friday]]
-[[mg:Friday]]
-[[ml:Friday]]
-[[mn:Friday]]
-[[my:Friday]]
-[[nl:Friday]]
-[[ja:Friday]]
-[[no:Friday]]
-[[nn:Friday]]
-[[oc:Friday]]
-[[km:Friday]]
-[[pl:Friday]]
-[[pt:Friday]]
-[[ro:Friday]]
-[[ru:Friday]]
-[[simple:Friday]]
-[[sd:Friday]]
-[[fi:Friday]]
-[[sv:Friday]]
-[[tl:Friday]]
-[[ta:Friday]]
-[[te:Friday]]
-[[tg:Friday]]
-[[tr:Friday]]
-[[uk:Friday]]
-[[vi:Friday]]
-[[vo:Friday]]
-[[zh:Friday]]
+<h3>See also</h3>
+<ul><li> {{list|en|days of the week}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> fraidy</li>
+</ul>
+af:Fridayast:Fridayaz:Fridaybs:Fridaycs:Fridaycy:Fridayda:Fridayde:Fridayet:Fridayel:Fridayes:Fridayeo:Fridayeu:Fridayfa:Fridayfr:Fridayga:Fridaygl:Fridayko:Fridayhy:Fridayhr:Fridayio:Fridayid:Fridayit:Fridaykl:Fridaykn:Fridayka:Fridaykk:Fridaysw:Fridayku:Fridaylo:Fridayla:Fridaylv:Fridaylb:Fridaylt:Fridayhu:Fridaymk:Fridaymg:Fridayml:Fridaymn:Fridaymy:Fridaynl:Fridayja:Fridayno:Fridaynn:Fridayoc:Fridaykm:Fridaypl:Fridaypt:Fridayro:Fridayru:Fridaysimple:Fridaysd:Fridayfi:Fridaysv:Fridaytl:Fridayta:Fridayte:Fridaytg:Fridaytr:Fridayuk:Fridayvi:Fridayvo:Fridayzh:Friday
 ===friend===
-false friend: 
-{{was wotd|2007|May|4}}
-{{wikipedia}}
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/ˌfɒls ˈfrɛnd/|/ˌfɔːls ˈfrɛnd/}}
-* {{a|US}} {{IPA|/ˌfɑːls ˈfrɛnd/}}
-* {{audio|en-us-false friend.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun|sg=[[false]] [[friend]]}}
-
-# {{linguistics|idiomatic}} A [[word]] in a foreign language bearing a [[deceptive]] resemblance to a word in one's own language.
-
-====Usage notes====
-* Examples:
-** The French ''[[nous]] [[demandons]]'' means "''we [[ask]]''", but sounds like "''we [[demand]]''", which can turn negotiation into confrontation.
-** The Spanish word ''[[embarazada]]'' means "''[[pregnant]]''", not "''[[embarrassed]]''" &mdash; "''Estoy embarazada''" means "''I am pregnant''", not "''I am embarrassed''".
-** The German word ''[[will]]'' ([[want]]) is not a future tense marker &mdash; "''Ich will gehen''" means "''I want to go''", not "''I will go''".
-*** Same for Dutch and Afrikaans, "''Ik wil gaan''" and "''Ek wil gaan''" mean "''I want to go''".
-** The Italian word ''[[triviale]]'' ([[vulgar]]) is written almost like ''[[trivial]]'', but the two words share only a common Latin root (''[[trivium]]'' in Latin means [[crossroad]]) and no longer any meaning; "''Questo è triviale''" means "''This is in bad taste''", not "''This is obvious''".
-** The Danish word ''[[gift]]'' does not mean gift as in present, but can mean a verb form of [[married|to marry]]; ''Han er gift'' means ''He is married''. The word for gift is [[gave]], which is close to the past tense of the verb [[giver]]. If ''du gav en gave'', you gave a gift. Likewise, if ''du gav en gift'', you actually gave [[poison]].
-
-====Hyponyms====
-* [[partial false friend]]
-
-====Translations====
-{{trans-top|false friend}}
-* Arabic: {{t|ar|صديق كاذب|m|tr=Sadiiq kaaDib}}
-* [[Catalan]]: {{t|ca|fals amic|m}}
-* Chinese:
-*: Mandarin: {{t|cmn|偽友|sc=Hani}},  {{t|cmn|伪友|tr=wěi yǒu|sc=Hani}},  {{t|cmn|假友|tr=jiǎ yǒu|sc=Hani}},  {{t|cmn|假等義|sc=Hani}},  {{t|cmn|假等义|tr=jiǎ děngyì|sc=Hani}}
-* Danish: {{t-|da|falsk ven}}
-* Esperanto: {{t|eo|falsa amiko|xs=Esperanto}}
-* Finnish: {{t|fi|väärä ystävä}}, {{t|fi|petollinen ystävä}}
-* French: {{t+|fr|faux-ami|m}}
-* [[Galician]]: {{t-|gl|falso amigo|m|xs=Galician}}
-* German: {{t|de|falscher Freund|m}}, {{t|de|Übersetzungsfalle|f}}
-* Hindi: {{t|hi|झूठा दोस्त|tr=jhūṭhā dost|xs=Hindi}}, {{t|hi|झूठे दोस्त|p|tr=jhūṭhē dōst|xs=Hindi}}
-* Hungarian: {{t|hu|hamis barát}}
-{{trans-mid}}
-* Icelandic: {{t|is|falsvinir|m|p}},  {{t|is|svikatengsl|n|p}}
-* Indonesian: {{t|id|teman palsu|xs=Indonesian}}
-* [[Interlingua]]: {{t|ia|false amico|xs=Interlingua}}
-* Italian: {{t-|it|falso amico|m}}
-* Japanese: {{t|ja|偽りの友|tr=いつわりのとも, itsuwari-no tomo}}
-* Korean: {{t|ko|거짓 친구|tr=geojit chingu|sc=Hang}}
-* Norwegian: {{t-|no|falsk venn}}
-* Polish: {{t+|pl|fałszywy przyjaciel|m}}
-* Portuguese: {{t-|pt|falso amigo|m}}
-* Romanian: {{t|ro|prieten fals|m}}
-* Russian: {{t|ru|ложный друг|m|tr=lóžnyj drug}}, {{t|ru|ложные друзья|m|p|tr=lóžnyje druzjá}}
-* Slovene: {{t|sl|lažni prijatelj|m}}
-* Spanish: {{t+|es|falso amigo|m}}
-* Swedish: {{t|sv|falsk vän|c}}
-{{trans-bottom}}
-
-===See also===
-* [[cognate]]
-* [[false cognate]]
-
-[[fr:false friend]]
-[[id:false friend]]
-[[pl:false friend]]
-[[sv:false friend]]
+false friend:
+{{was wotd|2007|May|4}}{wikipedia}
+<h3>Pronunciation</h3>
+<ul><li> {{a|RP}} {{IPA|/ˌfɒls ˈfrɛnd/|/ˌfɔːls ˈfrɛnd/}}</li>
+<li> {{a|US}} {{IPA|/ˌfɑːls ˈfrɛnd/}}</li>
+<li> {{audio|en-us-false friend.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|sg=false friend}}
+<ol><li> {{linguistics|idiomatic}} A word in a foreign language bearing a deceptive resemblance to a word in one's own language.</li>
+</ol>
+
+<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 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 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>
+
+<h4>Hyponyms</h4>
+<ul><li> partial false friend</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> cognate</li>
+<li> false cognate</li>
+</ul>
+fr:false friendid:false friendpl:false friendsv:false friend
 ***GDP***
-GDP: 
+GDP:
 {{wikipedia|GDP (disambiguation)}}
-
-==={{initialism}}===
-'''GDP'''
-
-# {{economics}} [[gross domestic product]]
-# {{biochemistry}} [[guanosine diphosphate]]
-
-====Translations====
-''See'' '''[[gross domestic product]]''' ''for the full forms of these abbreviations''
-{{trans-top|gross domestic product}}
-* Afrikaans: {{t+|af|BBP}}
-* Albanian: {{t+|sq|BDV}}
-* Aragonese: {{t+|an|PIB}}
-* Armenian: {{t|hy|ՀՆԱ|tr=HNA|sc=Armn}}
-* Azerbaijani: {{t+|az|ÜDM}}
-* Bambara: {{t+|bm|BSK}}
-* Basque: {{t+|eu|BPG}}
-* Bavarian: {{t+|bar|BIP}}
-* Belarusian: {{t+|be|ВУП}}
-* Bosnian: {{t+|bs|BDP}}
-* Breton: {{t+|br|PDG}}
-* Bulgarian: {{t+|bg|БВП}}
-* Catalan: {{t+|ca|PIB}}
-* Croatian: {{t+|hr|BDP}}
-* Czech: {{t+|cs|HDP}}
-* Danish: {{t+|da|BNP}}
-* Dutch: {{t-|nl|BBP}}
-* Esperanto: {{t+|eo|MEP}}
-* Estonian: {{t+|et|SKT}}
-* Finnish: {{t+|fi|BKT}}
-* French: {{t+|fr|PIB|m}}
-* Galician: {{t+|gl|PIB}}
-* Georgian: {{t+|ka|მშპ}}
-* German: [[BIP]]
-* Greek: {{t|el|ΑΕΠ|tr=AEP|sc=Grek}}
-* Hungarian: {{t+|hu|BHT}}
-* Ido: {{t+|io|KLP}}
-* Indonesian: {{t+|id|GDP|xs=Indonesian}}, {{t-|id|PDB|xs=Indonesian}}
-* Irish: {{t+|ga|OTI}}
-* Italian: {{t+|it|PIL}}
-{{trans-mid}}
-* Japanese: {{t+|ja|GDP}}
-* Javanese: {{t+|jv|PDB}}
-* Karachay-Balkar: {{t+|krc|БИП}}
-* Kazakh: {{t+|kk|ЖІӨ}}
-* Kirghiz: {{t+|ky|ИДП}}
-* Latin: {{t+|la|PDG}}
-* Latvian: {{t+|lv|IKP}}
-* Lithuanian: {{t+|lt|BVP}}
-* Macedonian: {{t+|mk|БДП}}
-* Malay: {{t+|ms|KDNK}}
-* Manx: {{t+|gv|LTS}}
-* Occitan: {{t+|oc|PIB}}
-* Polish: {{t+|pl|PKB|m|n}}
-* Portuguese: {{t+|pt|PIB}}
-* Romanian: {{t+|ro|PIB}}
-* Russian: {{t+|ru|ВВП|m|tr=ve-ve-pé}}
-* Serbian: {{t+|sr|БДП}}
-* Serbo-Croatian: {{t+|sh|BDP}}
-* Sicilian: {{t+|scn|PNL}}
-* Slovak: {{t+|sk|HDP}}
-* Slovene: {{t+|sl|BDP}}
-* Spanish: {{t-|es|PIB}}
-* Tagalog: {{t+|tl|PDP}}
-* Turkish: {{t+|tr|GSYİH}}
-* Udmurt: {{t+|udm|ВВП}}
-* Ukrainian: {{t+|uk|ВВП}}
-* Venetian: {{t+|vec|PIL}}
-* Welsh: {{t+|cy|CMC}}
-* Yakut: {{t+|sah|БИО}}
-* Yoruba: {{t+|yo|GIO}}
-{{trans-bottom}}
-
-====References====
-* {{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
-
-===See also===
-* [[GNP]]
-* [[GTP]]
-
-[[cs:GDP]]
-[[cy:GDP]]
-[[de:GDP]]
-[[et:GDP]]
-[[el:GDP]]
-[[ko:GDP]]
-[[id:GDP]]
-[[he:GDP]]
-[[kk:GDP]]
-[[lo:GDP]]
-[[hu:GDP]]
-[[my:GDP]]
-[[ja:GDP]]
-[[pl:GDP]]
-[[ru:GDP]]
-[[sk:GDP]]
-[[fi:GDP]]
-[[ta:GDP]]
-[[tr:GDP]]
-[[vi:GDP]]
+<h3>{initialism}</h3>
+<b>GDP</b>
+<ol><li> {economics} gross domestic product</li>
+<li> {biochemistry} guanosine diphosphate</li>
+</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>
+
+<h3>See also</h3>
+<ul><li> GNP</li>
+<li> GTP</li>
+</ul>
+cs:GDPcy:GDPde:GDPet:GDPel:GDPko:GDPid:GDPhe:GDPkk:GDPlo:GDPhu:GDPmy:GDPja:GDPpl:GDPru:GDPsk:GDPfi:GDPta:GDPtr:GDPvi:GDP
 ===GNU===
-GNU FDL: 
-{{wikipedia}}
-
-==={{initialism}}===
-'''GNU FDL'''
-
-# [[GNU]] [[free|Free]] [[documentation|Documentation]] [[license|License]]
-
-[[pl:GNU FDL]]
+GNU FDL:
+{wikipedia}
+<h3>{initialism}</h3>
+<b>GNU FDL</b>
+<ol><li> GNU Free Documentation License</li>
+</ol>
+pl:GNU FDL
 ===grain===
-grain of salt: 
-{{wikipedia}}
-===Etymology===
-From Latin {{term|cum grano salis}}, literally ''with a grain of salt'', figuratively ''with a bit of common sense''.
-
-===Noun===
-{{en-noun|sg=[[grain]] of [[salt]]|-}}
-
-# {{idiomatic}} A bit of [[common sense]] and [[skepticism]].  Generally used in some form of ''to take with a grain of salt.''
-#: ''I'd take anything I read in that paper with a '''grain of salt'''.''
-
-====Synonyms====
-* [[pinch of salt]]
-
-====Translations====
-{{trans-top|with common sense and skepticism}}
-* {{trreq|Catalan}}
-* Chinese:
-*: Mandarin: {{qualifier|to take with a grain of salt; not to be believed literally}} {{t|cmn|不可全信|tr=bùkěquánxìn|sc=Hani}}
-* Czech: {{t|cs|rezerva|f}}
-* Dutch: [[korrel]]tje [[zout]] (iets met een korreltje zout nemen)
-* Finnish: {{t|fi|varauksin}}, {{t|fi|varauksellisesti}}, {{t|fi|varauksella}},  {{t-|fi|varovasti}}
-{{trans-mid}}
-* {{trreq|Georgian}}
-* German: mit einem Körnchen Salz
-* Portuguese: Com um grão de sal (literal), com reservas, não confiar muito.
-* Russian: {{qualifier|adverb}} {{t|ru|скептически|tr=skeptíčeski}}, {{qualifier|adverb}} {{t|ru|недоверчиво|tr=nedovérčivo}}
-* Spanish: {{t-|es|reservas|f|p}}, {{t-|es|dudas|f|p}}
-* Swedish: {{t|sv|en nypa salt}}
-{{trans-bottom}}
-
-====See also====
-* [[face value]]
-
-[[et:grain of salt]]
-[[id:grain of salt]]
+grain of salt:
+{wikipedia}
+<h3>Etymology</h3>
+From Latin {{term|cum grano salis}}, literally <em>with a grain of salt</em>, figuratively <em>with a bit of common sense</em>.
+<h3>Noun</h3>
+{{en-noun|-|sg=grain of salt}}
+<ol><li> {idiomatic} A bit of common sense and skepticism.  Generally used in some form of <em>to take with a grain of salt.</em></li>
+<ul><li> <em>I'd take anything I read in that paper with a <b>grain of salt</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> pinch of salt</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> face value</li>
+</ul>
+et:grain of saltid:grain of salt
 ***gratis***
-gratis: 
-
-===Etymology===
-From {{etyl|la}} ''[[#Latin|gratis]]''.
+gratis:
 
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈɡɹɑː.tɪs/}} {{X-SAMPA|/"grA:.tIs/}}
+<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>
 
-===Adverb===
+<h3>Adverb</h3>
 {{en-adv|-}}
+<ol><li> free, without charge</li>
+</ol>
+
+<h3>Adjective</h3>
+{{en-adj|-}}
+<ol><li> free, without charge</li>
+</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>
+
+<h4>Related terms</h4>
+<ul><li> gratuity</li>
+<li> gratuitous</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> libre</li>
+</ul>
+Category:English terms derived from LatinCategory:en:Economics----
+===guide===
+pronunciation guide:
 
-# [[free]], without [[charge]]
-
-====Translations====
-{{trans-top|free, without charge}}
-* Czech: {{t|cs|zdarma}}, {{t|cs|bezplatně}}
-* Danish: {{t|da|gratis}}
-* Dutch: {{t|nl|gratis}}
-* Georgian: {{t|ka|უფასოდ|tr=up'asod|sc=Geor}}
-* Hebrew: {{t|he|חינם|tr=khinám|sc=Hebr}}
-* Romanian: {{t|ro|gratis}}
-{{trans-mid}}
-* Russian: {{t+|ru|бесплатно|tr=besplátno}}, {{t+|ru|даром|tr=dárom}} (colloquial), {{t|ru|безвозмездно|tr=bezvozmézdno}}
-* Scottish Gaelic: {{t-|gd|an asgaidh|xs=Scottish Gaelic}}
-* Spanish: {{t-|es|gratis}}
-* Swedish: {{t|sv|gratis}}
-* Turkish: {{t|tr|ücretsiz}}
-{{trans-bottom}}
-
-===Adjective===
+<h3>Noun</h3>
+{{en-noun|sg=pronunciation guide}}
+<ol><li>{countable} A table in a reference work explaining the symbols that it uses to represent the pronunciation of its entries.</li>
+</ol>
+pt:pronunciation guideru:pronunciation guide
+***head***
+head:
+{{wikipedia|Head|dab=Head (disambiguation)}}{{rfc|still missing some basic dictionary definitions: see talk page}}
+<h3>Alternative forms</h3>
+<ul><li> {{l|en|heed}} {{qualifier|obsolete}}, {{l|en|hed}} {{qualifier|obsolete}}</li>
+</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}}.
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|hĕd}}, {{IPA|/hɛd/}}, {{X-SAMPA|/hEd/}}</li>
+<li> {{audio|en-us-head.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-head.ogg|Audio (UK)}}</li>
+<li> {{rhymes|ɛd}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{picdic| image=Human head and brain diagram.svg| width=310| labels={{picdiclabel| color=black | fontsize=12 | posx=150 | posy= 3 | link=skull }} {{picdiclabel| color=black | fontsize=18 | posx=170 | posy= 90 | link=brain }} {{picdiclabel| color=black | fontsize=12 | posx= 80 | posy=160 | link=eye | align=left }} {{picdiclabel| color=black | fontsize=12 | posx= 15 | posy=190 | link=nose | align=left }} {{picdiclabel| color=black | fontsize=12 | posx= 50 | posy=230 | link=mouth | align=left }} {{picdiclabel| color=black | fontsize=12 | posx= 35 | posy=285 | link=chin }} {{picdiclabel| color=black | fontsize=12 | posx= 90 | posy=270 | link=jaw }} {{picdiclabel| color=black | fontsize=12 | posx=175 | posy=205 | link=ear | align=right }} {{picdiclabel| color=black | fontsize=12 | posx=120 | posy=140 | link=temple }} {{picdiclabel| color=black | fontsize=12 | posx=185 | posy=290 | link=neck }}| detail1=Click on labels in the image| detail2={{picdicimg| image=Human body features-nb.svg | link=body }}}}{wikipedia}{{en-noun|s|-}}
+<ol><li> {countable} The part of the body of an animal or human which contains the brain, mouth{,} and main sense organs.</li>
+<ul><li> <em>Be careful when you pet that dog on the <b>head</b>; it may bite.</em></li>
+</ul>
+<li> {countable} Mental or emotional aptitude or skill.</li>
+<ul><li> <em>The company is looking for people with good <b>heads</b> for business.</em></li>
+<li> <em>He has no <b>head</b> for heights.</em></li>
+</ul>
+<li> {countable} Mind; one's own thoughts.</li>
+<ul><li> <em>This song keeps going through my <b>head</b>.</em></li>
+</ul>
+<li> {countable} The topmost, foremost, or leading part.</li>
+<ul><li> <em>What does it say on the <b>head</b> of the page?</em></li>
+</ul>
+<li> The end of a rectangular table furthest from the entrance; traditionally considered a seat of honor.</li>
+<ul><li> <em>During meetings, the supervisor usually sits at the <b>head</b> of the table.</em></li>
+</ul>
+<li> {billiards} The end of a pool table opposite the end where the balls have been racked.</li>
+<li> {countable} The principal operative part of a simple machine or tool.</li>
+<ol><li> The end of a hammer, axe, {{soplink|golf|club}}{,} or similar implement used for striking other objects.</li>
+<li> The end of a nail, screw, bolt{,} or similar fastener which is opposite the point; usually blunt and relatively wide.</li>
+<ul><li> <em>Hit the nail on the <b>head</b>!</em></li>
+</ul>
+<li> The sharp end of an arrow, spear{,} or pointer.</li>
+<ul><li> <em>The <b>head</b> of the compass needle is pointing due north.</em></li>
+</ul>
+<li> {lacrosse} The top part of a lacrosse stick that holds the ball.</li>
+</ol>
+<li> The source of a river; the end of a lake where a river flows into it.</li>
+<ul><li> <em>The expedition followed the river all the way to the <b>head</b>.</em></li>
+</ul>
+<li> {rfc-sense} The front, as of a queue.</li>
+<ul><li> <em>Because you got them all right, you can go to the <b>head</b>.</em></li>
+</ul>
+<li> Headway; progress.</li>
+<ul><li> <em>We are having a difficult time making <b>head</b> against this wind.</em></li>
+</ul>
+<li> The foam that forms on top of beer or other carbonated beverages.</li>
+<ul><li> <em>Pour me a fresh beer; this one has no <b>head</b>.</em></li>
+</ul>
+<li> {countable} Leader; chief; mastermind.</li>
+<ul><li> <em>I'd like to speak to the <b>head</b> of the department.</em></li>
+<li> <em>Police arrested the <b>head</b> of the gang in a raid last night.</em></li>
+</ul>
+<li> A headmaster or headmistress.</li>
+<ul><li> <em>I was called into the <b>head</b>'s office to discuss my behaviour.</em></li>
+</ul>
+<li> A headache; especially one resulting from intoxication.</li>
+<ul><li> <b>1888</b>, Rudyard Kipling, ‘Thrown Away’, <em>Plain Tales from the Hills</em>, Folio Society 2005 edition, page 18,</li>
+<ul><li> he took them seriously, too, just as seriously as he took the ‘<b>head</b>’ that followed after drink.</li>
+</ul>
+</ul>
+<li> A clump of leaves or flowers; a capitulum.</li>
+<ul><li> <em>Give me a <b>head</b> of lettuce.</em></li>
+</ul>
+<li> {anatomy} The rounded part of a bone fitting into a depression in another bone to form a ball-and-socket joint.</li>
+<li> An individual person.</li>
+<ul><li> <em>Admission is three dollars a <b>head</b>.</em></li>
+</ul>
+<li> {{uncountable|measure word for livestock and game}} A single animal.</li>
+<ul><li> <em>200 <b>head</b> of cattle and 50 <b>head</b> of horses</em></li>
+<li> <em>12 <b>head</b> of big cattle and 14 <b>head</b> of branded calves</em></li>
+<li> <em>At five years of age this <b>head</b> of cattle is worth perhaps $40</em></li>
+<li> <em>a reduction in the assessment per <b>head</b> of sheep</em></li>
+<li> <em>they shot 20 <b>head</b> of quail</em></li>
+</ul>
+<li> The population of game.</li>
+<ul><li> <em>we have a heavy <b>head</b> of deer this year</em></li>
+<li> <em>planting the hedges increased the <b>head</b> of quail and doves</em></li>
+</ul>
+<li> Topic; subject.</li>
+<ul><li> <em>We will consider performance issues under the <b>head</b> of future improvements.</em></li>
+</ul>
+<li> {linguistics} A morpheme that determines the category of a compound or the word that determines the syntactic type of the phrase of which it is a member.</li>
+<li> {jazz} The principal melody or theme of a piece.</li>
+<li> {{British|geology}} Deposits near the top of a geological succession.</li>
+<li> {medicine} The end of an abscess where pus collects.</li>
+<li> {uncountable} denouement; crisis</li>
+<ul><li> <em>These isses are going to come to a <b>head</b> today.</em></li>
+</ul>
+<li> A machine element which reads or writes electromagnetic signals to or from a storage medium.</li>
+<ul><li> <em>The <b>heads</b> of your tape player need to be cleaned.</em></li>
+</ul>
+<li> {music} The headstock of a guitar.</li>
+<li> {music} A drum head, the membrane which is hit to produce sound.</li>
+<ul><li> <em>Tap the <b>head</b> of the drum for this roll.</em></li>
+</ul>
+<li> {engineering} The end cap of a cylindrically-shaped pressure vessel.</li>
+<li> {automotive} The cylinder head, a platform above the cylinders in an internal combustion engine, containing the valves and spark plugs.</li>
+<li> A buildup of fluid pressure, often quantified as pressure head.</li>
+<ul><li> <em>Let the engine build up a good <b>head</b> of steam.</em></li>
+</ul>
+<li> {fluid dynamics} The difference in elevation between two points in a column of fluid, and the resulting pressure of the fluid at the lower point.</li>
+<li> {fluid dynamics} More generally, energy in a mass of fluid divided by its weight.</li>
+<li> {nautical} The top edge of a sail.</li>
+<li> {nautical} The bow of a nautical vessel.</li>
+<li> {nautical} The toilet of a ship.</li>
+<ul><li> <em>I've got to go to the <b>head</b>.</em></li>
+</ul>
+<li> {{uncountable|slang}} Fellatio or cunnilingus; oral sex.</li>
+<ul><li> <em>She gave great <b>head</b>.</em></li>
+</ul>
+<li> {slang} The glans penis.</li>
+<li> {{countable|slang}} A heavy or habitual user of illicit drugs.</li>
+<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>
+<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>
+<li> {British} A headland.</li>
+<li> {computing} The part of hard drives responsible for reading and writing data.</li>
+</ol>
+
+<h4>Quotations</h4>
+<ul><li> {seeCites}</li>
+</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>
+<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>
+<li> {{sense|mental or emotional control}} composure, poise</li>
+<li> {{sense|topmost part of anything}} top</li>
+<li> {{sense|leader}} boss, chief, leader</li>
+<li> {{sense|headmaster|headmistress}} headmaster {m}, headmistress {f}, principal {{qualifier|US}}</li>
+<li> {{sense|toilet of a ship}} lavatory, toilet</li>
+<li> {{sense|top of a sail}}</li>
+<li> {{sense|foam on carbonated beverages}}</li>
+<li> {{sense|fellatio}} blowjob, blow job, fellatio, oral sex</li>
+<li> {{sense|end of tool used for striking}}</li>
+<li> {{sense|blunt end of fastener}}</li>
+<li> See also Wikisaurus:head</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> {{sense|topmost part of anything}} base, bottom, underside</li>
+<li> {{sense|leader}} subordinate, underling</li>
+<li> {{sense|blunt end of fastener}} point, sharp end, tip</li>
+</ul>
+
+<h4>Usage notes</h4>
+<ul><li> To {{term|give something its head}} is to allow it to run freely. This is used for horses, and, sometimes, figuratively for vehicles.</li>
+</ul>
+
+<h4>Derived terms</h4>
+{{rel-top3|Terms derived from <em>head</em> (noun)}}
+<ul><li> -head</li>
+<li> bed head</li>
+<li> big head, bighead</li>
+<li> by a head</li>
+<li> crackhead or crack head</li>
+<li> crosshead</li>
+<li> deadhead</li>
+<li> deaths-head</li>
+<li> death’s-head</li>
+<li> dickhead</li>
+<li> do someone's head in</li>
+<li> drum head</li>
+<li> dunderhead</li>
+<li> get one's head around</li>
+<li> give head</li>
+<li> go to someone's head</li>
+<li> hard head</li>
+<li> have a head for</li>
+<li> head and shoulders</li>
+<li> headache</li>
+<li> headbang</li>
+<li> head bang</li>
+<li> headbanger</li>
+<li> headboard</li>
+<li> headbutt</li>
+<li> headcase</li>
+<li> head case</li>
+<li> head cold</li>
+</ul>
+{rel-mid3}
+<ul><li> headcount</li>
+<li> head down, bum up</li>
+<li> headdress</li>
+<li> header</li>
+<li> headfirst</li>
+<li> headgear</li>
+<li> headhunt</li>
+<li> heading</li>
+<li> headlight</li>
+<li> headless</li>
+<li> headlock</li>
+<li> headlong</li>
+<li> headly</li>
+<li> head up</li>
+<li> heads up</li>
+<li> head off</li>
+<li> head over heels</li>
+<li> headphone</li>
+<li> headpiece</li>
+<li> headquarter</li>
+<li> headquarters</li>
+<li> headrest</li>
+<li> headroom</li>
+<li> heads</li>
+<li> headshunt</li>
+<li> headscarf</li>
+<li> headstand</li>
+<li> headstart</li>
+</ul>
+{rel-mid3}
+<ul><li> headstone</li>
+<li> headstrong</li>
+<li> heads will roll</li>
+<li> head to head</li>
+<li> head to wind</li>
+<li> headwear</li>
+<li> headwind</li>
+<li> hit the head</li>
+<li> hold one’s head high</li>
+<li> hophead</li>
+<li> keep one’s head</li>
+<li> keep one's head above water</li>
+<li> level-headed</li>
+<li> lose one's head</li>
+<li> lose one's head if it wasn't attached</li>
+<li> overhead</li>
+<li> pinhead</li>
+<li> pisshead</li>
+<li> print head</li>
+<li> rail head</li>
+<li> redhead</li>
+<li> shake one's head</li>
+<li> showerhead</li>
+<li> snap someone's head off</li>
+<li> turk’s head</li>
+<li> turn heads</li>
+<li> turn someone's head</li>
+</ul>
+{rel-bottom}
+<h3>Adjective</h3>
 {{en-adj|-}}
+<ol><li> Of, relating to, or intended for the head.</li>
+<li> Foremost in rank or importance.</li>
+<ul><li> <em>The <b>head</b> cook.</em></li>
+</ul>
+<li> Placed at the top or the front.</li>
+<li> Coming from in front.</li>
+<ul><li> <b><em>head</b> sea</em></li>
+<li> <b><em>head</b> wind</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|foremost in rank or importance}} chief, principal</li>
+<li> {{sense|placed at the top or the front}} first, top</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> {{sense|coming from in front}} tail</li>
+</ul>
+
+<h3>Verb</h3>
+{en-verb}
+<ol><li> {transitive} To be in command of. - see also head up</li>
+<ul><li> <em>Who <b>heads</b> the board of trustees?</em></li>
+</ul>
+<li> {transitive} To strike with the head; as in soccer, <em>to head the ball</em></li>
+<li> {intransitive} To move in a specified direction. <em>heading towards something</em></li>
+<ul><li> <em>We are going to <b>head up</b> North for our holiday. We will <b>head off</b> tomorrow. Next holiday we will <b>head out</b> West, or <b>head to</b> Chicago. Right now I need to <b>head into</b> town to do some shopping.</em></li>
+<li> <em>I'm fed up working for a boss. I'm going to <b>head out</b> on my own, set up my own business.</em></li>
+</ul>
+<li> {fishing} To remove the head from a fish.</li>
+<ul><li> <em>The salmon are first <b>headed</b> and then scaled.</em></li>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> head for the hills</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> ahead</li>
+<li> knucklehead</li>
+<li> railhead</li>
+</ul>
+
+<h3>Statistics</h3>
+<ul><li> {{rank|seemed|house|looked|184|head|called|p|Lord}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> DHEA, hade</li>
+</ul>
+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>
+<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>
+<li> It reminds new contributors that they can enter words and definitions of other languages.</li>
+<li> The absence of the English heading is an indication that the person entering it is new, and the article probably needs cleanup.</li>
+</ol>
+</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>
+</ol>
+</ul>
 
-# [[free]], without [[charge]]
-
-====Synonyms====
-* [[free as in beer]] {{qualifier|used in the free software movement to distinguish from ''[[libre]]'', "[[free as in speech]]"}}
-
-====Related terms====
-* [[gratuity]]
-* [[gratuitous]]
-
-====Translations====
-{{trans-top|free, without charge}}
-* Afrikaans: [[gratis#Afrikaans|gratis]], [[verniet]], [[kosteloos]]
-* Arabic: [[Magannan#Arabic|مجانا]]
-* Czech: {{t-|cs|zdarma}}, {{t-|cs|zadarmo}}
-* Danish: {{t-|da|gratis}}
-* Dutch: [[gratis#Dutch|gratis]], [[kostenloos]]
-* Esperanto: {{t-|eo|senpage|xs=Esperanto}}
-* Finnish: {{t+|fi|ilmainen}}, {{t-|fi|ilmaiseksi}}
-* French: {{t+|fr|gratuit}}
-* Georgian: {{t|ka|უფასო|tr=up'aso|sc=Geor}}
-* German: [[gratis#German|gratis]], [[kostenlos]], [[frei]], [[kostenfrei]]
-* Hebrew: {{t-|he|חינם}}, {{t-|he|בחינם}}
-* Indonesian: {{t+|id|gratis|xs=Indonesian}}
-{{trans-mid}}
-* Italian: {{t+|it|gratis}}
-* Kurdish:
-*: Sorani: {{t|ku|خۆڕایی|tr=xorrayí|sc=ku-Arab}}
-* Lithuanian: {{t+|lt|nemokamas|xs=Lithuanian}}
-* Norwegian: {{t+|no|gratis}}
-* Polish: {{t+|pl|gratis}}
-* Portuguese: {{t+|pt|grátis}}
-* Romanian: {{t-|ro|gratis}}
-* Russian: {{t+|ru|бесплатный}}, {{t+|ru|даровой}}, {{t|ru|безвозмездный}}
-* Spanish: {{t-|es|gratis}}
-* Swedish: {{t+|sv|gratis}}, {{t-|sv|kostnadsfri}}
-* Turkish: {{t|tr|ücretsiz}}
-{{trans-bottom}}
-
-====See also====
-* [[libre]]
-
-[[Category:English terms derived from Latin]]
-[[Category:en:Economics]]
+***hour***
+hour:
+
+<h3>Alternative forms</h3>
+<ul><li> hower {{qualifier|archaic}}</li>
+</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").
+<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>
+<li> {{audio|en-us-hour.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-an hour.ogg|Audio (UK)}}</li>
+<li> {{rhymes|aʊər}}</li>
+<li> {{homophones|our}} {{qualifier|depending on accent}}</li>
+</ul>
+
+<h3>Noun</h3>
+{wikipedia}{en-noun}
+<ol><li> A time period of sixty minutes; one twenty-fourth of a day.</li>
+<ul><li> <em>I spent an <b>hour</b> at lunch.</em></li>
+</ul>
+<li> A season, moment, time or stound.</li>
+<ul><li> Edgar Allen Poe, <em>Alone</em>:</li>
+<ul><li> From childhood's <b>hour</b> I have not been</li>
+<li> As others were; I have not seen</li>
+<li> As others saw; I could not bring</li>
+<li> My passions from a common spring.</li>
+</ul>
+</ul>
+<li> {poetic} The time.</li>
+<ul><li> <em>The <b>hour</b> grows late and I must go home.</em></li>
+</ul>
+<li> {military} {in the plural} Used after a two-digit hour and a two-digit minute to indicate time.</li>
+<ul><li> T. C. G. James and Sebastian Cox, <em>The Battle of Britain</em>:</li>
+<ul><li> By 1300 <b>hours</b> the position was fairly clear.</li>
+</ul>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> stound {{context|obsolete}}</li>
+</ul>
+
+<h4>Abbreviations</h4>
+<ul><li> Singular: h., hr</li>
+<li> Plural: h., hrs</li>
+</ul>
+
+<h4>Derived terms</h4>
+{rel-top}
+<ul><li> ampere-hour</li>
+<li> canonical hour</li>
+<li> credit hour</li>
+<li> eleventh hour</li>
+<li> F-Hour</li>
+<li> flower-of-an-hour</li>
+<li> H-hour</li>
+<li> half-hour</li>
+<li> happy hour</li>
+<li> hour angle</li>
+<li> hour circle</li>
+<li> hourglass/hour glass/hour-glass</li>
+<li> hourless</li>
+</ul>
+{rel-mid}
+<ul><li> hour hand</li>
+<li> hourly</li>
+<li> kilowatt-hour</li>
+<li> man-hour</li>
+<li> off-hour</li>
+<li> on the hour</li>
+<li> person-hour</li>
+<li> quarter-hour</li>
+<li> rush hour</li>
+<li> witching hour</li>
+<li> zero hour</li>
+</ul>
+{rel-bottom}{{lookfrom|hour}}
+<h3>Statistics</h3>
+<ul><li> {{rank|thousand|looking|John|366|hour|air|reason|feel}}</li>
+</ul>
+Category:1000 English basic wordsCategory:en:Timeang:hourar:hourzh-min-nan:hourbs:hourca:hourcs:hourcy:hourda:hourde:houret:hourel:houres:houreo:houreu:hourfa:hourfr:hourko:hourhy:hourhr:hourio:hourid:hourit:hourkn:hourkk:hoursw:hourku:hourky:hourlo:hourlt:hourli:hourhu:hourmg:hourml:hourmy:hourfj:hournl:hourja:hourno:houroc:hourpl:hourpt:hourro:hourru:hoursq:hoursimple:hourfi:hoursv:hourta:hourte:hourth:hourtg:hourtr:houruk:hourug:hourvi:hourzh:hour
+***hyponym***
+hyponym:
 
+<h3>Etymology</h3>
+{{confix|hypo|onym}}
+<h3>Pronunciation</h3>
+<ul><li> {{a|UK}} {{IPA|/ˈhaɪpəʊ.nɪm/}}</li>
+<li> {{a|US}} {{IPA|/ˈhaɪ.poʊ.nɪm/}}</li>
+<li> {{rhymes|ɪm}}</li>
+<li> {{audio|En-ca-hyponym.ogg|Audio (Canada)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<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>
+</ul>
+</ol>
+
+<h4>Antonyms</h4>
+<ul><li> hypernym</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> hyponymic</li>
+<li> hyponymous</li>
+<li> hyponymy</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> {pedia}</li>
+<li> troponym, the corresponding idea, as applied to verbs.</li>
+</ul>
 ----
+***January***
+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".
+<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>
+<li> {{audio|en-us-January.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+{{en-proper noun|<em>plural:</em> <b>Januarys</b> or <b>Januaries</b>}}
+<ol><li> The first month of the Gregorian calendar, following the December of the previous year and preceding February. Abbreviation: <b>Jan</b> or <b>Jan.</b></li>
+<ul><li> <em>01/01/09 : Thursday, <b>January</b> 1st, 2009.</em></li>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+{{rel-top|terms derived from January}}
+<ul><li> Black January</li>
+<li> January Club</li>
+<li> January effect</li>
+<li> January Events</li>
+<li> January indicator</li>
+<li> January Massacre</li>
+</ul>
+{rel-mid}
+<ul><li> January Rebellion</li>
+<li> January sales</li>
+<li> January thaw</li>
+<li> January Uprising</li>
+<li> May and January</li>
+<li> mid-January</li>
+</ul>
+{rel-bottom}
+<h4>Related terms</h4>
+<ul><li> Janus</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> {{list|en|Gregorian calendar months}}</li>
+</ul>
+Category:English eponymsar:Januaryast:Januaryaz:Januaryzh-min-nan:Januarybe:Januarybr:Januarycs:Januarycy:Januaryda:Januaryde:Januaryet:Januaryel:Januaryes:Januaryeo:Januaryeu:Januaryfa:Januaryfr:Januaryfy:Januaryga:Januarygl:Januaryko:Januaryhy:Januaryhr:Januaryio:Januaryid:Januaryiu:Januaryis:Januaryit:Januarykl:Januaryka:Januarycsb:Januarykk:Januarysw:Januaryku:Januarylo:Januarylv:Januarylb:Januarylt:Januaryln:Januaryhu:Januarymg:Januaryml:Januarymy:Januarynl:Januaryja:Januaryno:Januaryoc:Januaryom:Januaryuz:Januarykm:Januarypl:Januarypt:Januaryro:Januaryru:Januarysimple:Januaryso:Januarysr:Januaryfi:Januarysv:Januaryta:Januaryte:Januarytg:Januarytr:Januaryuk:Januaryvi:Januaryvo:Januaryzh:January
+===Julius===
+Pope Julius:
+
+<h3>Alternative forms</h3>
+<ul><li> Pope July</li>
+<li> Pope Julio</li>
+</ul>
+
+<h3>Etymology</h3>
+Unknown.  Presumably named after Pope Julius II, the Warrior Pope.
+<h3>Proper noun</h3>
+{en-proper noun}
+<ol><li> {obsolete} A sixteenth-century gambling card game about which little is known.</li>
+<ul><li> {{quote-book|year=1525|author=John Skelton|url=http://books.google.com/books?id=H1g1AAAAMAAJ|title=Speke, parrot|passage=Of <b>Pope Julius</b> cardys he ys chefe cardynall.}}</li>
+<li> {{quote-book|year=1532|date=November 30|title=Privy Purse Expences of King Henry VIII<em>, 30 Novembre 1532|passage=Item the laste day delived unto the kings grace whiche his grace lost at <b>pope July</b> game wt my lady marquess and m Weston xvj cor}}</li>
+<li> {{quote-book|year={{circa2|1596}}|author=Sir John Harington|title=A Treatise on Playe|quoted_in=Nugae antiquae|year_published=1804|passage=<b>Pope Julio</b> (if I fail not in the name, and sure I am that there is a game of the cards after his name) was a great and wary player, a great vertue in a man of his profession}}</li>
+</ul>
+</ol>
+Category:en:Card games
+***July***
+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
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|jo͝o-līʹ}}, {{IPA|/dʒʊˈlaɪ/}}, {{X-SAMPA|/dZU"laI/}}</li>
+<li> {{audio|en-us-July.ogg|Audio (US)}}</li>
+<li> {{rhymes|aɪ}}</li>
+</ul>
 
-===guide===
-pronunciation guide: 
+<h3>Proper noun</h3>
+{{en-proper noun|Julys}}
+<ol><li> The seventh month of the Gregorian calendar, following June and preceding August. Abbreviation: <b>Jul</b> or <b>Jul.</b></li>
+</ol>
+
+<h4>Derived terms</h4>
+{der-top}
+<ul><li> Black July</li>
+<li> Christmas in July</li>
+<li> Fourth of July</li>
+<li> Holiday in July</li>
+<li> {{w|July 1 marches}}</li>
+<li> {{w|July 7 bombings}}</li>
+<li> July 20 Plot</li>
+<li> {{w|July Column}}</li>
+<li> July Cup</li>
+</ul>
+{der-mid}
+<ul><li> July Days</li>
+<li> July Monarchy</li>
+<li> July Morning</li>
+<li> July Ordinances</li>
+<li> July Revolution</li>
+<li> July Stakes</li>
+<li> July Ultimatum</li>
+<li> mid-July</li>
+</ul>
+{der-bottom}
+<h4>Related terms</h4>
+<ul><li> {{l|en|Julius}}</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> 7/7</li>
+<li> July-flower</li>
+<li> {{list|en|Gregorian calendar months}}</li>
+</ul>
+Category:English eponymsast:Julyaz:Julyzh-min-nan:Julycs:Julycy:Julyda:Julyde:Julyet:Julyel:Julyes:Julyeo:Julyeu:Julyfa:Julyfr:Julyga:Julygl:Julyko:Julyhy:Julyhr:Julyio:Julyid:Julyiu:Julyis:Julyit:Julykl:Julyka:Julycsb:Julykk:Julysw:Julyku:Julylo:Julylv:Julylb:Julylt:Julyhu:Julymg:Julyml:Julymy:Julynl:Julyja:Julyno:Julyoc:Julyom:Julyuz:Julykm:Julypl:Julypt:Julyro:Julyru:Julytn:Julysimple:Julyso:Julysr:Julyfi:Julysv:Julyth:Julytg:Julyuk:Julyvo:Julyzh:July
+***June***
+June:
 
-===Noun===
-{{en-noun|sg=[[pronunciation]] [[guide]]}}
+<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=}}.
+<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>
+<li> {{rhymes|uːn}}</li>
+</ul>
 
-#{{countable}} A [[table]] in a [[reference work]] [[explain]]ing the [[symbol]]s that it uses to represent the pronunciation of its [[entry|entries]].
+<h3>Proper noun</h3>
+{{en-proper noun|Junes}}
+<ol><li> The sixth month of the Gregorian calendar, following May and preceding July. Abbreviation: <b>Jun</b> or <b>Jun.</b></li>
+<li> {{given name|female|from=English}} for a girl born in June, used since the end of the 19th century.</li>
+</ol>
 
-[[pt:pronunciation guide]]
-[[ru:pronunciation guide]]
-***head***
-head: 
-{{wikipedia|dab=Head (disambiguation)|Head}}
-{{rfc|still missing some basic dictionary definitions: see talk page}}
-
-===Alternative forms===
-* {{l|en|heed}} {{qualifier|obsolete}}, {{l|en|hed}} {{qualifier|obsolete}}
-
-===Etymology===
-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|title=|kapōlo|head, bowl|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|lang=sa|कपाल|कपालः|tr=kapāla|cup, bowl, skull}}, {{etyl|hi|-}} {{term|lang=hi|कपाल||tr=kapāl|skull}}, and (through borrowing from {{etyl|sa|-}}) {{etyl|ja|-}} {{term|lang=ja|骨||tr=kawara|a covering bone: kneecap, skull}}, {{term|lang=ja|瓦||tr=kawara|a roof tile}}.
-
-===Pronunciation===
-* {{enPR|hĕd}}, {{IPA|/hɛd/}}, {{X-SAMPA|/hEd/}}
-* {{audio|en-us-head.ogg|Audio (US)}}
-* {{audio|En-uk-head.ogg|Audio (UK)}}
-* {{rhymes|ɛd}}
-
-===Noun===
-{{ picdic
-| image=Human head and brain diagram.svg
-| width=310
-| labels=
-{{ picdiclabel | color=black | fontsize=12 | posx=150 | posy= 3 | link=skull }}
-{{ picdiclabel | color=black | fontsize=18 | posx=170 | posy= 90 | link=brain }}
-{{ picdiclabel | color=black | fontsize=12 | posx= 80 | posy=160 | link=eye | align=left }}
-{{ picdiclabel | color=black | fontsize=12 | posx= 15 | posy=190 | link=nose | align=left }}
-{{ picdiclabel | color=black | fontsize=12 | posx= 50 | posy=230 | link=mouth | align=left }}
-{{ picdiclabel | color=black | fontsize=12 | posx= 35 | posy=285 | link=chin }}
-{{ picdiclabel | color=black | fontsize=12 | posx= 90 | posy=270 | link=jaw }}
-{{ picdiclabel | color=black | fontsize=12 | posx=175 | posy=205 | link=ear | align=right }}
-{{ picdiclabel | color=black | fontsize=12 | posx=120 | posy=140 | link=temple }}
-{{ picdiclabel | color=black | fontsize=12 | posx=185 | posy=290 | link=neck }}
-| detail1=Click on labels in the image
-| detail2=
-{{ picdicimg | image=Human body features-nb.svg | link=body }}
-}}
-{{wikipedia}}
-{{en-noun|s|-}}
+<h4>Derived terms</h4>
+{{rel-top3|Derived terms}}
+<ul><li> bird of June</li>
+<li> Glorious First of June</li>
+<li> June-apple</li>
+<li> Juneberry</li>
+<li> June beetle</li>
+<li> June Bootids</li>
+<li> June bug</li>
+<li> June cold</li>
+</ul>
+{rel-mid3}
+<ul><li> June Days</li>
+<li> June Days Uprising</li>
+<li> June drop</li>
+<li> June gloom</li>
+<li> June grass</li>
+<li> June List</li>
+<li> June Movement</li>
+</ul>
+{rel-mid3}
+<ul><li> June solstice</li>
+<li> June sucker</li>
+<li> Juneteenth</li>
+<li> June War</li>
+<li> June Week</li>
+<li> Junie</li>
+<li> mid-June</li>
+<li> {{w|Movement 2 June}}</li>
+</ul>
+{rel-bottom}
+<h4>See also</h4>
+<ul><li> {{list|en|Gregorian calendar months}}</li>
+</ul>
+----
+===layout===
+Wiktionary:Entry layout explained:
 
-# {{countable}} The part of the [[body]] of an animal or human which contains the [[brain]], [[mouth]]{{,}} and main [[sense]] [[organs]].
-#: ''Be careful when you pet that dog on the '''head'''; it may bite.''
-# {{countable}} [[mental|Mental]] or [[emotional]] [[aptitude]] or [[skill]].
-#: ''The company is looking for people with good '''heads''' for business.''
-#: ''He has no '''head''' for heights.''
-# {{countable}} [[mind|Mind]]; one's own [[thought]]s.
-#: ''This song keeps going through my '''head'''.''
-# {{countable}} The [[topmost]], [[foremost]], or [[leading]] part.
-#: ''What does it say on the '''head''' of the page?''
-# The end of a rectangular [[table]] furthest from the entrance; traditionally considered a seat of honor.
-#: ''During meetings, the supervisor usually sits at the '''head''' of the table.''
-# {{billiards}} The end of a [[pool]] table opposite the end where the balls have been [[rack]]ed.
-# {{countable}} The [[principal]] [[operative]] part of a simple machine or tool.
-## The end of a [[hammer]], [[axe]], {{soplink|golf|club}}{{,}} or similar [[implement]] used for striking other objects.
-## The end of a [[nail]], [[screw]], [[bolt]]{{,}} or similar [[fastener]] which is opposite the [[point]]; usually [[blunt]] and relatively [[wide]].
-##: ''Hit the nail on the '''head'''!''
-## The [[sharp]] end of an [[arrow]], [[spear]]{{,}} or [[pointer]].
-##: ''The '''head''' of the compass needle is pointing due north.''
-## {{lacrosse}} The top part of a [[lacrosse stick]] that holds the [[ball]].
-# The [[source]] of a [[river]]; the end of a [[lake]] where a river flows into it.
-#: ''The expedition followed the river all the way to the '''head'''.''
-# {{rfc-sense}} The front, as of a [[queue]].
-#: ''Because you got them all right, you can go to the '''head'''.''
-# [[headway|Headway]]; [[progress]].
-#: ''We are having a difficult time making '''head''' against this wind.''
-# The foam that forms on top of [[beer]] or other carbonated [[beverage]]s.
-#: ''Pour me a fresh beer; this one has no '''head'''.''
-# {{countable}} [[leader|Leader]]; [[chief]]; [[mastermind]].
-#: ''I'd like to speak to the '''head''' of the department.''
-#: ''Police arrested the '''head''' of the gang in a raid last night.''
-# A [[headmaster]] or [[headmistress]].
-#: ''I was called into the '''head''''s office to discuss my behaviour.''
-# A [[headache]]; especially one resulting from [[intoxication]].
-#* '''1888''', Rudyard Kipling, ‘Thrown Away’, ''Plain Tales from the Hills'', Folio Society 2005 edition, page 18,
-#*: he took them seriously, too, just as seriously as he took the ‘'''head'''’ that followed after drink.
-# A clump of [[leave]]s or [[flower]]s; a [[capitulum]].
-#: ''Give me a '''head''' of lettuce.''
-# {{anatomy}} The rounded part of a bone fitting into a depression in another bone to form a ball-and-socket [[joint]].
-# An individual [[person]].
-#: ''Admission is three dollars a '''head'''.''
-# {{uncountable|[[w:Measure word|measure word]] for [[livestock]] and [[game]]}} A single [[animal]].
-#: ''200 '''head''' of cattle and 50 '''head''' of horses''
-#: ''12 '''head''' of big cattle and 14 '''head''' of branded calves''
-#: ''At five years of age this '''head''' of cattle is worth perhaps $40''
-#: ''a reduction in the assessment per '''head''' of sheep''
-#: ''they shot 20 '''head''' of quail''
-# The population of [[game]].
-#: ''we have a heavy '''head''' of deer this year''
-#: ''planting the hedges increased the '''head''' of quail and doves''
-# Topic; [[subject]].
-#: ''We will consider performance issues under the '''head''' of future improvements.''
-# {{linguistics}} A [[morpheme]] that determines the category of a [[compound]] or the word that determines the [[syntactic]] type of the [[phrase]] of which it is a member.
-# {{jazz}} The principal [[melody]] or [[theme]] of a piece.
-# {{British|geology}} Deposits near the top of a [[geological]] [[succession]].
-# {{medicine}} The end of an [[abscess]] where [[pus]] collects.
-# {{uncountable}} [[denouement]]; [[crisis]]
-#: ''These isses are going to come to a '''head''' today.''
-# A [[machine]] element which reads or writes [[electromagnetic]] signals to or from a storage medium.
-#: ''The '''heads''' of your tape player need to be cleaned.''
-# {{music}} The [[headstock]] of a [[guitar]].
-# {{music}} A [[drum head]], the [[membrane]] which is hit to produce [[sound]].
-#: ''Tap the '''head''' of the drum for this roll.''
-# {{engineering}} The end cap of a cylindrically-shaped [[pressure vessel]].
-# {{automotive}} The [[cylinder head]], a platform above the [[cylinder]]s in an [[internal combustion engine]], containing the [[valve]]s and [[spark plug]]s.
-# A buildup of [[fluid]] [[pressure]], often quantified as [[pressure head]].
-#: ''Let the engine build up a good '''head''' of steam.''
-# {{fluid dynamics}} The difference in [[elevation]] between two points in a [[column]] of fluid, and the resulting [[pressure]] of the fluid at the lower point.
-# {{fluid dynamics}} More generally, [[energy]] in a mass of fluid divided by its [[weight]].
-# {{nautical}} The [[top]] edge of a [[sail]].
-# {{nautical}} The [[bow]] of a nautical vessel.
-# {{nautical}} The [[toilet]] of a [[ship]].
-#: ''I've got to go to the '''head'''.''
-# {{uncountable|slang}} [[fellatio|Fellatio]] or [[cunnilingus]]; [[oral sex]].
-#: ''She gave great '''head'''.''
-# {{slang}} The [[glans penis]].
-# {{countable|slang}} A heavy or [[habitual]] user of [[illicit]] [[drug]]s.
-#* '''1936''', Lee Duncan, ''Over The Wall'', Dutton
-#*: 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 '''heads'''.
-#* {{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, "'''head'''," 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."
-}}
-#* '''2005''', Martin Torgoff, ''Can't Find My Way Home'', Simon & Schuster, page 177,
-#*: The hutch now looks like a “Turkish bath,” and the '''heads''' 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.
-# {{British}} A [[headland]].
-# {{computing}} The part of [[hard drive]]s responsible for reading and writing data.
-
-====Quotations====
-* {{seeCites}}
-
-====See also====
-<gallery>
-Image:Human head and brain diagram.svg|The human '''head'''.
-Image:Milk thistle flowerhead.jpg|A flower '''head'''.
-Image:Ikeya-zhang-comet-by-rhemann.png|'''Head''' of a comet.
-Image:MUO GTMO 2003.png|'''Head''' of the line.
-Image:Arrow and spear heads - from-DC1.jpg|Arrow and spear '''heads'''.
-Image:Head of a hammer.jpg|'''Head''' of a hammer.
-Image:Meetpunt.jpg|'''Head''' of a metal spike.
-Image:Hip_replacement_Image_3684-PH.jpg|'''Head''' of the hip bone.
-Image:MV Doulos in Keelung-2.jpg|'''Head''' of a ship.
-Image:Mainsail-edges.png|'''Head''' of a sail.
-Image:Diffuser Head.jpg|'''Head''' of a pressurized cylinder.
-Image:Malossi 70cc Morini cylinder head.jpg|'''Head''' of a two-stroke engine.
-Image:Hydraulic head.PNG|Hydraulic '''head''' between two points.
-Image:Floppy disk drive read-write head.jpg|A read-write '''head'''.
-Image:Fender Telecaster Head.jpg|'''Head''' of a guitar.
-Image:Drumhead.jpg|'''Head''' of a drum.
-</gallery>
-
-====Synonyms====
-* {{sense|part of the body}} [[caput]]; (slang) [[noggin]], {{slang}} [[loaf]], (slang) [[nut]], (slang) [[noodle]], (slang) [[bonce]]
-* {{sense|mental aptitude or talent}} [[mind]]
-* {{sense|mental or emotional control}} [[composure]], [[poise]]
-* {{sense|topmost part of anything}} [[top]]
-* {{sense|leader}} [[boss]], [[chief]], [[leader]]
-* {{sense|headmaster|headmistress}} [[headmaster]] {{m}}, [[headmistress]] {{f}}, [[principal]] {{qualifier|US}}
-* {{sense|toilet of a ship}} [[lavatory]], [[toilet]]
-* {{sense|top of a sail}}
-* {{sense|foam on carbonated beverages}}
-* {{sense|fellatio}} [[blowjob]], [[blow job]], [[fellatio]], [[oral sex]]
-* {{sense|end of tool used for striking}}
-* {{sense|blunt end of fastener}}
-* See also [[Wikisaurus:head]]
-
-====Antonyms====
-* {{sense|topmost part of anything}} [[base]], [[bottom]], [[underside]]
-* {{sense|leader}} [[subordinate]], [[underling]]
-* {{sense|blunt end of fastener}} [[point]], [[sharp]] end, [[tip]]
-
-====Usage notes====
-* To {{term|give something its head}} is to allow it to run freely. This is used for horses, and, sometimes, figuratively for vehicles.
-
-====Derived terms====
-{{rel-top3|Terms derived from ''head'' (noun)}}
-* [[-head]]
-* [[bed head]]
-* [[big head]], [[bighead]]
-* [[by a head]]
-* [[crackhead]] or [[crack head]]
-* [[crosshead]]
-* [[deadhead]]
-* [[deaths-head]]
-* [[death's-head|death’s-head]]
-* [[dickhead]]
-* [[do someone's head in]]
-* [[drum head]]
-* [[dunderhead]]
-* [[get one's head around]]
-* [[give head]]
-* [[go to someone's head]]
-* [[hard head]]
-* [[have a head for]]
-* [[head and shoulders]]
-* [[headache]]
-* [[headbang]]
-* [[head bang]]
-* [[headbanger]]
-* [[headboard]]
-* [[headbutt]]
-* [[headcase]]
-* [[headcase|head case]]
-* [[head cold]]
-{{rel-mid3}}
-* [[headcount]]
-* [[head down, bum up]]
-* [[headdress]]
-* [[header]]
-* [[headfirst]]
-* [[headgear]]
-* [[headhunt]]
-* [[heading]]
-* [[headlight]]
-* [[headless]]
-* [[headlock]]
-* [[headlong]]
-* [[headly]]
-* [[head up]]
-* [[heads up]]
-* [[head off]]
-* [[head over heels]]
-* [[headphone]]
-* [[headpiece]]
-* [[headquarter]]
-* [[headquarters]]
-* [[headrest]]
-* [[headroom]]
-* [[heads]]
-* [[headshunt]]
-* [[headscarf]]
-* [[headstand]]
-* [[head start|headstart]]
-{{rel-mid3}}
-* [[headstone]]
-* [[headstrong]]
-* [[heads will roll]]
-* [[head to head]]
-* [[head to wind]]
-* [[headwear]]
-* [[headwind]]
-* [[hit the head]]
-* [[hold one's head high|hold one’s head high]]
-* [[hophead]]
-* [[keep one's head|keep one’s head]]
-* [[keep one's head above water]]
-* [[level-headed]]
-* [[lose one's head]]
-* [[lose one's head if it wasn't attached]]
-* [[overhead]]
-* [[pinhead]]
-* [[pisshead]]
-* [[print head]]
-* [[rail head]]
-* [[redhead]]
-* [[shake one's head]]
-* [[showerhead]]
-* [[snap someone's head off]]
-* [[turk's head|turk’s head]]
-* [[turn heads]]
-* [[turn someone's head]]
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|part of the body}}
-* Abau: {{tø|aau|makwe}}
-* Afrikaans: {{t+|af|kop|xs=Afrikaans}}
-* Aguaruna: {{tø|agr|buuk}}
-* Ainu: [[サパ]] (sapa), [[パケ]] (pake)
-* Alabama: [[isbakko]]
-* Albanian: {{t-|sq|kokë|f|xs=Albanian}}
-* Angaataha: {{tø|agm|mɨtɨho}}
-* Apalaí: {{tø|apy|upuhpo}}
-* Arabic: {{t|ar|رأس|f|tr=rāʾs|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|راس|f|tr=ras|sc=Arab}}
-* Armenian: {{t-|hy|գլուխ|tr=glux}}
-* Aromanian: {{tø|rup|cap}}
-* Azeri: {{t+|az|baş|xs=Azeri}}
-* Bakhtiari: {{tø|bqi|سر|tr=sar|sc=fa-Arab}}
-* Baluchi: {{tø|bal|سر|tr=sar}}, {{tø|bal|سرگ|tr=sarag}}
-* Bashkir: {{tø|ba|баш|tr=baş|sc=Cyrl|xs=Bashkir}}
-* Basque: [[buru]], [[kasko]], {{t|eu|gazta|xs=Basque}}
-* Belarusian: {{t-|be|галава|f|tr=halavá|xs=Belarusian}}
-* Bengali: {{t|bn|মাথা|tr=matha|sc=Beng}}
-* Borôro: {{tø|bor|aora}}
-* Breton: {{t+|br|penn|m|xs=Breton}}, pennoù {{p}}
-* Bulgarian: {{t+|bg|глава|f|tr=glavá}}
-* Burmese: {{t|my|ခေါင်း|tr=gaung:|sc=Mymr}}
-* Catalan: {{t+|ca|cap|m}}
-* Chamicuro: {{tø|ccc|kashki}}
-* Chechen: {{tø|ce|корта|tr=korta|sc=Cyrl}}
-* Cherokee: {{t|chr|ᎠᏍᎪᎵ|tr=asgoli|sc=Cher|xs=Cherokee}}
-* Chickasaw: [[ishkobo]]
-* Chinese:
-*: Mandarin: {{t|zh|頭|sc=Hani}}, {{t|zh|头|tr=tóu|sc=Hani}}, {{t|zh|頭腦|sc=Hani}}, {{t|zh|头脑|tr=tóunǎo|sc=Hani}}
-* Chuvash: {{tø|cv|пуҫ|tr=puś|sc=Cyrl}}
-* Coptic: {{tø|cop|ⲁⲡⲉ|tr=ape|sc=Copt}}
-* Corsican: {{t+|co|capu|xs=Corsican}}
-* Crimean Tatar: [[baş#Crimean Tatar|baş]]
-* Czech: {{t+|cs|hlava|f}}
-* Dalmatian: {{tø|dlm|cup|m}}
-* Danish: {{t|da|hoved|n}}
-* Darkinjung: {{tø|aus-dar|kamburung}}
-* Dolgan: {{tø|dlg|бас|tr=bas|sc=Cyrl}}
-* Dutch: {{qualifier|of person or horse}} {{t+|nl|hoofd|n}}, {{qualifier|of an animal}} {{t+|nl|kop|m}}
-* Egyptian: {{tø|egy|𓍑𓍑𓁶𓏤|tr=ḏꜣḏꜣ|sc=Egyp}}
-* Esperanto: {{t|eo|kapo}}
-* Estonian: {{t-|et|pea}}
-* Evenki: {{tø|evn|дыл|tr=dyl|sc=Cyrl}}
-* Ewe: {{tø|ee|ta}}
-* Faroese: {{t|fo|høvd|n}}, {{t|fo|høvur|n}}
-* Finnish: {{t+|fi|pää}}
-* French: {{t+|fr|tête|f}}
-* Friulian: {{tø|fur|cjâf}}
-* Gagauz: {{tø|gag|baş}}
-* Georgian: {{t-|ka|თავი|tr=t’avi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Kopf|m}}, {{t+|de|Haupt|n}} {{qualifier|rarely used}}
-* Greek: {{t+|el|κεφάλι|n|tr=kefáli}}
-*: [[Ancient Greek]]: {{t|grc|κεφαλή|f|tr=kefáli|sc=polytonic}}
-* Guaraní: [[akã]]
-* Guugu Yimidhirr: [[ngaabaay]], [[gambuugu]], [[gudyiir]]
-* Haitian Creole: {{tø|ht|tèt}}
-* Hawaiian: {{tø|haw|poʻo|xs=Hawaiian}}
-* Hebrew: {{t+|he|ראש|m|tr=rosh}}
-* Hindi: {{t|hi|सिर|m|tr=sir|sc=Deva}}
-* Hungarian: {{t+|hu|fej}}
-* Icelandic: {{t|is|höfuð|n}}, {{qualifier|less formal}} {{t|is|haus|m}}
-* Ido: [[kapo]]
-* Ilocano: [[ulo]]
-* Indonesian: {{t+|id|kepala|xs=Indonesian}}, {{t-|id|hulu|xs=Indonesian}}
-* Interlingua: [[capite]]
-* Irish: {{t-|ga|ceann|m|xs=Irish}}
-* Italian: {{t+|it|testa|f}}, {{t+|it|capo|m}}
-* Japanese: {{t+|ja|頭|tr=[[あたま]], atama}}
-* Jèrriais: {{tø|roa-jer|tête|f}}
-* Kalmyk: {{tø|xal|толһа|tr=tolgha|sc=Cyrl}}
-* Karachay-Balkar: {{tø|krc|баш|tr=baş|sc=Cyrl}}
-* Kashubian: {{t-|csb|głowa|f|xs=Kashubian}}
-* Kazakh: {{t+|kk|бас|tr=bas|sc=Cyrl|xs=Kazakh}}, {{t|kk|кәллә|tr=källä|sc=Cyrl|xs=Kazakh}}
-* Khakas: {{tø|kjh|пас|tr=pas|sc=Cyrl}}
-* Khmer: {{t|km|ក្បាល|tr=kbaal|sc=Khmr}}
-* Kikuyu: {{tø|ki|kyongo}}
-* Korean: {{t|ko|머리|tr=meori|sc=Kore}}
-* Koryak: {{tø|kpy|лэвʼыт|tr=lewət|sc=Cyrl}}
-* Kumyk: {{tø|kum|баш|tr=baş|sc=Cyrl}}
-* Kurdish: {{t+|ku|ser}}, {{t-|ku|سه‌ر|sc=ku-Arab}}
-* Kyrgyz: {{t+|ky|баш|tr=baş|sc=Cyrl|xs=Kyrgyz}}
-* Lao: {{t-|lo|ຫົວ|tr=hua|sc=Laoo|xs=Lao}}
-* Latgalian: {{tø|ltg|golva|f}}
-* Latin: {{t+|la|caput|n}}
-* Latvian: {{t+|lv|galva|f|xs=Latvian}}
-* Lithuanian: {{t+|lt|galva|f|xs=Lithuanian}}
-* Lojban: {{t|jbo|stedu}}
-* Low Saxon: [[kopp]]
-* Luhya: {{tø|luy|kumurwe}}
-* Luo: {{tø|luo|wich|xs=Luo}}
-* Macedonian: {{t-|mk|глава|f|tr=gláva}}
-{{trans-mid}}
-* Malay: {{t+|ms|kepala|xs=Malay}}, {{t|ms|hulu}}
-* Malayalam: [[തല]] (thala)
-* Maltese: {{t+|mt|ras|xs=Maltese}}
-* Mandinka: {{tø|mnk|kuŋo|xs=Mandinka}}
-* Manx: {{t-|gv|kione|m|xs=Manx}}
-* Maori: [[māhunga]], [[māhuna]], [[mātenga]], [[pane]], [[upoko]], [[uru]]
-* Mapudungun: [[longko]], [[logko]]
-* Miyako: {{tø|mvi|カナマい|tr=kanamay}}
-* Mongolian: {{t-|mn|толгой|tr=tolgoj|sc=Cyrl|xs=Mongolian}}
-* Nahuatl: {{t|nah|cuaitl}}
-* Nama: {{tø|naq|danas}}
-* Nanai: {{tø|gld|дили}}
-* Nanticoke: {{tø|nnt|neelahammon}}
-* Navajo: {{tø|nv|bitsiiʼ}}, [[atsiiʼ]], [[atsiitsʼiin]]
-* Neapolitan: [[capuzzèlla]], [[capucchióne]], [[càpa]] {{f}}, {{tø|nap|capa}}
-* Nepali: {{t|ne|टाउको|tr=ṭāukō|sc=Deva}}
-* Nogai: {{tø|nog|бас|tr=bas}}
-* Norwegian: {{t+|no|hode|n}}
-* Nottoway-Meherrin: {{tø|nwy|setarake}}
-* Occitan: {{t+|oc|cap|m|xs=Occitan}}, {{t+|oc|tèsta|f|xs=Occitan}}
-* Ojibwe: {{tø|oj|oshtigwaan}}
-* Okinawan: {{tø|ryu|ちぶる|tr=ciburu}}
-* Old Church Slavonic:
-*: Cyrillic: {{tø|cu|глава|f|tr=glava|sc=Cyrs|xs=Old Church Slavonic}}
-*: Glagolitic: {{tø|cu|ⰃⰎⰀⰂⰀ|f|tr=glava|sc=Glag|xs=Old Church Slavonic}}
-* Old English: {{t-|ang|heafod|n|alt=hēafod|xs=Old English}}, {{t-|ang|hafela|m|xs=Old English}}
-* Old French: {{tø|fro|teste}}, {{tø|fro|chief}}
-* Old Irish: {{tø|sga|cenn|n}}
-* Old Norse: {{tø|non|hǫfuð|n}}
-* Old Prussian: {{tø|prg|gallū|f|xs=Old Prussian}}, {{tø|prg|galwo|f|xs=Old Prussian}}
-* Persian: {{t|fa|سر|tr=sar|alt=سَر|sc=fa-Arab}}, {{t|fa|کله|tr=kalla/kalle|xs=Persian}} (abusive)
-* Pitjantjatjara: [[kata]]
-* Polabian: {{tø|pox|glåvă|f|xs=Polabian}}
-* Polish: {{t+|pl|głowa|f}}
-* Portuguese: {{t+|pt|cabeça|f}}
-* Powhatan: {{tø|pim|mendabuccah}}
-* Quechua: {{t+|qu|uma|xs=Quechua}}
-* Rohingya: [[matá]]
-* Romanian: {{t+|ro|cap|m}}
-* Russia Buryat: {{tø|bxr|толгай|tr=tolgaj|sc=Cyrl}}
-* Russian: {{t+|ru|голова|f|tr=golová}}
-* Sanskrit: {{t|sa|शिर|tr=śira|sc=Deva}}
-* Sardinian: [[conca]] {{f}}
-* Scots: [[heid]], [[pow#Scots|pow]]
-* Scottish Gaelic: {{t-|gd|ceann|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|глава|f|sc=Cyrl}}
-*: Roman: {{t|sh|glava|f}}
-* Shor: {{tø|cjs|паш|tr=paş|sc=Cyrl}}, {{tø|cjs|пас|tr=pas|sc=Cyrl}}
-* Sicilian: {{tø|scn|testa|f}}, {{tø|scn|capa|f}}
-* Sinhalese: {{t|si|ඔළුව|tr=ollūva|sc=Sinh}}
-* Slovak: {{t-|sk|hlava|f}}
-* Slovene: {{t+|sl|glava|f}}, {{t+|sl|buča}}
-* Sorbian:
-*: Lower Sorbian: {{tø|dsb|głowa|f|xs=Lower Sorbian}}
-*: Upper Sorbian: {{tø|hsb|hłowa|f|xs=Upper Sorbian}}
-* Sotho: {{t|st|hlooho|xs=Sotho}}
-* Southern Altai: {{tø|alt|баш|tr=baş|sc=Cyrl}}
-* Spanish: {{t+|es|cabeza|f}}
-* Swahili: [[kichwa]] ''(nc 7/8)''
-* Swedish: {{t+|sv|huvud|n}}, {{t+|sv|skalle|c}}
-* Tagalog: [[ulo]]
-* Tajik: {{t-|tg|сар|tr=sar|sc=Cyrl|xs=Tajik}}, {{t|tg|калла|tr=kalla|sc=Cyrl|xs=Tajik}}
-* Talysh:
-*: Asalemi: {{tø|tly|سر|tr=sar|sc=fa-Arab}}
-* Tamil: {{t|ta|தலை|tr=talai|xs=Tamil}}
-* Taos: [[p’ínemą]]
-* Tatar: {{t+|tt|баш|tr=baş|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t+|te|తల|tr=tala}}
-* Thai: {{t|th|หัว|tr=hŭa|sc=Thai}}
-* Tofa: {{tø|kim|баъш|tr=bàş|sc=Cyrl}}
-* Tok Pisin: {{t|tpi|het}}
-* Tupinambá: [[akanga]]
-* Turkish: {{t+|tr|baş}}, {{t+|tr|kafa}}
-* Turkmen: {{t+|tk|baş|xs=Turkmen}}
-* Tutelo: {{tø|tta|pasui}}
-* Tuvan: {{tø|tyv|баш|tr=bàş|sc=Cyrl}}
-* Ukrainian: {{t+|uk|голова|f|tr=holová|xs=Ukrainian}}
-* Urdu: {{t|ur|سر|m|tr=sir|sc=ur-Arab}}
-* Uyghur: {{t|ug|باش|tr=bash|sc=ug-Arab}}
-* Uzbek: {{t-|uz|bosh|xs=Uzbek}}, {{t-|uz|kalla|xs=Uzbek}}
-* Vietnamese: {{t+|vi|đầu|xs=Vietnamese}} ({{t|vi|頭}})
-* Volapük: {{t|vo|kap}}
-* Walloon: {{t|wa|tiesse|xs=Walloon}}
-* Warlpiri: [[walu]]
-* Welsh: {{t+|cy|pen|m|xs=Welsh}}
-* West Frisian: {{t-|fy|holle|c|xs=West Frisian}}, {{t-|fy|kop|c|xs=West Frisian}}
-* Xhosa: [[intloko]]
-* !Xóõ: [[ǀnàn]]
-* Yakut: {{tø|sah|бас|tr=bas|sc=Cyrl}}, {{tø|sah|тебе|tr=tebe|sc=Cyrl}}
-* Yiddish: {{t-|yi|קאפ|m|alt=קאָפּ|tr=kop|sc=Hebr|xs=Yiddish}}
-{{trans-bottom}}
-
-{{trans-top|mental aptitude or skill}}
-* Basque: {{t|eu|buru}}
-* Finnish: {{t+|fi|pää}}; {{t+|fi|nenä}}, {{t-|fi|vainu}}
-* Greek: [[κεφάλι]] (kefáli) {{n}}, [[μυαλό]] (mialó) {{n}}
-{{trans-mid}}
-* Japanese: {{t+|ja|頭|tr=あたま, atama}}, {{t-|ja|頭脳|tr=ずのう, zunō}}
-* Norwegian: {{t+|no|hode|n}}, {{t+|no|evne|m}}
-* Swedish: {{t+|sv|huvud|n}}, {{t+|sv|förmåga|c}}
-{{trans-bottom}}
-
-{{trans-top|mental or emotional control}}
-* Greek: [[αυτοκυριαρχία]] (aftokiriarkhia) {{f}}
-* Japanese: {{t+|ja|頭|tr=あたま, atama}}
-{{trans-mid}}
-* Swedish: {{t+|sv|huvud|n}}, {{t+|sv|fattning|c}}
-{{trans-bottom}}
-
-{{trans-top|topmost or leading part}}
-* Arabic: {{Arab|[[رأس]]}} (ra’s) {{m|f}}
-* Armenian: {{t-|hy|գլուխ|tr=glux}}
-* Dutch: {{t+|nl|hoofd}}
-* Finnish: {{t-|fi|yläosa}}, {{t|fi|etuosa}}, {{t+|fi|kärki}}, {{t-|fi|keula}}
-* German: {{t+|de|Spitze|f}}, {{t-|de|Oberende|n}}, {{t+|de|Kopf|m}}, {{t+|de|Dach|n}} {{qualifier|figuratively}}
-* Greek: {{t+|el|κεφαλή|f|tr=kefalí}}, {{t+|el|κεφάλι|n|tr=kefáli}}
-{{trans-mid}}
-* Japanese: {{t+|ja|頭|tr=あたま, atama}}, {{t|ja|冒頭|tr=ぼうとう, bōtō}}
-* Norwegian: {{t+|no|topp|m}}
-* Persian: {{t+|fa|سر|tr=sar|xs=Persian}}, {{t|fa|فراز|tr=farâz|xs=Persian}}, {{t-|fa|نوک|tr=nok|xs=Persian}}
-* Spanish: {{t+|es|punta|f}}
-* Swedish: {{t|sv|spets|c}}, {{t|sv|topp|c}}, {{t|sv|övre}} {{t|sv|ända|c}}, {{t|sv|huvud|n}}
-* Telugu: [[శీర్షము]] (Seershamu)
-{{trans-bottom}}
-
-{{trans-top|leader or chief}}
-* Arabic: {{Arab|[[رئيس]]}} (ra’īs) {{m}}
-* Armenian: [[գլխավոր]] (glxavor), [[ղեկավար]] (ġekavar), [[պետ]] (pet), {{t-|hy|գլուխ|tr=glux}}
-* Baluchi: {{tø|bal|سروک|tr=sarok}}
-* Basque: [[buruzagi]], [[buru]], [[nagusi]]
-* Breton: [[penn]] {{m}}, pennoù {{p}}
-* Crimean Tatar: [[baş#Crimean Tatar|baş]]
-* Czech: {{t+|cs|hlava|f}}
-* Dutch: {{t+|nl|hoofd|n}}, {{t+|nl|baas|m}}, {{t-|nl|bazin|f}}, {{t+|nl|leider|m}}, {{t-|nl|leidster|f}}, {{t+|nl|chef|m}}, {{t-|nl|cheffin|f}} {{qualifier|not used often}}
-* Finnish: {{t+|fi|päällikkö}}
-* French: {{t+|fr|chef|m}}
-* German: {{t+|de|Oberhaupt|n}}, {{t+|de|Haupt|n}}, {{t+|de|Kopf|m}}
-* Greek: [[κεφαλή]] (kefalí) {{f}}, [[κεφάλι]] (kefáli) {{n}}, [[αρχηγός]] (arkhigos) {{m}}
-* Guaraní: [[mburuvicha]]
-* Hindi: {{t|hi|मुखिया|tr=mukhiyā|sc=Deva}}
-* Indonesian: {{t+|id|kepala|xs=Indonesian}}, {{t-|id|pimpin|alt=pemimpin|xs=Indonesian}}
-* Interlingua: [[chef]], [[leader]]
-* Italian: {{t|it|capo|m}}
-* Japanese: [[指導者]] (しどうしゃ, shidōsha), [[頭]] ([[かしら]], kashira)
-* Kurdish: [[serok]], {{ku-Arab|[[سه‌رۆک]]}}, {{ku-Arab|[[سه‌رگه‌وره‌]]}}
-{{trans-mid}}
-* Lithuanian: [[galva]] {{f}}; [[vadovas]] {{m}}, [[vadovė]] {{f}}
-* Low Saxon: [[baas]] {{m|f}}
-* Maltese: {{t-|mt|kap|m|xs=Maltese}}, {{t-|mt|kapa|f|xs=Maltese}}
-* Meru: {{tø|mer|munene}}
-* Norwegian: {{t+|no|leder|m}}, {{t+|no|sjef|m}}
-* Persian: {{t+|fa|رهبر|tr=rahbar|xs=Persian}}, {{t|fa|سالار|tr=sâlâr|xs=Persian}}, {{t+|fa|سر|tr=sar|xs=Persian}}
-* Polish: {{t+|pl|kierownik|m}}, {{t-|pl|kierowniczka|f}}
-* Portuguese: {{t+|pt|chefe|m|f}}, {{t+|pt|cabeça|m}}, {{t+|pt|líder|m|f}}
-* Romanian: {{t-|ro|șef|m}}, {{t|ro|cap|m}}, {{t|ro|lider|m}}, {{t|ro|căpetenie|f}}
-* Russian: {{t+|ru|глава|m|f|tr=glavá}}
-* Slovene: {{t+|sl|poglavar}}, {{t+|sl|vodja|m}}
-* Spanish: {{t+|es|cabeza|f}}, {{t+|es|jefe|m}}, {{t+|es|líder|m}},
-* Swahili: [[mkuu]] ''(nc 1/2)''
-* Swedish: {{t+|sv|ledare|c}}, {{t+|sv|chef|c}}, {{t+|sv|direktör|c}}, {{t-|sv|föreståndare|c}}
-* Tamil: {{t|ta|தலைவர்|tr=talaivar|xs=Tamil}}
-* Tatar: [[баш]]
-* Telugu: [[నాయకుడు]] (naayakuDu)
-* Tupinambá: [[porubixaba]], [[ubixaba]] (t-)
-* Welsh: {{t+|cy|pen|m|xs=Welsh}}
-{{trans-bottom}}
-
-{{trans-top|headmaster, headmistress}}
-* Arabic: {{Arab|[[رئيس]]}} (ra’īs) {{m}}
-* Crimean Tatar: [[baş#Crimean Tatar|baş]]
-* Dutch: {{t|nl|hoofdmeester}}
-* Finnish: {{t+|fi|rehtori}}, {{t-|fi|johtajaopettaja}}
-* German: {{t+|de|Leiter|m}}, {{t-|de|Leiterin|f}}, {{t+|de|Rektor|m}}, {{t-|de|Rektorin|f}}, {{t+|de|Direktor|m}}, {{t-|de|Direktorin|f}}
-* Greek: [[διευθυντής]] (diefthintis) {{m}}, [[διευθύντρια]] (diefthintria) {{f}}
-* Japanese: {{t+|ja|校長|tr=こうちょう, kōchō}}, {{t+|ja|監督|tr=かんとく, kantoku}}
-* Kurdish: {{t+|ku|serperişt}}
-* Maltese: {{t|mt|surmast|m|xs=Maltese}}, {{t-|mt|madam|f|xs=Maltese}}
-{{trans-mid}}
-* Norwegian: {{t-|no|rektor|m}}
-* Polish: {{t|pl|dyrektor|m}}, {{t|pl|dyrektorka|f}}
-* Portuguese: {{t+|pt|director|m}}, {{t-|pt|directora|f}}, {{qualifier|Brazilian Portuguese}} {{t|pt|diretor|m}}, {{qualifier|Brazilian Portuguese}} {{t|pt|diretora|f}}
-* Spanish: {{t+|es|director|m}}, {{t-|es|directora|f}},
-* Swedish: {{t+|sv|rektor|c}}
-* Tamil: {{t|ta|தலைமை ஆசிரியர்|tr=talaimai aasiriyar|xs=Tamil}}, {{t|ta|தலைவர்|tr=talaivar|xs=Tamil}}
-* Telugu: [[ప్రధానోపాధ్యాయుడు]] (pradhaanOpaadhyaayuDu), [[ప్రధానోపాధ్యాయురాలు]] (pradhaanOpaadhyaayuraalu)
-{{trans-bottom}}
-
-{{trans-top|toilet of a ship}}
-* German: {{t|de|Abtritt|m}} {{qualifier|military}}
-{{trans-mid}}
-* Russian: {{t|ru|гальюн|m|tr=gal’jún}}
-{{trans-bottom}}
-
-{{trans-top|top of a sail}}
-* German: {{t-|de|Top|n}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|foam on carbonated beverages}}
-* Dutch: {{t+|nl|schuim|n}}
-* Finnish: {{t+|fi|vaahto}}
-* {{trreq|Georgian}}
-* German: {{t+|de|Blume|f}}, {{t+|de|Krone|f}}, {{t-|de|Schaumkrone|f}}
-{{trans-mid}}
-* Japanese: {{t+|ja|泡|tr=あわ, awa}}
-* Norwegian: {{t+|no|skum|n}}
-* Portuguese: {{t|pt|colarinho|m}}
-* Swedish: {{t-|sv|bornyr|c}}, {{t-|sv|fradga|c}}, {{t+|sv|skum|n}}
-{{trans-bottom}}
-
-{{trans-top|end of hammer, etc.}}
-* Basque: {{t|eu|buru}}
-* Dutch: {{t|nl|kop|m}}
-* Finnish: {{t+|fi|hamara}}
-* German: {{t+|de|Kopf|m}}
-* Japanese: {{t+|ja|頭|tr=あたま, atama}}
-* Kurdish: {{t+|ku|ser}}
-{{trans-mid}}
-* Lithuanian: {{t+|lt|galva|f|xs=Lithuanian}}
-* Norwegian: {{t+|no|hode|n}}
-* Polish: {{t|pl|główka|f}}
-* Russian: {{t+|ru|головка|f|tr=golóvka}}
-* Spanish: {{t+|es|cabeza|f}}
-* Swedish: {{t+|sv|huvud|n}}
-{{trans-bottom}}
-
-{{trans-top|the blunt end of a nail, etc.}}
-* Czech: {{t+|cs|hlava|f}}
-* Finnish: {{t+|fi|kanta}}, {{t+|fi|pää}}
-* German: {{t+|de|Kopf|m}}
-* Japanese: {{t+|ja|頭|tr=あたま, atama}}
-* Kurdish: {{t+|ku|ser}}
-* Lithuanian: [[galvutė]] {{f}}
-{{trans-mid}}
-* Norwegian: {{t+|no|hode|n}}
-* Romanian: {{t|ro|cap|n}}
-* Russian: {{t+|ru|головка|f|tr=golóvka}}
-* Spanish: {{t+|es|cabeza|f}}
-* Swedish: {{t+|sv|huvud|n}}
-{{trans-bottom}}
-
-{{trans-top|capitulum}}
-* Dutch: {{t+|nl|krop}}
-{{trans-mid}}
-* Japanese: {{t|ja|頭状花|tr=とうじょうか, tōjōka}}
-{{trans-bottom}}
-
-{{trans-top|linguistics: morpheme that determines the category of a compound}}
-* Finnish: {{t-|fi|perusosa}}
-* German: {{t|de|Kopf|m}}
-{{trans-mid}}
-* Japanese: {{t|ja|主要部|tr=しゅようぶ, shuyōbu}}
-{{trans-bottom}}
-
-===Adjective===
-{{en-adj|-}}
+<h3>Noun</h3>
+{en-noun}
+<ol><li> A piece of furniture to sleep on.</li>
+</ol>
 
-# Of, relating to, or intended for the head.
-# Foremost in rank or importance.
-#: ''The '''head''' cook.''
-# Placed at the top or the front.
-# Coming from in front.
-#: '''''head''' sea''
-#: '''''head''' wind''
-
-====Synonyms====
-* {{sense|foremost in rank or importance}} [[chief]], [[principal]]
-* {{sense|placed at the top or the front}} [[first]], [[top]]
-
-====Antonyms====
-* {{sense|coming from in front}} [[tail]]
-
-====Translations====
-{{trans-top|of, relating to, or intended for the head}}
-* German: [[Kopf]]-
-* Greek: [[κεφαλο]]- (kefalo)
-* Italian: di [[testa#Italian|testa]]
-* Japanese: {{t|ja|頭の|tr=あたまの, atama no}}
-{{trans-mid}}
-* Norwegian: {{t|no|hode-}}
-* Russian: {{t+|ru|головной|tr=golovnój}}
-* Swedish: compounds with {{t|sv|huvud}}
-* Turkish: [[kafa]]-
-{{trans-bottom}}
-
-{{trans-top|foremost in rank or importance}}
-* Ancient Greek: [[ἀρχι-]] (archi)
-* Finnish: {{t+|fi|pää-}}
-* German: [[Haupt]]-
-* Hebrew: [[ראש]] (rosh)
-* Japanese: {{t|ja|チーフ|tr=chīfu}}
-{{trans-mid}}
-* Norwegian: {{t|no|hoved-}}
-* Russian: {{t+|ru|главный|tr=glávnyj}}
-* Slovene: {{t-|sl|glaven|alt=gláven}}
-* Swedish: {{t+|sv|främst}}, {{t+|sv|först}}, compounds with {{t|sv|huvud}} and {{t|sv|topp}}
-{{trans-bottom}}
-
-{{trans-top|placed at the top or the front}}
-* Hebrew: [[ראש]] (rosh)
-* Japanese: {{t|ja|先頭の|tr=せんとうの, sentō no}}
-* Norwegian: {{t|no|leder-}}, {{t+|no|første}}
-{{trans-mid}}
-* Russian: {{t+|ru|передний|tr=p'er'édnij}}, {{t+|ru|верхний|tr=v'érχnij}}
-* Slovene: {{t-|sl|glaven|alt=gláven}}
-* Swedish: {{t+|sv|främst}}, {{t+|sv|först}}
-{{trans-bottom}}
-
-{{trans-top|coming from in front}}
-* Finnish: {{t-|fi|vasta-}}
-* Japanese: {{t|ja|向かい|tr=むかい, mukai-}}
-* Polish: {{t|pl|czołowy}}
-{{trans-mid}}
-* Russian: {{t+|ru|встречный|tr=vstr'éčnyj}}
-* Swedish: {{t|sv|mot}}-
-{{trans-bottom}}
-
-{{trans-top|''slang'': of, relating to, or for drugs or drug users}}
-{{trans-mid}}
-{{trans-bottom}}
-
-===Verb===
-{{en-verb}}
-
-# {{transitive}} To be in command of. - see also [[head up]]
-#: ''Who '''heads''' the board of trustees?''
-# {{transitive}} To strike with the head; as in soccer, ''to head the ball''
-# {{intransitive}} To move in a specified [[direction]]. ''heading towards something''
-#: ''We are going to '''head up''' North for our holiday. We will '''[[head off]]''' tomorrow. Next holiday we will '''head out''' West, or '''head to''' Chicago. Right now I need to '''head into''' town to do some shopping.''
-#: ''I'm fed up working for a boss. I'm going to '''head out''' on my own, [[set up]] my own business.''
-# {{fishing}} To [[remove]] the head from a fish.
-#: ''The salmon are first '''headed''' and then scaled.''
-
-====Derived terms====
-* [[head for the hills]]
-
-====Translations====
-{{trans-top|(transitive) be in command of}}
-* Basque: [[zuzendu]]
-* Breton: [[ren]]
-* Dutch: {{t+|nl|leiden}}, {{t+|nl|aanvoeren}}
-* Finnish: {{t+|fi|johtaa}}
-* French: {{t+|fr|commander}}, {{t+|fr|diriger}}, {{t|fr|chapeauter}}
-* German: {{t+|de|führen}}, {{t+|de|leiten}}
-* Hebrew: [[עמד בראש]] (amad b’rosh)
-* Indonesian: {{t-|id|pimpin|alt=memimpin|xs=Indonesian}}
-* Interlingua: [[commandar]], [[diriger]], [[leaderar]]
-{{trans-mid}}
-* Japanese: [[指導する]] (しどうする, shidō-surú)
-* Kurdish: {{t+|ku|birêvebirin}}
-* Low Saxon: [[kommandeern]], dat Seggen hebben
-* Polish: {{t+|pl|kierować}}
-* Portuguese: {{t+|pt|comandar}}, {{t+|pt|dirigir}}, {{t+|pt|liderar}}
-* Russian: {{t+|ru|возглавлять|tr=vozglavl'át'}} {{impf}}, {{t|ru|возглавить|tr=vozglávit'}} {{pf.}}
-* Spanish: {{t-|es|encabezar}}, {{t+|es|dirigir}}, {{t-|es|liderar}}
-* Swedish: {{t+|sv|leda}}
-{{trans-bottom}}
-
-{{trans-top|(transitive) to strike with the head}}
-* French: {{t|fr|faire une tête}}
-* German: {{t+|de|köpfen}}
-* Hungarian: {{t|hu|fejel}}
-{{trans-mid}}
-* Japanese: {{t|ja|ヘディングする|tr=hedingu suru}}
-* Spanish: {{t+|es|cabecear}}
-* Swedish: {{t+|sv|nicka}}, {{t+|sv|skalla}}
-{{trans-bottom}}
-
-{{trans-top|(intransitive) move in a specified direction}}
-* Basque: [[zuzendu]]
-* Breton: [[skeiñ]] war-du
-* Dutch: ergens naar toe [[gaan]], een richting op [[gaan]]
-* Finnish: {{t+|fi|suunnata}}, {{t+|fi|johtaa}}
-* French: [[se diriger]] (''towards:'' [[vers]])
-* German: [[ansteuern]], in eine [[Richtung]] [[gehen]], auf etwas [[zusteuern]]
-* Indonesian: {{t-|id|tuju|alt=menuju|xs=Indonesian}}
-* Interlingua: [[diriger se]]
-{{trans-mid}}
-* Japanese: [[向かう]] ([[むかう]], mukau)
-* Kurdish: [[ber]]ê xwe dan derekê, ber bi derekê ve [[çûn]]
-* Low Saxon: op to stüürn
-* Polish: {{t+|pl|kierować się}}
-* Portuguese: {{t-|pt|dirigir-se}}, {{t-|pt|encaminhar-se}}, {{t+|pt|rumar}}
-* Russian: {{t|ru|направляться|tr=napravl'át's'a}} {{impf}}, {{t+|ru|направиться|tr=naprávit's'a}} {{pf.}}
-* Spanish: {{t-|es|dirigirse}}
-* Swedish: {{t+|sv|åka}}
-{{trans-bottom}}
-
-====Related terms====
-* [[ahead]]
-* [[knucklehead]]
-* [[railhead]]
-
-===Statistics===
-* {{rank|seemed|house|looked|184|head|called|p|Lord}}
-
-===Anagrams===
-* [[DHEA#English|DHEA]], [[hade#English|hade]]
-
-[[Category:1000 English basic words]]
-[[Category:en:Anatomy]]
+<h3>References</h3>
+        
+<ul><li> <em>The Oxford Paperback Dictionary</em>       </li>
+</ul>
+</pre>
+<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:
 
-----
+<h3>Alternative forms</h3>
 
+<h3>Etymology</h3>
 
-===Help===
-Help:FAQ: 
+<h3>Pronunciation</h3>
+<ul><li> Phonetic transcriptions</li>
+<li> Audio files in any relevant dialects</li>
+<li> Rhymes</li>
+<li> Homophones</li>
+<li> Hyphenation</li>
+</ul>
 
-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?
+<h3>Noun</h3>
+Declension
+<ol><li> Meaning 1</li>
+<ul><li> Quotations</li>
+</ul>
+<li> Meaning 2</li>
+<ul><li> Quotations</li>
+</ul>
+</ol>
+     etc.
+<h4>Usage notes</h4>
 
-A: No.  It is very much a required heading.
+<h4>Synonyms</h4>
 
-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.
+<h4>Antonyms</h4>
 
-:Some more reasons why "==English==" is required:
-:# Introduces newcomers to wiki* syntax
-:# Indicates (by implication) to newcomers that a single entry can have more than one language
-:# Indicates ''which'' parts are English
-:# It reminds new contributors that they can enter words and definitions of other languages.
-:# The absence of the English heading is an indication that the person entering it is new, and the article probably needs cleanup.
-<!--:# The use of 1<sup>st</sup> level English headings implies a vandal, therefore candidate for deletion.
+<h4>Derived terms</h4>
 
-I COMMENTED OUT THIS BIT, AS IT IS VERY MISLEADING. User:Keene - 3 Jan 2006-->
-:# The presence of the English heading makes it readily apparent how another language definition can be added to a page.
-:# 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.)
-:#The presence of the English heading makes parsing articles by internal "bots" easier/possible.
+<h4>Related terms</h4>
 
+<h4>References</h4>
 
-***hour***
-hour: 
-
-===Alternative forms===
-* [[hower]] {{qualifier|archaic}}
-
-===Etymology===
-{{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|lang=la|hour}}, 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|lang=ang|gear|ġēar|year}}. 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}} *''ġetīd'', compare {{etyl|osx|-}} ''[[getid#Old Low Saxon|getīd]]'' "hour, time").
-
-===Pronunciation===
-* {{a|RP|Australia}} {{enPR|owʹər}}, {{IPA|/ˈaʊə(ɹ)/}}, {{X-SAMPA|/"aU@(r)/}}
-* {{a|US|Canada}} {{enPR|owr}}, {{IPA|/ˈaʊɚ/}}, {{X-SAMPA|/"aU@`/}}
-* {{audio|en-us-hour.ogg|Audio (US)}}
-* {{audio|En-uk-an hour.ogg|Audio (UK)}}
-* {{rhymes|aʊər}}
-* {{homophones|our}} {{qualifier|depending on accent}}
-
-===Noun===
-{{wikipedia}}
-{{en-noun}}
-
-# A [[time]] period of sixty [[minute]]s; one twenty-fourth of a [[day]].
-#: ''I spent an '''hour''' at lunch.''
-# A [[season]], [[moment]], [[time]] or [[stound]].
-#* Edgar Allen Poe, ''Alone'':
-#*: From childhood's '''hour''' I have not been
-#*: As others were; I have not seen
-#*: As others saw; I could not bring
-#*: My passions from a common spring.
-# {{poetic}} The [[time]].
-#: ''The '''hour''' grows late and I must go home.''
-# {{military}} {{in the plural}} Used after a two-digit hour and a two-digit minute to indicate time.
-#* T. C. G. James and Sebastian Cox, ''The Battle of Britain'':
-#*: By 1300 '''hours''' the position was fairly clear.
-
-====Synonyms====
-* [[stound]] {{context|obsolete}}
-
-====Abbreviations====
-* Singular: [[h.]], [[hr]]
-* Plural: [[h.]], [[hrs]]
-
-====Derived terms====
-{{rel-top}}
-* [[ampere-hour]]
-* [[canonical hour]]
-* [[credit hour]]
-* [[eleventh hour]]
-* [[F-Hour]]
-* [[flower-of-an-hour]]
-* [[H-hour]]
-* [[half-hour]]
-* [[happy hour]]
-* [[hour angle]]
-* [[hour circle]]
-* [[hourglass]]/[[hour glass]]/[[hour-glass]]
-* [[hourless]]
-{{rel-mid}}
-* [[hour hand]]
-* [[hourly]]
-* [[kilowatt-hour]]
-* [[man-hour]]
-* [[off-hour]]
-* [[on the hour]]
-* [[person-hour]]
-* [[quarter-hour]]
-* [[rush hour]]
-* [[witching hour]]
-* [[zero hour]]
-{{rel-bottom}}
-
-{{lookfrom|hour}}
-
-====Translations====
-{{trans-top|Time period of sixty minutes}}
-* Abaza: {{tø|abq|сахӀат|sc=Cyrl}}
-* Abkhaz: {{t|ab|асааҭ|sc=Cyrl}}
-* Adyghe: {{tø|ady|сыхьат|sc=Cyrl}}
-* Albanian: {{t-|sq|orë|f|xs=Albanian}}
-* Anglo-Norman: {{tø|xno|houre}}
-* Arabic: {{t+|ar|ساعة|f|tr=saa3a}}
-*: [[Egyptian Arabic]]: {{tø|arz|ساعة|f|tr=saʕa|sc=Arab}}
-* Aramaic:
-*: Syriac: [[ܫܥܬܐ]] (šāʕtā’) {{f}}
-*: Hebrew: [[שעתא]] (šāʕtā’) {{f}}
-* Armenian: {{t+|hy|ժամ|tr=žam}}
-* Avar: {{t|av|сагӀат|sc=Cyrl}}
-* Azeri: {{t+|az|saat|xs=Azeri}}
-* Basque: {{t-|eu|ordu|xs=Basque}}, {{t|eu|oren}}
-* Belarusian: {{t|be|гадзіна|f|tr=hadzína|sc=Cyrl}}
-* Breton: {{t|br|eur|f|xs=Breton}}, {{t|br|eureier|xs=Breton}}, {{t|br|eurvezh|f|xs=Breton}}
-* Bulgarian: {{t+|bg|час|m|tr=čas}}
-* Catalan: {{t-|ca|hora|f}}
-* Chinese:
-*: Mandarin: {{t|zh|小時|sc=Hani}}, {{t|zh|小时|tr=xiǎoshí|sc=Hani}}, {{qualifier|informal}} {{t|zh|鐘頭|sc=Hani}}, {{t|zh|钟头|tr=zhōngtóu|sc=Hani}}
-* Czech: {{t+|cs|hodina|f}}
-* Dalmatian: {{tø|dlm|aura}}
-* Danish: {{t+|da|time}}
-* Dutch: {{t+|nl|uur|n}}, {{t-|nl|stonde|f}}
-* Esperanto: {{t-|eo|horo|xs=Esperanto}}
-* Estonian: {{t+|et|tund}}
-* Ewe: {{tø|ee|gaƒoƒo|xs=Ewe}}
-* Fijian: {{t|fj|aua}}
-* Finnish: {{t+|fi|tunti}}
-* French: {{t+|fr|heure|f}}
-* Galician: {{t-|gl|hora|f|xs=Galician}}
-* Georgian: {{t-|ka|საათი|tr=saat’i|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Stunde|f}}
-* Greek: {{t+|el|ώρα|f|tr=óra}}
-** Ancient Greek: {{tø|grc|ὥρα|f|tr=hóra|xs=Ancient Greek}}
-* Hebrew: {{t+|he|שעה|f|tr=shah-AH}}
-* Hindi: {{t|hi|घंटा|m|tr=ghãṇṭā|sc=Deva}}
-* Hungarian: {{t+|hu|óra}}
-* Icelandic: {{t+|is|klukkustund}}, {{t+|is|klukkutími}}
-* Ido: {{t+|io|horo|xs=Ido}}
-* Indonesian: {{t-|id|jam|xs=Indonesian}}
-* Interlingua: [[hora]]
-* Irish: {{t|ga|uair|f}}
-* Italian: {{t+|it|ora|f}}
-* Japanese: {{t|ja|時|tr=[[じ]], ji|sc=Jpan}}, {{t|ja|時間|tr=[[じかん]], jikan|sc=Jpan}}
-* Khmer: {{t|km|ម៉ោង|tr=maong|sc=Khmr}}
-* Korean: {{t|ko|시|tr=si|sc=Kore}} ({{t|ko|時|sc=Kore}})
-{{trans-mid}}
-* Kurdish: [[seet]], 60 [[deqe]]
-* Lao: {{t+|lo|ຊົ່ວໂມງ|tr=sua-mööng|sc=Laoo|xs=Lao}}
-* Latin: {{t+|la|hora}}, {{t+|la|hora|f}}
-* Latvian: {{t-|lv|stunda|f|xs=Latvian}}
-* Lithuanian: {{t+|lt|valanda|f|xs=Lithuanian}}
-* Lojban: {{t-|jbo|cacra|xs=Lojban}}
-* Lower Sorbian: {{tø|dsb|góźina|f}},  {{tø|dsb|góźinka|f}}
-* Macedonian: {{t+|mk|час|m|tr=čas}},  {{t|mk|саат|m|tr=sáat}}
-* Malay: {{t+|ms|jam|xs=Malay}}
-* Maltese: {{t-|mt|siegħa|xs=Maltese}}
-* Navajo: {{tø|nv|ahééʼílkid}}, {{tø|nv|óola}}
-* Norwegian: {{t+|no|time}}
-* Novial: [[hore]]
-* Ojibwe: [[diba'igan]]
-* Old French: {{tø|fro|eure|f}}
-* Persian: {{t|fa|ساعت|tr=sâ'at|sc=fa-Arab}}
-* Polish: {{t+|pl|godzina|f}}
-* Portuguese: {{t+|pt|hora|f}}
-* Punjabi: [[ਘੰਟਾ]] (ghaṇṭā)
-* Romanian: {{t+|ro|oră|f}}, {{t+|ro|ceas|m|f}}
-* Romansch: {{t|rm|ura|f}}, {{t|rm|oura|f}}
-* Russian: {{t|ru|час|m|tr=čas|sc=Cyrl}}
-* Scots: {{tø|sco|oor|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|uair|f|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|сат|m}}, {{qualifier|Bosnian, Serbian}} {{t|sh|час|m}}
-*: Roman: {{t|sh|sat|m}}, {{qualifier|Bosnian, Serbian}} {{t|sh|čas|m}}
-* Sinhalese: {{t|si|පැය|tr=pæya|sc=Sinh}}
-* Slovak: {{t|sk|hodina|f}}
-* Slovene: {{t+|sl|ura|f}}
-* Spanish: {{t+|es|hora|f}}
-* Swahili: {{t+|sw|saa|xs=Swahili}}
-* Swedish: {{t+|sv|timme|c}}
-* Tagalog: {{t|tl|oras}}
-* Tajik: [[соат]]
-* Taos: [[ùro’óna]]
-* Tatar: {{t+|tt|сәгать|sc=Cyrl|xs=Tatar}}
-* Telugu: [[గంట]] (gaMTa)
-* Thai: {{t|th|ชั่วโมง|sc=Thai}}
-* Tok Pisin: {{t|tpi|aua}}
-* Turkish: {{t+|tr|saat}}
-* Ukrainian: {{t|uk|година|f|tr=hodýna|sc=Cyrl}}
-* Urdu: {{t|ur|گھنٹا|m|tr=ghãṇṭā|sc=ur-Arab}}, {{t|ur|گھنٹہ|m|tr=ghãṇṭā|sc=ur-Arab}}
-* Vietnamese: {{t|vi|giờ}}, {{t|vi|tiếng}}
-* Volapük: {{t|vo|düp}}
-* Welsh: {{t+|cy|awr|f|xs=Welsh}}
-* Yiddish: {{t|yi|שעה|f|tr=sho|sc=Hebr}}
-* Yup'ik: {{tø|esu|cass'aq}}
-{{trans-bottom}}
-
-{{trans-top|the time}}
-* Arabic: {{t+|ar|وقت|alt=وَقْت}}
-* Armenian: [[ժամ]] (žam)
-* Czech: {{t+|cs|hodina|f}}
-* Galician: [[hora]] {{f}}
-* German: {{t+|de|Zeit|f}}, {{t+|de|Uhr}}
-* Latin: {{t+|la|hora}}, {{t|la| hora |f}}
-{{trans-mid}}
-* Lower Sorbian: {{tø|dsb|cas|m}},  {{tø|dsb|štunda|f}}
-* Macedonian: {{qualifier|with definite article suffix}} {{t|mk|часот|m|tr=čásot}}
-* Romansch: {{t|rm|ura|f}}, {{t|rm|oura|f}}
-* Scots: {{tø|sco|oor|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|uair|f|xs=Scottish Gaelic}}
-* Tok Pisin: {{t|tpi|aua}}
-{{trans-bottom}}
-
-===Statistics===
-* {{rank|thousand|looking|John|366|hour|air|reason|feel}}
-
-[[Category:1000 English basic words]]
-[[Category:en:Time]]
-
-[[ang:hour]]
-[[ar:hour]]
-[[zh-min-nan:hour]]
-[[bs:hour]]
-[[ca:hour]]
-[[cs:hour]]
-[[cy:hour]]
-[[da:hour]]
-[[de:hour]]
-[[et:hour]]
-[[el:hour]]
-[[es:hour]]
-[[eo:hour]]
-[[eu:hour]]
-[[fa:hour]]
-[[fr:hour]]
-[[ko:hour]]
-[[hy:hour]]
-[[hr:hour]]
-[[io:hour]]
-[[id:hour]]
-[[it:hour]]
-[[kn:hour]]
-[[kk:hour]]
-[[sw:hour]]
-[[ku:hour]]
-[[ky:hour]]
-[[lo:hour]]
-[[lt:hour]]
-[[li:hour]]
-[[hu:hour]]
-[[mg:hour]]
-[[ml:hour]]
-[[my:hour]]
-[[fj:hour]]
-[[nl:hour]]
-[[ja:hour]]
-[[no:hour]]
-[[oc:hour]]
-[[pl:hour]]
-[[pt:hour]]
-[[ro:hour]]
-[[ru:hour]]
-[[sq:hour]]
-[[simple:hour]]
-[[fi:hour]]
-[[sv:hour]]
-[[ta:hour]]
-[[te:hour]]
-[[th:hour]]
-[[tg:hour]]
-[[tr:hour]]
-[[uk:hour]]
-[[ug:hour]]
-[[vi:hour]]
-[[zh:hour]]
-***hyponym***
-hyponym: 
-
-===Etymology===
-{{confix|hypo|onym}}
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈhaɪpəʊ.nɪm/}}
-* {{a|US}} {{IPA|/ˈhaɪ.poʊ.nɪm/}}
-* {{rhymes|ɪm}}
-* {{audio|En-ca-hyponym.ogg|Audio (Canada)}}
-
-===Noun===
-{{en-noun}}
-
-# {{semantics}} A more specific term; a [[subordinate]] grouping word or phrase.
-#: {{usex|Dog is a '''hyponym''' of animal.}}
-#: {{usex|British is a '''hyponym''' of European.}}
-#: {{usex|"A is a '''hyponym''' of B" means that "A is a type of B."}}
-
-====Antonyms====
-* [[hypernym]]
-
-====Related terms====
-* [[hyponymic]]
-* [[hyponymous]]
-* [[hyponymy]]
-
-====Translations====
-{{trans-top|more specific word}}
-* Catalan: {{t|ca|hipònim|m}}
-* Czech: {{t+|cs|hyponymum|n}}
-* Dutch: {{t+|nl|hyponiem|n}}
-* Esperanto: {{t|eo|hiponimo|xs=Esperanto}}
-* Finnish: {{t+|fi|alakäsite}}, {{t+|fi|hyponyymi}}
-* French: {{t+|fr|hyponyme|m}}
-* German: {{t+|de|Unterbegriff|m}}, {{t+|de|Hyponym|n}}
-* Greek: {{t+|el|υπώνυμο|n}}
-* Icelandic: {{t+|is|undirheiti|n}}
-* Italian: {{t+|it|iponimo|m}}
-{{trans-mid}}
-* Japanese: {{t|ja|下位語|tr=[[かいご]], kaigo}}
-* Portuguese: {{t|pt|hipónimo|m}}
-* Russian: {{t+|ru|гипоним|m|tr=gipónim}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|хипоним|m|alt=хипо̀нӣм|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{t|sh|hiponim|m|alt=hipònīm|xs=Serbo-Croatian}}
-* Slovene: {{t-|sl|podpomenka|f}}
-* Spanish: {{t+|es|hipónimo|m}}
-* Swedish: {{t+|sv|hyponym|c}}
-* Turkish: {{t|tr|alt kavram}}
-{{trans-bottom}}
-
-===See also===
-* {{pedia}}
-* [[troponym]], the corresponding idea, as applied to verbs.
-
-----
-
-
-***January***
-January: 
-
-===Etymology===
-Re-[[Latinize]]d from {{etyl|enm}} {{term|Ieneuer|lang=enm}}, from {{etyl|xno}} {{term|genever|lang=xno}}, from {{etyl|la}} {{term|ianuarius|iānuārius|(month) of [[Janus]]|lang=la}}, perhaps from [[Proto-Indo-European]] base *''ei-'', "to go".
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈdʒænjʊəɹi/}}, {{X-SAMPA|/"dZ{nju@ri/}} ''or as US''
-* {{a|US}} {{enPR|jănʹyo͞o-ĕr'ē}}, {{IPA|/ˈdʒænjuˌɛɹi/|/ˈdʒænjuˌæɹi/}}, {{X-SAMPA|/"dZ{nju%Eri/}}
-* {{audio|en-us-January.ogg|Audio (US)}}
-
-===Proper noun===
-{{en-proper noun|''plural:'' '''[[Januarys]]''' or '''[[Januaries]]'''}}
-
-# The first [[month]] of the [[Gregorian calendar]], following the [[December]] of the previous year and preceding [[February]]. Abbreviation: '''[[Jan]]''' or '''[[Jan.]]'''
-#: ''01/01/09 : [[Thursday]], '''January''' 1st, 2009.''
-
-====Derived terms====
-{{rel-top|terms derived from January}}
-* [[Black January]]
-* [[January Club]]
-* [[January effect]]
-* [[January Events]]
-* [[January indicator]]
-* [[January Massacre]]
-{{rel-mid}}
-* [[January Rebellion]]
-* [[January sales]]
-* [[January thaw]]
-* [[January Uprising]]
-* [[May and January]]
-* [[mid-January]]
-{{rel-bottom}}
-
-====Related terms====
-* [[Janus]]
-
-====Translations====
-{{trans-top|first month of the Gregorian calendar}}
-* Abaza: {{tø|abq|гъынчыльа}}
-* Abkhaz: {{t-|ab|ажьырныҳәа|tr=aẓ̌ərnəḥwa|sc=Cyrl|xs=Abkhaz}}
-* Afrikaans: {{t-|af|Januarie|xs=Afrikaans}}
-* Alabama: {{tø|akz|lokbahaháhpa}}
-* Albanian: {{t+|sq|Janari|xs=Albanian}}
-* Alemannic German: {{t|gsw|januar}}
-* Alutiiq: {{tø|ems|Cuqllirpaaq Iraluq}}
-* Amharic: {{t-|am|ጃንዩዌሪ||sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Dził Bilátahgai}}
-* Arabic: {{t+|ar|يناير|يَنَايِر|m|tr=yanāyir}}, {{t-|ar|كانون الثاني|m|tr=Kánun Ath-tháni}}, {{t+|ar|يناير}}
-*: Egyptian Arabic: {{tø|arz|يناير|m|tr=yanaayir|sc=Arab}}
-*: Moroccan: {{t-|ar|شهر واحد|tr=šhr wāħd}}
-* Aragonese: {{t-|an|chinero|m|xs=Aragonese}}
-* Aramaic: {{tø|arc|ܟܢܘܢ ܒ}}
-* Armenian: {{t+|hy|հունվար|tr=hunvar}}
-*: Old Armenian: {{tø|xcl|յունուար|tr=yunuar|sc=Armn}}
-* Asturian: {{t+|ast|xineru|m|xs=Asturian}}
-* Aymara: {{t-|ay|chichu phaxsi|xs=Aymara}}
-* Azeri: {{t+|az|yanvar|xs=Azeri}}
-* Bashkir: {{tø|ba|ғинуар|sc=Cyrl|xs=Bashkir}}
-* Basque: {{t+|eu|urtarril|xs=Basque}}
-* Belarusian: {{t+|be|студзень|m|tr=studzen'|xs=Belarusian}}
-* Bengali: {{t-|bn|জানুয়ারি|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|januware}}
-* Breton: {{t+|br|Genver|xs=Breton}}, miz genver
-* Buginese: {{tø|bug|januari}}
-* Bulgarian: {{t+|bg|януари|m|tr=januari}}
-* Burmese: {{t+|my|ဇန်နဝါရီ|tr=zannăwari|sc=Mymr|xs=Burmese}}
-* Catalan: {{t+|ca|gener|m}}
-* Cebuano: {{tø|ceb|enero}}
-* Cherokee: {{t-|chr|ᎤᏃᎸᏔᏂ|tr=unolvtani|sc=Cher|xs=Cherokee}}
-* Chinese:
-*: Mandarin: {{t|cmn|一月|tr=yīyuè}}, {{t|cmn|元月|tr=yuányuè}}
-* Chuvash: {{tø|cv|кăрлач|tr=kârlash|sc=Cyrl}}
-* Cornish: {{t-|kw|Genver|xs=Cornish}}, {{t-|kw|Mys Genver|xs=Cornish}}, {{t-|kw|mis Genver|xs=Cornish}}
-* Corsican: {{t-|co|ghjennaghju|m|xs=Corsican}}
-* Crimean Tatar: {{t|crh|yanvar}}
-* Czech: {{t+|cs|leden|m}}
-* Dakota: {{tø|dak|Witeȟi}}
-* Danish: {{t+|da|januar}}
-* Dhivehi: {{t-|dv|ޖެނުއަރީ|xs=Dhivehi}}
-* Dutch: {{t+|nl|januari|m}}
-* Dutch Low Saxon: {{tø|nds-nl|jannewaori}}
-* Erzya: {{tø|myv|якшамков}}
-* Esperanto: {{t+|eo|januaro|xs=Esperanto}}, {{t-|eo|Januaro|xs=Esperanto}}
-* Estonian: {{t+|et|jaanuar}}
-* Ewe: {{tø|ee|Dzove}}, {{tø|ee|Yanuar}}
-* Extremaduran: {{tø|ext|eneru}}
-* Faroese: {{t-|fo|januar|m|xs=Faroese}}
-* Fiji Hindi: {{tø|hif|january}}
-* Fijian: {{t|fj|Janueri}}
-* Finnish: {{t+|fi|tammikuu}}
-* Flemish: {{tø|vls|januoari|xs=Flemish}}
-* Franco-Provençal: {{tø|frp|janviér}}
-* French: {{t+|fr|janvier|m}}
-* Friulian: {{tø|fur|zenâr|m}}
-* Galician: {{t+|gl|xaneiro|m|xs=Galician}}
-* Gan: {{tø|gan|eanáir}}
-* Georgian: {{t-|ka|იანვარი|tr=ianuari|sc=Geor|xs=Georgian}} <!-- en.wikt has ianvari as transcription -->
-* German: {{t+|de|Januar|m}}
-*: {{qualifier|in Austria, Switzerland and Southern parts of Germany}} {{t+|de|Jänner}}, {{t+|de|Hartung|m}}
-*: [[Kölsch]]: {{tø|ksh|Jannowaa}}
-* Gilbertese: {{tø|gil|Tianuari|sc=Cyrl}}
-* Greek: {{t+|el|Ιανουάριος|m|tr=ianouários}}, {{t+|el|Γενάρης|m|tr=yenáris}}
-*: Ancient: {{tø|grc|Ἰανουάριος|sc=polytonic}}
-* Greenlandic: {{t+|kl|Januaari|xs=Greenlandic}}
-* Guaraní: {{t-|gn|jasyteĩ|xs=Guaraní}}
-* Gujarati: {{t+|gu|જાન્યુઆરી|sc=Gujr|xs=Gujarati}}
-* Haitian Creole: {{tø|ht|janvye}}
-* Hawaiian: {{tø|haw|Ianuali}}
-* Hebrew: {{t+|he|ינואר|tr=yánuar}} <!-- [[ינואר|יָנוּאָר]] -->
-* Hindi: {{t+|hi|जनवरी|tr=janvarī|xs=Hindi}}
-* Hungarian: {{t+|hu|január}}
-* Icelandic: {{t+|is|janúar|m}}, {{t-|is|janúarmánuður|m}}
-* Ido: {{t+|io|januaro|xs=Ido}}
-* Igbo: {{tø|ig|january}}
-* Ilocano: {{tø|ilo|enero}}
-* Indonesian: {{t-|id|januari|xs=Indonesian}}
-* Interlingua: {{t-|ia|januario|xs=Interlingua}}
-* Interlingue: {{t-|ie|januar|xs=Interlingue}}
-* Inuktitut: {{t-|iu|ᔭᓐᓄᐊᓕ|tr=jannuali|sc=Cans|xs=Inuktitut}}
-* Irish: {{t+|ga|Eanáir|f|xs=Irish}}
-* Italian: {{t+|it|gennaio|m}}
-* Japanese: {{t+|ja|一月|tr=いちがつ, ichigatsu}}, {{t+|ja|睦月|tr=むつき, mutsuki}}
-* Javanese: {{t|jv|januar}}, {{t-|jv|januari|xs=Javanese}}
-* Kabyle: {{tø|kab|yennayer}}
-* Kannada: {{t-|kn|ಜನವರಿ|sc=Knda|xs=Kannada}}
-* Kashubian: {{t+|csb|stëcznik|xs=Kashubian}}
-* Kazakh: {{t+|kk|қаңтар|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|មករា|tr=meykgărā}}
-* Komi-Zyrian: {{tø|kv|тӧв шӧр тӧлысь|sc=Cyrl}}
-* Kongo: {{tø|kg|yanwadi}}
-* Korean: {{t+|ko|일월|tr=irweol|sc=Kore}}
-* Kurdish: {{t+|ku|rêbendan|sc=ku-Arab}}
-* Kyrgyz: {{t-|ky|январь|sc=Cyrl|xs=Kyrgyz}}
-* Ladino: {{tø|lad|jenero}}
-* Lao: {{t-|lo|ມັງກອນ|sc=Laoo|xs=Lao}}
-* Latin: {{t+|la|ianuarius|m|alt=iānuārius}}
-* Latvian: {{t-|lv|janvāris|m|xs=Latvian}}
-{{trans-mid}}
-* Ligurian: {{tø|lij|zennâ}}
-* Limburgish: {{t+|li|Jannewarie|xs=Limburgish}}
-* Lingala: {{t-|ln|sánzá ya yambo|xs=Lingala}}, {{t|ln|yanwáli}}
-* Lithuanian: {{t+|lt|sausis|m|xs=Lithuanian}}
-* Livonian: {{t|liv|janvār}}, {{t|liv|ūdāigast kū}}
-* Lojban: {{t-|jbo|kanbyma'i|xs=Lojban}}
-* Lombard: {{tø|lmo|zenèr}}
-* Low German: {{t|nds|Januor|m}}, {{t|nds|Januormaand|m}}
-* Low Saxon: {{t-|nds|januar|xs=Low Saxon}}
-* Lower Sorbian: {{tø|dsb|januar|m}}, {{tø|dsb|wezymski|m}}
-* Luxembourgish: {{t|lb|Januar|m}}, {{t|lb|Haartmount|m}}, {{t|lb|Jannewarie}}
-* Macedonian: {{t+|mk|јануари|m|tr=januári}}
-* Malagasy: {{t-|mg|janoary|xs=Malagasy}}
-* Malay: {{t-|ms|januari|xs=Malay}}
-* Malayalam: {{t-|ml|ജനുവരി|sc=Mlym|xs=Malayalam}}
-* Maltese: {{t+|mt|Jannar|xs=Maltese}}
-* Manchu: (aniya biya)
-* Manx: {{t-|gv|jerrey Geuree|xs=Manx}}
-* Maori: {{t-|mi|Kohi-tātea|xs=Maori}}, {{t-|mi|Hānuere|xs=Maori}}
-* Marathi: {{t|mr|जानेवारी|tr=janvarī}}, {{t-|mr|जानेवारी महिना|sc=Deva|xs=Marathi}}
-* Moksha: {{tø|mdf|январьгов}}
-* Montagnais: {{tø|moe|tshishe-pishimᵘ}}
-* Nahuatl: {{t-|nah|tlacēnti|xs=Nahuatl}}
-* Narom: {{tø|nrm|janvyi}}
-* Navajo: {{tø|nv|Yas Niłtʼees}}
-* Neapolitan: {{tø|nap|jennaro}}, {{tø|nap|iennaro}}, {{tø|nap|gennàio}}
-* Northern Sami: {{tø|se|ođđajagimánnu}}
-* Northern Sotho: {{tø|nso|Pherekgong}}
-* Norwegian: {{t+|no|januar}}
-*: [[Nynorsk]]: {{t+|nn|januar|xs=Norwegian Nynorsk}}
-* Novial: {{tø|nov|januare}}
-* Occitan: {{t+|oc|genièr|m|xs=Occitan}}
-* Ojibwe: {{t|oj|gichi-manidoo-giizis}}
-* Old English: {{t-|ang|æfterra geola|m|alt=æfterra ġēola|xs=Old English}}
-* Old Prussian: [[Janwārs]], [[Rags]]
-* Oriya: {{t|or|ଜାନୁଆରୀ|sc=Orya}}
-* Persian: {{t+|fa|ژانویه|tr=žânviye|xs=Persian}}
-* Piedmontese: {{tø|pms|gené}}
-* Pitcairn-Norfolk: {{tø|pih|jaenyuweri}}
-* Polish: {{t+|pl|styczeń|m}}
-* Portuguese: {{t+|pt|janeiro|m}}
-* Punjabi: {{t-|pa|ਜਨਵਰੀ|sc=Guru|xs=Punjabi}}
-* Quechua: {{t-|qu|qhulla puquy killa|xs=Quechua}}
-* Romanian: {{t+|ro|ianuarie|m}}, {{qualifier|pop}} {{t+|ro|gerar}}, {{qualifier|pop}} {{t-|ro|cărindar}}
-* Romansch: {{t|rm|schaner|m}}, {{t|rm|schner|m}}
-* Russian: {{t+|ru|январь|m|tr=janvár’}}
-* Sami:
-*: Inari: [[uđđâivemáánu]]
-*: Lule: [[ådåjakmánno]]
-*: Skolt: [[ođđeeˊjjmään]]
-*: Southern: [[tsïengele]]
-* Samoan: {{t|sm|ianuari}}
-* Samogitian: {{tø|sgs|sausis}}
-* Sardinian: {{tø|sc|ghennàrgiu|xs=Sardinian}}
-* Saterland Frisian: {{tø|stq|Januoar}}
-* Scots: {{tø|sco|Januar}}
-* Scottish Gaelic: {{t-|gd|Faoilleach|am Faoilleach|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|јануар|m|sc=Cyrl}}, {{t|sh|сечањ|m|sc=Cyrl}}
-*: Roman: {{t|sh|januar|m}}, {{t|sh|sečanj|m}}
-* Shona: [[kurume]]
-* Sicilian: {{t+|scn|jinnaru|m|xs=Sicilian}}
-* Silesian: {{tø|szl|styčyń}}
-* Skolt Sami: {{tø|sms|ođđee´jjmään}}
-* Slovak: {{t+|sk|január|m}}
-* Slovene: {{t+|sl|januar|m}}
-* Somali: {{t+|so|janaayo|xs=Somali}}
-* Sotho: {{t|st|Pherekgong|xs=Sotho}}
-* Spanish: {{t+|es|enero|m}}
-* Sundanese: {{t-|su|Januari|xs=Sundanese}}
-* Swahili: {{t+|sw|januari|xs=Swahili}}
-* Swati: {{t-|ss|Bhimbídvwane|xs=Swati}}
-* Swedish: {{t+|sv|januari}}
-* Tagalog: {{t-|tl|enero|xs=Tagalog}}
-* Tahitian: {{tø|ty|tēnuare}}
-* Tajik: {{t-|tg|январ|tr=janvar|sc=Cyrl|xs=Tajik}}
-* Tamil: {{t-|ta|ஜனவரி|xs=Tamil}}
-* Taos: [[sə̀onp’óna]]
-* Tarantino: {{tø|roa-tar|scennare}}
-* Tatar: {{t-|tt|ğínwar|tr=[[гыйнвар]]|xs=Tatar}}
-* Telugu: {{t+|te|జనవరి|tr=janavari}}
-* Tetum: {{tø|tet|janeiru}}
-* Thai: {{t+|th|มกราคม|tr=mōhk gà raa khohm}}
-* Tibetan: {{t|bo|ཟླ་དང་པོ།|sc=Tibt}}
-* Tok Pisin: {{t-|tpi|janueri|xs=Tok Pisin}}
-* Tongan: {{t|to|sānuali}}
-* Turkish: {{t+|tr|ocak}}, {{t|tr|Kanuni Sani}} {{qualifier|obsolete}}
-* Ukrainian: {{t+|uk|січень|m|tr=síčen’|xs=Ukrainian}}
-* Upper Sorbian: {{t-|hsb|januar|m|xs=Upper Sorbian}}
-* Urdu: {{t-|ur|جنوری|xs=Urdu}}
-* Veps: {{tø|vep|viluku}}
-* Vietnamese: {{t+|vi|tháng giêng|xs=Vietnamese}}, {{t+|vi|tháng một|xs=Vietnamese}}
-* Volapük: {{t+|vo|yanul|xs=Volapük}}
-* Võro: {{tø|vro|vahtsõaastakuu}}, {{tø|vro|kaarnakuu}}
-* Walloon: {{t-|wa|djanvî|xs=Walloon}}
-* Waray-Waray: {{tø|war|enero}}
-* Welsh: {{t+|cy|Ionawr|f|xs=Welsh}} <!-- [[Ionwar]] has m as the gender -->
-* West Frisian: {{t+|fy|jannewaris|c|xs=West Frisian}}, {{t+|fy|foarmoanne|xs=West Frisian}}
-*: [[Northern Frisian]]: {{tø|frr|januaar}}
-* Wolof: {{t|wo|Semwiyee}}
-* Yakut: {{tø|sah|тохсунньу}}
-* Yiddish: {{t-|yi|יאַנואַר|m|tr=yanuar|sc=Hebr|xs=Yiddish}}
-* Yoruba: {{t-|yo|january|xs=Yoruba}}
-* Zamboanga Chavacano: {{tø|cbk-zam|enero}}
-{{trans-bottom}}
-
-====See also====
-* {{list|en|Gregorian calendar months}}
-
-[[Category:English eponyms]]
-
-[[ar:January]]
-[[ast:January]]
-[[az:January]]
-[[zh-min-nan:January]]
-[[be:January]]
-[[br:January]]
-[[cs:January]]
-[[cy:January]]
-[[da:January]]
-[[de:January]]
-[[et:January]]
-[[el:January]]
-[[es:January]]
-[[eo:January]]
-[[eu:January]]
-[[fa:January]]
-[[fr:January]]
-[[fy:January]]
-[[ga:January]]
-[[gl:January]]
-[[ko:January]]
-[[hy:January]]
-[[hr:January]]
-[[io:January]]
-[[id:January]]
-[[iu:January]]
-[[is:January]]
-[[it:January]]
-[[kl:January]]
-[[ka:January]]
-[[csb:January]]
-[[kk:January]]
-[[sw:January]]
-[[ku:January]]
-[[lo:January]]
-[[lv:January]]
-[[lb:January]]
-[[lt:January]]
-[[ln:January]]
-[[hu:January]]
-[[mg:January]]
-[[ml:January]]
-[[my:January]]
-[[nl:January]]
-[[ja:January]]
-[[no:January]]
-[[oc:January]]
-[[om:January]]
-[[uz:January]]
-[[km:January]]
-[[pl:January]]
-[[pt:January]]
-[[ro:January]]
-[[ru:January]]
-[[simple:January]]
-[[so:January]]
-[[sr:January]]
-[[fi:January]]
-[[sv:January]]
-[[ta:January]]
-[[te:January]]
-[[tg:January]]
-[[tr:January]]
-[[uk:January]]
-[[vi:January]]
-[[vo:January]]
-[[zh:January]]
-===Julius===
-Pope Julius: 
-
-===Alternative forms===
-* [[Pope July]]
-* [[Pope Julio]]
-
-===Etymology===
-Unknown.  Presumably named after [[w:Pope Julius II|Pope Julius II]], the Warrior Pope.
-
-===Proper noun===
-{{en-proper noun}}
-
-# {{obsolete}} A sixteenth-century [[gambling]] [[card game]] about which little is known.
-#* {{quote-book|year=1525|author=[[w:John Skelton|John Skelton]]|url=http://books.google.com/books?id=H1g1AAAAMAAJ|title=Speake, Parrot|title=Speke, parrot|passage=Of '''Pope Julius''' cardys he ys chefe cardynall.}}
-#* {{quote-book|year=1532|date=November 30|title=Privy Purse Expences of King Henry VIII'', 30 Novembre 1532|passage=Item the laste day delived unto the kings grace whiche his grace lost at '''pope July''' game wt my lady marquess and m Weston xvj cor}}
-#* {{quote-book|year={{circa2|1596}}|author=Sir John Harington|title=A Treatise on Playe|quoted_in=Nugae antiquae|year_published=1804|passage='''Pope Julio''' (if I fail not in the name, and sure I am that there is a game of the cards after his name) was a great and wary player, a great vertue in a man of his profession}}
-
-[[Category:en:Card games]]
-***July***
-July: 
-
-===Etymology===
-{{etyl|enm}} {{term|lang=enm|iulius}}, from {{etyl|xno}} {{term|lang=xno|julie}}, from {{etyl|fro}} {{term|lang=fro|jule}}, from {{etyl|la}} {{term|iulius|iūlius|lang=la}} ([[Gaius Julius Caesar]]'s month), perhaps a contraction of *''Iovilios'', "descended from [[Jove]]", from {{etyl|la}} {{term|lang=la|Iuppiter}}, from [[Proto-Indo-European]] *''dyeu-pəter-'', vocative case of '''[[godfather]]''', from Proto-Indo-European *''deiw-os'', god, + *''pəter'', father
-
-===Pronunciation===
-* {{enPR|jo͝o-līʹ}}, {{IPA|/dʒʊˈlaɪ/}}, {{X-SAMPA|/dZU"laI/}}
-* {{audio|en-us-July.ogg|Audio (US)}}
-* {{rhymes|aɪ}}
-
-===Proper noun===
-{{en-proper noun|Julys}}
-
-# The seventh [[month]] of the [[Gregorian calendar]], following [[June]] and preceding [[August]]. Abbreviation: '''[[Jul]]''' or '''[[Jul.]]'''
-
-====Derived terms====
-{{der-top}}
-* [[Black July]]
-* [[Christmas in July]]
-* [[Fourth of July]]
-* [[Holiday in July]]
-* {{w|July 1 marches}}
-* {{w|July 7 bombings}}
-* [[July 20 Plot]]
-* {{w|July Column}}
-* [[July Cup]]
-{{der-mid}}
-* [[July Days]]
-* [[July Monarchy]]
-* [[July Morning]]
-* [[July Ordinances]]
-* [[July Revolution]]
-* [[July Stakes]]
-* [[July Ultimatum]]
-* [[mid-July]]
-{{der-bottom}}
-
-====Related terms====
-* {{l|en|Julius}}
-
-====Translations====
-{{trans-top|seventh month of the Gregorian calendar}}
-* Abaza: {{tø|abq|пхынчыльа}}
-* Abkhaz: {{t|ab|ҧхынгәы|tr=ṗĥəngwə}}
-* Afrikaans: {{t+|af|Julie|xs=Afrikaans}}
-* Alabama: [[hasiholtina istontóklo]]
-* Albanian: {{t|sq|korrik|xs=Albanian}}
-* Alutiiq: {{tø|ems|Amartut Iraluat}}
-* Amharic: {{t|am|ጁላይ|tr=julay|sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Niiʼ Dichíhé}}
-* Arabic: {{t|ar|يوليو|alt=يُولْيُو|tr=yúlyu|m}}, {{t|ar|تموز|alt=تَمّوزٌ|tr=tammūz|m}}
-* Aragonese: {{t|an|chulio|m}}
-* Armenian: {{t+|hy|հուլիս|tr=hulis}}
-*: Old Armenian: {{tø|xcl|յուլիս|tr=yulis|sc=Armn|xs=Old Armenian}}
-* Asturian: {{t|ast|xunetu|m}}
-* Azeri: {{t+|az|iyul|xs=Azeri}}
-* Basque: {{t+|eu|uztail|xs=Basque}}
-* Belarusian: {{t-|be|ліпень|tr=lípen’|xs=Belarusian}}
-* Bengali: {{t-|bn|জুলাই|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|julae}}
-* Breton: {{t|br|Gouere}}, miz Gouere
-* Bulgarian: {{t|bg|юли|m|tr=júli}}
-* Burmese: {{t|my|ဇူလိုင်|sc=Mymr|tr=zulaing}}
-* Catalan: {{t+|ca|juliol|m}}
-* Cherokee: {{t|chr|ᎫᏰᏉᏂ|tr=Guyequoni|sc=Cher}}
-* Chinese:
-*: Mandarin: {{t|cmn|七月}}, {{t|cmn|7月|tr=qīyuè}}
-* Chuvash: {{tø|cv|утă|sc=Cyrl|xs=Chuvash|tr=uta}}
-* Czech: {{t+|cs|červenec|m}}
-* Dakota: {{tø|dak|Mdokecokawi}}
-* Danish: {{t+|da|juli}}
-* Dutch: {{t+|nl|juli}}
-* Esperanto: {{t+|eo|julio|xs=Esperanto}}, {{t-|eo|Julio|xs=Esperanto}}
-* Estonian: {{t+|et|juuli}}
-* Ewe: {{t|ee|Siamlɔm}}, {{t|ee|Yuli}}
-* Faroese: {{t-|fo|juli|xs=Faroese}}
-* Finnish: {{t+|fi|heinäkuu}}
-* French: {{t+|fr|juillet|m}}
-* Friulian: {{t|fur|lui}}
-* Galician: {{t|gl|xullo|m}}
-* Georgian: {{t-|ka|ივლისი|tr=ivlisi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Juli|m}}, {{t+|de|Heuert|m}}
-* Gilbertese: {{tø|gil|Turai|sc=Cyrl}}
-* Greek: {{t+|el|Ιούλιος|m|tr=Ioúlios}}, {{t+|el|Ιούλης|m|tr=Ioúlis}}, {{t|el|Αλωνάρης|m|tr=Alonáris}} {{qualifier|month of the threshing}}
-* Greenlandic: {{t+|kl|Juuli|xs=Greenlandic}}
-* Haitian Creole: {{tø|ht|jiyè}}
-* Hawaiian: {{tø|haw|Iulai}}
-* Hebrew: {{t|he|יולי|alt=יוּלִי|tr=yúli}}
-* Hindi: {{t-|hi|जूलाई|tr=jūlāī|xs=Hindi}}
-* Hungarian: {{t+|hu|július}}
-* Icelandic: {{t+|is|júlí|m}}, {{t-|is|júlímánuður|m}}
-* Ido: {{t|io|julio}}
-* Indonesian: {{t-|id|juli|xs=Indonesian}}
-* Interlingua: {{t|ia|julio}}
-* Irish: {{t+|ga|Iúil|m|xs=Irish}}
-* Italian: {{t+|it|luglio|m}}
-* Japanese: {{t+|ja|七月|tr=shichigatsu}}, {{t+|ja|文月|tr=ふみづき, fumizuki, ふづき, fuzuki}}
-* Javanese: {{t|jv|juli}}
-* Kazakh: {{t|kk|шілде|tr=şilde|sc=Cyrl}}
-* Khmer: {{t|km|កក្កដា|tr=gukgădā}}
-* Kongo: {{tø|kg|yuli}}
-* Korean: {{t+|ko|칠월|tr=hilweol|sc=Kore}}
-{{trans-mid}}
-* Latin: {{t+|la|iulius|alt=iūlius}}
-* Latvian: {{t+|lv|jūlijs|m|xs=Latvian}}
-* Limburgish: {{t|li|Juli}}
-* Lingala: {{t|ln|yúli}}
-* Lithuanian: {{t+|lt|liepa|f|xs=Lithuanian}}
-* Livonian: {{t|liv|jūlij}}, {{t|liv|ainakū}}
-* Low German: {{t|nds|Juli|m}}, {{t|nds|Julimaand|m}}
-* Luxembourgish: {{t|lb|Juli|m}}, {{t|lb|Heemount|m}}
-* Macedonian: {{t+|mk|јули|m|tr=júli}}
-* Malay: {{t|ms|julai|xs=Malay}}
-* Maltese: {{t-|mt|Lulju|xs=Maltese}}
-* Manchu: ([[nadan biya]])
-* Maori: {{t|mi|hūrae}}
-* Marathi: {{t|mr|जुलै}}
-* Montagnais: {{tø|moe|shetan-pishimᵘ}}
-* Navajo: {{tø|nv|Yaʼiishjáástsoh}}
-* Neapolitan: {{t|nap|iuglio|m}}, {{t|nap|lùglio}}
-* Northern Sotho: {{tø|nso|Mosegamanye}}
-* Norwegian: {{t+|no|juli}}
-* Novial: {{t|nov|julie}}
-* Occitan: {{t|oc|julhet|m}}
-* Ojibwe: {{t|oj|aabita-niibino-giizis}}
-* Old English: {{t-|ang|se æfterra liþa|m|alt=se æfterra līþa|xs=Old English}}
-* Oriya: {{t|or|ଜୁଲାଇ|sc=Orya}}
-* Ossetian: {{tø|os|июль|tr=ijul'|sc=Cyrl|xs=Ossetian}}
-* Persian: {{t|fa|ژوئیه|tr=žu’iye}}
-* Polish: {{t+|pl|lipiec|m}}
-* Portuguese: {{t+|pt|julho|m}}
-* Romanian: {{t+|ro|iulie}}, {{qualifier|popular}} {{t+|ro|cuptor}}
-* Romansch: {{t|rm|fanadour|m}}, {{t|rm|fanadur|m}}, {{t|rm|fenadur|m}}, {{t|rm|lügl|m}}
-* Russian: {{t+|ru|июль|m|tr=ijúl’}}
-* Samoan: {{t|sm|iulai}}
-* Scots: {{tø|sco|Julie|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|Iuchar|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|јул|m|sc=Cyrl}}, {{t|sh|јули|m}}, {{t|sh|српањ}}
-*: Roman: {{t|sh|jul|m}}, {{t|sh|juli|m}}, {{t|sh|srpanj}}
-* Sicilian: {{t|scn|giugnettu|m}}
-* Skolt Sami: {{tø|sms|suei´nnmään}}
-* Slovak: {{t+|sk|júl}}
-* Slovene: {{t|sl|júlij|m}}
-* Sotho: {{t|st|Phupu|xs=Sotho}}
-* Spanish: {{t+|es|julio|m}}
-* Swati: {{t|ss|Khólwáne}}
-* Swedish: {{t+|sv|juli}}
-* Tagalog: {{t+|tl|Hulyo|xs=Tagalog}}
-* Tahitian: {{tø|ty|tiurai}}
-* Tajik: {{t-|tg|июл|tr=ijul|sc=Cyrl|xs=Tajik}}
-* Tatar: {{t-|tt|yül|xs=Tatar}}
-* Telugu: {{t|te|జూలై|tr=july}}
-* Thai: {{t|th|กรกฎาคม|tr=gà rā gà daa khohm}}
-* Tok Pisin: {{t|tpi|julai}}
-* Tongan: {{t|to|siulai}}
-* Turkish: {{t+|tr|temmuz}}
-* Ukrainian: {{t+|uk|липень|m|tr=lýpen’|xs=Ukrainian}}
-* Urdu: {{t|ur|جولائ}}
-* Vietnamese: {{t|vi|tháng bảy}}, {{t|vi|tháng 7}} (月七, 月7)
-* Võro: {{t|vro|hainakuu}}
-* Walloon: {{t|wa|djulete}}
-* Welsh: {{t+|cy|Gorffennaf|m|xs=Welsh}}
-* West Frisian: {{t|fy|july}}, {{t|fy|haaimoanne}}
-* Wolof: {{t|wo|Sulet}}
-* Yiddish: {{t+|yi|יולי|m|tr=yuli|sc=Hebr|xs=Yiddish}}
-{{trans-bottom}}
-
-====See also====
-* [[7/7]]
-* [[July-flower]]
-* {{list|en|Gregorian calendar months}}
-
-[[Category:English eponyms]]
-
-[[ast:July]]
-[[az:July]]
-[[zh-min-nan:July]]
-[[cs:July]]
-[[cy:July]]
-[[da:July]]
-[[de:July]]
-[[et:July]]
-[[el:July]]
-[[es:July]]
-[[eo:July]]
-[[eu:July]]
-[[fa:July]]
-[[fr:July]]
-[[ga:July]]
-[[gl:July]]
-[[ko:July]]
-[[hy:July]]
-[[hr:July]]
-[[io:July]]
-[[id:July]]
-[[iu:July]]
-[[is:July]]
-[[it:July]]
-[[kl:July]]
-[[ka:July]]
-[[csb:July]]
-[[kk:July]]
-[[sw:July]]
-[[ku:July]]
-[[lo:July]]
-[[lv:July]]
-[[lb:July]]
-[[lt:July]]
-[[hu:July]]
-[[mg:July]]
-[[ml:July]]
-[[my:July]]
-[[nl:July]]
-[[ja:July]]
-[[no:July]]
-[[oc:July]]
-[[om:July]]
-[[uz:July]]
-[[km:July]]
-[[pl:July]]
-[[pt:July]]
-[[ro:July]]
-[[ru:July]]
-[[tn:July]]
-[[simple:July]]
-[[so:July]]
-[[sr:July]]
-[[fi:July]]
-[[sv:July]]
-[[th:July]]
-[[tg:July]]
-[[uk:July]]
-[[vo:July]]
-[[zh:July]]
-***June***
-June: 
-
-===Etymology===
-From {{etyl|enm|en}} {{term|jun|lang=enm}}, {{term|june|lang=enm}}, re-[[Latinize]]d from {{etyl|enm|en}} {{term|juyng|lang=enm}}, from {{etyl|fro|en}} {{term|juing|lang=fro}}, from {{etyl|la|en}} {{term|iunius|iūnius|lang=la}}, the month of the goddess {{term|Iuno||Juno|lang=la}}, perhaps from {{proto|Indo-European|yuwn̥kós|lang=en}}, from {{proto|Indo-European|yew-|vital force, youthful vigor|lang=en|title=}}.
-
-===Pronunciation===
-* {{enPR|jo͞on}}, {{IPA|/dʒuːn/|/dʒjuːn/}}, {{X-SAMPA|/dZu:n/}}
-* {{audio|en-us-June.ogg|Audio (US)}}
-* {{rhymes|uːn}}
-
-===Proper noun===
-{{en-proper noun|Junes}}
-
-# The sixth [[month]] of the [[Gregorian calendar]], following [[May]] and preceding [[July]]. Abbreviation: '''[[Jun]]''' or '''[[Jun.]]'''
-# {{given name|female|from=English}} for a girl born in June, used since the end of the 19th century.
-
-====Derived terms====
-{{rel-top3|Derived terms}}
-* [[bird of June]]
-* [[Glorious First of June]]
-* [[June-apple]]
-* [[Juneberry]]
-* [[June beetle]]
-* [[June Bootids]]
-* [[June bug]]
-* [[June cold]]
-{{rel-mid3}}
-* [[June Days]]
-* [[June Days Uprising]]
-* [[June drop]]
-* [[June gloom]]
-* [[June grass]]
-* [[June List]]
-* [[June Movement]]
-{{rel-mid3}}
-* [[June solstice]]
-* [[June sucker]]
-* [[Juneteenth]]
-* [[June War]]
-* [[June Week]]
-* [[Junie]]
-* [[mid-June]]
-* {{w|Movement 2 June}}
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|sixth month of the Gregorian calendar}}
-* Abaza: {{tø|abq|пхынхъа}}
-* Abkhaz: {{Cyrl|[[рашәара]]}} (rašwara)
-* Afrikaans: {{t+|af|Junie|xs=Afrikaans}}
-* Alabama: [[hasiholtina istahánnàali]]
-* Albanian: {{t|sq|qershor}}
-* Alutiiq: {{tø|ems|Naut'staat Iraluat}}
-* Amharic: {{t|am|ጁን|tr=jun|sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Itsáh Bizhaazh}}
-* Arabic: {{t|ar|يونيو|alt=يُونْيُو|tr=yúnyu|m}}, {{t|ar|حزيران|alt=حَزيرانٌ|tr=ħazirān|m}}
-* Aragonese: {{t|an|chunio|m}}
-* Armenian: {{t+|hy|հունիս|tr=hunis}}
-*: Old Armenian: {{t-|hy|յունիս|tr=yunis}}
-* Asturian: {{t|ast|xunu|m}}
-* Azeri: {{t+|az|iyun|xs=Azeri}}
-* Basque: {{t+|eu|ekain|xs=Basque}}
-* Bengali: {{t-|bn|জুন|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|jun}}
-* Breton: {{t+|br|Mezheven|xs=Breton}}, miz Mezheven
-* Bulgarian: {{t|bg|юни|m|tr=júni}}
-* Burmese: {{t|my|ဇွန်|sc=Mymr|tr=zun}}
-* Catalan: {{t+|ca|juny|m}}
-* Cherokee: {{t|chr|ᏕᎭᎷᏱ|tr=Dehaluyi|sc=Cher}}
-* Chinese:
-*: Mandarin: {{t|cmn|六月}}, {{t|cmn|6月|tr=liùyuè}}
-* Chuvash: [[śěrtme]], [[çĕртме]]
-* Cornish: mys [[Metheven]]
-* Czech: {{t+|cs|červen|m}}
-* Dakota: {{tø|dak|Wažuštecašawi}}
-* Danish: {{t+|da|juni}}
-* Dutch: {{t+|nl|juni}}
-* Esperanto: {{t+|eo|junio|xs=Esperanto}},  {{t-|eo|Junio|xs=Esperanto}}
-* Estonian: {{t+|et|juuni}}
-* Ewe: {{t|ee|Masa}}, {{t|ee|Yuni}}
-* Faroese: {{t-|fo|juni|xs=Faroese}}
-* Fijian: {{t|fj|June}}
-* Finnish: {{t+|fi|kesäkuu}}
-* French: {{t+|fr|juin|m}}
-* Friulian: {{t|fur|zugn|m}}
-* Galician: {{t|gl|xuño|m}}
-* Georgian: {{t-|ka|ივნისი|tr=ivnisi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Juni|m}}, {{t+|de|Brachet|m}}
-** Alemmanic: [[Juni]] {{m}}
-* Gilbertese: {{tø|gil|Tune|sc=Cyrl}}
-* Greek: {{t+|el|Ιούνιος|m|tr=Ioúnios}}, {{t+|el|Ιούνης|m|tr=Ioúnis}}, {{t|el|Θεριστής|m|tr=Theristís}} {{qualifier|month of the reaping}}
-* Greenlandic: {{t+|kl|Juuni|xs=Greenlandic}}
-* Haitian Creole: {{tø|ht|jen}}
-* Hawaiian: {{tø|haw|Iune}}
-* Hebrew: {{t|he|יוני|alt=יוּנִי|tr=yúni}}
-* Hindi: {{t|hi|जून|tr=jūn}}
-* Hungarian: {{t+|hu|június}}
-* Icelandic: {{t+|is|júní|m}}, {{t-|is|júnímánuður|m}}
-* Ido: {{t|io|junio}}
-* Indonesian: {{t-|id|juni|xs=Indonesian}}
-* Interlingua: {{t|ia|junio}}
-* Interlingue: {{t|ie|junio}}
-* Irish: {{t+|ga|Meitheamh|m|xs=Irish}}
-* Italian: {{t+|it|giugno|m}}
-* Japanese: {{t+|ja|六月|tr=ろくがつ, rokugatsu}}, {{t+|ja|水無月|tr=みなづき, minazuki}}
-* Javanese: {{t|jv|juni}}
-* Kabuverdianu:
-** [[Badiu]] and [[ALUPEC]] or [[ALUPEK]]: [[junhu]]
-** São Vicente: [[junh']]
-* Kannada: {{t|kn|ಜೂನ}}
-* Kashubian: {{t|csb|czerwińc}}
-* Kazakh: {{t|kk|маусым|tr=mawsım|sc=Cyrl}}
-* Khmer: {{t|km|មិថុនា|tr=mitonā}}
-* Kongo: {{tø|kg|yuni}}
-{{trans-mid}}
-* Korean: {{t+|ko|유월|tr=yuwol|sc=Kore}}, {{t|ko|6월|tr=yuweol}} (六月, 6月)
-* Kurdish: {{t+|ku|pûşber|f}}, {{t+|ku|hezîran|f}}, {{t+|ku|xezîran|f}}
-* Latin: {{t+|la|iunius|alt=iūnius}}
-* Latvian: {{t+|lv|jūnijs|xs=Latvian}}
-* Limburgish: {{t|li|juni}}
-* Lingala: {{t|ln|yúni}}
-* Lithuanian: {{t+|lt|birželis|m|xs=Lithuanian}}
-* Livonian: {{t|liv|jūnij}}, {{t|liv|jõņpǟva kū}}
-* Low German: {{t|nds|Juni|m}}, {{t|nds|Junimaand|m}}
-* Luxembourgish: {{t|lb|Juni|m}}, {{t|lb|Broochmount|m}}
-* Macedonian: {{t+|mk|јуни|m|tr=júni}}
-* Malay: {{t-|ms|jun|xs=Malay}}
-* Malayalam: {{t|ml|ജൂണ്‍}}
-* Maltese: {{t-|mt|Ġunju|xs=Maltese}}
-* Manchu: (ninggun biya)
-* Maori: {{t|mi|hune}}
-* Marathi: {{t|mr|जून}}
-* Montagnais: {{tø|moe|uapikun-pishimᵘ}}
-* Navajo: {{tø|nv|Yaʼiishjááshchilí}}
-* Neapolitan: {{t|nap|giùgno}}
-* Northern Sami: [[geassemánnu]]
-* Northern Sotho: {{tø|nso|Phupu}}
-* Norwegian: {{t+|no|juni}}
-* Novial: {{t|nov|june}}
-* Occitan: {{t|oc|junh|m}}
-* Ojibwe: {{t|oj|ode'imini-giizis}}
-* Old English: {{t-|ang|se ærra liþa|m|alt=se ǣrra līþa|xs=Old English}}
-* Oriya: {{t|or|ଜୁନ୍|sc=Orya}}
-* Ossetian: {{tø|os|июнь|tr=ijun'|sc=Cyrl|xs=Ossetian}}
-* Persian: {{t|fa|ژوئن|tr=žu’an}}
-* Polish: {{t+|pl|czerwiec|m}}
-* Portuguese: {{t+|pt|junho|m}}
-* Romanian: {{t+|ro|iunie}}, {{qualifier|pop}} {{t+|ro|cireșar}}
-* Romansch: {{t|rm|gün|m}}, {{t|rm|zarcladour|m}}, {{t|rm|zarcladur|m}}, {{t|rm|zercladur|m}}
-* Russian: {{t+|ru|июнь|m|tr=ijún’}}
-* Samoan: {{t|sm|iune}}
-* Scots: {{tø|sco|Juin|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|Ògmhios|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|јун|m|sc=Cyrl}}, {{t|sh|јуни|m|sc=Cyrl}}
-*: Roman: {{t|sh|jun|m}}, {{t|sh|juni|m}}, {{t|sh|lipanj|m}} {{qualifier|Croatia}}
-* Sicilian: {{t|scn|giugnu|m}}
-* Skolt Sami: {{tø|sms|ǩie´ssmään}}
-* Slovak: {{t+|sk|jún|m}}
-* Slovene: {{t|sl|júnij|m}}
-* Sotho: {{t|st|Phupjane|xs=Sotho}}
-* Spanish: {{t+|es|junio|m}}
-* Sundanese: [[juni]]
-* Swati: {{t|ss|íNhlaba}}
-* Swedish: {{t+|sv|juni}}
-* Tagalog: {{t+|tl|Hunyo|xs=Tagalog}}
-* Tahitian: {{tø|ty|tiunu}}
-* Tajik: {{t-|tg|июн|tr=ijun|sc=Cyrl|xs=Tajik}}
-* Tamil: {{t|ta|ஜூன்|xs=Tamil}}
-* Tatar: {{t-|tt|yün|xs=Tatar}}
-* Telugu: {{t|te|జూన్|tr=june}}
-* Thai: {{t|th|มิถุนายน|tr=mī thòò naa yohn}}
-* Tok Pisin: {{t|tpi|june}}
-* Tongan: {{t|to|sune}}
-* Turkish: {{t+|tr|haziran}}
-* Ukrainian: {{t+|uk|червень|m|tr=čérwen’|xs=Ukrainian}}
-* Vietnamese: [[tháng 6]], [[tháng sáu]] (月六, 月6)
-* Volapük: {{t|vo|yunul}}
-* Võro: {{t|vro|piimäkuu}}
-* Walloon: {{t|wa|djun}}
-* Welsh: {{t+|cy|Mehefin|m|xs=Welsh}}
-* West Frisian: {{t|fy|juny}}, {{t|fy|simmermoanne}}
-* Wolof: {{t|wo|Suwe}}
-* Yiddish: {{t+|yi|יוני|m|tr=yuni|sc=Hebr|xs=Yiddish}}
-{{trans-bottom}}
-
-====See also====
-* {{list|en|Gregorian calendar months}}
-
-----
+<h4>External links</h4>
 
+<h3>Verb</h3>
+Conjugation
+<ol><li> Meaning 1</li>
+<ul><li> Quotations</li>
+</ul>
+</ol>
+     etc.
+<h4>Usage notes</h4>
 
-===layout===
-Wiktionary:Entry layout explained: 
+<h4>Synonyms</h4>
 
-===Noun===
-{{en-noun}}
+<h4>Antonyms</h4>
 
-# A piece of [[furniture]] to [[sleep]] on.
+<h4>Derived terms</h4>
 
-===References===        
-* ''The Oxford Paperback Dictionary''   
-</pre>
+<h4>Related terms</h4>
 
-===Variations for languages other than English===
-Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.
+<h4>Descendants</h4>
 
-Some languages do have characteristics that require variation from the standard format.  For links to these variations see [[Wiktionary:Language considerations]].
+<h4>References</h4>
 
+<h4>External links</h4>
 
-Wiktionary:Entry layout explained: 
-===Alternative forms===
-===Etymology===
-===Pronunciation===
-* Phonetic transcriptions
-* Audio files in any relevant dialects
-* Rhymes
-* Homophones
-* Hyphenation
-===Noun===
-Declension
-# Meaning 1
-#* Quotations
-# Meaning 2
-#* Quotations
-     etc.
-====Usage notes====
-====Synonyms====
-====Antonyms====
-====Derived terms====
-====Related terms====
-====Translations====
-====References====
-====External links====
-===Verb===
-Conjugation
-# Meaning 1
-#* Quotations
-     etc.
-====Usage notes====
-====Synonyms====
-====Antonyms====
-====Derived terms====
-====Related terms====
-====Translations====
-====Descendants====
-====References====
-====External links====
-===Anagrams===
+<h3>Anagrams</h3>
 ---- (Dividing line between languages)
-
 ***lexicography***
-lexicography: 
-{{wikipedia}}
-
-===Etymology===
+lexicography:
+{wikipedia}
+<h3>Etymology</h3>
 {{confix|lexico|graphy}}
-
-===Noun===
+<h3>Noun</h3>
 {{en-noun|-}}
+<ol><li> The art or craft of compiling, writing and editing dictionaries.</li>
+<li> {linguistics} The scholarly discipline of analyzing and describing the semantic, syntagmatic and paradigmatic relationships within the lexicon (vocabulary) of a language and developing theories of dictionary components and structures linking the data in dictionaries.</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> lexicographer</li>
+<li> lexicon</li>
+<li> lexicology</li>
+</ul>
 
-# The art or craft of compiling, writing and editing [[dictionary|dictionaries]].
-# {{linguistics}} The [[scholarly]] [[discipline]] of analyzing and describing the [[semantic]], [[syntagmatic]] and [[paradigmatic]] relationships within the [[lexicon]] (vocabulary) of a language and developing theories of dictionary components and structures linking the data in dictionaries.
-
-====Related terms====
-* [[lexicographer]]
-* [[lexicon]]
-* [[lexicology]]
-
-====Translations====
-{{trans-top|art or craft of writing dictionaries}}
-* Catalan: {{t|ca|lexicografia|f}}
-* Chinese:
-*: Mandarin: {{t|zh|詞典學|sc=Hani}}, {{t|zh|词典学|tr=cídiǎnxué|sc=Hani}}, {{t|zh|辭書學|sc=Hani}}, {{t|zh|辞书学|tr=císhūxué|sc=Hani}}, {{t|zh|詞典編輯|sc=Hani}}, {{t|zh|词典编辑|tr=cídiǎn biānjí|sc=Hani}}
-* Croatian: {{t-|hr|leksikografija|f}}
-* Czech: {{t-|cs|lexikografie|f}}
-* Danish: {{t|da|leksikografi}}
-* Dutch: {{t+|nl|lexicografie|f}}
-* Esperanto: {{t|eo|leksikografio}}
-* Finnish: {{t-|fi|leksikografia}}
-* French: {{t+|fr|lexicographie|f}}
-* German: {{t+|de|Lexikographie|f}}
-* Greek: {{t|el|λεξικογραφία|f|tr=leksikografía|sc=Grek}}
-* Icelandic: {{t|is|orðabókafræði|f}}, {{t|is|orðabókargerð|f}}, {{t|is|samning orðabókar|f}}
-* Interlingua: [[lexicographia]]
-* Irish: {{t-|ga|foclóireacht|f|xs=Irish}}
-{{trans-mid}}
-* Italian: {{t+|it|lessicografia|f}}
-* Japanese: {{t|ja|辞書編集|tr=じしょへんしゅう, jisho henshū|sc=Jpan}}
-* Khmer: {{t|km|វចនលេខន៍|tr=vaj ja nak lek|sc=Khmr}}
-* Korean: {{t|ko|사전학|tr=sajeonhak|sc=Kore}} ({{t|ko|詞典學|sc=Kore}})
-* Lithuanian: {{t-|lt|leksikografija|f|xs=Lithuanian}}
-* Norwegian: {{t|no|leksikografi}}
-* Persian: {{t|fa|فرهنگ‌نویسی|tr=farhang-navisi|sc=fa-Arab}}
-* Polish: {{t|pl|leksykografia|f}}
-* Portuguese: {{t+|pt|lexicografia|f}}
-* Russian: {{t+|ru|лексикография|f|tr=leksikográfija}}
-* Scottish Gaelic: {{t|gd|faclaireachd|f}}
-* Spanish: {{t-|es|lexicografía|f}}
-* Swedish: {{t|sv|lexikografi}}
-* Tamil: {{t|ta|பேரகரமுதலி|sc=Taml}}
-* Vietnamese: {{t|vi|từ điển học}} ({{t|vi|詞典學}})
-{{trans-bottom}}
-
-[[Category:en:Lexicography]]
-
-[[ca:lexicography]]
-[[et:lexicography]]
-[[el:lexicography]]
-[[fr:lexicography]]
-[[ko:lexicography]]
-[[io:lexicography]]
-[[id:lexicography]]
-[[kn:lexicography]]
-[[my:lexicography]]
-[[pl:lexicography]]
-[[fi:lexicography]]
-[[sv:lexicography]]
-[[ta:lexicography]]
-[[tr:lexicography]]
-[[vi:lexicography]]
-[[zh:lexicography]]
 ***livre***
-livre: 
+livre:
 {{wikipedia|dab=livre}}
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|fr}} {{term|livre|lang=fr}}.
-
-===Noun===
-{{en-noun}}
-
-# {{historical}} A unit of [[currency]] formerly used in France, divided into 20 [[sol]]s or [[sou]]s.
-#* '''1992''', {{w|Hilary Mantel}}, ''A Place of Greater Safety'', Harper Perennial 2007, p. 115:
-#*: They like to see them awarded comfortable pensions. Is it 700,000 '''livres''' a year to the Polignac family?
-#*'''2002''', {{w|Colin Jones (historian)|Colin Jones}}, ''The Great Nation'', Penguin 2003, p. 30:
-#*:He never, it should be noted, totally renounced his inheritance: a critic of the court round, he benefited to the tune of a cool two million '''livres''' a year from royal largesse [...].
-
-===Anagrams===
-* [[liver#English|liver]], [[rivel#English|rivel]], [[viler#English|viler]]
-
+<h3>Noun</h3>
+{en-noun}
+<ol><li> {historical} A unit of currency formerly used in France, divided into 20 sols or sous.</li>
+<ul><li> <b>1992</b>, {{w|Hilary Mantel}}, <em>A Place of Greater Safety</em>, Harper Perennial 2007, p. 115:</li>
+<ul><li> They like to see them awarded comfortable pensions. Is it 700,000 <b>livres</b> a year to the Polignac family?</li>
+</ul>
+<li><b>2002</b>, {{w|Colin Jones (historian)|Colin Jones}}, <em>The Great Nation</em>, Penguin 2003, p. 30:</li>
+<ul><li>He never, it should be noted, totally renounced his inheritance: a critic of the court round, he benefited to the tune of a cool two million <b>livres</b> a year from royal largesse [...].</li>
+</ul>
+</ul>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> liver, rivel, viler</li>
+</ul>
 ----
-
-
 ***march***
-march: 
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/mɑːtʃ/}}, {{X-SAMPA|/mA:tS/}}
-* {{a|US}} {{enPR|märch}}, {{IPA|/mɑrtʃ/}}, {{X-SAMPA|/mArtS/}}
-* {{audio|en-us-March.ogg|Audio (US)}}
-* {{rhymes|ɑː(r)tʃ}}
-
-===Etymology 1===
-{{etyl|enm}} ''marchen'' from {{etyl|frm}} {{term|marcher|lang=frm||to march, to walk}}, 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|-}} ''[[mearc]]'', ''[[gemearc|ġemearc]]'' "mark, boundary"
-
-====Noun====
+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> {{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"
+<h4>Noun</h4>
 {{en-noun|es}}
-
-# A [[formal]], [[rhythmic]] way of [[walk]]ing, used especially by [[soldier]]s, [[band]]s and in [[ceremony|ceremonies]].
-# A [[political]] [[rally]] or [[parade]]
-# Any [[song]] in the [[genre]] of [[music]] written for marching (see [[w:March (music)|Wikipedia's article on this type of music]])
-# Steady forward movement or progression.
-#: ''The '''march''' of time.''
-# {{obsolete}} [[smallage|Smallage]].
-
-=====Synonyms=====
-* {{sense|steady forward movement or progression}} [[process]]
-* {{sense|political rally}} [[protest]], [[parade]], [[rally]]
-* {{sense|steady forward movement}} [[advancement]], [[progression]]
-* {{sense|smallage}} [[smallage]]
-
-=====Derived terms=====
-{{rel-top4|Terms derived from ''march'' (noun)}}
-* [[w:Bonus March|Bonus March]]
-* [[w:Cape Town Peace March|the Cape Town Peace March]]
-* [[w:Carnival Road March|Carnival Road March]]
-* [[column of march]]
-* [[concert march]]
-* [[cortical march]]
-* [[countermarch]]
-* [[dead march]]
-* [[death march]]
-* [[double march]]
-* [[dyke march]]
-* [[epileptic march]]
-* [[flank march]]
-* [[force-march]]
-* [[forced march]]
-* [[freedom march]]
-* [[fore-march]]
-* [[frog-march]], [[frog march]], [[frog's march]]
-* [[funeral march]]
-* [[gain a march on]], [[get a march on]]
-* [[w:Global Marijuana March|Global Marijuana March]]
-* [[w:Godless Americans March on Washington|Godless Americans March on Washington]]
-* [[grand march]]
-* [[w:Green March|Green March]]
-* [[w:Horsemeat March|Horsemeat March]]
-* [[hour of march]]
-{{rel-mid4}}
-* [[hunger march]]
-* [[in a full march]]
-* [[in march]]
-* [[Jacksonian march]]
-* [[w:Jäger March|the Jäger March]]
-* [[w:Jarrow March|Jarrow March]]
-* [[Jarvis march]]
-* [[w:July 1 marches|July 1 Marches]]
-* [[line of march]]
-* [[w:Long March|the Long March]]
-* [[make a march]]
-* [[w:March Against Fear|March Against Fear]]
-* [[march battalion]]
-* [[w:March for Life|March for Life]]
-* [[w:March for Sultan Abdul-Mejid|March for Sultan Abdul-Mejid]]
-* [[w:March for Women's Lives|March for Women's Lives]]
-* [[march fracture]]
-* [[march haemoglobinuria]], [[march hemoglobinuria]]
-* [[March King|The March King]]
-* [[w:March of Dimes|March of Dimes]]
-* [[march of intellect]]
-* [[w:March of Maedhros|March of Maedhros]]
-* [[march of mind]]
-* [[w:March of the Living|March of Remembrance and Hope]]
-* [[w:March of the Living|March of the Living]]
-* [[w:March of the Soviet Tankmen|March of the Soviet Tankmen]]
-* [[w:The March of the Volunteers|The March of the Volunteers]]
-{{rel-mid4}}
-* [[march-on]]
-* [[w:March on Rome|March on Rome]]
-* [[w:March on Washington for Jobs and Freedom|March on Washington for Jobs and Freedom]]
-* [[march-order]]
-* [[march out]]
-* [[march-past]]
-* [[march-time]]<!--music term-->
-* [[march tumor]], [[march tumour]]
-* [[march to a different beat]], [[march to a different drummer]]
-* [[military march]]
-* [[w:Millennium March|Millennium March]]
-* [[w:Million Dads March Network|Million Dads March Network]]
-* [[w:Million Man March|Million Man March]]
-* [[w:Global Marijuana March|Million Marijuana March]]
-* [[w:Million Mom March|Million Mom March]]
-* [[w:Million Worker March|Million Worker March]]
-* [[minute of march]]
-* [[w:Mud March|Mud March]]
-* [[w:Notre Dame Victory March|Notre Dame Victory March]]
-* [[on a march]]
-* [[on the march]]
-* [[Orange march]]
-* [[outmarch]]<!--noun-->
-* [[peace march]]
-* [[w:People on the March|People on the March]]
-{{rel-mid4}}
-* [[w:Persian March|Persian March]]
-* [[Pride march]]
-* [[w:The Prince of Denmark's March|The Prince of Denmark's March]]
-* [[processional march]]
-* [[protest march]]
-* [[quick march]]
-* [[w:Radetzky March|Radetzky March]]
-* [[w:Rákóczi March|Rákóczi March]]
-* [[recessional march]]
-* [[recruitment marches]]
-* [[rogue's march]]
-* [[route march]], [[route-march]], [[routemarch]]
-* [[w:Salt March to Dandi|Salt March to Dandi]]
-* [[w:Selma to Montgomery Marches|the Selma to Montgomery Marches]]
-* [[w:Sherman's March to the Sea|Sherman's March to the Sea]]
-* [[w:Slavonic March|Slavonic March]]
-* [[slow march]]
-* [[snowball marches]]
-* [[w:Horsemeat March|Starvation March]]
-* [[steal a march]]
-* [[upon a march]]
-* [[w:Uygur March|Uygur March]]
-* [[w:Virgin Islands March|the Virgin Islands March]]
-* [[w:Waters of March|Waters of March]]
-* [[wedding march]]
-* [[w:Women's March to Versailles|Women's March to Versailles]]
-{{rel-bottom}}
-
-=====Related terms=====
-* [[démarche]]
-* [[volksmarch]]
-
-=====Translations=====
-{{trans-top|formal, rhythmic way of walking}}
-* Afrikaans: {{t|af|mars}}, {{t|af|marsjering}}
-* Arabic: {{t|ar|مسيرة|f|tr=masīra|sc=Arab}}
-* Armenian: {{t-|hy|քայլերթ|tr=k’aylert’}}
-* Catalan: [[marxa]] {{f}}
-* Chinese:
-*: Mandarin: {{t|zh|行進|sc=Hani}}, {{t|zh|行进|tr=xíngjìn|sc=Hani}}
-* Czech: {{t-|cs|pochod|m}}
-* Danish: {{t-|da|march}}
-* Dutch: {{t+|nl|mars}}
-* Estonian: {{t-|et|marss}}
-* Finnish: {{t-|fi|marssi}}
-* French: {{t|fr|marche|f}}
-* German: {{t+|de|Marsch|m}}
-* Hebrew: {{t|he|צעידה|f|tr=ts'idá}}
-* Icelandic: {{t-|is|marsering|f}}
-{{trans-mid}}
-* Italian: {{t+|it|marcia|f}}
-* Japanese: {{t|ja|行進|tr=こうしん, kōshin|sc=Jpan}}
-* Latvian: [[maršs]] {{m}}
-* Norwegian: {{t-|no|marsj|m}}
-* Polish: {{t+|pl|marsz|m}}
-* Portuguese: {{t+|pt|marcha|f}}
-* Russian: {{t+|ru|марш|m|tr=marš}}
-* Scots: {{tø|sco|mairch|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|màrsail|f|xs=Scottish Gaelic}}
-* Slovak: {{t-|sk|pochod|m}}
-* Slovene: {{t-|sl|marš|m}}
-* Spanish: {{t-|es|marcha|f}}
-* Swahili: {{t+|sw|machi|xs=Swahili}}
-* Swedish: {{t+|sv|marsch|c}}
-* Tagalog: [[martsa]]
-{{trans-bottom}}
-
-{{trans-top|political rally or parade}}
-* Afrikaans: {{t|af|optog}}, {{t|af|parade}}
-* Armenian: {{t-|hy|երթ|tr=ert’}}
-* Catalan: [[manifestació]] {{f}}
-* Czech: {{t-|cs|pochod|m}}
-* Danish: {{t-|da|march}}
-* Dutch: {{t+|nl|mars}}
-* Estonian: {{t-|et|marss}}
-* Finnish: {{t-|fi|marssi}}
-* French: {{t+|fr|défilé|m}}, {{t+|fr|manifestation|f}}
-* German: {{t+|de|Parade|f}}
-* Hebrew: [[מצעד]] (mits'ad) {{m}}, [[צעדה]] (tseadá) {{f}}
-* Icelandic: {{t+|is|ganga|f}}, {{t-|is|kröfuganga|f}}
-{{trans-mid}}
-* Italian: {{t+|it|marcia|f}}
-* Norwegian: {{t-|no|marsj|m}}
-* Polish: {{t+|pl|marsz|m}}
-* Portuguese: {{t-|pt|passeata|f}}, {{t+|pt|marcha|f}}
-* Russian: {{t+|ru|марш|m|tr=marš}}
-* Scots: {{tø|sco|mairch|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|màrsail|f|xs=Scottish Gaelic}}
-* Slovak: {{t-|sk|pochod|m}}
-* Spanish: {{t-|es|marcha|f}}, {{t+|es|manifestación|f}}
-* Swedish: {{t+|sv|marsch|c}}, {{t+|sv|tåg|n}}
-* Tagalog: [[martsa]]
-{{trans-bottom}}
-
-{{trans-top|song in the genre of music written for marching}}
-* Afrikaans: {{t|af|mars}}
-* Armenian: {{t-|hy|քայլերգ|tr=k’aylerg}}
-* Catalan: [[marxa]] {{f}}
-* Chinese:
-*: Mandarin: {{t|zh|行進曲|sc=Hani}}, {{t|zh|行进曲|tr=xíngjìnqū|sc=Hani}}
-* Czech: {{t-|cs|pochod|m}}
-* Danish: {{t-|da|march}}
-* Dutch: {{t+|nl|mars}}
-* Estonian: {{t-|et|marss}}
-* Finnish: {{t-|fi|marssi}}
-* French: {{t+|fr|marche|f}}
-* German: {{t+|de|Marsch|m}}, {{t-|de|Marschmusik|f}}
-* Hebrew: {{t|he|מארש|m|tr=marsh}}
-* Icelandic: {{t+|is|mars|m}}
-{{trans-mid}}
-* Italian: {{t+|it|marcia|f}}
-* Japanese: {{t|ja|行進|tr=こうしん, kōshin|sc=Jpan}}
-* Latvian: [[maršs]] {{m}}
-* Norwegian: {{t-|no|marsj|m}}
-* Polish: {{t+|pl|marsz|m}}
-* Portuguese: {{t+|pt|marcha|f}}
-* Russian: {{t+|ru|марш|m|tr=marš}}
-* Scots: {{tø|sco|mairch|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|màrsail|f|xs=Scottish Gaelic}}, {{t-|gd|caismeachd|f|xs=Scottish Gaelic}}
-* Slovak: {{t-|sk|pochod|m}}
-* Slovene: {{t-|sl|marš|m}}
-* Spanish: {{t-|es|marcha|f}}
-* Swedish: {{t+|sv|marsch|c}}
-* Tagalog: [[martsa]]
-{{trans-bottom}}
-
-{{trans-top|steady forward movement or progression}}
-* Afrikaans: {{t|af|optog}}, {{t|af|opmars}}
-* Catalan: [[pas#Catalan|pas]] {{m}}
-* Danish: {{t+|da|gang}}, {{t+|da|udvikling}}
-* Estonian: {{t-|et|marss}}
-* Finnish: {{t-|fi|marssi}}
-* German: {{t+|de|Fortgang|m}}, {{t+|de|Lauf|m}}
-* Icelandic: {{t-|is|gangur|m}}
-* Italian: {{t+|it|marcia|f}}
-{{trans-mid}}
-* Norwegian: {{t+|no|gang|m}}, {{t-|no|forløp|m}}
-* Polish: {{t+|pl|marsz|m}}
-* Portuguese: {{t+|pt|marcha|f}}
-* Russian: [[ход]] (χod) {{m}}, [[течение]] (tečénije) {{n}}
-* Scots: {{tø|sco|mairch|xs=Scots}}
-* Swahili: {{t+|sw|machi|xs=Swahili}}
-* Swedish: {{t-|sv|fortgång|c}}, {{t-|sv|framsteg|n}}, {{t-|sv|framåtskridande|n}}, {{t+|sv|utveckling|c}}
-* Tagalog: [[martsa]]
-{{trans-bottom}}
-
-{{trans-see|smallage}}
-
-{{checktrans-top}}
-* {{ttbc|br}}: [[kan-bale]] {{m}}, kanoù-bale {{p}}
-* {{ttbc|bg}}: [[марш]] (marš) {{m}}, [[маршируване]] (marširuvane) {{n}}
-* {{ttbc|lt}}: [[maršas]] {{m}}
-* {{ttbc|nap}}: [[ammarcia]] {{f}}
-* {{ttbc|ang}}: [[faru]] (1)
-* {{ttbc|sa}}: [[पदयात्रा]] (padayātrā)
-{{trans-bottom}}
-
-====Verb====
+<ol><li> A formal, rhythmic way of walking, used especially by soldiers, bands and in ceremonies.</li>
+<li> A political rally or parade</li>
+<li> Any song in the genre of music written for marching (see Wikipedia's article on this type of music)</li>
+<li> Steady forward movement or progression.</li>
+<ul><li> <em>The <b>march</b> of time.</em></li>
+</ul>
+<li> {obsolete} Smallage.</li>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|steady forward movement or progression}} process</li>
+<li> {{sense|political rally}} protest, parade, rally</li>
+<li> {{sense|steady forward movement}} advancement, progression</li>
+<li> {{sense|smallage}} smallage</li>
+</ul>
+
+<h5>Derived terms</h5>
+{{rel-top4|Terms derived from <em>march</em> (noun)}}
+<ul><li> Bonus March</li>
+<li> the Cape Town Peace March</li>
+<li> Carnival Road March</li>
+<li> column of march</li>
+<li> concert march</li>
+<li> cortical march</li>
+<li> countermarch</li>
+<li> dead march</li>
+<li> death march</li>
+<li> double march</li>
+<li> dyke march</li>
+<li> epileptic march</li>
+<li> flank march</li>
+<li> force-march</li>
+<li> forced march</li>
+<li> freedom march</li>
+<li> fore-march</li>
+<li> frog-march, frog march, frog's march</li>
+<li> funeral march</li>
+<li> gain a march on, get a march on</li>
+<li> Global Marijuana March</li>
+<li> Godless Americans March on Washington</li>
+<li> grand march</li>
+<li> Green March</li>
+<li> Horsemeat March</li>
+<li> hour of march</li>
+</ul>
+{rel-mid4}
+<ul><li> hunger march</li>
+<li> in a full march</li>
+<li> in march</li>
+<li> Jacksonian march</li>
+<li> the Jäger March</li>
+<li> Jarrow March</li>
+<li> Jarvis march</li>
+<li> July 1 Marches</li>
+<li> line of march</li>
+<li> the Long March</li>
+<li> make a march</li>
+<li> March Against Fear</li>
+<li> march battalion</li>
+<li> March for Life</li>
+<li> March for Sultan Abdul-Mejid</li>
+<li> March for Women's Lives</li>
+<li> march fracture</li>
+<li> march haemoglobinuria, march hemoglobinuria</li>
+<li> The March King</li>
+<li> March of Dimes</li>
+<li> march of intellect</li>
+<li> March of Maedhros</li>
+<li> march of mind</li>
+<li> March of Remembrance and Hope</li>
+<li> March of the Living</li>
+<li> March of the Soviet Tankmen</li>
+<li> The March of the Volunteers</li>
+</ul>
+{rel-mid4}
+<ul><li> march-on</li>
+<li> March on Rome</li>
+<li> March on Washington for Jobs and Freedom</li>
+<li> march-order</li>
+<li> march out</li>
+<li> march-past</li>
+<li> march-time</li>
+<li> march tumor, march tumour</li>
+<li> march to a different beat, march to a different drummer</li>
+<li> military march</li>
+<li> Millennium March</li>
+<li> Million Dads March Network</li>
+<li> Million Man March</li>
+<li> Million Marijuana March</li>
+<li> Million Mom March</li>
+<li> Million Worker March</li>
+<li> minute of march</li>
+<li> Mud March</li>
+<li> Notre Dame Victory March</li>
+<li> on a march</li>
+<li> on the march</li>
+<li> Orange march</li>
+<li> outmarch</li>
+<li> peace march</li>
+<li> People on the March</li>
+</ul>
+{rel-mid4}
+<ul><li> Persian March</li>
+<li> Pride march</li>
+<li> The Prince of Denmark's March</li>
+<li> processional march</li>
+<li> protest march</li>
+<li> quick march</li>
+<li> Radetzky March</li>
+<li> Rákóczi March</li>
+<li> recessional march</li>
+<li> recruitment marches</li>
+<li> rogue's march</li>
+<li> route march, route-march, routemarch</li>
+<li> Salt March to Dandi</li>
+<li> the Selma to Montgomery Marches</li>
+<li> Sherman's March to the Sea</li>
+<li> Slavonic March</li>
+<li> slow march</li>
+<li> snowball marches</li>
+<li> Starvation March</li>
+<li> steal a march</li>
+<li> upon a march</li>
+<li> Uygur March</li>
+<li> the Virgin Islands March</li>
+<li> Waters of March</li>
+<li> wedding march</li>
+<li> Women's March to Versailles</li>
+</ul>
+{rel-bottom}
+<h5>Related terms</h5>
+<ul><li> démarche</li>
+<li> volksmarch</li>
+</ul>
+
+<h4>Verb</h4>
 {{en-verb|march|es}}
-
-# To walk with long, regular strides, as a soldier does.
-# To go to [[war]]; to make [[military]] [[advance]]s.
-
-=====Derived terms=====
-{{rel-top|Terms derived from ''march'' (verb)}}
-* [[dismarch]]
-* [[marcher]]
-* [[marching]]<!--noun, adjective-->
-* [[march off]]
-* [[march on]]
-{{rel-mid}}
-* [[march to the beat of a different drum]]
-* [[outmarch]]<!--verb-->
-* [[overmarch]]
-* [[remarch]]
-{{rel-bottom}}
-
-=====Translations=====
-{{trans-top|walk with long, regular strides}}
-* Afrikaans: {{t|af|marsjeer}}
-* Arabic: {{t|ar|سار|tr=sāra|sc=Arab}}
-* Catalan: {{t|ca|marxar}}
-* Chinese:
-*: Mandarin: {{t|zh|行軍|sc=Hani}}, {{t|zh|行军|tr=xíngjūn|sc=Hani}}, {{t|zh|行進|sc=Hani}}, {{t|zh|行进|tr=xíngjìn|sc=Hani}}
-* Czech: {{t-|cs|pochodovat}}
-* Danish: {{t|da|marchere}}, {{t|da|udvikle sig}} (figurative)
-* Dutch: {{t-|nl|marcheren}}
-* Estonian: [[marssima]]
-* Finnish: {{t-|fi|marssia}}
-* French: {{t+|fr|marcher}}
-* German: {{t+|de|marschieren}}
-* Hungarian: {{t+|hu|menetel}}, {{t-|hu|masíroz}}, {{t|hu|vonul}}
-* Icelandic: {{t-|is|marsera|f}}
-* Italian: {{t-|it|marciare}}
-{{trans-mid}}
-* Japanese: {{t|ja|行軍|tr=こうぐんする, kōgun-suru|alt=行軍する|sc=Jpan}}
-* Korean: {{t|ko|행군|tr=haenggun-hada|alt=행군하다|sc=Kore}}
-* Norwegian: {{t-|no|marsjere|m}}
-* Polish: {{t-|pl|maszerować}}
-* Portuguese: {{t|pt|marchar}}
-* Romanian: {{t|ro|mărșălui}}, {{t|ro|mărșui}}
-* Russian: {{t|ru|маршировать|sc=Cyrl|tr=marširovát'}}
-* Scots: {{tø|sco|mairch|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|dèan màrsail|f|xs=Scottish Gaelic}}
-* Serbian: {{t-|sr|koračati}}
-* Slovak: {{t-|sk|pochodovať|m}}
-* Slovene: [[korakati]]
-* Spanish: {{t-|es|marchar}}
-* Swedish: {{t-|sv|marschera}}, {{t-|sv|tåga}}
-{{trans-bottom}}
-
-{{trans-top|go to war; make military advances}}
-* Afrikaans: {{t|af|marsjeer}}
-* Catalan: {{t|ca|marxar}}
-* Czech: {{t-|cs|pochodovat}}
-* Danish: {{t-|da|marchere}}, {{t-|da|rykke frem}}
-* Finnish: {{t-|fi|marssia}}
-* German: in den [[Krieg]] [[ziehen]]
-* Hungarian: {{t|hu|hadba vonul}}
-{{trans-mid}}
-* Norwegian: {{t-|no|rykke frem}}
-* Portuguese: {{t-|pt|marchar}}
-* Russian: {{t|ru|маршировать|sc=Cyrl|tr=marširovát'}}
-* Scots: {{tø|sco|mairch|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|dèan màrsail|f|xs=Scottish Gaelic}}
-* Slovak: {{t-|sk|pochodovať|m}}
-* Spanish: {{t-|es|marchar}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|br}}: [[bale]] (1); [[bale]] war (2)
-* {{ttbc|bg}}: [[марширувам]] (marširuvam)
-* {{ttbc|ca}}: [[marxar]]
-* {{ttbc|he}}: {{t|he|צעד|tr=tsa'ád}}
-{{trans-mid}}
-* {{ttbc|lt}}: [[žygiuoti]] (1,2), [[maršuoti]] (1)
-* {{ttbc|ro}}: [[marșa]]
-* {{ttbc|tl}}: [[martsa]]
-{{trans-bottom}}
-
-===Etymology 2===
-From {{etyl|enm}} {{term|marche||tract of land along a country's border|lang=enm}}, from {{etyl|fro}} {{term|marche||boundary, frontier}}, from {{etyl|frk}} {{recons|marka}}, from {{proto|Germanic|markō|lang=en}}, from {{proto|Indo-European|mereg-|edge, boundary|lang=en}}.
-
-====Noun====
+<ol><li> To walk with long, regular strides, as a soldier does.</li>
+<li> To go to war; to make military advances.</li>
+</ol>
+
+<h5>Derived terms</h5>
+{{rel-top|Terms derived from <em>march</em> (verb)}}
+<ul><li> dismarch</li>
+<li> marcher</li>
+<li> marching</li>
+<li> march off</li>
+<li> march on</li>
+</ul>
+{rel-mid}
+<ul><li> march to the beat of a different drum</li>
+<li> outmarch</li>
+<li> overmarch</li>
+<li> remarch</li>
+</ul>
+{rel-bottom}
+<h3>Etymology 2</h3>
+From {{etyl|enm}} {{term|marche|tract of land along a country's border|lang=enm}}, from {{etyl|fro}} {{term|marche|boundary, frontier}}, from {{etyl|frk}} {{recons|marka}}, from {{proto|Germanic|markō|lang=en}}, from {{proto|Indo-European|mereg-|edge, boundary|lang=en}}.
+<h4>Noun</h4>
 {{en-noun|es}}
-
-# {{context|now|_|archaic|historical}} A border region, especially one originally set up to defend a [[boundary]].
-#* '''1485''', Sir Thomas Malory, ''Le Morte Darthur'', Book V:
-#*: Therefore, sir, be my counsayle, rere up your lyege peple and sende kynges and dewkes to loke unto your '''marchis''', and that the mountaynes of Almayne be myghtyly kepte.
-# {{historical}} A region at a frontier governed by a [[marquess]].
-# The name for any of various territories in Europe having etymologically cognate names in their native languages.
-#* '''1819''', Lord Byron, ''Don Juan'', IV:
-#*: Juan's companion was a Romagnole, / But bred within the '''March''' of old Ancona [...].
-
-=====Synonyms=====
-* {{sense|border region}} [[frontier]]
-
-=====Derived terms=====
-* [[Lord Warden of the Marches]]
-* [[marcher]]<!--sic-->
-* [[march-gat]]
-* [[march-land]]
-* [[march-man]]
-* [[march parts]], [[march-party]]
-* [[w:March Pursuivant of Arms Extraordinary|March Pursuivant of Arms Extraordinary]]
-* [[march stone]]
-* [[march-ward]]
-* [[w:Welsh Marches|Welsh Marches]]
-
-=====Related terms=====
-* [[w:Marche|Marche]]
-* [[marquee]]
-* [[marquess]]
-* [[marchion]]
-* [[marchionat]]
-* [[marchioness]]
-* [[marquis]]
-* [[marquisate]]
-* [[stanmarch]]
-
-=====Translations=====
-{{trans-top|obsolete: border region}}
-* Catalan: {{t|ca|marca|f}}
-* Czech: {{t-|cs|pomezí|n}}, {{t-|cs|marka|f}}
-* Dutch: {{t-|nl|grensmark}}
-* Finnish: {{t-|fi|rajamaa}}
-* German: {{t+|de|Mark|f}}
-* Italian: {{t+|it|marca|f}}
-{{trans-mid}}
-* Norwegian: {{t-|no|grenseland|n}}
-* Polish: [[rubież]] {{f}}
-* Scottish Gaelic: {{t-|gd|crìoch|f|xs=Scottish Gaelic}}
-* Spanish: {{t+|es|marca|f}}
-* Swedish: {{t-|sv|gränsland|n}}
-{{trans-bottom}}
-
-{{trans-top|region at a frontier governed by a marquess}}
-* Breton: [[marz]] {{m}}, marzoù {{p}}
-* Catalan: {{t|ca|marca|f}}
-* Czech: {{t-|cs|pomezí|n}}, {{t-|cs|marka|f}}
-* Dutch: {{t+|nl|mark|n}}
-* Estonian: {{t+|et|mark}}
-{{trans-mid}}
-* Finnish: {{t|fi|markiisikunta}}
-* German: {{t+|de|Mark|f}}
-* Scottish Gaelic: {{t-|gd|crìoch|f|xs=Scottish Gaelic}}
-* Spanish: {{t+|es|marca|f}}
-* Swedish: {{t+|sv|mark|c}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|bg}}: [[граница]] (granítsa) {{f}}
-* {{ttbc|lt}}: [[marka]] {{f}} (2)
-* {{ttbc|nap}}: [[mierco]] {{m}} (1,2)
-* {{ttbc|ro}}: [[marș]] {{n}}
-* {{ttbc|sk}}: [[pomedzie]] {{n}}
-{{trans-bottom}}
-
-====Verb====
+<ol><li> {{context|now|_|archaic|historical}} A border region, especially one originally set up to defend a boundary.</li>
+<ul><li> <b>1485</b>, Sir Thomas Malory, <em>Le Morte Darthur</em>, Book V:</li>
+<ul><li> Therefore, sir, be my counsayle, rere up your lyege peple and sende kynges and dewkes to loke unto your <b>marchis</b>, and that the mountaynes of Almayne be myghtyly kepte.</li>
+</ul>
+</ul>
+<li> {historical} A region at a frontier governed by a marquess.</li>
+<li> The name for any of various territories in Europe having etymologically cognate names in their native languages.</li>
+<ul><li> <b>1819</b>, Lord Byron, <em>Don Juan</em>, IV:</li>
+<ul><li> Juan's companion was a Romagnole, / But bred within the <b>March</b> of old Ancona [...].</li>
+</ul>
+</ul>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|border region}} frontier</li>
+</ul>
+
+<h5>Derived terms</h5>
+<ul><li> Lord Warden of the Marches</li>
+<li> marcher</li>
+<li> march-gat</li>
+<li> march-land</li>
+<li> march-man</li>
+<li> march parts, march-party</li>
+<li> March Pursuivant of Arms Extraordinary</li>
+<li> march stone</li>
+<li> march-ward</li>
+<li> Welsh Marches</li>
+</ul>
+
+<h5>Related terms</h5>
+<ul><li> Marche</li>
+<li> marquee</li>
+<li> marquess</li>
+<li> marchion</li>
+<li> marchionat</li>
+<li> marchioness</li>
+<li> marquis</li>
+<li> marquisate</li>
+<li> stanmarch</li>
+</ul>
+
+<h4>Verb</h4>
 {{en-verb|marches|marching|marched}}
+<ol><li> {intransitive} To have common borders or frontiers</li>
+</ol>
 
-# {{intransitive}} To have common [[border]]s or [[frontier]]s
-
-=====Translations=====
-{{trans-top|to have common borders or frontiers}}
-* Finnish: {{t|fi|rajoittua}}
-{{trans-mid}}
-* Swedish: {{t-|sv|gränsa till}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[charm#English|charm]]
-
-[[Category:English ergative verbs]]
-[[Category:English terms with multiple etymologies]]
-[[Category:en:Gaits]]
-
-----
-
-
+<h3>Anagrams</h3>
+<ul><li> charm</li>
+</ul>
+Category:English ergative verbsCategory:English terms with multiple etymologiesCategory:en:Gaits----
 ***may***
-may: 
+may:
 {{slim-wikipedia|May (disambiguation)}}
-
-===Pronunciation===
-* {{enPR|mā}}, {{IPA|/meɪ/}}, {{X-SAMPA|/meI/}}
-* {{audio|en-us-May.ogg|Audio (US)}}
-* {{rhymes|eɪ}}
-
-===Etymology 1===
-{{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}}.
-
-====Verb====
-{{en-verb|head=-|may|-|might|-}}
-
-# {{obsolete|intransitive}} To be [[strong]]; to have power (over). {{defdate|8th-17th c.}}
-# {{obsolete|auxiliary}} To be [[able]]; [[can]]. {{defdate|8th-17th c.}}
-#* '''1621''', Robert Burton, ''The Anatomy of Melancholy'', II.3.6:
-#*: But many times [...] we give way to passions we '''may''' resist and will not.
-# {{intransitive|poetic}} To be able to [[go]]. {{defdate|from 9th c.}}
-#* '''1600''', William Shakespeare, ''A Midsummer Night's Dream'', III.3:
-#*: O weary night, O long and tedious night, / Abate thy houres, shine comforts from the East, / That I '''may''' backe to Athens by day-light [...].
-# {{context|modal auxiliary verb|defective}} To have [[permission]] to, be [[allowed]]. Used in granting permission and in questions to make polite requests. {{defdate|from 9th c.}}
-#: ''You '''may''' smoke outside.''
-#: '''''May''' I sit there?''
-# {{context|modal auxiliary verb|defective}} Expressing a present [[possibility]]; [[possibly]]. {{defdate|from 13th c.}}
-#: ''He '''may''' be lying.''
-#: ''Schrödinger's cat '''may''' or '''may not''' be in the box.''
-#* {{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 '''may''' 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.}}
-# {{context|subjunctive present|defective}} Expressing a [[wish|wish]] (with present subjunctive effect). {{defdate|from 16th c.}}
-#: '''''May''' you win.'' '''''May''' the weather be sunny.''
-#* '''1974''', {{w|Bob Dylan}}, [[w:Forever Young (Bob Dylan song)|Forever Young]]
-#*: '''May''' God bless and keep you always
-#*: '''May''' your wishes all come true
-#*: '''May''' you always do for others
-#*: And let others do for you
-#*: '''May''' you build a ladder to the stars
-#*: And climb on every rung
-#*: '''May''' you stay forever young
-
-=====Usage notes=====
-* {{term|may|May}} is now a [[defective verb]].  It has no infinitive, no past participle, and no future tense.  Forms of {{term|to be allowed to}} are used to replace these missing tenses.
-* The simple past (both indicative and subjunctive) of {{term|may}} is {{term|might}}
-* The present tense is negated as {{term|may}} {{term|not}}, which can be contracted to {{term|mayn't}}, although this is old-fashioned; the simple past is negated as {{term|might}} {{term|not}}, which can be contracted to {{term|mightn't}}.
-* {{term|may|May}} has archaic second-person singular present indicative forms {{term|mayest}} and {{term|mayst}}.
-* Usage of this word in the sense of {{term|possibly}} is considered incorrect by some speakers and writers, as it blurs the meaning of the word in the sense ''have permission to''. These speakers and writers prefer to use the word {{term|might}} instead.
-* Wishes are often cast in the imperative rather than the subjunctive mood, not using the word {{term|may|may}}, as in ''Have a great day!'' rather than ''May you have a great day''.
-
-=====Synonyms=====
-* {{sense|have permission to}} [[can]], [[could]], [[might]]
-* {{sense|possibly}} [[could]], [[might]]
-* {{sense|in subjunctive}} [[might]]
-
-=====Derived terms=====
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|mā}}, {{IPA|/meɪ/}}, {{X-SAMPA|/meI/}}</li>
+<li> {{audio|en-us-May.ogg|Audio (US)}}</li>
+<li> {{rhymes|eɪ}}</li>
+</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}}.
+<h4>Verb</h4>
+{{en-verb|may|-|might|-|head=-}}
+<ol><li> {{obsolete|intransitive}} To be strong; to have power (over). {{defdate|8th-17th c.}}</li>
+<li> {{obsolete|auxiliary}} To be able; can. {{defdate|8th-17th c.}}</li>
+<ul><li> <b>1621</b>, Robert Burton, <em>The Anatomy of Melancholy</em>, II.3.6:</li>
+<ul><li> But many times [...] we give way to passions we <b>may</b> resist and will not.</li>
+</ul>
+</ul>
+<li> {{intransitive|poetic}} To be able to go. {{defdate|from 9th c.}}</li>
+<ul><li> <b>1600</b>, William Shakespeare, <em>A Midsummer Night's Dream</em>, III.3:</li>
+<ul><li> O weary night, O long and tedious night, / Abate thy houres, shine comforts from the East, / That I <b>may</b> backe to Athens by day-light [...].</li>
+</ul>
+</ul>
+<li> {{context|modal auxiliary verb|defective}} To have permission to, be allowed. Used in granting permission and in questions to make polite requests. {{defdate|from 9th c.}}</li>
+<ul><li> <em>You <b>may</b> smoke outside.</em></li>
+<li> <b><em>May</b> I sit there?</em></li>
+</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> {{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>
+<ul><li> <b><em>May</b> you win.</em> <b><em>May</b> the weather be sunny.</em></li>
+<li> <b>1974</b>, {{w|Bob Dylan}}, Forever Young</li>
+<ul><li> <b>May</b> God bless and keep you always</li>
+<li> <b>May</b> your wishes all come true</li>
+<li> <b>May</b> you always do for others</li>
+<li> And let others do for you</li>
+<li> <b>May</b> you build a ladder to the stars</li>
+<li> And climb on every rung</li>
+<li> <b>May</b> you stay forever young</li>
+</ul>
+</ul>
+</ol>
+
+<h5>Usage notes</h5>
+<ul><li> {{term|may|May}} is now a defective verb.  It has no infinitive, no past participle, and no future tense.  Forms of {{term|to be allowed to}} are used to replace these missing tenses.</li>
+<li> The simple past (both indicative and subjunctive) of {{term|may}} is {{term|might}}</li>
+<li> The present tense is negated as {{term|may}} {{term|not}}, which can be contracted to {{term|mayn't}}, although this is old-fashioned; the simple past is negated as {{term|might}} {{term|not}}, which can be contracted to {{term|mightn't}}.</li>
+<li> {{term|may|May}} has archaic second-person singular present indicative forms {{term|mayest}} and {{term|mayst}}.</li>
+<li> Usage of this word in the sense of {{term|possibly}} is considered incorrect by some speakers and writers, as it blurs the meaning of the word in the sense <em>have permission to</em>. These speakers and writers prefer to use the word {{term|might}} instead.</li>
+<li> Wishes are often cast in the imperative rather than the subjunctive mood, not using the word {{term|may|may}}, as in <em>Have a great day!</em> rather than <em>May you have a great day</em>.</li>
+</ul>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|have permission to}} can, could, might</li>
+<li> {{sense|possibly}} could, might</li>
+<li> {{sense|in subjunctive}} might</li>
+</ul>
+
+<h5>Derived terms</h5>
 {{rel-top3|term derived from "may"}}
-* [[as the case may be]]
-* [[be it as it may]], [[be that as it may]], [[be this as it may]]
-* [[come what may]]
-* [[devil-may-care]]
-* [[if I may]]
-* [[I may not but]]
-* [[it may well with]], [[may well with]]
-* [[let the chips fall where they may]]
-{{rel-mid3}}
-* [[may as well]]
-* [[maybe]]
-* [[may chance]]
-* [[may-fall]]
-* [[may-fortune]]
-* [[mayhap]]
-* [[mayhappen]]
-* [[may I]]?
-{{rel-mid3}}
-* [[may-issue]]
-* [[mayn't]]
-* [[may you live in interesting times]]
-* [[that is as may be]], [[that's as may be]]
-* [[those who will not when they may, when they will they shall have nay]]
-* [[what-you-may-call-it]]
-{{rel-bottom}}
-
-=====Translations=====
-{{trans-top|have permission to}}
-* American Sign Language: {{tø|ase|S@Sternumhigh-PalmDown-S@Sternumhigh-PalmDown S@Chesthigh-PalmDown-S@Chesthigh-PalmDown}}
-* Arabic: {{Arab|[[استطاع]]}} {{IPAchar|(istaṭāʻa)}}, {{Arab|[[ممكن]]}} (múmkin) ''lit.: possible''
-* Chinese: [[可以]] ([[kěyǐ]])
-* Czech: {{t-|cs|smět}}
-* Danish: {{t+|da|må}}
-* Dutch: {{t+|nl|mogen}}
-* Finnish: {{t+|fi|voida}}, {{t+|fi|saada}}
-* French: {{t+|fr|pouvoir}}
-* German: {{t+|de|dürfen}}, {{t+|de|mögen}}, {{t+|de|könnten}}
-* Greek: [[μπορώ]] (boró), [[επιτρέπεται]] (epitrépete)
-* Hungarian: {{t+|hu|szabad}}, {{t|hu|-hat}}, {{t|hu|-het}}
-* Icelandic: {{t|is|mega}}, {{t|is|mátt}}
-* Indonesian: [[boleh]] / [[dapat]] / [[bisa]]
-* Italian: {{t+|it|potere}}
-{{trans-mid}}
-* Japanese: [[してもいい]] (shité mo íi)
-* Korean: [[할 수 있다]] (hal su itda)
-* Latin: {{t|la|possum }}, {{qualifier|use the subjunctive tense of the verb that follows }} {{t|la|sim |tr=i may  be}}, {{t|la|mihi licet}}, {{t|la|licet|tr=more an pronome object indirect}}
-* Norwegian: {{t+|no|kan}}, {{t+|no|får}},  {{t+|no|må}}
-* Persian: {{fa-Arab|[[توانستن|تَوانِستَن]]}} (tævānestæn)
-* Polish: {{t+|pl|móc}}
-* Portuguese: {{t+|pt|poder}}
-* Russian: {{t+|ru|мочь|tr=moč’}}, {{t+|ru|можно|tr=móžno}} (''predicative'')
-* Slovak: {{t|sk|smieť}}
-* Sorbian:
-*: Upper Sorbian: {{qualifier|ip}} {{t|hsb|směć}}
-* Spanish: {{t+|es|poder}}
-* Swedish: {{t+|sv|få}}, {{t+|sv|kunna}}, {{t+|sv|kan}}
-* Tagalog: [[maaari]], [[puwede]]
-{{trans-bottom}}
-
-{{trans-top|possibly, but not certainly}}
-* American Sign Language: {{tø|ase|S@Sternumhigh-PalmDown-S@Sternumhigh-PalmDown S@Chesthigh-PalmDown-S@Chesthigh-PalmDown}}
-* Chinese: [[可能]] (kěnéng) ''may be, possible''
-* Czech: [[moci]] ([[moct]])
-* Danish: {{t-|da|måske}}
-* Dutch: [[misschien]] ''may be''; He may be lying — ''Hij liegt misschien''
-* Finnish: {{t+|fi|voida}}, {{t+|fi|saattaa}},  {{t+|fi|taitaa}}
-* French: [[peut-être]], [[il se peut que]] + ''subjunctive''; He may be lying — ''Il ment peut-être'', ''Il se peut qu’il mente.''
-* Greek: {{t+|el|ίσως}}, {{t+|el|μάλλον}}
-* Hungarian: {{t+|hu|lehet}}
-* Icelandic: {{t+|is|geta}}
-* Indonesian: [[mungkin]] / [[barangkali]] / [[bisa jadi]] / [[bisa saja]]
-* Italian: [[forse]], [[può essere che]] + ''subjunctive''; He may be lying — ''Forse sta mentendo'', ''Può essere che stia mentendo''
-{{trans-mid}}
-* Japanese: [[多分]] ([[たぶん]], tábun), [[かも知れない]] (かもしれない, kamo shirenai)
-* Latin: {{qualifier|use the subjunctive tense of the verb that follows }} {{t|la|sim|tr=i may  be  being}}
-* Norwegian: {{t|no|kan være}}, also expressed with adv. {{t|no|kanskje}}; He may be lying - Det kan være han lyver/Kanskje han lyver
-* Persian: {{t+|fa|شاید|alt=شایَد|tr=šāyæd|xs=Persian}}
-* Polish: {{t+|pl|móc}}, [[możliwe]] [[że]]
-* Portuguese: {{t+|pt|talvez}}, {{t+|pt|pode ser}}
-* Russian: [[может быть]] (móžet bytʹ) ''may be'', [[мочь]] (moč’)
-* Spanish: {{t+|es|quizás}}, {{t+|es|tal vez}}
-* Swedish: {{t+|sv|kan}}, {{t+|sv|kanske}}
-* Tagalog: [[maaari]], [[puwede]]
-{{trans-bottom}}
-
-{{trans-top|subjunctive}}
-* Dutch: {{t+|nl|mogen}}; come what may  - ''komen wat komen moge''
-* French: ''use subjunctive of'' [[pouvoir]]
-* Italian: ''use subjunctive of'' [[potere]]
-* Latin: {{qualifier|use the subjunctive tense of the verb that follows }} {{t|la|sim|tr=i may be}}
-{{trans-mid}}
-* Nahuatl: {{t|nah|mā}}
-* Polish: {{t|pl|żeby}}
-* Spanish: {{t|es|que}}, {{t|es|ojalá que}}
-* Swedish: {{t+|sv|må}}'', or rarely, ''{{t+|sv|-e}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|hu}}: [[lehet]]; You may smoke outside — ''Kivul dohányozhat.''; May I sit there? — ''Oda ülhetnék?''; He may be lying — '' Lehet, hogy hazudik.''
-* {{ttbc|io}}: [[forsan]] (4, 5), [[darfas]] (1, 2)
-* {{ttbc|ro}}: [[putea]]
-{{trans-bottom}}
-
-====See also====
-* [[Appendix:English tag questions]]
-
-===Etymology 2===
+<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>
+<li> devil-may-care</li>
+<li> if I may</li>
+<li> I may not but</li>
+<li> it may well with, may well with</li>
+<li> let the chips fall where they may</li>
+</ul>
+{rel-mid3}
+<ul><li> may as well</li>
+<li> maybe</li>
+<li> may chance</li>
+<li> may-fall</li>
+<li> may-fortune</li>
+<li> mayhap</li>
+<li> mayhappen</li>
+<li> may I?</li>
+</ul>
+{rel-mid3}
+<ul><li> may-issue</li>
+<li> mayn't</li>
+<li> may you live in interesting times</li>
+<li> that is as may be, that's as may be</li>
+<li> those who will not when they may, when they will they shall have nay</li>
+<li> what-you-may-call-it</li>
+</ul>
+{rel-bottom}
+<h4>See also</h4>
+<ul><li> Appendix:English tag questions</li>
+</ul>
+
+<h3>Etymology 2</h3>
 {{etyl|fr|en}} {{term|mai|lang=fr}}, so called because it blossoms in {{term|May}}.
-
-====Noun====
-{{en-noun}}
-
-# The [[hawthorn]] bush or its [[blossom]]s.
-
-=====Derived terms=====
-* [[Italian may]]
-* [[mayhaw]]
-
-=====Translations=====
-{{trans-top|the hawthorn bush or its blossom}}
-* Bulgarian: {{t+|bg|глог|m|tr=glog}}
-* Finnish: {{t-|fi|orapihlaja}}
-* French: {{t+|fr|aubépine|f}}
-* German: [[Weißdornblüte]] {{f}}
-* Greek: [[λευκάκανθα]] (lefkákantha) {{f}}
-* Hungarian: {{qualifier|bush}} {{t+|hu|galagonya}},  {{t|hu|galagonyavirág}}
-{{trans-mid}}
-* Italian: {{t-|it|biancospino|m}}
-* Ojibwe: [[miinensagaawanzh]], [[miinensagaawanzhiig]] {{p}}
-* Portuguese: [[pirilteiro]] {{m}}, [[estrepeiro]] {{m}}
-* Russian: {{t|ru|боярышник|m|tr=bojáryšnik}}
-* Spanish: [[espino]] {{m}}, [[marzoleto]] {{m}}
-{{trans-bottom}}
-
-====Verb====
-{{en-verb}}
-
-# To [[gather]] may.
-#* '''1922''', [[w:A. E. Housman|A. E. Housman]], ''[[:w:Last Poems|Last Poems]]'', VII, lines 1-2
-#*: In valleys green and still / Where lovers wander '''maying'''
-
-====Statistics====
-* {{rank|very|upon|man|70|may|about|its|time}}
-
-===Anagrams===
-* [[Amy#English|Amy]], [[MYA#English|MYA]], [[Mya#English|Mya]], [[mya#English|mya]], [[yam#English|yam]]
-
-[[Category:100 English basic words]]
-[[Category:English auxiliary verbs]]
-[[Category:English defective verbs]]
-[[Category:English irregular verbs]]
-[[Category:English terms with multiple etymologies]]
-[[Category:en:Trees]]
-
-----
-
-
+<h4>Noun</h4>
+{en-noun}
+<ol><li> The hawthorn bush or its blossoms.</li>
+</ol>
+
+<h5>Derived terms</h5>
+<ul><li> Italian may</li>
+<li> mayhaw</li>
+</ul>
+
+<h4>Verb</h4>
+{en-verb}
+<ol><li> To gather may.</li>
+<ul><li> <b>1922</b>, A. E. Housman, <em>Last Poems</em>, VII, lines 1-2</li>
+<ul><li> In valleys green and still / Where lovers wander <b>maying</b></li>
+</ul>
+</ul>
+</ol>
+
+<h4>Statistics</h4>
+<ul><li> {{rank|very|upon|man|70|may|about|its|time}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> Amy, MYA, Mya, mya, yam</li>
+</ul>
+Category:100 English basic wordsCategory:English auxiliary verbsCategory:English defective verbsCategory:English irregular verbsCategory:English terms with multiple etymologiesCategory:en:Trees----
 ***merchandise***
-merchandise: 
-
-===Alternative forms===
-* [[merchandize]] {{qualifier|non‐standard}}
-* [[merchaundise]] {{qualifier|obsolete}}
-* [[merchaundize]] {{qualifier|obsolete}}
-
-===Etymology===
-From Anglo‐French ''[[marchaundise]]'', from {{term|marchaunt|sc=polytonic||{{l|en|merchant}}}}.
-
-===Pronunciation===
-* {{IPA|/ˈmɝʧənˌdaɪz/}}, {{X-SAMPA|/"m3`tS@n%daIz/}}
-* {{audio|en-us-merchandise.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun}}
-
-# {{uncountable}} [[commodity|Commodities]] offered for [[sale]].
-#: ''good business depends on having good '''merchandise'''
-# {{countable}} A commodity offered for sale; an article of [[commerce]]; a kind of merchandise.
-
-====Usage notes====
-* Adjectives often applied to "merchandise": returned, used, damaged, stolen, assorted, lost, promotional, industrial, cheap, expensive, imported, good, inferior.
-
-====Synonyms====
-* [[wares]]
-* [[product]]
-
-====Translations====
-{{trans-top|commodities offered for sale}}
-* Arabic: [[بضائع|بَضَائِعُ]] {{IPAchar|(baɖáː’iʕu)}}, [[سلع|سِلَع]] {{IPAchar|(sílaʕ)}}, [[بضاعة|بِضَاعَة]] {{IPAchar|(biɖáːʕah)}}
-* Chinese: [[產品]], [[产品]] (chǎnpǐn), [[貨物]], [[货物]] (huòwù), [[物品]] (wùpǐn), [[製品]], [[制品]], (zhìpǐn), [[製品]], [[制品]] (zhìpǐn)
-* Czech: {{t-|cs|zboží|n}}
-* Finnish: {{t+|fi|kauppatavara}}
-* French: {{t+|fr|marchandise}}
-* Hebrew: {{t|he|סחורה|f|sc=Hebr}}
-* Indonesian: {{t|id|barang dagangan|xs=Indonesian}}
-* Irish: {{t-|ga|earra|m|xs=Irish}}
-{{trans-mid}}
-* Japanese: [[品物]] ([[しなもの]], shinamonó), [[商品]] ([[しょうひん]], shōhin), [[物品]] ([[ぶっぴん]], buppin), [[品]] ([[しな]], shina), {{t|ja|商材|sc=Jpan}}
-* Latvian: {{t|lv|prece|f}}
-* Portuguese: {{t|pt|mercadoria|f}}
-* Romanian: {{t-|ro|marfă|f}}
-* Russian: {{t+|ru|товар|m|tr=továr}}
-* [[Scottish Gaelic]]: {{t-|gd|bathar|m|xs=Scottish Gaelic}}
-* Spanish: {{t+|es|mercancía|f}}
-* Swedish: {{t|sv|handelsvaror}}
-{{trans-bottom}}
-
-====References====
-* {{R:OED2}}
-* {{R:Online Etymology Dictionary}}
-
-===Verb===
+merchandise:
+
+<h3>Alternative forms</h3>
+<ul><li> merchandize {{qualifier|non‐standard}}</li>
+<li> merchaundise {{qualifier|obsolete}}</li>
+<li> merchaundize {{qualifier|obsolete}}</li>
+</ul>
+
+<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>
+<li> {{audio|en-us-merchandise.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> {uncountable} Commodities offered for sale.</li>
+<ul><li> <em>good business depends on having good <b>merchandise</b></li>
+</ul>
+<li> {countable} A commodity offered for sale; an article of commerce; a kind of merchandise.</li>
+</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>
+
+<h4>Synonyms</h4>
+<ul><li> wares</li>
+<li> product</li>
+</ul>
+
+<h4>References</h4>
+<ul><li> {R:OED2}</li>
+<li> {R:Online Etymology Dictionary}</li>
+</ul>
+
+<h3>Verb</h3>
 {{en-verb|merchandis|ing}}
-
-# to [[engage]] in the trade of.
-
-====Synonyms====
-* [[trade]]
-
-====Translations====
-{{trans-top|to engage in the trade of}}
-* Romanian: [[comerț]] {{n}}
-{{trans-mid}}
-* Swedish: {{t+|sv|handla}}
-{{trans-bottom}}
-
-===Related terms===
-* [[mercantile]]
-* [[merchant]]
-* [[merchantable]]
-
+<ol><li> to engage in the trade of.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> trade</li>
+</ul>
+
+<h3>Related terms</h3>
+<ul><li> mercantile</li>
+<li> merchant</li>
+<li> merchantable</li>
+</ul>
 ----
-
-
 ***minute***
-minute: 
-{{wikipedia}}
-
-===Etymology 1===
-From {{etyl|fro}} {{term|minute|lang=fro}}, from {{etyl|ML.}} {{term|minuta|minūta|lang=la|60th of an hour", "note}}
-
-====Pronunciation====
-* {{enPR|mĭn'ĭt}}, {{IPA|/ˈmɪnɪt/}}, {{X-SAMPA|/"mInIt/}}
-* {{audio|en-uk-a minute.ogg|Audio (UK)}}
-* {{audio|en-us-minute-noun.ogg|Audio (US)}}
-* {{rhymes|ɪnɪt}}
-
-====Noun====
-{{en-noun}}
-
-# A [[unit]] of [[time]] equal to sixty [[second]]s (one-sixtieth of an [[hour]]).
-#: ''You have twenty '''minutes''' to complete the test.''
-# A [[short]] but unspecified [[time]] period.
-#: ''Wait a '''minute''', I’m not ready yet!''
-# A unit of [[angle]] equal to one-sixtieth of a [[degree]].
-#: ''We need to be sure these maps are accurate to within one '''minute''' of arc.''
-# {{context|in the plural|[[minutes]]}} A (usually formal) written record of a meeting.
-#: ''Let’s look at the '''minutes''' of last week’s meeting.''
-# A minute of use of a [[telephone]] or other [[network]], especially a [[cell phone]] network.
-#: ''If you buy this phone, you’ll get 100 free '''minutes'''.''
-
-=====Related terms=====
-* [[arcminute]]
-
-=====Translations=====
-{{trans-top|unit of time}}
-* Albanian: {{t-|sq|minutë|f|xs=Albanian}}
-* Arabic: {{t|ar|دقيقة|f|tr=daqiiqa|sc=Arab}}
-* Armenian: {{t+|hy|րոպե|tr=rope}} {{qualifier|Eastern Armenian}}, {{t+|hy|վայրկյան|tr=vayrkyan}} {{qualifier|Western Armenian}}
-*: Old Armenian: {{tø|xcl|վայրկեան|tr=vayrkean|sc=Armn|xs=Old Armenian}}
-* Azeri: {{t|az|dəqiqə|xs=Azeri}}
-* Baluchi: {{tø|bal|منٹ|tr=minaťť}}
-* Basque: {{t|eu|minutu}}
-* Belarusian: {{t|be|хвіліна|f|tr=xvilína|sc=Cyrl}}
-* Bengali: {{t|bn|মিনিট|tr=miniṭ|sc=Beng}}
-* Bulgarian: {{t+|bg|минута|f|tr=minúta}}
-* Catalan: {{t-|ca|minut|m}}
-* Chinese:
-*: Mandarin: {{t|zh|分鐘|sc=Hani}}, {{t|zh|分钟|tr=fēnzhōng|sc=Hani}}
-* Czech: {{t+|cs|minuta|f}}
-* Danish: {{t|da|minut|n}}
-* Dutch: {{t+|nl|minuut}}
-* Esperanto: {{t-|eo|minuto|xs=Esperanto}}
-* Estonian: {{t-|et|minut}}
-* Fijian: {{t|fj|miniti}}
-* Finnish: {{t+|fi|minuutti}}
-* French: {{t+|fr|minute|f}}
-* Georgian: {{t-|ka|წუთი|tr=cut’i|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Minute|f}}
-* Greek: {{t+|el|λεπτό|n|tr=leptó}}
-* Hebrew: {{t|he|דקה|f|tr=daka|sc=Hebr}}
-* Hindi: {{t|hi|मिनट|m|tr=minaṭ|sc=Deva}}
-* Hungarian: {{t+|hu|perc}}
-* Icelandic: {{t+|is|mínúta|f}}
-* Indonesian: {{t-|id|menit|xs=Indonesian}} (often used), {{t-|id|minit|xs=Indonesian}}, {{t+|id|minuta|xs=Indonesian}}
-* Irish: {{t|ga|nóiméad|m}}, {{t|ga|bomaite|m}}
-* Italian: {{t+|it|minuto|m}}
-* Japanese: {{t|ja|分|tr=[[ふん]], fun; [[ぷん]], pun|sc=Jpan}} {{qualifier|varies depending on preceding words}}
-* Khmer: {{t-|km|នាទី|tr=nīădtī|sc=Khmr}}
-* Korean: {{t|ko|분|tr=bun|sc=Kore}}
-* Kölsch: {{tø|ksh|Menutt}}
-{{trans-mid}}
-* Lao: {{t+|lo|ນາທີ|tr=naa-tii|sc=Laoo|xs=Lao}}
-* Latvian: {{t|lv|minūte|f|xs=Latvian}}
-* Lithuanian: {{t+|lt|minutė|f|xs=Lithuanian}}
-* Lojban: {{t|jbo|mentu}}
-* Macedonian: {{t+|mk|минута|f|tr=mínuta}}
-* Malay: {{t-|ms|minit|xs=Malay}},
-* Maltese: {{t-|mt|minuta|f|xs=Maltese}}
-* Navajo: {{tø|nv|dah alzhin}}
-* Norwegian: {{t+|no|minutt|n}}
-* Ojibwe: [[diba'igaans]]
-* Persian: {{t+|fa|دقیقه|tr=daqiqe|xs=Persian}}
-* Polish: {{t+|pl|minuta|f}}
-* Portuguese: {{t+|pt|minuto|m}}
-* Romanian: {{t|ro|minut|n}}
-* Russian: {{t+|ru|минута|f|tr=minúta}}
-* Scots: {{tø|sco|meenit|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|mionaid|f|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|минута|f|sc=Cyrl|xs=Serbo-Croatian}}, {{t|sh|минут|m|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{t|sh|minuta|f|xs=Serbo-Croatian}}, {{t|sh|minut|m|xs=Serbo-Croatian}}
-* Sinhalese: {{t|si|විනාඩිය|tr=vināḍiya|sc=Sinh}}, {{t|si|මිනිත්‍තුව|tr=minittuva|sc=Sinh}}
-* Slovak: {{t|sk|minúta|f}}
-* Slovene: {{t+|sl|minuta|f}}
-* Spanish: {{t+|es|minuto|m}}
-* Swahili: {{t+|sw|dakika|xs=Swahili}}
-* Swedish: {{t+|sv|minut|c}}
-* Tajik: {{t-|tg|дақиқа|tr=daqiqa|sc=Cyrl|xs=Tajik}}
-* Tatar: {{t-|tt|минут|sc=Cyrl|xs=Tatar}}
-* Thai: {{t-|th|นาที|tr=naatee}}
-* Turkish: {{t+|tr|dakika}},
-* Ukrainian: {{t|uk|хвилина|f|tr=xvylýna|sc=Cyrl}}
-* Urdu: {{t|ur|منٹ|m|tr=minaṭ|sc=ur-Arab}}
-* Uyghur: {{t|ug|مىنۇت|sc=ug-Arab}}
-* Vietnamese: {{t|vi|phút}}
-* Volapük: {{t|vo|minut}}
-* Welsh: {{t+|cy|munud|xs=Welsh}}
-{{trans-bottom}}
-
-{{trans-top|short but unspecified period of time}}
-* Armenian: {{t+|hy|րոպե|tr=rope}}
-* Basque: {{t|eu|minutu}}, {{t|eu|momentu}}
-* Czech: {{t+|cs|minuta|f}}, {{t|cs|minutka|f}}, {{t|cs|vteřina|f}}, {{t|cs|chvilka|f}}
-* Dutch: {{t-|nl|minuutje|n}}, {{t-|nl|secondje|n}},
-* Estonian: {{t-|et|hetk}}, {{t-|et|hetk}}, {{t+|et|moment}}
-* Finnish: {{t+|fi|hetki}}, {{t+|fi|hetkinen}},
-* French: {{t+|fr|minute|f}}, {{t+|fr|moment|m}}, {{t+|fr|instant|m}}
-* German: {{t+|de|Moment|m}},
-* Greek: {{t+|el|στιγμή|f|tr=stigmí}}, {{t+|el|λεπτό|n|tr=leptó}}
-* Hebrew: [[רגע]] (rega) {{m}}, [[זמן קצר]]
-* Icelandic: {{t-|is|augablik|n}}, {{t+|is|mínúta|f}}
-* Italian: {{t+|it|attimo|m}}, {{t+|it|momento|m}},
-* Lithuanian: {{t+|lt|minutė|f|xs=Lithuanian}}, {{t|lt|akimirka|f|xs=Lithuanian}}
-* Macedonian: {{t-|mk|момент|m|tr=momént}}, {{t+|mk|минута|f|tr=mínuta}}
-{{trans-mid}}
-* Malay: {{t|ms|sekejap|xs=Malay}},
-* Maltese: {{t-|mt|minuta|xs=Maltese}},
-* Norwegian: {{t+|no|øyeblikk|n}}
-* Polish: {{t|pl|minuta|f}}, {{t|pl|minutka|f}}, {{t|pl|chwila|f}}, {{t|pl|moment|m}}
-* Portuguese: {{t+|pt|instante|m}}, {{t+|pt|minuto|m}}, {{t+|pt|momento|m}}
-* Russian: {{t+|ru|минута|f|tr=minúta}}
-* Scots: {{tø|sco|meenit|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|mionaid|f|xs=Scottish Gaelic}}
-* Spanish: {{t+|es|minuto|m}}, {{t+|es|momento|m}},
-* Swahili: {{t+|sw|dakika|xs=Swahili}}
-* Swedish: {{t+|sv|ögonblick|n}}
-* Thai: {{t+|th|แป๊บเดียว|tr=bpáep dieow}}
-* Turkish: {{t+|tr|dakika}}
-{{trans-bottom}}
-
-{{trans-top|unit of angular measure}}
-* Armenian: {{t+|hy|րոպե|tr=rope}}
-* Basque: {{t|eu|minutu}}
-* Catalan: {{t-|ca|minut|m}}
-* Czech: {{t+|cs|minuta|f}},
-* Dutch: {{t+|nl|minuut}},
-* Esperanto: {{t-|eo|minuto|xs=Esperanto}}, [[angula]] [[minuto]]
-* Estonian: {{t-|et|minut}}
-* Finnish: {{t+|fi|minuutti}},
-* French: {{t+|fr|minute|f}}
-* German: {{t+|de|Minute|f}},
-* Greek: {{t+|el|λεπτό|n|tr=leptó}}
-* Hebrew: {{t-|he|דקת קשת}}
-* Latvian: {{t|lv|minūte|f|xs=Latvian}}
-{{trans-mid}}
-* Lithuanian: {{t+|lt|minutė|f|xs=Lithuanian}}
-* Macedonian: {{t+|mk|минута|f|tr=mínuta}}
-* Norwegian: {{t+|no|minutt|n}},
-* Polish: {{t+|pl|minuta|f}}
-* Portuguese: {{t+|pt|minuto|m}}
-* Russian: {{t+|ru|минута|f|tr=minúta}}
-* Scots: {{tø|sco|meenit|xs=Scots}}
-* Slovene: {{t+|sl|minuta|f}},
-* Spanish: {{t+|es|minuto|m}},
-* Swahili: {{t+|sw|dakika|xs=Swahili}}
-* Swedish: {{t+|sv|minut|c}}, {{t+|sv|bågminut|c}}
-* Turkish: {{t+|tr|dakika}}
-{{trans-bottom}}
-
-{{trans-top|record of meeting}}
-* Chinese:
-*: Mandarin: {{t|zh|会议记录|sc=Hani}}
-* Czech: {{t-|cs|zápis|m}}
-* Dutch: [[notulen]] ({{p}})
-* Finnish: {{t+|fi|pöytäkirja}}
-* French: {{t+|fr|procès-verbal|m}}
-* Greek: {{t+|el|πρακτικά|n|tr=praktiká}} ({{p}})
-* Hebrew: [[פרוטוקול]] (protokol)
-* Japanese: [[議事録]] (ぎじろく)
-* Macedonian: {{t|mk|записник|m|tr=zápisnik}}
-{{trans-mid}}
-* Malay: {{t|ms|catatan|xs=Malay}},
-* Maltese: {{t-|mt|minuta|xs=Maltese}},
-* Norwegian: {{t-|no|protokoll|m}},
-* Polish: {{t+|pl|protokół|m}}, {{t+|pl|notatka|f}}
-* Portuguese: {{t+|pt|ata|f}}
-* Russian: {{t+|ru|протокол|m|tr=protokól}}
-* Scots: {{tø|sco|meenit|xs=Scots}}
-* Spanish: {{t-|es|acta|f}}
-* Swahili: {{t+|sw|dakika|xs=Swahili}}
-* Swedish: {{t+|sv|protokoll|n}},
-{{trans-bottom}}
-
-{{trans-top|minute of use of telephone network}}
-* Armenian: {{t+|hy|րոպե|tr=rope}}
-* Czech: {{t+|cs|minuta|f}},
-* Estonian: {{t-|et|minut}}, {{t-|et|minut}}
-* Greek: {{t+|el|λεπτό|n|tr=leptó}}
-* Macedonian: {{t+|mk|минута|f|tr=mínuta}}
-* Malay: {{t-|ms|minit|xs=Malay}},
-{{trans-mid}}
-* Polish: {{t+|pl|minuta|f}}
-* Russian: {{t+|ru|минута|f|tr=minúta}}
-* Scots: {{tø|sco|meenit|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|mionaid|f|xs=Scottish Gaelic}}
-* Spanish: {{t+|es|minuto|m}}
-* Swahili: {{t+|sw|dakika|xs=Swahili}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|br}}: [[munut]] {{m}}, munutoù (1)
-* {{ttbc|ca}}: [[minut]] {{m}} (1)
-* {{ttbc|io}}: [[minuto]]
-* {{ttbc|ia}}: [[minuta]] (1, 4)
-{{trans-mid}}
-* {{ttbc|ku}}: [[deqe]], [[deqîqe]] (1-3)
-* {{ttbc|ro}}: [[minut]] {{n}} (1)
-* {{ttbc|yi}}: [[מינוט]] (minút) (1)
-{{trans-bottom}}
-
-=====Synonyms=====
-* {{sense|short, unspecified period of time}} [[instant]], [[jiffy]], [[mo]], [[moment]], [[sec]], [[second]], [[tic]]
-* {{sense|unit of angular measure}} [[minute of arc]]
-
-====Verb====
+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}}
+<h4>Pronunciation</h4>
+<ul><li> {{enPR|mĭn'ĭt}}, {{IPA|/ˈmɪnɪt/}}, {{X-SAMPA|/"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>
+</ul>
+
+<h4>Noun</h4>
+{en-noun}
+<ol><li> A unit of time equal to sixty seconds (one-sixtieth of an hour).</li>
+<ul><li> <em>You have twenty <b>minutes</b> to complete the test.</em></li>
+</ul>
+<li> A short but unspecified time period.</li>
+<ul><li> <em>Wait a <b>minute</b>, I’m not ready yet!</em></li>
+</ul>
+<li> A unit of angle equal to one-sixtieth of a degree.</li>
+<ul><li> <em>We need to be sure these maps are accurate to within one <b>minute</b> of arc.</em></li>
+</ul>
+<li> {{context|in the plural|minutes}} A (usually formal) written record of a meeting.</li>
+<ul><li> <em>Let’s look at the <b>minutes</b> of last week’s meeting.</em></li>
+</ul>
+<li> A minute of use of a telephone or other network, especially a cell phone network.</li>
+<ul><li> <em>If you buy this phone, you’ll get 100 free <b>minutes</b>.</em></li>
+</ul>
+</ol>
+
+<h5>Related terms</h5>
+<ul><li> arcminute</li>
+</ul>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|short, unspecified period of time}} instant, jiffy, mo, moment, sec, second, tic</li>
+<li> {{sense|unit of angular measure}} minute of arc</li>
+</ul>
+
+<h4>Verb</h4>
 {{en-verb|minut|ing}}
-
-# {{transitive}} Of an event, to write in a [[memo]] or the [[minutes]] of a meeting.
-#: ''I’ll '''minute''' this evening’s meeting.''
-#* '''1995,''' Edmund Dell, ''The Schuman Plan and the British Abdication of Leadership in Europe'' [http://print.google.com/print?hl=en&id=us6DpQrcaVEC&pg=PA74&lpg=PA74&sig=8WYGZFKFxIhE4WPCpVkzDvHpO1A]
-#*: On 17 November 1949 Jay '''minuted''' Cripps, arguing that trade liberalization on inessentials was socially regressive.
-#* '''1996,''' Peter Hinchliffe, ''The Other Battle'' [http://print.google.com/print?hl=en&id=vxBK8kHLTyIC&pg=PA78&lpg=PA78&sig=lXg1Kvn_f1KsmB4gdOv51h5nu8I]
-#*: The Commander-in-Chief of Bomber Command, Sir Richard Peirse, was sceptical of its findings, '''minuting,''' ‘I don’t think at this rate we could have hoped to produce the damage which is known to have been achieved.’
-#* '''2003,''' David Roberts, ''Four Against the Arctic'' [http://print.google.com/print?hl=en&id=yPsgKV7zo_kC&pg=PA18&lpg=PA18&sig=WNGXG6bM-ja8NDueqgtdNrCkslM]
-#*: [...] Mr. Klingstadt, chief Auditor of the Admiralty of that city, sent for and examined them very particularly concerning the events which had befallen them; '''minuting''' down their answers in writing, with an intention of publishing himself an account of their extraordinary adventures.
-
-=====Translations=====
-{{trans-top|to write}}
-* Czech: {{t-|cs|zapisovat}}
-* Dutch: {{t-|nl|notuleren}},
-* Finnish: [[pitää]] [[pöytäkirja|pöytäkirjaa]]
-* German: {{t-|de|protokollieren}}, {{t-|de|aufzeichnen}},
-* Greek: {{t+|el|πρωτοκολλώ|tr=protokoló}}, {{t+|el|καταγράφω|tr=katagráfo}}
-* Hebrew: {{t-|he|סיכם|tr=sikém}}, {{t-|he|רשם בפרוטוקול|tr=rashám baprótokol}}, {{t-|he|רשם פרוטוקול|tr=rashám prótokol}}
-{{trans-mid}}
-* Interlingua: [[minutar]]
-* Macedonian: {{t|mk|води записник|tr=vódi zápisnik}}
-* Russian: [[вести]] [[протокол]] (vestí protokól)
-* Scots: {{tø|sco|meenit|xs=Scots}}
-* Spanish: {{t|es|minutar}}
-* Swedish: {{t+|sv|föra}} {{t+|sv|protokoll}}, {{t-|sv|protokollföra}}
-{{trans-bottom}}
-
-===Etymology 2===
-From {{etyl|la}} {{term|minutus|minūtus|lang=la|small", "petty}}, perfect passive participle of {{term|minuo|minuō|lang=la|make smaller}}.
-
-====Pronunciation====
-* {{a|UK}} {{enPR|mīnyo͞ot'}}, {{IPA|/maɪˈnjuːt/}}, {{X-SAMPA|/maI'nju:t/}}
-* {{a|US}} {{enPR|mīn(y)o͞ot'}}, {{IPA|/maɪˈn(j)ut/}}, {{X-SAMPA|/maI"n(j)ut/}}
-* {{audio|en-us-minute-adjective.ogg|Audio (US)}}
-* {{rhymes|uːt}}
-
-====Adjective====
+<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>
+<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>
+<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>
+<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}}.
+<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> {{audio|en-us-minute-adjective.ogg|Audio (US)}}</li>
+<li> {{rhymes|uːt}}</li>
+</ul>
+
+<h4>Adjective</h4>
 {{en-adj|minut|er}}
-
-# Very [[small]].
-#: ''They found only '''minute''' quantities of chemical residue on his clothing.''
-# very [[careful]] and [[exact]], giving small [[detail]]s.
-
-=====Synonyms=====
-* {{sense|small}}
-* [[infinitesimal]], [[insignificant]], [[minuscule]], [[tiny]], [[trace]]
-* See also [[Wikisaurus:tiny]]
-* {{sense|exact}}
-* [[exact]], [[exacting]], [[excruciating]], [[precise]], [[scrupulous]]
-* See also [[Wikisaurus:meticulous]]
-
-=====Antonyms=====
-* [[big]], [[enormous]], [[colossal]], [[huge]], [[significant]], [[tremendous]], [[vast]]
-
-=====Translations=====
-{{trans-top|very small}}
-* Armenian: {{t-|hy|մանր|tr=manr}}
-* Catalan: [[menut]], [[diminut]], [[minúscul]] {{m}}, [[menuda]], [[diminuta]], [[minúscula]] {{f}}
-* Czech: {{t+|cs|drobný}}, {{t-|cs|nepatrný}}
-* Dutch: {{t-|nl|minuscuul}}, {{t-|nl|minuscule}}, {{t-|nl|onbeduidend}}, {{t-|nl|onbeduidende}}, {{t+|nl|nietig}}, {{t-|nl|nietige}},
-* Finnish: {{t-|fi|pienenpieni}},
-* French: {{t+|fr|minuscule}}
-* German: {{t+|de|winzig}},
-* Greek: {{t+|el|μικροσκοπικός|m|tr=mikroskopikós}}
-* Hebrew: [[זעיר]] (zair) {{m}} (1), [[מפורט]] (meforat) {{m}} (2)
-* Interlingua: [[minuscule]], minute
-{{trans-mid}}
-* Italian: {{t+|it|minuscolo|m}}, {{t+|it|minuscola|f}}, {{t-|it|piccolissimo|m}}, {{t-|it|piccolissima|f}}
-* Macedonian: {{t|mk|малечок|m|tr=málečok}}, {{t|mk|ситен|m|tr=síten}}, {{t-|mk|дребен|m|tr=drében}}
-* Persian: {{t|fa|ریز|tr=riz|xs=Persian}}
-* Polish: {{t+|pl|malutki}},
-* Portuguese: {{t+|pt|minúsculo|m}}
-* Romanian: {{t+|ro|minuscul|m}}, {{t+|ro|minusculă|f}}
-* Scottish Gaelic: {{t-|gd|meanbh|xs=Scottish Gaelic}}, {{t-|gd|mion|xs=Scottish Gaelic}}
-* Spanish: {{t+|es|menudo}}
-* Swedish: {{t-|sv|mycket lite}}, {{t-|sv|väldigt lite}}
-* Tajik: {{t|tg|рез|tr=rez|sc=Cyrl}}
-{{trans-bottom}}
-
-{{trans-top|very careful and exact, giving small details}}
-* Armenian: {{t-|hy|մանրամասն|tr=manramasn}}
-* Czech: {{t-|cs|podrobný}}
-* French: {{t|fr|minutieux}}
-{{trans-mid}}
-* Macedonian: {{t-|mk|подробен|m|tr=pódroben}}, {{t|mk|детален|m|tr=détalen}}, {{t|mk|прецизен|m|tr=précizen}}
-* Scottish Gaelic: {{t-|gd|mion|xs=Scottish Gaelic}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[minuet#English|minuet]]
-* [[untime#English|untime]]
-
-[[Category:1000 English basic words]]
-[[Category:English heteronyms]]
-[[Category:en:Time]]
-[[Category:en:Units of measure]]
-
-----
-
-
+<ol><li> Very small.</li>
+<ul><li> <em>They found only <b>minute</b> quantities of chemical residue on his clothing.</em></li>
+</ul>
+<li> very careful and exact, giving small details.</li>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|small}}</li>
+<li> infinitesimal, insignificant, minuscule, tiny, trace</li>
+<li> See also Wikisaurus:tiny</li>
+<li> {{sense|exact}}</li>
+<li> exact, exacting, excruciating, precise, scrupulous</li>
+<li> See also Wikisaurus:meticulous</li>
+</ul>
+
+<h5>Antonyms</h5>
+<ul><li> big, enormous, colossal, huge, significant, tremendous, vast</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> minuet</li>
+<li> untime</li>
+</ul>
+Category:1000 English basic wordsCategory:English heteronymsCategory:en:TimeCategory:en:Units of measure----
 ***Monday***
-Monday: 
-
-===Etymology===
-* {{etyl|ang}} {{term|monandæg|mōnandæġ|day of the moon|lang=ang}}, from {{term|mona|mōna|moon|lang=ang}} + {{term|dæg||day|lang=ang}}, a translation of {{etyl|la}} {{term|dies lunae|lang=la}}
-
-===Pronunciation===
-* {{IPA|/ˈmʌn.deɪ/|/ˈmʌn.di/}}, {{X-SAMPA|/"mVn.deI/|/"mVn.di/}}
-* {{audio|en-us-Monday.ogg|Audio (US)}}
-* {{audio|En-uk-Monday.ogg|Audio (UK)}}
-* {{rhymes|ʌndeɪ}} ''or'' {{rhymes|ʌndi}}
-
-===Noun===
-{{en-noun}}
-
-# The first day of the [[week]] in systems using the [[w:ISO 8601|ISO 8601]] norm and second day of the week in many religious traditions. It follows [[Sunday]] and precedes [[Tuesday]].
-#* ''Solomon Grundy,<br>Born on a '''Monday''',<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.''
-
-====Derived terms====
+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>
+
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈmʌn.deɪ/|/ˈmʌn.di/}}, {{X-SAMPA|/"mVn.deI/|/"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>
+</ul>
+
+<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>
+</ol>
+
+<h4>Derived terms</h4>
 {{rel-top4|Derived terms}}
-* [[Ash Monday]]
-* [[Black Monday]]
-* [[Bloody Monday]]
-* [[blue Monday]]
-* [[Clean Monday]]
-* [[Collop Monday]]
-* [[Cyber Monday]]
-* [[Ducking Monday]]
-* [[Easter Monday]]
-* [[Fat Monday]]
-* [[Gang-Monday]]
-{{rel-mid4}}
-* [[Green Monday]]
-* [[Handsel Monday]]
-* [[Hock Monday]]
-* [[Holy Monday]]
-* [[Meal Monday]]
-* [[Mon]], [[Mon.]]
-* [[Monday Club]]
-* [[Monday disease]]
-* [[w:Monday demonstrations|Monday demonstrations]]
-* [[Monday effect]]
-* [[Monday fever]]
-{{rel-mid4}}
-* [[Monday hammer]]
-* [[Mondayish]]
-* [[Mondayitis]]
-* [[Mondayise]], [[Mondayize]]
-* [[Mondayman]]
-* [[Monday-morning]]<!--adjective-->
-* [[Monday pops]]
-* [[Mondays]]<!--adverb-->
-* [[Pentecost Monday]]
-* [[Plough-Monday]], [[Plow-Monday]]
-{{rel-mid4}}
-* [[Pure Monday]]
-* [[Rope Monday]]
-* [[Saint Monday]]
-* [[Saturday-to-Monday]]
-* [[Selection Monday]]
-* [[Shrove Monday]]
-* [[Trinity Monday]]
-* [[Wet Monday]]
-* [[Whit Monday]], [[Whit-Monday]]
-* [[Whitsun Monday]]
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|day of the week}}
-* Abkhaz: {{t|ab|ашәахь|tr=ašwax’|sc=Cyrl}}
-* Adyghe: {{tø|ady|блыпэ|tr=blype}}
-* Afrikaans: {{t|af|Maandag}}
-* Alabama: [[nihtàllo inníhta]]
-* Albanian: {{t|sq|e hënë}}
-* Alutiiq: {{tø|ems|Pekyun}}
-* American Sign Language: {{tø|ase|M@Side-PalmBack CirclesHoriz}}
-* Amharic: [[ሰኞ]] (senyo)
-* Amuzgo: [[luñè]]
-* Arabic: {{t|ar|الإثنين|m|tr=al-ʾiṯnáyn|alt=الإثنَين|sc=Arab}}, {{t|ar|يوم الإثنين‎|m|tr=yawm al-ʾiṯnáyn|alt=يَوْم الإثنَين‎|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|الإتنين|m|tr=letneen|sc=Arab}}
-* Armenian: {{t+|hy|երկուշաբթի|tr=erkušabt'i}}
-*: Old Armenian: {{tø|xcl|երկշաբաթի|tr=erkšabatʿi|sc=Armn}}
-* Aromanian: {{t|rup|luni}}
-* Azeri: {{t|az|bazar ertəsi}}
-* Bashkir: {{tø|ba|дүшәмбе|tr=düşəmbi|sc=Cyrl}}
-* Basque: [[astelehen]]
-* Belarusian: {{t+|be|панядзелак|m|tr=panjadzélak|sc=Cyrl}}
-* Bengali: {{t|bn|সোমবার|tr=shombar|sc=Beng}}
-* Blackfoot: [[issikatoyiiksistsiko]]
-* Breton: [[Lun]] {{m}}
-* Bulgarian: {{t+|bg|понеделник|m|tr=ponedélnik}}
-* Burmese: {{t-|my|တနင်္လာ|tr=tăninla|sc=Mymr|xs=Burmese}}
-* Catalan: {{t|ca|dilluns|m}}
-* Central Atlas Tamazight: [[ⴰⵔⵉⵎ]]
-* Chechen: {{tø|ce|оршот|tr=oršot}}
-* Cherokee: [[ᎤᎾᏙᏓᏉᏅᎯ]] (unadodaquonvhi)
-* Chichewa: {{tø|ny|lolemba}}
-* Chinese:
-*: Mandarin: {{t|zh|星期一|tr=xīngqīyī|sc=Hani}}, {{t|zh|禮拜一|sc=Hani}}, {{t|zh|礼拜一|tr=lǐbàiyī|sc=Hani}}, {{t|zh|周一|tr=zhōuyī|sc=Hani}}
-* Chuvash: {{tø|cv|тунтикун|tr=tuntikun|sc=Cyrl}}
-* Corsican: [[luni]]
-* Czech: {{t+|cs|pondělí|n}}
-* Dakota: {{tø|dak|Aŋpetutokaheya}}
-* Danish: {{t+|da|mandag}}
-* Dutch: {{t+|nl|maandag|m}}
-* Esperanto: {{t+|eo|lundo|xs=Esperanto}}
-* Estonian: {{t+|et|esmaspäev}}
-* Faroese: {{t+|fo|mánadagur|m|xs=Faroese}}
-* Fijian: {{t|fj|Moniti}}
-* Finnish: {{t+|fi|maanantai}}
-* French: {{t+|fr|lundi|m}}
-* Friulian: {{t|fur|lunis}}
-* Galician: [[luns]]
-* Georgian: {{t+|ka|ორშაბათი|sc=Geor|xs=Georgian}} (oršabat’i)
-* German: {{t|de|Montag|m}}
-* Gilbertese: {{tø|gil|Moanibong}}
-* Greek: {{t+|el|Δευτέρα|f|tr=Deftéra|sc=Grek}}
-* Greenlandic: {{t+|kl|Ataasinngorneq|xs=Greenlandic}}
-* Gujarati: {{t|gu|સોમવાર|m|tr=somavār|sc=Gujr}}
-* Haitian Creole: {{tø|ht|lendi}}
-* Hawaiian: {{tø|haw|Pōʻakahi}}
-* Hebrew: {{t|he|יום שני|m|tr=yom shení|sc=Hebr}}
-* Hindi: {{t|hi|सोमवार|m|tr=somavār|sc=Deva}}, {{t|hi|चन्द्रवार|m|tr=candravār|sc=Deva}}
-* Hungarian: {{t+|hu|hétfő}}
-* Icelandic: {{t+|is|mánudagur|m}}
-* Ido: [[lundio]]
-* Indonesian: [[hari senin]]
-* Interlingua: [[lunedi]]
-* Irish: {{t+|ga|Luan|m|xs=Irish}}
-* Italian: {{t+|it|lunedì|m}}
-* Japanese: {{t|ja|月曜日|tr=げつようび, getsuyōbi|sc=Jpan}}, {{t|ja|月曜|tr=げつよう, getsuyō|sc=Jpan}}
-* Jèrriais: [[Lundi]] {{m}}
-* Kannada: {{t|kn|ಸೋಮವಾರ|tr=somavār|sc=Knda}}
-* Kashubian: [[pòniedzôłk]] {{m}}
-* Kazakh: {{t+|kk|дүйсенбі|tr=düysenbi|sc=Cyrl}}
-* Khmer: {{t|km|ថ្ងៃច័ន្ទ|tr=tngai jŭn|sc=Khmr}}
-* Kinyarwanda: [[Kwambere]]
-* Kongo: {{tø|kg|Lumbu kia ntete}}
-* Korean: {{t+|ko|월요일|tr=woryoil|sc=Kore}} ({{t|ko|月曜日|sc=Kore}})
-* Kurdish: [[duşem]], {{ku-Arab|[[دووشه‌م]]}}, {{ku-Arab|[[دووشه‌مه‌]]}}
-* Kyrgyz: {{t|ky|дүйшөмбү|tr=düyşömbü|sc=Cyrl}}
-* Lao: {{t+|lo|ວັນຈັນ|tr=wan-can|sc=Laoo|xs=Lao}}
-* Latin: {{t+|la|dies Lunae}}
-* Latvian: {{t+|lv|pirmdiena|xs=Latvian}}
-* Lithuanian: {{t+|lt|pirmadienis|m|xs=Lithuanian}}
-* Livonian: [[ežžõmpǟva]]
-* Lojban: [[pavdei]]
-* Lower Sorbian: [[pónjeźele]] {{n}}
-* Luganda: {{tø|lg|Kazooba}}, {{tø|lg|Bbalaza}}
-* Luxembourgish: {{t|lb|Méinden|m}}, {{t|lb|Méindeg|m}}
-{{trans-mid}}
-* Macedonian: {{t+|mk|понеделник|m|tr=ponédelnik}}
-* Malay: {{t-|ms|senin|xs=Malay}}, {{t|ms|Isnin}}
-* Maltese: {{t-|mt|it-Tnejn|xs=Maltese}}
-* Maori: [[Mane]], [[Rātahi]], [[Rāhina]]
-* Marathi: {{t|mr|सोमवार|m|tr=somavār|sc=Deva}}
-* Mongolian: {{t+|mn|даваа|tr=davaa|sc=Cyrl}}
-* Navajo: {{tø|nv|Damį́įgo Biiskání}}
-* Neapolitan: [[lunnerì]], [[lunnedì]]
-* Norwegian: {{t+|no|mandag}} {{qualifier|Bokmål}}
-*: Norwegian Nynorsk: {{t+|nn|måndag|xs=Norwegian Nynorsk}}
-* Occitan: {{t+|oc|diluns|xs=Occitan}}
-* Ojibwe: [[ishkwaa-anami'egiizhigad]], [[nitam-anokii-giizhigad]]
-* Old English: {{t-|ang|monandæg|m|alt=mōnandæġ|xs=Old English}}
-* Old Norse: [[mánudagr]] {{m}}
-* Old Turkic: {{tø|otk|ikinç}}
-* Ossetian:
-*: Digor: {{tø|os|авдисæр|tr=avdisær|sc=Cyrl|xs=Ossetian}}
-*: Iron: {{tø|os|къуырисæр|tr=k”uyrisær|sc=Cyrl|xs=Ossetian}}
-* Papiamentu: {{tø|pap|dialuna}}
-* Pashto: {{t|ps|دوشنبه|tr=dōšanbe|sc=ps-Arab}}, {{t|ps|دوشنبې|tr=dōšanbe|sc=ps-Arab}}
-* Persian: {{t|fa|دوشنبه|tr=došanbe|sc=fa-Arab}}
-* Polish: {{t+|pl|poniedziałek|m}}
-* Portuguese: {{t+|pt|segunda-feira|f}}
-* Quechua: {{t|qu|lunis}}
-* Romani: {{tø|rom|luja}}
-* Romanian: {{t+|ro|luni|f}}
-* Romansch: {{t|rm|glindesdi}}, {{l|rm|lündeschdi}}
-* Russian: {{t+|ru|понедельник|m|tr=ponedélʹnik}}
-* Sami:
-*: Inari: [[vuossargâ]]
-*: Lule: [[mánnodahka]]
-*: Northern: [[vuossárga]]; [[mánnodat]] ''(in Sweden)''
-*: Skolt: [[vuõssargg]]
-*: Southern: [[måanta]]
-* Samoan: {{t|sm|Aso Gafua}}
-* Sardinian: [[lunis]]
-* Scots: [[Monanday]]
-* Scottish Gaelic: {{t-|gd|Diluain|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|понедељак|m}}, {{t|sh|понедјељак|m}}
-*: Roman: {{t|sh|ponedeljak|m}}, {{t|sh|ponedjeljak|m}}
-* Shona: {{t|sn|Muvhuro}}
-* Sinhalese: {{t|si|සඳුදා|tr=sandudā|sc=Sinh}}
-* Skolt Sami: {{tø|sms|vuõssargg}}, {{tø|sms|vuõsargg}}
-* Slovak: {{t+|sk|pondelok|m}}
-* Slovene: {{t+|sl|ponedeljek|m}}
-* Somali: [[Isniin]]
-* Sotho: [[Mantaha]]
-* Spanish: {{t+|es|lunes|m}}
-* Swedish: {{t+|sv|måndag|c}}
-* Tagalog: {{t|tl|Lunes}}, {{t|tl|lunes}}
-* Tahitian: {{tø|ty|Monite}}
-* Tajik: {{t|tg|душанбе|tr=dušanbe|sc=Cyrl}}
-* Tamil: {{t|ta|திங்கள்|tr=tiṅgaḷ|sc=Taml}}
-* Taos: [[lúnąsi]]
-* Tarantino: {{tø|roa-tar|lunedìe}}
-* Tatar: {{t+|tt|дүшәмбе|tr=düşämbe|sc=Cyrl}}
-* Telugu: {{t|te|సోమవారము|tr=somawaramu|sc=Telu}}
-* Thai: {{t+|th|วันจันทร์|tr=wanjan}}
-* Tok Pisin: {{t|tpi|mande}}
-* Tongan: {{t|to|Monite}}
-* Tswana: {{t|tn|mosupologo}}
-* Turkish: {{t+|tr|pazartesi}}
-* Turkmen: {{t|tk|duşenbe}}, {{t|tk|başgün}}
-* Ukrainian: {{t+|uk|понеділок|m|tr=ponedílok|xs=Ukrainian}}
-* Upper Sorbian: [[póndźela]] {{f}}
-* Urdu: {{t|ur|پیر|tr=pir|sc=ur-Arab}}
-* Uyghur: {{t|ug|دۈشەنبە|sc=ug-Arab}}
-* Uzbek: {{t|uz|dushanba}}
-* Venetian: {{tø|vec|luni|m}}
-* Vietnamese: {{t+|vi|thứ hai|xs=Vietnamese}}
-* Volapük: {{t|vo|mudel}}, {{t|vo|telüdel}}, {{t|vo|mundel}}
-* Welsh: {{t+|cy|dydd Llun|m|xs=Welsh}}
-* West Frisian: [[moandei]]
-* Wolof: [[Altine]]
-* Xhosa: {{t|xh|umvulo}}
-* Yiddish: {{t|yi|מאָנטיק|m|tr=móntik|sc=Hebr}}
-* Yoruba: [[Ọjó ajé]]
-* Zulu: {{t|zu|uMsombuluko}}
-{{trans-bottom}}
-
-{{trans-top|Translations to check}}
-* Tibetan: [[གཟའ་ཟླ་བ་]]
-{{trans-mid}}
-{{trans-bottom}}
-
-===Adverb===
+<ul><li> Ash Monday</li>
+<li> Black Monday</li>
+<li> Bloody Monday</li>
+<li> blue Monday</li>
+<li> Clean Monday</li>
+<li> Collop Monday</li>
+<li> Cyber Monday</li>
+<li> Ducking Monday</li>
+<li> Easter Monday</li>
+<li> Fat Monday</li>
+<li> Gang-Monday</li>
+</ul>
+{rel-mid4}
+<ul><li> Green Monday</li>
+<li> Handsel Monday</li>
+<li> Hock Monday</li>
+<li> Holy Monday</li>
+<li> Meal Monday</li>
+<li> Mon, Mon.</li>
+<li> Monday Club</li>
+<li> Monday disease</li>
+<li> Monday demonstrations</li>
+<li> Monday effect</li>
+<li> Monday fever</li>
+</ul>
+{rel-mid4}
+<ul><li> Monday hammer</li>
+<li> Mondayish</li>
+<li> Mondayitis</li>
+<li> Mondayise, Mondayize</li>
+<li> Mondayman</li>
+<li> Monday-morning</li>
+<li> Monday pops</li>
+<li> Mondays</li>
+<li> Pentecost Monday</li>
+<li> Plough-Monday, Plow-Monday</li>
+</ul>
+{rel-mid4}
+<ul><li> Pure Monday</li>
+<li> Rope Monday</li>
+<li> Saint Monday</li>
+<li> Saturday-to-Monday</li>
+<li> Selection Monday</li>
+<li> Shrove Monday</li>
+<li> Trinity Monday</li>
+<li> Wet Monday</li>
+<li> Whit Monday, Whit-Monday</li>
+<li> Whitsun Monday</li>
+</ul>
+{rel-bottom}
+<h3>Adverb</h3>
 {{en-adv|-}}
+<ol><li> on Monday</li>
+</ol>
+
+<h3>See also</h3>
+<ul><li> {{list|en|days of the week}}</li>
+</ul>
 
-# on Monday
-
-====Translations====
-{{trans-top|on Monday}}
-* Dutch: {{t|nl|maandag|alt='s maandags}}
-* Finnish: {{t|fi|maanantaina}}
-* French: {{t+|fr|lundi}}
-* German: {{t+|de|Montag}},  {{t|de|am Montag}}
-* Hungarian: {{t+|hu|hétfőn}}
-* Irish: {{t+|ga|Dé Luain|xs=Irish}}
-* Italian: {{t+|it|lunedì}}
-* Khmer: {{t|km|ថ្ងៃច័ន្ទ|tr=thngai chan|sc=Khmr}}
-* Latvian: {{t|lv|pirmdien}}
-* Lithuanian: {{t|lt|pirmadienis}}
-* Macedonian: {{t|mk|во понеделник|tr=vo ponédelnik}},  {{t|mk|понеделнички|tr=ponedélnički}}
-{{trans-mid}}
-* Maltese: {{t-|mt|nhar it-Tnejn|xs=Maltese}}
-* Norwegian: {{t|no|på}} {{t|no|mandag}}
-* Polish: [[w]] [[poniedziałek]]
-* Romanian: {{t|ro|luni}}, {{t|ro|lunea}}
-* Russian: [[в#Russian|в]] [[понедельник]] (v ponedél’nik)
-* Scottish Gaelic: {{t-|gd|Di-luain|m|xs=Scottish Gaelic}}
-* Swedish: {{t|sv|på}} {{t|sv|måndag}}
-* Turkish: {{t|tr|pazartesi}}
-* Volapük: {{t|vo|mudelo}}, {{t|vo|telüdelo}}, {{t|vo|mundelo}}
-{{trans-bottom}}
-
-===See also===
-* {{list|en|days of the week}}
-
-===Anagrams===
-* [[dynamo#English|dynamo]]
-
-[[af:Monday]]
-[[ast:Monday]]
-[[az:Monday]]
-[[zh-min-nan:Monday]]
-[[be:Monday]]
-[[bs:Monday]]
-[[ca:Monday]]
-[[cs:Monday]]
-[[cy:Monday]]
-[[da:Monday]]
-[[de:Monday]]
-[[et:Monday]]
-[[el:Monday]]
-[[es:Monday]]
-[[eo:Monday]]
-[[eu:Monday]]
-[[fr:Monday]]
-[[fy:Monday]]
-[[ga:Monday]]
-[[gl:Monday]]
-[[ko:Monday]]
-[[hy:Monday]]
-[[hr:Monday]]
-[[io:Monday]]
-[[id:Monday]]
-[[it:Monday]]
-[[kl:Monday]]
-[[kn:Monday]]
-[[ka:Monday]]
-[[kk:Monday]]
-[[sw:Monday]]
-[[ku:Monday]]
-[[lo:Monday]]
-[[la:Monday]]
-[[lv:Monday]]
-[[lb:Monday]]
-[[lt:Monday]]
-[[ln:Monday]]
-[[hu:Monday]]
-[[mk:Monday]]
-[[mg:Monday]]
-[[ml:Monday]]
-[[mn:Monday]]
-[[my:Monday]]
-[[nl:Monday]]
-[[ja:Monday]]
-[[no:Monday]]
-[[nn:Monday]]
-[[oc:Monday]]
-[[km:Monday]]
-[[pl:Monday]]
-[[pt:Monday]]
-[[ro:Monday]]
-[[ru:Monday]]
-[[simple:Monday]]
-[[fi:Monday]]
-[[sv:Monday]]
-[[ta:Monday]]
-[[tg:Monday]]
-[[tr:Monday]]
-[[uk:Monday]]
-[[vi:Monday]]
-[[vo:Monday]]
-[[zh:Monday]]
+<h3>Anagrams</h3>
+<ul><li> dynamo</li>
+</ul>
+af:Mondayast:Mondayaz:Mondayzh-min-nan:Mondaybe:Mondaybs:Mondayca:Mondaycs:Mondaycy:Mondayda:Mondayde:Mondayet:Mondayel:Mondayes:Mondayeo:Mondayeu:Mondayfr:Mondayfy:Mondayga:Mondaygl:Mondayko:Mondayhy:Mondayhr:Mondayio:Mondayid:Mondayit:Mondaykl:Mondaykn:Mondayka:Mondaykk:Mondaysw:Mondayku:Mondaylo:Mondayla:Mondaylv:Mondaylb:Mondaylt:Mondayln:Mondayhu:Mondaymk:Mondaymg:Mondayml:Mondaymn:Mondaymy:Mondaynl:Mondayja:Mondayno:Mondaynn:Mondayoc:Mondaykm:Mondaypl:Mondaypt:Mondayro:Mondayru:Mondaysimple:Mondayfi:Mondaysv:Mondayta:Mondaytg:Mondaytr:Mondayuk:Mondayvi:Mondayvo:Mondayzh:Monday
 ***month***
-month: 
-{{wikipedia}}
-
-===Alternative forms===
-* {{l|en|moneth}} {{qualifier|dialectal}}
-
-===Etymology===
-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}}.
-
-===Pronunciation===
-* {{enPR|mŭnth}}, {{IPA|/mʌnθ/}}, {{X-SAMPA|/mVnT/}}
-* {{audio|en-us-month.ogg|Audio (US)}}
-* {{audio|En-uk-a month.ogg|Audio (UK)}}
-* {{rhymes|ʌnθ}}
-
-===Noun===
-{{en-noun}}
-
-# A [[period]] into which a [[year]] is divided, historically based on the phases of the moon. In the Gregorian [[calendar]] there are twelve months: [[January]], [[February]], [[March]], [[April]], [[May]], [[June]], [[July]], [[August]], [[September]], [[October]], [[November]] and [[December]].
-#: ''July is my favourite '''month'''.''
-# A period of 30 [[day]]s, 31 days, or some alternation thereof.
-#: ''We went on holiday for two '''months'''.''
-#* {{quote-news
-|year=2011
-|date=September 29
-|author=Jon Smith
-|title=Tottenham   3 - 1   Shamrock Rovers
-|work=BBC Sport
-|url=http://news.bbc.co.uk/sport2/hi/football/15014632.stm
-|page=
-|passage=With the north London derby to come at the weekend, Spurs boss Harry Redknapp opted to rest many of his key players, although he brought back Aaron Lennon after a '''month''' out through injury.}}
-# {{obsolete|in the plural}} A woman's [[period]]; menstrual discharge.
-#* '''1621''', Robert Burton, ''The Anatomy of Melancholy'', vol. I, New York 2001, p. 234:
-#*: Sckenkius hath two other instances of two melancholy and mad women, so caused from the suppression of their '''months'''.
-
-====Related terms====
-* [[monthly]]
-* [[month of Sundays]]
-* [[time of the month]]
-
-====Translations====
-{{trans-top|period into which a year is divided}}
-* Afrikaans: {{t+|af|maand|xs=Afrikaans}}
-* Albanian: {{t-|sq|muaj|m|xs=Albanian}}
-* American Sign Language: {{tø|ase|1@TipFinger-PalmBack-1@CenterChesthigh-FingerUp 1@BaseThumb-PalmBack-1@CenterChesthigh-FingerUp}}
-* Amuzgo: [[chi']]
-* Arabic: {{t|ar|شهر|m|tr=shahr|alt=شَهْرٌ|sc=Arab}}
-* Aramaic:
-*: Syriac: [[ܝܪܚܐ]] (yarħā’) {{m}}
-*: Hebrew: [[ירחא]] (yarħā’) {{m}}
-* Armenian: {{t+|hy|ամիս|tr=amis}}
-*: Old Armenian: {{tø|xcl|ամիս|tr=amis|xs=Old Armenian}}
-* Aromanian: {{tø|rup|mes}}
-* Asturian: {{t|ast|mes|m}}
-* Azeri: {{t+|az|ay|xs=Azeri}}
-* Baluchi: {{tø|bal|ماہ|tr=máh}}
-* Basque: {{t|eu|hil|xs=Basque}}, {{t|eu|hilabete|xs=Basque}}
-* Belarusian: {{t|be|месяц|m|tr=mésjac|sc=Cyrl}}
-* Breton: {{t+|br|miz|m|xs=Breton}}, {{t|br|mizvezh|m|xs=Breton}}
-* Bulgarian: {{t-|bg|месец|m|tr=mésec}} <!-- removed non-lemma: {{t+|bg|месеци|p|tr=méseci}} -->
-* Catalan: {{t+|ca|mes|m}}
-* Central Atlas Tamazight: {{tø|tzm|ⵢⵓⵔ|tr=yur}}
-* Cherokee: {{t|chr|ᏏᏅᏙ|tr=sinvdo|sc=Cher}}
-* Chinese:
-*: [[Dungan]]: {{tø|dng|йүә|sc=Cyrl}}
-*: Mandarin: {{t-|cmn|月|tr=yuè|sc=Hani}}, {{t-|cmn|月份|tr=yuèfèn|sc=Hani}}
-* Crimean Tatar: [[ay#Crimean Tatar|ay]]
-* Czech: {{t+|cs|měsíc|m}}
-* Dalmatian: {{t|dlm|mais|m}}
-* Danish: {{t+|da|måned|c}}
-* Dutch: {{t+|nl|maand|f}}
-* Erzya: {{tø|myv|ков|tr=kov}}
-* Esperanto: {{t+|eo|monato|xs=Esperanto}}
-* Estonian: {{t+|et|kuu}}
-* Ewe: [[dzinu]], [[ɣleti]]
-* Faroese: {{t|fo|mánaður|m}}
-* Finnish: {{t+|fi|kuukausi}} ({{t+|fi|kuu}} when preceded by a modifier, e.g., ''ensi kuussa = next month'')
-* French: {{t+|fr|mois|m}}
-* Friulian: {{t|fur|mês|m}}
-* Galician: {{t|gl|mes|m}}
-* Georgian: {{t-|ka|თვე|tr=t’ve|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Monat|m}}
-* Greek: {{t+|el|μήνας|m|tr=mínas}}
-* Gujarati: {{t|gu|મહિનો |m|tr=mahino|sc=Gujr|xs=Gujarati}}
-* Haitian Creole: {{tø|ht|mwa}}
-* Hebrew: {{t+|he|חודש|m|tr=hodesh}}
-* Hindi: {{t+|hi|महीना|m|tr=mahīnā|xs=Hindi}}
-* Hungarian: {{t+|hu|hónap}}
-* Icelandic: {{t+|is|mánuður}}
-* Ido: {{t+|io|monato|xs=Ido}}
-* Inari Sami: [[mánuppaje]]
-* Indonesian: {{t+|id|bulan|xs=Indonesian}}
-* Interlingua: {{t-|ia|mense|xs=Interlingua}}
-* Irish: {{t+|ga|mí|f|xs=Irish}}
-* Italian: {{t+|it|mese|m}}
-* Japanese: {{t|ja|月|tr=[[つき]], tsukí|sc=Jpan}}
-* Kannada: {{t|kn|ಮಾಸ|tr=maasa}}, {{t|kn|ತಿಂಗಳು|tr=tingallu}}
-* Khmer: {{t-|km|ខែ|tr=kai|sc=Khmr}}
-* Korean: {{t+|ko|달|tr=dal|sc=Hang}}, {{t+|ko|월|tr=weol|sc=Hang}}
-* Kurdish:
-*: Kurmanji: {{t|ku|meh}}, {{t|ku|heyv}}, {{t|ku|hîv}}
-*: Sorani: {{t|ku|مانگ}}
-{{trans-mid}}
-* Lao: {{t+|lo|ເດືອນ|tr=dyan|sc=Laoo|xs=Lao}}
-* Latin: {{t+|la|mensis|m}}
-* Latvian: {{t|lv|mēnesis|m}}
-* Lithuanian: {{t+|lt|mėnuo|m|xs=Lithuanian}}
-* Livonian: [[kū#Livonian|kū]]
-* Lojban: {{t|jbo|masti}}
-* Lower Sorbian: [[mjasec]]
-* Macedonian: {{t|mk|месец|m|tr=mésec|sc=Cyrl}}
-* Malay: {{t+|ms|bulan|xs=Malay}}, {{qualifier|poetic}} {{t|ms|purnama}}
-* Malayalam: {{t|ml|മാസം|tr=māsam}}
-* Maltese: {{t-|mt|xahar|xs=Maltese}}
-* Manchu: [[biya]]
-* Maori: {{t|mi|marama}}
-* Marathi: {{t|mr|महिना|tr=mahinā}}
-* Navajo: {{tø|nv|náhidizídígíí}}, {{tø|nv|náhidizííd}}
-* North Frisian: {{tø|frr|moune}}
-* Northern Sami: [[mánotbadji]]
-* Norwegian: {{t+|no|måned}}
-* Occitan: {{t|oc|mes}}
-* Ojibwe: {{t|oj|giizis}}
-* Old Church Slavonic: {{tø|cu|мѣсѧць|m|tr=měsęcĭ|sc=Cyrs}}
-* Old English: {{t-|ang|monaþ|m|xs=Old English}}
-* Papiamentu: {{tø|pap|luna}}
-* Persian: {{t+|fa|ماه|tr=māh|xs=Persian}}
-* Polish: {{t+|pl|miesiąc|m}}
-* Portuguese: {{t+|pt|mês|m}}
-* Romanian: {{t+|ro|lună|f}}
-* Romansch: {{t|rm|mais|m}}
-* Russian: {{t+|ru|месяц|m|tr=mésjac}}
-* Sardinian: {{t|sc|mèse}}
-* Saterland Frisian: {{tø|stq|Mound}}
-* Scottish Gaelic: {{t|gd|mìos|m}}
-* Serbo-Croatian:
-*: Cyrillic: {{qualifier|Ekavian}} {{t|sh|месец|m|alt=ме̏се̄ц|sc=Cyrl|xs=Serbo-Croatian}}, {{qualifier|Ijekavian}} {{t|sh|мјесец|m|alt=мје̏се̄ц|sc=Cyrl|xs=Serbo-Croatian}}
-*: Roman: {{qualifier|Ekavian}} {{t|sh|mesec|m|alt=mȅsēc|xs=Serbo-Croatian}}, {{qualifier|Ijekavian}} {{t|sh|mjesec|m|alt=mjȅsēc|xs=Serbo-Croatian}}
-* Sicilian: {{l|scn|misi}}
-* Sinhalese: {{t|si|මාසය|tr=māsaya|sc=Sinh}}
-* Skolt Sami: [[mään]], [[määnpââ´jj]]
-* Slovak: {{t-|sk|mesiac|m}}
-* Slovene: {{t+|sl|mesec|m}}
-* Sotho: {{t|st|kgwedi|xs=Sotho}}
-* Spanish: {{t+|es|mes|m}}
-* Swahili: {{t|sw|mwezi}} ''(nc 3/4)''
-* Swedish: {{t+|sv|månad|c}}
-* Tatar: {{t+|tt|ай|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t|te|నెల|tr=nela}}, {{t|te|మాసము|tr=maasamu}}
-* Thai: {{t|th|เดือน|tr=deuan|sc=Thai}}
-* Turkish: {{t+|tr|ay}}
-* Ukrainian: {{t|uk|місяць|m|tr=mísjac’|sc=Cyrl}}
-* Upper Sorbian: [[měsac]]
-* Urdu: {{t|ur|مہینا|m|tr=mahīnā|sc=ur-Arab}}, {{t|ur|مہینہ|m|tr=mahīnah|sc=ur-Arab}}
-* Venetian: {{t|vec|méxe}}
-* Vietnamese: {{t|vi|tháng}}
-* Volapük: {{t|vo|mul}}
-* Welsh: {{t+|cy|mis|xs=Welsh}}
-* West Frisian: {{t+|fy|moanne|c|xs=West Frisian}}
-* Yiddish: {{t|yi|חודש|tr=khóydesh|m}}
-{{trans-bottom}}
-
-===See also===
-* [[quarter]]
-* [[week]]
-* [[year]]
-* [[:Category:Months]]
-
-===Statistics===
-* {{rank|original|provide|determined|819|month|news|prepared|support}}
-
-[[Category:1000 English basic words]]
-[[Category:en:Time]]
-
-[[af:month]]
-[[ar:month]]
-[[ast:month]]
-[[zh-min-nan:month]]
-[[ca:month]]
-[[cs:month]]
-[[co:month]]
-[[cy:month]]
-[[da:month]]
-[[de:month]]
-[[et:month]]
-[[el:month]]
-[[es:month]]
-[[eo:month]]
-[[eu:month]]
-[[fa:month]]
-[[fr:month]]
-[[fy:month]]
-[[ko:month]]
-[[hy:month]]
-[[io:month]]
-[[id:month]]
-[[ik:month]]
-[[zu:month]]
-[[it:month]]
-[[kn:month]]
-[[kk:month]]
-[[sw:month]]
-[[ku:month]]
-[[lo:month]]
-[[lt:month]]
-[[li:month]]
-[[hu:month]]
-[[mg:month]]
-[[ml:month]]
-[[my:month]]
-[[nah:month]]
-[[fj:month]]
-[[nl:month]]
-[[ja:month]]
-[[no:month]]
-[[oc:month]]
-[[pl:month]]
-[[pt:month]]
-[[ru:month]]
-[[sq:month]]
-[[scn:month]]
-[[simple:month]]
-[[fi:month]]
-[[sv:month]]
-[[ta:month]]
-[[te:month]]
-[[th:month]]
-[[tg:month]]
-[[tr:month]]
-[[uk:month]]
-[[vi:month]]
-[[wa:month]]
-[[zh:month]]
+month:
+{wikipedia}
+<h3>Alternative forms</h3>
+<ul><li> {{l|en|moneth}} {{qualifier|dialectal}}</li>
+</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}}.
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|mŭnth}}, {{IPA|/mʌnθ/}}, {{X-SAMPA|/mVnT/}}</li>
+<li> {{audio|en-us-month.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-a month.ogg|Audio (UK)}}</li>
+<li> {{rhymes|ʌnθ}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> A period into which a year is divided, historically based on the phases of the moon. In the Gregorian calendar there are twelve months: January, February, March, April, May, June, July, August, September, October, November and December.</li>
+<ul><li> <em>July is my favourite <b>month</b>.</em></li>
+</ul>
+<li> A period of 30 days, 31 days, or some alternation thereof.</li>
+<ul><li> <em>We went on holiday for two <b>months</b>.</em></li>
+<li> {{quote-news|year=2011|date=September 29|author=Jon Smith|title=Tottenham   3 - 1   Shamrock Rovers|work=BBC Sport|url=http://news.bbc.co.uk/sport2/hi/football/15014632.stm|page=|passage=With the north London derby to come at the weekend, Spurs boss Harry Redknapp opted to rest many of his key players, although he brought back Aaron Lennon after a <b>month</b> out through injury.}}</li>
+</ul>
+<li> {{obsolete|in the plural}} A woman's period; menstrual discharge.</li>
+<ul><li> <b>1621</b>, Robert Burton, <em>The Anatomy of Melancholy</em>, vol. I, New York 2001, p. 234:</li>
+<ul><li> Sckenkius hath two other instances of two melancholy and mad women, so caused from the suppression of their <b>months</b>.</li>
+</ul>
+</ul>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> monthly</li>
+<li> month of Sundays</li>
+<li> time of the month</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> quarter</li>
+<li> week</li>
+<li> year</li>
+<li> :Category:Months</li>
+</ul>
+
+<h3>Statistics</h3>
+<ul><li> {{rank|original|provide|determined|819|month|news|prepared|support}}</li>
+</ul>
+Category:1000 English basic wordsCategory:en:Timeaf:monthar:monthast:monthzh-min-nan:monthca:monthcs:monthco:monthcy:monthda:monthde:monthet:monthel:monthes:montheo:montheu:monthfa:monthfr:monthfy:monthko:monthhy:monthio:monthid:monthik:monthzu:monthit:monthkn:monthkk:monthsw:monthku:monthlo:monthlt:monthli:monthhu:monthmg:monthml:monthmy:monthnah:monthfj:monthnl:monthja:monthno:monthoc:monthpl:monthpt:monthru:monthsq:monthscn:monthsimple:monthfi:monthsv:monthta:monthte:monthth:monthtg:monthtr:monthuk:monthvi:monthwa:monthzh:month
 ***multiculturalism***
-multiculturalism: 
-{{was wotd|2011|April|24}}
-{{wikipedia}}
-
-===Etymology===
+multiculturalism:
+{{was wotd|2011|April|24}}{wikipedia}
+<h3>Etymology</h3>
 From {{suffix|multicultural|ism}}.
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/mʌltɪˈkʌltʃəɹəlɪz(ə)m/}}
-
-===Noun===
-{{en-noun}}
-
-# 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.}}
-#* '''1991''', Barbara Ehrenreich, ''Time'', 8 Apr 1991:
-#*: Something had to replace the threat of communism, and at last a workable substitute is at hand. "'''Multiculturalism'''," 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.
-#* '''2005''', David Davis MP, ''Daily Telegraph'', 3 Aug 2005:
-#*: Britain has pursued a policy of '''multiculturalism''' - allowing people of different cultures to settle without expecting them to integrate into society.
-#* '''2011''', "On a mat and a prayer", ''The Economist'', 7 Apr 2011:
-#*: Earlier this year he said '''multiculturalism''' had “failed”, that immigrants needed to “melt” into French society, and that “we do not want ostentatious prayers in the street in France.”
-
-====Related terms====
-* [[multicultural]]
-* [[multiculturally]]
-* [[multicultured]]
-
-====Translations====
-{{trans-top|societal idea}}
-* Arabic: {{t|ar|التعددية الثقافية|f|tr=al-ta3addudíyya al-thaqaafíyya}}
-* Catalan: {{t|ca|multiculturalisme|m}}
-* Chinese:
-*: Mandarin: {{t|cmn|多元文化|tr=duōyuán wénhuà|sc=Hani}}
-* Esperanto: {{t|eo|multkulturismo|xs=Esperanto}}
-* Finnish: {{t|fi|monikulttuurisuus}}
-* French: {{t+|fr|multiculturalisme|m}}
-* German: {{t|de|Multikulturalismus|m}}
-* Hebrew: {{t|he|רב-תרבותיות}}
-* Hungarian: {{t|hu|multikulturalizmus}}
-{{trans-mid}}
-* Japanese: {{t|ja|多元文化論|tr=たげんぶんかろん, tagen-bunka-ron}}, {{t|ja|多文化|tr=たぶんか, ta-bunka}}, {{t|ja|多文化主義|tr=たぶんかしゅぎ, tabunkashugi}}, {{t|ja|マルチカルチュラリズム|tr=maruchikaruchurarizumu}}
-* Korean: {{t|ko|다문화주의|tr=damunhwajuui}}
-* Polish: {{t|pl|wielokulturowość|f}}
-* Portuguese: {{t-|pt|multiculturalismo|m}}
-* Romanian: {{t|ro|multiculturalism}}
-* Russian: {{t|ru|многокультурность|f|tr=mnogokul'túrnost'}}, {{t+|ru|мультикультурализм|m|tr=mul'tikul'turalízm}}
-* Spanish: {{t-|es|multiculturalismo|m}}
-{{trans-bottom}}
-
-===See also===
-* [[cosmopolitan]]
-
-[[Category:en:Culture]]
-
-[[fr:multiculturalism]]
-[[ko:multiculturalism]]
-[[id:multiculturalism]]
-[[io:multiculturalism]]
-[[pl:multiculturalism]]
-[[ru:multiculturalism]]
-[[fi:multiculturalism]]
-[[ta:multiculturalism]]
+<h3>Pronunciation</h3>
+<ul><li> {{a|UK}} {{IPA|/mʌltɪˈkʌltʃəɹəlɪz(ə)m/}}</li>
+</ul>
+
+<h3>Noun</h3>
+{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> <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>
+<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>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> multicultural</li>
+<li> multiculturally</li>
+<li> multicultured</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> cosmopolitan</li>
+</ul>
+Category:en:Culturefr:multiculturalismko:multiculturalismid:multiculturalismio:multiculturalismpl:multiculturalismru:multiculturalismfi:multiculturalismta:multiculturalism
 ***nonsense***
-nonsense: 
+nonsense:
 
-===Etymology===
+<h3>Etymology</h3>
 {{prefix|non|sense}}
-
-===Pronunciation===
-* {{audio|en-us-nonsense.ogg|Audio (US)}}
-
-===Noun===
-{{wikipedia}}
-{{en-noun|-|s}}
-
-# Letters or words, in writing or speech, that have no meaning or seem to have no meaning.
-#: ''After my father had a stroke, every time he tried to talk, it sounded like '''nonsense'''.''
-# An untrue statement.
-#: ''He says that I stole his computer, but that's just '''nonsense'''.''
-# Something foolish.
-#* '''2008''', "Nick Leeson has some lessons for this collapse", Telegraph.co.uk, Oct 9, 2008
-#*: and central banks lend vast sums against marshmallow backed securities, or other '''nonsenses''' creative bankers dreamed up.
-# {{literature}} A type of poetry that contains strange or surreal ideas, as, for example, that written by [[w:Edward Lear|Edward Lear]].
-# {{biology}} A damaged DNA sequence whose products are not biologically active, that is, that does nothing.
-
-====Synonyms====
-: See [[Wikisaurus:nonsense]]
-* {{sense|something that lacks meaning or absurd statement}}
-** {{sense|mostly [[colloquialism]]s or [[slang]]}} [[balderdash]], [[baloney]], [[bull]], [[bulldust]], [[bunk]], [[codswallop]], [[drivel]], [[gibberish]], [[hogwash]], [[hooey]] {{qualifier|US}}, [[horse hockey]], [[malarkey]], [[manure]], [[poppycock]], [[prattle]], [[rhubarb]] {{qualifier|chiefly British}}, [[rubbish]], [[twaddle]]
-** {{sense|vulgar slang}} [[bollocks]] {{qualifier|British}}, [[bullshit]], [[crap]], [[horseshit]] {{qualifier|US}}
-
-====Derived terms====
+<h3>Pronunciation</h3>
+<ul><li> {{audio|en-us-nonsense.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{wikipedia}{{en-noun|-|s}}
+<ol><li> Letters or words, in writing or speech, that have no meaning or seem to have no meaning.</li>
+<ul><li> <em>After my father had a stroke, every time he tried to talk, it sounded like <b>nonsense</b>.</em></li>
+</ul>
+<li> An untrue statement.</li>
+<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> and central banks lend vast sums against marshmallow backed securities, or other <b>nonsenses</b> creative bankers dreamed up.</li>
+</ul>
+</ul>
+<li> {literature} A type of poetry that contains strange or surreal ideas, as, for example, that written by Edward Lear.</li>
+<li> {biology} A damaged DNA sequence whose products are not biologically active, that is, that does nothing.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> See Wikisaurus:nonsense</li>
+<li> {{sense|something that lacks meaning or absurd statement}}</li>
+<ul><li> {{sense|mostly colloquialisms or slang}} balderdash, baloney, bull, bulldust, bunk, codswallop, drivel, gibberish, hogwash, hooey {{qualifier|US}}, horse hockey, malarkey, manure, poppycock, prattle, rhubarb {{qualifier|chiefly British}}, rubbish, twaddle</li>
+<li> {{sense|vulgar slang}} bollocks {{qualifier|British}}, bullshit, crap, horseshit {{qualifier|US}}</li>
+</ul>
+</ul>
+
+<h4>Derived terms</h4>
 {{rel-top3|Terms derived from the noun "nonsense"}}
-* [[nonsensical]]
-{{rel-mid3}}
-* [[nonsensification]]
-{{rel-mid3}}
-* [[nonsensify]]
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|meaningless words}}
-* Arabic: {{t|ar|هراء|m|tr=huraa'}}, {{t-|ar|لغو|m|tr=laghw}}, {{t|ar|تفاهة|f|tr=tafaaha}}
-* Bulgarian: {{t+|bg|абсурдност|f|tr=absúrdnost}}
-* Catalan: [[bajanada]] {{f}}, [[bestiesa]] {{f}}, {{t|ca|estirabot|m}}
-* Chinese:
-*: Mandarin: {{t-|cmn|廢話|sc=Hani}}, {{t-|cmn|废话|tr=fèihuà|sc=Hani}}, {{t|cmn|胡說|sc=Hani}}, {{t|cmn|胡说|tr=húshuō|sc=Hani}}, {{t|cmn|胡言|tr=húyán|sc=Hani}}, {{qualifier|vulgar}} {{t-|cmn|狗屁|tr=gǒupì|sc=Hani}}
-* Croatian: {{t-|hr|besmislica|f}}, {{t-|hr|glupost|f}}
-* Czech: {{t-|cs|nesmysl|m}}
-* Danish: {{t+|da|nonsens|n}}
-* Dutch: {{t+|nl|nonsens|m}}, {{t-|nl|onzin|m}}, {{t-|nl|flauwekul|m}}
-* Estonian: {{t|et|jamps}}
-* Finnish: {{t-|fi|hölynpöly}}
-* French: {{t+|fr|bêtise|f}} (s), {{t+|fr|absurdité|f}} (s),
-* Georgian: {{t|ka|უაზრო|tr=uazro|sc=Geor}}
-* German: [[Blödsinn]] {{m}}, [[Nonsens]] {{m}}, [[Quatsch]] {{m}} {{qualifier|colloquial}}, [[Unsinn]] {{m}},
-* Hebrew: {{t+|he|שטויות|tr=shtuyot}}, in old slang {{t+|he|חנטריש|tr=hantarish}}
-* Hindi: {{t|hi|बकवास|f|tr=bakvās|sc=Deva}}
-* Hungarian: {{t+|hu|képtelenség}}
-* Icelandic: {{t|is|rugl|n}}, {{t|is|bull|n}}
-{{trans-mid}}
-* Indonesian: {{t|id|omong kosong|xs=Indonesian}}
-* Italian: {{t+|it|sciocchezza|f}}, {{t|it|senza senso}}, {{t|it|priva di significato}}, {{t|it|ridicolaggine|f}}
-* Japanese: {{t+|ja|無意味|tr=むいみ, muimi}}, {{t|ja|ナンセンス|tr=nansensu}}, {{t|ja|馬鹿げた事|tr=bakageta koto}}
-* Korean: [[어리석은 소리]] (eoriseokeun sori), [[헛소리]] (heotsori)
-* Kurdish:
-*: Sorani: {{ku-Arab|[[قسه‌ی هیچوپوچ]]}}
-* Persian: {{t|fa|بی‌معنی|tr=bima'ni|sc=fa-Arab}}, {{t|fa|چرند|tr=charand|sc=fa-Arab}}
-* Polish: {{t+|pl|nonsens|m}}
-* Portuguese: {{t+|pt|besteira|f}}
-* Romanian: {{t+|ro|nonsens|n}}, {{t|ro|absurditate|f}}, [[nonsens|nonsensuri]] {{n|p}}
-* Russian: {{t+|ru|вздор|m|tr=vdor}}, {{t+|ru|ерунда|f|tr=jerundá}}, {{t+|ru|нонсенс|m|tr=nónsens}}, {{t+|ru|бессмыслица|f|tr=bessmýslica}}, {{t+|ru|ахинея|f|tr=axinéja}}, {{t+|ru|абсурд|m|tr=absúrd}}
-* Scottish Gaelic: [[sgudal]] {{m}}, {{t-|gd|amaideas|m|xs=Scottish Gaelic}}
-* Spanish: {{t-|es|tonterías|f|p}}, {{t+|es|disparate|m}}
-* Swedish: {{t+|sv|nonsens|n}}
-* Turkish: {{t+|tr|saçma}}, {{t+|tr|saçmalık}}
-* Urdu: {{t|ur|بکواس|f|tr=bakvās|xs=Urdu}}
-* Welsh: {{t-|cy|lol|f|xs=Welsh}}
-{{trans-bottom}}
-
-{{trans-top|untrue statement}}
-* Chinese:
-*: Mandarin: {{t-|cmn|廢話|sc=Hani}}, {{t-|cmn|废话|tr=fèihuà|sc=Hani}}, {{t|cmn|胡說|sc=Hani}}, {{t|cmn|胡说|tr=húshuō|sc=Hani}}, {{t|cmn|胡言|tr=húyán|sc=Hani}}, {{t-|cmn|狗屁|tr=gǒupì|sc=Hani}} {{qualifier|vulgar}}
-* Croatian: {{t-|hr|nesmisao|n}}, {{t-|hr|budalaština|f}}, {{t-|hr|neistina|f}}
-* Czech: {{t-|cs|nesmysl|m}}
-* Danish: {{t+|da|nonsens|n}}
-* Finnish: {{t-|fi|hölynpöly}}
-* French: {{t+|fr|sottise|m}} (s)
-* German: {{t|de|Nonsens|m}}, {{t|de|Unsinn|m}}
-{{trans-mid}}
-* Italian: {{t|it|balla|f}}, {{t|it|fandonia|f}}, {{t|it|scemenza|f}}, {{t|it|fola|f}}, {{t|it|baggianata|f}}
-* Japanese: {{t|ja|でたらめ|tr=detarame}}
-* Romanian: {{t|ro|nerozie|f}}, {{t|ro|nerozii|f|p}}, {{t|ro|prostie|f}}
-* Russian: {{t+|ru|вздор|m|tr=vdor}}, {{t+|ru|ерунда|f|tr=jerundá}}, {{t+|ru|нонсенс|m|tr=nónsens}}, {{t+|ru|бессмыслица|f|tr=bessmýslica}}, {{t+|ru|ахинея|f|tr=axinéja}}
-* Scottish Gaelic: [[sgudal]] {{m}}, {{t-|gd|amaideas|m|xs=Scottish Gaelic}}
-* Spanish: {{t-|es|tonterías|f|p}}, {{t+|es|estupidez|f}}
-* Swedish: {{t+|sv|nonsens|n}}
-* Welsh: {{t-|cy|lol|f|xs=Welsh}}
-{{trans-bottom}}
-
-{{trans-top|type of poetry}}
-* Czech: {{t-|cs|nonsens|m}}
-{{trans-mid}}
-* Korean: [[난센스]] (nansenseu)
-{{trans-bottom}}
-
-{{trans-top|damaged DNA sequence}}
-* Finnish: {{t|fi|toimimaton}} {{t+|fi|jakso}}
-* French: {{t|fr|non-sens|m}}
-{{trans-mid}}
-* Korean: [[무의미]] (muuimi)
-{{trans-bottom}}
-
-===See also===
-* {{sense|biology}} [[missense]]
-
-===Verb===
+<ul><li> nonsensical</li>
+</ul>
+{rel-mid3}
+<ul><li> nonsensification</li>
+</ul>
+{rel-mid3}
+<ul><li> nonsensify</li>
+</ul>
+{rel-bottom}
+<h3>See also</h3>
+<ul><li> {{sense|biology}} missense</li>
+</ul>
+
+<h3>Verb</h3>
 {{en-verb|nonsens|es}}
-
-# To make nonsense of
-#* {{ante|1909}} Bernard Shaw, "The Red Robe", in James Huneker ed., ''Dramatic Opinions and Essays by G. Bernard Shaw'', volume II, page 73:
-#*: At the Haymarket all this is '''nonsensed''' 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.
-# To attempt to dismiss as nonsense.
-#* '''1997''', "Rockies respond to whip", ''Denver Post'', Jun 3, 1997:
-#*: "They haven't '''nonsensed''' these workouts. They've taken them and used them very well. I didn't know how they'd respond, but they've responded."
-#* '''2000''', Leon Garfield, Jason Cockcroft, ''Jack Holborn'', page 131:
-#*: Very commanding: very much 'end of this '''nonsensing'''<nowiki/>'. Mister Fared spread his hands and shook his thin head imperceptibly, as if to say he understood
-#* '''2006''', ''Sierra Leone: Petroleum Unit Calls for Auditing'', AllAfrica.com, Mar 17, 2006:
-#*: He further '''nonsensed''' press suggestions that the Petroleum Unit was set up to assist in the administration of sporting activities.
-# {{intransitive}} To joke around, to waste time
-#* '''1963''', C. F. Griffin, ''The Impermanence of Heroes'', page 170:
-#*: When he meant "go and get one" he said to go and get one, with no '''nonsensing''' around about "liking" to get one.
-
-====Synonyms====
-* [[pooh-pooh]], [[rubbish]]
-
-[[ca:nonsense]]
-[[et:nonsense]]
-[[es:nonsense]]
-[[fr:nonsense]]
-[[ko:nonsense]]
-[[io:nonsense]]
-[[id:nonsense]]
-[[it:nonsense]]
-[[kn:nonsense]]
-[[sw:nonsense]]
-[[ku:nonsense]]
-[[hu:nonsense]]
-[[ml:nonsense]]
-[[my:nonsense]]
-[[nl:nonsense]]
-[[pl:nonsense]]
-[[simple:nonsense]]
-[[fi:nonsense]]
-[[sv:nonsense]]
-[[ta:nonsense]]
-[[te:nonsense]]
-[[vi:nonsense]]
-[[zh:nonsense]]
+<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> 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>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> <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>
+</ul>
+</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>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> pooh-pooh, rubbish</li>
+</ul>
+ca:nonsenseet:nonsensees:nonsensefr:nonsenseko:nonsenseio:nonsenseid:nonsenseit:nonsensekn:nonsensesw:nonsenseku:nonsensehu:nonsenseml:nonsensemy:nonsensenl:nonsensepl:nonsensesimple:nonsensefi:nonsensesv:nonsenseta:nonsensete:nonsensevi:nonsensezh:nonsense
 ***noun***
-noun: 
-{{wikipedia}}
-
-===Etymology===
+noun:
+{wikipedia}
+<h3>Etymology</h3>
 From {{etyl|xno}} {{term|noun|lang=xno}}, {{term|non|lang=xno}}, {{term|nom|lang=xno}}, from {{etyl|la}} {{term|nomen|nōmen|name|lang=la}}.
-
-===Pronunciation===
-* {{a|UK|US}} {{IPA|/naʊn/}}, {{X-SAMPA|/naUn/}}
-* {{en-SoE}}: {{IPA|/næːn/}}
-* {{audio|en-us-inlandnorth-noun.ogg|Audio (US-Inland North)}}
-* {{rhymes|aʊn}}
-
-===Noun===
-{{en-noun}}
-
-# {{grammar}} A [[word]] that can be used to refer to a [[person]], [[animal]], [[place]], [[thing]], [[phenomenon]], [[substance]], [[quality]], or [[idea]]; one of the basic parts of [[speech]] in many languages, including [[English]].
-
-====Usage notes====
-* In English (and in many other languages), a noun can serve as the subject or object of a [[verb]]. For example, the English words {{term|table}} and {{term|computer}} are nouns. See [[w:Part of speech|Wikipedia’s article “Parts of speech”]].
-
-====Synonyms====
-* [[name]], [[nameword]]
-* [[substantive]]
-
-====Hyponyms====
-* See also [[Wikisaurus:noun]]
-
-====Derived terms====
-{{rel-top|terms derived from ''noun (noun)''}}
-* [[abstract noun]]
-* [[adjectival noun]]
-* [[attributive noun]]
-* [[collective noun]]
-* [[common noun]]
-* [[concrete noun]]
-* [[count noun]]
-* [[countable noun]]
-* [[mass noun]]
-{{rel-mid}}
-* [[non-count noun]]
-* [[noun adjunct]]
-* [[noun clause]]
-* [[noun of assemblage]]
-* [[noun of multitude]]
-* [[noun phrase]]
-* [[plural noun]]
-* [[pronoun]]
-* [[proper noun]]
-* [[uncountable noun]]
-{{rel-bottom}}
-
-====Related terms====
-* [[nominal]]
-
-====Translations====
-{{trans-top|grammatical category}}
-* Afrikaans: {{t|af|selfstandige naamwoord|xs=Afrikaans}}
-* Albanian: {{t+|sq|emër|xs=Albanian}}
-* Amharic: {{t|am|ስም|tr=sm|sc=Ethi}}
-* Arabic: {{t+|ar|اسم|m|tr=ism}}
-* Aragonese: {{t|an|sustantibo|m|xs=Aragonese}}
-* Aramaic:
-*: Syriac: {{tø|arc|ܫܡܐ|m|tr=šmā’|sc=Syrc}}
-*: Hebrew: {{tø|arc|שמא|m|tr=šmā’|sc=Hebr}}
-* Armenian: {{t-|hy|գոյական|tr=goyakan}}
-* {{trreq|as}}
-* Asturian: {{t+|ast|sustantivu|xs=Asturian}}
-* {{trreq|ay}}
-* Azeri: {{t+|az|isim|xs=Azeri}}, {{t|az|ad}}
-* Bashkir: {{tø|ba|исем|tr=isem}}
-* Basque: {{t-|eu|izen|xs=Basque}}
-* {{trreq|bar}}
-* Belarusian: {{t|be|назоўнік|m|tr=nazóŭnik|xs=Belarusian}}
-* Bengali: {{t|bn|বিশেষ্য|tr=bisheshya}}
-* {{trreq|bpy}}
-* Breton: {{t|br|anv-kadarn|xs=Breton}}
-* Bulgarian: {{t|bg|съществително име|n|tr=səštestvítelno ime}}
-* Burmese: {{t|my|နာမ|tr=nan|sc=Mymr}}
-* {{trreq|bua}}
-* Catalan: {{t+|ca|substantiu|m}}
-* {{trreq|ceb}}
-* {{trreq|ch}}
-* Chechen: {{tø|ce|цIердош|sc=Cyrl|xs=Chechen}}
-* Chinese:
-*: Cantonese: {{tø|yue|名詞|sc=Hani|xs=Cantonese}}, {{tø|yue|名词|tr=ming4 ci4|sc=Hani|xs=Cantonese}}
-*: Mandarin: {{t+|cmn|名詞|sc=Hani}}, {{t+|cmn|名词|tr=míngcí|sc=Hani}}
-*: Min Nan: {{tø|nan|名詞|xs=Min Nan}}, {{tø|nan|名词|tr=bêng-sû|xs=Min Nan}}
-* Chuvash: {{tø|cv|япала ячĕ|sc=Cyrl|xs=Chuvash}}
-* Cornish: {{t|kw|hanow|m}}
-* {{trreq|co}}
-* Crimean Tatar: {{tø|crh|ad|xs=Crimean Tatar}}, {{tø|crh|isim|xs=Crimean Tatar}}
-* Czech: {{t+|cs|podstatné jméno|n}}, {{t+|cs|substantivum|n}}
-* Danish: {{t+|da|navneord|n}}, {{t+|da|substantiv|n}}
-* {{trreq|dv}}
-* Dutch: {{t+|nl|zelfstandig naamwoord|n}}, {{t+|nl|substantief|n}}
-* {{trreq|dz}}
-* Esperanto: {{t+|eo|substantivo|xs=Esperanto}}
-* Estonian: {{t-|et|nimisõna}}
-* Ewe: {{tø|ee|nuŋkɔ|xs=Ewe}}
-* Faroese: {{t-|fo|navnorð|xs=Faroese}}
-* Finnish: {{t+|fi|substantiivi}}
-* {{trreq|frp}}
-* French: {{t+|fr|nom|m}}, {{t+|fr|substantif|m}}
-* {{trreq|fur}}
-* Galician: {{t-|gl|substantivo|xs=Galician}}
-* Georgian: {{t+|ka|არსებითი სახელი|tr=arsebit‘i saxeli|sc=Geor|xs=Georgian}}, {{t|ka|სახელი|tr=saxeli|sc=Geor}}
-* German: {{t+|de|Substantiv|n}}, {{t|de|Nomen|n}}, {{t|de|Dingwort|n}}, {{t|de|Gegenstandswort|n}}
-* Greek: {{t+|el|ουσιαστικό|n|tr=ousiastikó}}
-** Ancient Greek: {{tø|grc|ὄνομα|n|tr=ónoma|sc=polytonic|xs=Ancient Greek}}
-* Greenlandic: {{t-|kl|taggit|xs=Greenlandic}}
-* Gujarati: {{t|gu|સંજ્ઞા|tr=san̄jña|sc=Gujr}}
-* Hawaiian: {{tø|haw|haʻiinoa}}
-* Hebrew: {{t|he|שם־עצם|m|tr=shem-’etsem}}
-* Hindi: {{t-|hi|संज्ञा|m|tr=sãṅgyā|xs=Hindi}}
-* Hungarian: {{t+|hu|főnév}}
-* Icelandic: {{t+|is|nafnorð|n}} (abbrev. “no.”)
-* Ido: {{t+|io|substantivo|xs=Ido}}
-* Indonesian: {{t-|id|kata benda|xs=Indonesian}}, {{t-|id|nomina|xs=Indonesian}}
-* Interlingua: {{t-|ia|substantivo|xs=Interlingua}}
-* Interlingue: {{t-|ie|substantive|xs=Interlingue}}, {{t|ie|nómine|xs=Interlingue}}
-* Irish: {{t+|ga|ainmfhocal|m|xs=Irish}}
-* Italian: {{t+|it|sostantivo|m}}, {{t+|it|nome|m}}
-* Japanese: {{t+|ja|名詞|tr=めいし, meishí}}
-* {{trreq|jv}}
-* Kannada: {{t+|kn|ನಾಮಪದ|tr=nāmapada|sc=Knda|xs=Kannada}}
-* Kashubian: {{t-|csb|jistnik|m|xs=Kashubian}}
-* Kazakh: {{t|kk|зат есім|tr=zat esim|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|នាម|tr=niem|sc=Khmr}}
-{{trans-mid}}
-* Korean: {{t+|ko|명사|tr=myeongsa|sc=Hang}} ({{t|ko|名詞|sc=Hang}})
-* Kurdish:
-*: Sorani: {{t-|ku|ناو|sc=ku-Arab}}
-* Kyrgyz: {{t|ky|зат атооч|tr=zat atooç|sc=Cyrl|xs=Kyrgyz}}
-* Lao: {{t|lo|ຄຳນາມ|tr=kʰám náːm|sc=Laoo}}
-* Latin: {{t+|la|nomen|n}}
-* Latvian: {{t+|lv|lietvārds|m|xs=Latvian}}
-* Limburgish: {{t+|li|zèlfstenjig naamwaord|n}}
-* {{trreq|ln}}
-* Lithuanian: {{t+|lt|daiktavardis|xs=Lithuanian}}
-* Low Saxon: {{t-|nds|substantiv|xs=Low Saxon}}
-* Lower Sorbian: {{tø|dsb|substantiw|m|xs=Lower Sorbian}}
-* Luxembourgish: {{t|lb|Substantiv|n}}
-* Macedonian: {{t-|mk|именка|f|tr=ímenka}}
-* Malay: {{t|ms|kata nama|xs=Malay}}
-* Malayalam: {{t|ml|നാമം|tr=naamam|sc=Mlym|xs=Malayalam}}
-* Maltese: {{t+|mt|nom|xs=Maltese}}
-* Marathi: {{t-|mr|नाम|sc=Deva|xs=Marathi}}
-* Mongolian: {{t-|mn|нэр үг|tr=ner üg|sc=Cyrl|xs=Mongolian}}
-* {{trreq|ne}}
-* {{trreq|new}}
-* {{trreq|se}}
-* Norwegian: {{t+|no|substantiv|n}}
-*: Nynorsk: {{t-|nn|substantiv|xs=Norwegian Nynorsk}}
-* Novial: {{tø|nov|substantive|xs=Novial}}
-* Occitan: {{t+|oc|nom|m|xs=Occitan}}
-* {{trreq|ryu}}
-* Old English: {{t-|ang|nama|m|xs=Old English}}
-* Oriya: {{t|or|ବିଶେଷ୍ୟ|sc=Orya}}
-* Persian: {{t|fa|اسم|sc=fa-Arab|tr=esm}}
-* Polish: {{t+|pl|rzeczownik|m}}
-* Portuguese: {{t+|pt|substantivo|m}}
-* Quechua: {{t|qu|sutirimana|xs=Quechua}}
-* Romanian: {{t+|ro|substantiv|n}}
-* Russian: {{t+|ru|имя существительное|n|tr=ímja suščestvítelʹnoje}}, {{t+|ru|существительное|n|tr=suščestvítelʹnoje}}
-* Sanskrit: {{t-|sa|नामन्|n|tr=nā́man|xs=Sanskrit}}, {{t|sa|नाम|tr=nāma|sc=Deva}}
-* Scots: {{tø|sco|noun|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|ainmear|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|именица|sc=Cyrl}}
-*: Roman: {{t|sh|imenica|f}}
-* Sicilian: {{t+|scn|sustantivu|xs=Sicilian}}
-* Sinhalese: {{t|si|නාම පදය|sc=Sinh|xs=Sinhalese}}, {{t|si|නාමය|tr=nāmaya|sc=Sinh}}
-* Slovak: {{t+|sk|podstatné meno|n}}
-* Slovene: {{t+|sl|samostalnik|m}}
-* Spanish: {{t+|es|sustantivo|m}}, {{t+|es|substantivo|m}}, {{qualifier|Venezuela}} {{t+|es|nombre|m}}
-* {{trreq|su}}
-* Swahili: {{t+|sw|nomino|xs=Swahili}}
-* Swati: {{t|ss|libito|xs=Swati}}
-* Swedish: {{t+|sv|substantiv|n}}, {{t+|sv|nomen|n}}
-* Swiss German: {{tø|gsw|Substantiv|n|xs=Alemannic German}}
-* Tagalog: {{t|tl|pangngalan|xs=Tagalog}}
-* Tajik: {{t|tg|исм|sc=Cyrl|xs=Tajik}}, {{t|tg|исм|tr=ism|sc=Cyrl}}
-* Tamil: {{t|ta|பெயர்ச்சொல்|tr=peyarchchol|xs=Tamil}}
-* Tatar: {{t|tt|исем|tr=isem|sc=Cyrl}}
-* Telugu: {{t|te|నామవాచకము|tr=nAmavAchakamu}}
-* Thai: {{t+|th|นาม|tr=naam}}, {{t|th|คำนาม|tr=khahm naam}}
-* {{trreq|bo}}
-* Tok Pisin: {{t|tpi|nem bilong samting|xs=Tok Pisin}}
-* Turkish: {{t+|tr|isim}}, {{t+|tr|ad}}
-* Turkmen: {{t|tk|at}}
-* Ukrainian: {{t+|uk|іменник|m|tr=iménnyk|xs=Ukrainian}}
-* Upper Sorbian: {{t|hsb|substantiw|m|xs=Upper Sorbian}}
-* Urdu: {{t|ur|اسم|tr=ism|sc=ur-Arab}}, {{t|ur|سنجنا|m|tr=sãṅgyā|sc=ur-Arab}}
-* Uzbek: {{t|uz|ot}}, {{t|uz|ism}}
-* Vietnamese: {{t+|vi|danh từ|xs=Vietnamese}} ({{t|vi|名詞}})
-* Volapük: {{t|vo|subsat|xs=Volapük}}
-* Welsh: {{t+|cy|enw|xs=Welsh}}
-* West Frisian: {{t+|fy|haadwurd|n|xs=West Frisian}}
-* Yiddish: {{t|yi|סובסטאנטיוו|n|tr=substantiv|xs=Yiddish}}
-* {{trreq|zza}}
-{{trans-bottom}}
-
-===Verb===
-{{en-verb}}
-
-# {{transitive}} To convert a word to a [[noun]].
-#* '''1992''', Lewis Acrelius Froman, ''Language and Power: Books III, IV, and V''
-#*: For example, that females are different from but equal to males is oxymoronic by virtue of the '''nouned''' status of female and male as kinds of persons.
-#* '''2000''', Andrew J. DuBrin, ''The complete idiot's guide to leadership''
-#*: However, too much '''nouning''' makes you sound bureaucratic, immature, and verbally challenged. Top executives convert far fewer nouns into verbs than do workers at lower levels.
-
-===Anagrams===
-* [[non-U#English|non-U]]
-
-[[Category:English autological terms]]
-[[Category:en:Parts of speech]]
-
-----
-
-
+<h3>Pronunciation</h3>
+<ul><li> {{a|UK|US}} {{IPA|/naʊn/}}, {{X-SAMPA|/naUn/}}</li>
+<li> {en-SoE}: {{IPA|/næːn/}}</li>
+<li> {{audio|en-us-inlandnorth-noun.ogg|Audio (US-Inland North)}}</li>
+<li> {{rhymes|aʊn}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> {grammar} A word that can be used to refer to a person, animal, place, thing, phenomenon, substance, quality, or idea; one of the basic parts of speech in many languages, including English.</li>
+</ol>
+
+<h4>Usage notes</h4>
+<ul><li> In English (and in many other languages), a noun can serve as the subject or object of a verb. For example, the English words {{term|table}} and {{term|computer}} are nouns. See Wikipedia’s article “Parts of speech”.</li>
+</ul>
+
+<h4>Synonyms</h4>
+<ul><li> name, nameword</li>
+<li> substantive</li>
+</ul>
+
+<h4>Hyponyms</h4>
+<ul><li> See also Wikisaurus:noun</li>
+</ul>
+
+<h4>Derived terms</h4>
+{{rel-top|terms derived from <em>noun (noun)</em>}}
+<ul><li> abstract noun</li>
+<li> adjectival noun</li>
+<li> attributive noun</li>
+<li> collective noun</li>
+<li> common noun</li>
+<li> concrete noun</li>
+<li> count noun</li>
+<li> countable noun</li>
+<li> mass noun</li>
+</ul>
+{rel-mid}
+<ul><li> non-count noun</li>
+<li> noun adjunct</li>
+<li> noun clause</li>
+<li> noun of assemblage</li>
+<li> noun of multitude</li>
+<li> noun phrase</li>
+<li> plural noun</li>
+<li> pronoun</li>
+<li> proper noun</li>
+<li> uncountable noun</li>
+</ul>
+{rel-bottom}
+<h4>Related terms</h4>
+<ul><li> nominal</li>
+</ul>
+
+<h3>Verb</h3>
+{en-verb}
+<ol><li> {transitive} To convert a word to a noun.</li>
+<ul><li> <b>1992</b>, Lewis Acrelius Froman, <em>Language and Power: Books III, IV, and V</em></li>
+<ul><li> For example, that females are different from but equal to males is oxymoronic by virtue of the <b>nouned</b> status of female and male as kinds of persons.</li>
+</ul>
+<li> <b>2000</b>, Andrew J. DuBrin, <em>The complete idiot's guide to leadership</em></li>
+<ul><li> However, too much <b>nouning</b> makes you sound bureaucratic, immature, and verbally challenged. Top executives convert far fewer nouns into verbs than do workers at lower levels.</li>
+</ul>
+</ul>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> non-U</li>
+</ul>
+Category:English autological termsCategory:en:Parts of speech----
 ***November***
-November: 
-
-===Alternative forms===
-* [[Novembre]] {{qualifier|obsolete}}
-
-===Etymology===
-{{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
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/nəʊˈvɛmbə/}}, {{X-SAMPA|/n@U"vEmb@/}}
-* {{a|US}} {{enPR|nō-vĕmʹbər}}, {{IPA|/noʊˈvɛmbəɹ/}}, {{X-SAMPA|/noU"vEmb@r/}}
-* {{hyphenation|No|vem|ber}}
-* {{audio|en-us-November.ogg|Audio (US)}}
-* {{rhymes|ɛmbə(r)}}
-
-===Proper noun===
-{{en-proper noun|Novembers}}
-{{wikipedia}}
-
-# The eleventh [[month]] of the [[Gregorian calendar]], following [[October]] and preceding [[December]]. Abbreviation: '''[[Nov]]''' or '''[[Nov.]]'''
-# The letter ''N'' in the [[ICAO spelling alphabet]].
-
-====Derived terms====
+November:
+
+<h3>Alternative forms</h3>
+<ul><li> Novembre {{qualifier|obsolete}}</li>
+</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
+<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>
+<li> {{hyphenation|No|vem|ber}}</li>
+<li> {{audio|en-us-November.ogg|Audio (US)}}</li>
+<li> {{rhymes|ɛmbə(r)}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+{{en-proper noun|Novembers}}{wikipedia}
+<ol><li> The eleventh month of the Gregorian calendar, following October and preceding December. Abbreviation: <b>Nov</b> or <b>Nov.</b></li>
+<li> The letter <em>N</em> in the ICAO spelling alphabet.</li>
+</ol>
+
+<h4>Derived terms</h4>
 {{der-top|Derived terms}}
-* [[w:Communist Party of Albania 8 November|Communist Party of Albania 8 November]]
-* [[mid-November]]
-* [[w:November 17|November 17]]
-* [[November class]]
-* [[w:November Coalition|November Coalition]]
-* [[November criminal]]
-* [[November Eve]]
-* [[w:November Group|November Group]]
-{{der-mid}}
-* [[Novemberish]]
-* [[November moth]]
-* [[November Revolution]]
-* [[w:November Uprising|November Uprising]]
-* [[Novembery]], [[Novembry]]
-* [[w:November 17|Revolutionary Organization 17 November]]
-* [[Witch of November]]
-{{der-bottom}}
-
-====Translations====
-{{trans-top|eleventh month of the Gregorian calendar}}
-* Abaza: {{tø|abq|ноябрь}}
-* Abkhaz: {{Cyrl|[[абҵара]]}} {{IPAchar|(abc̣ara)}}
-* Afrikaans: {{t+|af|November|xs=Afrikaans}}
-* Alabama: [[hasiholtina istapókkòolawah cháffàaka]], [[Nofìmba]]
-* Albanian: {{t|sq|nëntor|xs=Albanian}}
-* Alutiiq: {{tø|ems|Quyawim Iralua}}
-* Amharic: {{t|am|ኖቬምበር|tr=novembär|sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Kǫʼ Bąąh Náłkʼas}}
-* Arabic: {{Arab|[[نوفمبر|نُوفمْبر]]}} (nufímbir, nufámbir, nufámbar) {{m}}, {{Arab|[[تشرين الثاني|تِشرينُ الثّانِي]]}} (tišrīnu θ-θāni) {{m}}
-*: Egyptian Arabic: {{tø|arz|نوفمبر|m|tr=novamber|sc=Arab}}
-* Aragonese: [[nobiembre]] {{m}}
-* Armenian: {{t+|hy|նոյեմբեր|tr=noyember}}
-*: Old Armenian: {{tø|xcl|նոյեմբեր|tr=noyember|sc=Armn}}
-* Asturian: {{t|ast|payares|m}}
-* Azeri: {{t+|az|noyabr|xs=Azeri}}
-* Basque: {{t+|eu|azaro|xs=Basque}}
-* Belarusian: {{t-|be|лістапад|m|tr=listapad|xs=Belarusian}}
-* Bengali: {{t-|bn|নভেম্বর|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|novemba}}
-* Breton: {{t+|br|Du|xs=Breton}}, miz Du
-* Bulgarian: {{t+|bg|ноември|m|tr=noémvri}}
-* Burmese: {{t|my|နိုဝင်ဘာ|sc=Mymr|tr=nowinba}}
-* Catalan: {{t+|ca|novembre|m}}
-* Cherokee: {{t|chr|ᏅᏓᏕᏩ|tr=Nvdadewa|sc=Cher}}
-* Chinese: [[十一月]] (shíyīyuè)
-* Chuvash: [[чӳк]] (čük)
-* Cornish: [[mys du]]
-* Czech: {{t+|cs|listopad|m}}
-* Dakota: {{tø|dak|Tahecapšuŋwi}}
-* Danish: {{t+|da|november}}
-* Dutch: {{t+|nl|november}}
-* Esperanto: {{t+|eo|novembro|xs=Esperanto}}, {{t-|eo|Novembro|xs=Esperanto}}
-* Estonian: {{t+|et|november}}
-* Ewe: [[Adeɛmekpɔxe]], [[Nɔvember]]
-* Faroese: {{t|fo|november|m}}, {{t|fo|novembur|m}}
-* Fijian: {{t|fj|Noveba}}
-* Finnish: {{t+|fi|marraskuu}}
-* French: {{t+|fr|novembre|m}}
-* Friulian: [[novembar]] {{m}}
-* Galician: [[novembro]] {{m}}, [[santos]] {{m}}
-* Georgian: {{t|ka|ნოემბერი|tr=noemberi|sc=Geor}}
-* German: {{t+|de|November|m}}, (archaic) {{t+|de|Nebelung|m}}
-* Gilbertese: {{tø|gil|Nobembwa|sc=Cyrl}}
-* Greek: [[Νοέμβριος]] (Noémvrios) {{m}}, [[Νοέμβρης]] (Noémvris) {{m}}
-* Greenlandic: {{t+|kl|Novembari|xs=Greenlandic}}
-* Haitian Creole: {{tø|ht|novanm}}
-* Hawaiian: {{tø|haw|Nowemapa}}
-* Hebrew: [[נובמבר|נוֹבֶמְבֶּר]] (novémber)
-* Hindi: {{t+|hi|नवम्बर|tr=navambar|xs=Hindi}}
-* Hungarian: {{t+|hu|november}}
-* Icelandic: {{t+|is|nóvember|m}}, {{t-|is|nóvembermánuður|m}}
-* Ido: {{t+|io|novembro|xs=Ido}}
-* Indonesian: {{t-|id|november|xs=Indonesian}}
-* Interlingua: {{t|ia|novembre}}
-* Irish: {{t+|ga|Samhain|f|xs=Irish}}
-* Italian: {{t+|it|novembre|m}}
-* Japanese: {{t+|ja|十一月|tr=じゅういちがつ, jūichigatsú}}, {{t+|ja|霜月|tr=しもつき, shimotsuki}}
-* [[Kabuverdianu]]:
-*: [[Badiu]], [[Santiago]]: [[nuvembru]] {{m}}
-*: [[São Vicente]]: [[n'vembr']] {{m}}
-* Kashubian: [[lëstopadnik]] {{m}}
-* Kazakh: {{t|kk|қараша|tr=qaraşa|sc=Cyrl}}
-{{trans-mid}}
-* Khmer: {{Khmr|[[វិច្ឆិកា]]}} (weuchăgā)
-* Korean: {{t+|ko|십일월|tr=sibilwol|sc=Kore}}
-* Latin: {{t+|la|november}}
-* Latvian: {{t+|lv|novembris|m|xs=Latvian}}
-* [[Limburgish]]: November
-* Lithuanian: {{t+|lt|lapkritis|m|xs=Lithuanian}}
-* Livonian: [[novembõr]], [[kīlmakū]]
-* Low German: {{t|nds|November|m}}, {{t|nds|Novembermaand|m}}
-* Luxembourgish: {{t|lb|November|m}}, {{t|lb|Allerhellgemount|m}}, {{t|lb|Wantermount|m}}
-* Macedonian: {{t+|mk|ноември|m|tr=noémvri}}
-* Malay: {{t-|ms|november|xs=Malay}}
-* Maltese: {{t-|mt|Novembru|xs=Maltese}}
-* [[Manchu]]: (omšon biya)
-* Maori: [[nōema]]
-* Montagnais: {{tø|moe|takuatshi-pishimᵘ}}
-* Navajo: {{tø|nv|Níłchʼitsʼósí}}
-* Neapolitan: [[nuvèmbre]] {{m}}
-* Norwegian: {{t+|no|november}}
-* Novial: {{tø|nov|novembre|xs=Novial}}
-* Occitan: {{t+|oc|novembre|m|xs=Occitan}}
-* Ojibwe: [[gashkadino-giizis]]
-* Old English: {{t-|ang|blotmonaþ|m|alt=blōtmōnaþ|xs=Old English}}
-* Oriya: {{t|or|ନଭେମ୍ବର|sc=Orya}}
-* Ossetian: {{tø|os|ноябрь|tr=nojábr’|sc=Cyrl|xs=Ossetian}}
-* Persian: {{t-|fa|نوامبر|tr=novâmbr|xs=Persian}}
-* Polish: {{t+|pl|listopad|m}}
-* Portuguese: {{t+|pt|novembro|m}}
-* Romanian: {{t+|ro|noiembrie|m}}, {{qualifier|pop}} {{t+|ro|brumar}}
-* Romansch: {{t|rm|november|m}}
-* Russian: {{t+|ru|ноябрь|m|tr=nojábr’}}
-* Samoan: {{t|sm|novema}}
-* Scottish Gaelic: {{t-|gd|Samhain|f|alt=an t-Samhain|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t-|sr|новембар|m|sc=Cyrl}}, {{t|sh|студени|m|sc=Cyrl}}
-*: Roman: {{t|sh|novembar|m|sc=Latn}}, {{t|sh|studeni|m|sc=Latn}}
-* Sicilian: [[nuvemmiru]] {{m}}
-* Skolt Sami: {{tø|sms|vu'vrrmmään}}, {{tø|sms|skamm´mään}}
-* Slovak: {{t+|sk|november|m}}
-* Slovene: {{t|sl|novêmber}}
-* Sotho: {{t|st|Pudungwana|xs=Sotho}}
-* Spanish: {{t+|es|noviembre|m}}
-* Swedish: {{t+|sv|november}}
-* Tagalog: {{t|tl|nobyembre}}
-* Tahitian: {{tø|ty|novema}}
-* Tajik: {{t-|tg|ноябр|tr=nojabr|sc=Cyrl|xs=Tajik}}
-* Tatar: {{t-|tt|nöyäber|xs=Tatar}}
-* Telugu: {{t|te|నవంబరు|tr=navaMbaru}}
-* Thai: {{Thai|[[พฤศจิกายน]]}} (phrēut sà jì gaa yohn)
-* Tok Pisin: {{t|tpi|novemba}}
-* Tongan: {{t|to|nōvema}}
-* Turkish: {{t+|tr|kasım}}, {{t|tr|Teşrini Sani}} {{qualifier|obsolete}}
-* Ukrainian: {{t+|uk|листопад|m|tr=lystopád|xs=Ukrainian}}
-* Urdu: {{ur-Arab|[[نومبر]]}} (nuvembar)
-* Vietnamese: {{t+|vi|tháng mười một|xs=Vietnamese}}
-* Volapük: {{t|vo|novul}}
-* Võro: [[märtekuu]]
-* Walloon: [[nôvimbe]] {{m}}
-* Welsh: {{t+|cy|Tachwedd|m|xs=Welsh}}
-* West Frisian: [[novimber]], [[slachtmoanne]]
-* Wolof: {{t|wo|Nowembar}}
-* Yiddish: {{t-|yi|נאָוועמבער|m|tr=november, nowember|sc=Hebr|xs=Yiddish}}
-{{trans-bottom}}
-
-{{trans-top|''N'' in the ICAO spelling alphabet}}
-* Estonian: {{t+|et|Narva}}
-* Finnish: {{t+|fi|Niilo}}
-* French: {{t+|fr|Nicolas}}
-* German: {{t-|de|Nordpol}}
-{{trans-mid}}
-* Portuguese: {{t+|pt|Nazaré}}
-* Russian: {{t+|ru|Николай|tr=Nikoláj}}
-* Spanish: {{t+|es|Navarra}}, {{t+|es|Navidad}}
-{{trans-bottom}}
-
-===See also===
-* {{list|en|Gregorian calendar months}}
-
+<ul><li> Communist Party of Albania 8 November</li>
+<li> mid-November</li>
+<li> November 17</li>
+<li> November class</li>
+<li> November Coalition</li>
+<li> November criminal</li>
+<li> November Eve</li>
+<li> November Group</li>
+</ul>
+{der-mid}
+<ul><li> Novemberish</li>
+<li> November moth</li>
+<li> November Revolution</li>
+<li> November Uprising</li>
+<li> Novembery, Novembry</li>
+<li> Revolutionary Organization 17 November</li>
+<li> Witch of November</li>
+</ul>
+{der-bottom}
+<h3>See also</h3>
+<ul><li> {{list|en|Gregorian calendar months}}</li>
+</ul>
 ----
-
-
 ***October***
-October: 
+October:
 
-===Alternative forms===
-* [[Octobre]] {{qualifier|obsolete}}
+<h3>Alternative forms</h3>
+<ul><li> Octobre {{qualifier|obsolete}}</li>
+</ul>
 
-===Etymology===
+<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>
+<li> {{audio|en-us-October.ogg|Audio (US)}}</li>
+</ul>
 
-===Pronunciation===
-* {{a|UK}} {{IPA|/ɒkˈtəʊbə/}}, {{X-SAMPA|/Qk"t@Ub@/}}
-* {{a|US}} {{enPR|äk-tōʹbər}}, {{IPA|/ɑkˈtoʊbəɹ/}}, {{X-SAMPA|/Ak"toUb@r/}}
-* {{audio|en-us-October.ogg|Audio (US)}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{en-proper noun|Octobers}}
-
-# The tenth [[month]] of the [[Gregorian calendar]], following [[September]] and preceding [[November]]. Abbreviation: '''[[Oct]]'''
-
-====Derived terms====
-{{top2}}
-* {{w|October Revolution|Great October Socialist Revolution}}
-* [[mid-October]]
-* [[October-bird]]
-* {{w|October Crisis}}
-* {{w|October Diploma}}
-* [[October effect]]
-* [[Octoberfest]]
-* [[Octoberist]], [[Octobrist]]
-{{mid2}}
-* {{w|October Manifesto}}
-* [[October Revolution]]
-* {{w|October Revolution Island}}
-* [[October surprise]]
-* {{w|October War}}
-* {{w|October Revolution|Red October}}
-* {{w|Third Saturday in October}}
-{{bottom}}
-
-====Translations====
-{{trans-top|tenth month of the Gregorian calendar}}
-* Abaza: {{tø|abq|октябрь}}
-* Abkhaz: {{t|ab|жьҭаара|tr=ẓ̌ṭaara}}
-* Afrikaans: {{t+|af|Oktober|xs=Afrikaans}}
-* Alabama: [[hasiholtina ispókkòoli]]
-* Albanian: {{t|sq|tetor|xs=Albanian}}
-* Alutiiq: {{tø|ems|Kakegllum Iralua}}
-* Amharic: {{t|am|ኦክተውበር|tr=oktäwbär|sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Gha̜a̜zhįʼ}}
-* Arabic: {{t|ar|اكتوبر|alt=أكْتُوبَر|tr=aktóbar|m}}, {{t|ar|تشرين الاول|alt=تِشرينُ الأوّلُ|tr=tišrīnu l-’áwwal|m}}
-* Aragonese: {{t|an|otubre|m}}
-* Armenian: {{t+|hy|հոկտեմբեր|tr=hoktember}}
-*: Old Armenian: {{tø|xcl|հոկտեմբեր|tr=hoktember|sc=Armn}}
-* Asturian: {{t|ast|ochobre|m}}
-* Azeri: {{t|az|oktyabr|xs=Azeri}}
-* Basque: {{t+|eu|urri|xs=Basque}}
-* Belarusian: {{t-|be|кастрычнік|tr=kastrýčnik|xs=Belarusian}}
-* Bengali: {{t+|bn|অক্টোবর|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|oktoba}}
-* Breton: {{t+|br|Here|xs=Breton}}, miz Here
-* Bulgarian: {{t+|bg|октомври|m|tr=októmvri}}
-* Burmese: {{t|my|အောက်တိုဘာ|sc=Mymr|tr=auktoba}}
-* Catalan: {{t+|ca|octubre|m}}
-* Cherokee: {{t|chr|ᏚᏂᏅᏗ|tr=Duninvdi|sc=Cher}}
-* Chinese:
-*: [[Dungan]]: {{tø|dng|шийүә|sc=Cyrl}}
-*: Mandarin: {{t|cmn|十月|tr=shíyuè}}
-* Czech: {{t+|cs|říjen|m}}
-* Dakota: {{tø|dak|Wi iwikcemna}}
-* Danish: {{t+|da|oktober}}
-* Dutch: {{t+|nl|oktober}}
-* Esperanto: {{t+|eo|oktobro|xs=Esperanto}}, {{t-|eo|Oktobro|xs=Esperanto}}
-* Estonian: {{t+|et|oktoober}}
-* Ewe: {{t|ee|Kele}}, {{t|ee|Ɔktober}}
-* Faroese: {{t|fo|oktober|m}}, {{t|fo|oktobur|m}}
-* Fijian: {{t|fj|okotova}}
-* Finnish: {{t+|fi|lokakuu}}
-* French: {{t+|fr|octobre|m}}
-* Friulian: {{t|fur|otubar|m}}
-* Galician: {{t|gl|outubro|m}}
-* Georgian: {{t-|ka|ოქტომბერი|tr=oxtomberi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Oktober|m}}
-* Gilbertese: {{tø|gil|Okitobwa|sc=Cyrl}}
-* Greek: {{t+|el|Οκτώβριος|m|tr=Októvrios}}, {{t+|el|Οκτώβρης|m|tr=Októvris}}
-* Greenlandic: {{t+|kl|Oktobari|xs=Greenlandic}}
-* Haitian Creole: {{tø|ht|oktòb}}
-* Hawaiian: {{tø|haw|ʻOkakopa}}
-* Hebrew: {{t|he|אוקטובר|alt=אוֹקְטוֹבֶּר|tr=október}}
-* Hindi: {{t-|hi|अक्तूबर|m|tr=aktūbar|xs=Hindi}}
-* Hungarian: {{t+|hu|október}}
-* Icelandic: {{t+|is|október|m}}, {{t-|is|októbermánuður|m}}
-* Ido: {{t+|io|oktobro|xs=Ido}}
-* Indonesian: {{t-|id|oktober|xs=Indonesian}}
-* Interlingua: {{t|ia|octobre}}
-* Irish: {{t+|ga|Deireadh Fómhair|m|xs=Irish}}
-* Italian: {{t+|it|ottobre|m}}
-* Japanese: {{t+|ja|十月|tr=じゅうがつ, jūgatsu}}, {{t+|ja|神無月|tr=かんなづき, kannazuki, かみなづき, kaminazuki, かむなづき, kamunazuki}}
-* Javanese: [[Oktober]]
-* Kannada: {{t|kn|ಅಕ್ಟೋಬರ್|tr=akṭōbara}}
-* Kashubian: {{t|csb|rujan|m}}
-{{trans-mid}}
-* Kazakh: {{t|kk|қазан|tr=qazan|sc=Cyrl}}
-* Khmer: {{t|km|តុលា|tr=dtolā}}
-* Korean: {{t+|ko|시월|tr=siweol|sc=Kore}}
-* Latin: {{t+|la|october}}
-* Latvian: {{t+|lv|oktobris|m|xs=Latvian}}
-* Limburgish: {{t|li|Oktober|m}}
-* Lithuanian: {{t+|lt|spalis|m|xs=Lithuanian}}
-* Livonian: {{t|liv|oktōbõr}}, {{t|liv|vīmkū}}
-* Low German: {{t|nds|Oktober|m}}, {{t|nds|Oktobermaand|m}}
-* Luganda: [[mukulukusa]]
-* Luxembourgish: {{t|lb|Oktober|m}}, {{t|lb|Wäimount|m}}
-* Macedonian: {{t+|mk|октомври|m|tr=októmvri}}
-* Maltese: {{t-|mt|Ottubru|xs=Maltese}}
-* [[Manchu]]: (juwan biya)
-* Maori: [[oketopa]]
-* Marathi: {{t|mr|ऑक्टोबर|tr=okṭobar}}
-* Montagnais: {{tø|moe|uashtessiu-pishimᵘ}}
-* Navajo: {{tø|nv|Ghąąjįʼ}}
-* Neapolitan: {{t|nap|ottómbre|m}}
-* Norwegian: {{t+|no|oktober}}
-* Novial: {{t|nov|oktobre}}
-* Ojibwe: {{t|oj|binaakwe-giizis}}
-* Old English: {{t+|ang|winterfylleþ|xs=Old English}}
-* Old High German: [[Gilbhart]] {{m}}
-* Oriya: {{t|or|ଅକ୍ଟୋବର|sc=Orya}}
-* Ossetian: {{tø|os|октябрь|tr=oktjábr’|sc=Cyrl|xs=Ossetian}}
-* Persian: {{t-|fa|اکتبر|tr=oktobr|xs=Persian}}
-* Polish: {{t+|pl|październik|m}}
-* Portuguese: {{t+|pt|outubro|m}}
-* Romanian: {{t+|ro|octombrie}}, {{qualifier|pop}} {{t+|ro|brumărel}}
-* Romansch: {{t|rm|october|m}}, {{t|rm|otgover|m}}
-* Russian: {{t+|ru|октябрь|m|tr=oktjábr’}}
-* Samoan: {{t|sm|oketopa}}
-* Scots: {{tø|sco|October|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|Dàmhair|f|alt=an Dàmhair|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|октобар|m|sc=Cyrl}}
-*: Roman: {{t|sh|oktobar|m}}, {{t|sh|listopad|m}} {{qualifier|Croatia}}
-* Sicilian: {{t|scn|uttuviru|m}}
-* Skolt Sami: {{tø|sms|kålggmään}}
-* Slovak: {{t+|sk|október|m}}
-* Slovene: {{t-|sl|október|m}}
-* Sotho: {{t|st|Mphalane|xs=Sotho}}
-* Spanish: {{t+|es|octubre|m}}
-* Swedish: {{t+|sv|oktober}}
-* Tahitian: {{tø|ty|’ātopa}}
-* Tajik: {{t-|tg|октябр|tr=oktjabr|sc=Cyrl|xs=Tajik}}
-* Tatar: {{t-|tt|öktäber|xs=Tatar}}
-* Telugu: {{t|te|అక్టోబరు|tr=akTObaru}}
-* Thai: {{t|th|ตุลาคม|tr=tòò laa khohm}}
-* Tok Pisin: {{t|tpi|oktoba}}
-* Tongan: {{t|to|'okatopa}}
-* Turkish: {{t+|tr|ekim}}, {{t|tr|Teşrini Evvel}} {{qualifier|obsolete}}
-* Ukrainian: {{t+|uk|жовтень|m|tr=žovten’|xs=Ukrainian}}
-* Urdu: {{t-|ur|اکتوبر|m|tr=aktobar|xs=Urdu}}
-* Vietnamese: {{t|vi|tháng mười}} ({{t|vi|十月}})
-* Volapük: {{t|vo|tobul}}
-* Võro: {{t|vro|rehekuu}}
-* Walloon: {{t|wa|octóbe|m}}
-* Welsh: {{t+|cy|Hydref|xs=Welsh}}
-* West Frisian: {{t|fy|oktober}}, {{t|fy|wynmoanne}}
-* Wolof: {{t|wo|Oktoobar}}
-* Yiddish: {{t-|yi|אָקטאָבער|m|tr=oktober |sc=Hebr|xs=Yiddish}}
-{{trans-bottom}}
-
-====See also====
-* {{list|en|Gregorian calendar months}}
-
+<ol><li> The tenth month of the Gregorian calendar, following September and preceding November. Abbreviation: <b>Oct</b></li>
+</ol>
+
+<h4>Derived terms</h4>
+{top2}
+<ul><li> {{w|October Revolution|Great October Socialist Revolution}}</li>
+<li> mid-October</li>
+<li> October-bird</li>
+<li> {{w|October Crisis}}</li>
+<li> {{w|October Diploma}}</li>
+<li> October effect</li>
+<li> Octoberfest</li>
+<li> Octoberist, Octobrist</li>
+</ul>
+{mid2}
+<ul><li> {{w|October Manifesto}}</li>
+<li> October Revolution</li>
+<li> {{w|October Revolution Island}}</li>
+<li> October surprise</li>
+<li> {{w|October War}}</li>
+<li> {{w|October Revolution|Red October}}</li>
+<li> {{w|Third Saturday in October}}</li>
+</ul>
+{bottom}
+<h4>See also</h4>
+<ul><li> {{list|en|Gregorian calendar months}}</li>
+</ul>
 ----
-
-
 ===of===
-grain of salt: 
-{{wikipedia}}
-===Etymology===
-From Latin {{term|cum grano salis}}, literally ''with a grain of salt'', figuratively ''with a bit of common sense''.
-
-===Noun===
-{{en-noun|sg=[[grain]] of [[salt]]|-}}
-
-# {{idiomatic}} A bit of [[common sense]] and [[skepticism]].  Generally used in some form of ''to take with a grain of salt.''
-#: ''I'd take anything I read in that paper with a '''grain of salt'''.''
-
-====Synonyms====
-* [[pinch of salt]]
-
-====Translations====
-{{trans-top|with common sense and skepticism}}
-* {{trreq|Catalan}}
-* Chinese:
-*: Mandarin: {{qualifier|to take with a grain of salt; not to be believed literally}} {{t|cmn|不可全信|tr=bùkěquánxìn|sc=Hani}}
-* Czech: {{t|cs|rezerva|f}}
-* Dutch: [[korrel]]tje [[zout]] (iets met een korreltje zout nemen)
-* Finnish: {{t|fi|varauksin}}, {{t|fi|varauksellisesti}}, {{t|fi|varauksella}},  {{t-|fi|varovasti}}
-{{trans-mid}}
-* {{trreq|Georgian}}
-* German: mit einem Körnchen Salz
-* Portuguese: Com um grão de sal (literal), com reservas, não confiar muito.
-* Russian: {{qualifier|adverb}} {{t|ru|скептически|tr=skeptíčeski}}, {{qualifier|adverb}} {{t|ru|недоверчиво|tr=nedovérčivo}}
-* Spanish: {{t-|es|reservas|f|p}}, {{t-|es|dudas|f|p}}
-* Swedish: {{t|sv|en nypa salt}}
-{{trans-bottom}}
-
-====See also====
-* [[face value]]
-
-[[et:grain of salt]]
-[[id:grain of salt]]
-freedom of speech: 
-{{wikipedia|Freedom of speech}}
-{{wikinews|Category:Free speech}}
-{{commons|Category:Freedom of speech}}
-{{wikiquote|Freedom of speech}}
-
-===Etymology===
-{{rfe}}
-
-===Pronunciation===
-* {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}
-
-===Noun===
-{{en-noun|sg=[[freedom]] [[of]] [[speech]]|-}}
-
-# The [[right]] of [[citizen]]s to [[speak]], or otherwise [[communicate]], without fear of harm or [[prosecution]].
-#* {{quote-book|year=1720|author={{w|John Trenchard (writer)|John Trenchard}} and {{w|Thomas Gordon (writer)|Thomas Gordon}}|title={{w|Cato's Letters}}|publisher=|url=|isbn=|page=Letter Number 15, ''Of Freedom of Speech, That the Same is inseparable from Publick Liberty''|passage=All Ministers ... who were Oppressors, or intended to be Oppressors, have been loud in their Complaints against '''Freedom of Speech''', and the License of the Press; and always restrained, or endeavored to restrain, both.}}
-#* {{quote-book
-|author={{w|Frank Murphy}}
-|title={{w|Thornhill v. Alabama}}
-|publisher={{w|Supreme Court of the United States}}
-|year=1940|passage=The '''freedom of speech''' and of the press, which are secured by the First Amendment against abridgment by the United States, are among the fundamental personal rights and liberties which are secured to all persons by the Fourteenth Amendment against abridgment by a state. The safeguarding of these rights to the ends that men may speak as they think on matters vital to them and that falsehoods may be exposed through the processes of education and discussion is essential to free government. Those who won our independence had confidence in the power of free and fearless reasoning and communication of ideas to discover and spread political and economic truth.|page={{w|Case citation|310 U.S. 88 }}
-}}
-#* {{quote-book|year=1969|author={{w|Abe Fortas}}|title={{w|Tinker v. Des Moines Independent Community School District}}|publisher={{w|Supreme Court of the United States}}|url=|isbn=|page={{ussc|393|503|1969}}|passage=First Amendment rights, applied in light of the special characteristics of the school environment, are available to teachers and students. It can hardly be argued that either students or teachers shed their constitutional rights to '''freedom of speech''' or expression at the schoolhouse gate.}}
-#* {{quote-book|year=1997|author={{w|Wendy Grossman}}|title={{w|Net.wars}}|publisher={{w|New York University Press}}|url=|isbn=0814731031|page=90|passage=One question that remains is at what point an individual Net poster has the right to assume prerogatives that have traditionally been only the province of journalists and news-gathering organizations. When the Pentagon Papers landed on the doorstep of ''The New York Times'', the newspaper was able to publish under the First Amendment's guarantees of '''freedom of speech''', and to make a strong argument in court that publication was in the public interest. ... the amplification inherent in the combination of the Net's high-speed communications and the size of the available population has greatly changed the balance of power.}}
-#* {{quote-book|year=2003|author=Mike Godwin|authorlink=w:Mike Godwin|title={{w|Cyber Rights}}|publisher=The MIT Press|url=|isbn=0262571684|page=2|passage=The term ''free speech'', which appears in this book's subtitle as well as in its text, is used more or less interchangeably with ''freedom of the press'', '''''freedom of speech''''', and ''freedom of expression'' to refer to all of the expressive rights guaranteed by the forty-five words of the First Amendment, as interpreted by the U.S. courts.}}
-#* {{quote-book  | last =Green  | first =David L.  | title =IQuote: Brilliance and Banter from the Internet Age  | publisher =Globe Pequot  | date =2007  | pages =113  | isbn = 1599211505|passage={{w|Mike Godwin}} (1994): Cyberspace may give '''freedom of speech''' more muscle than the First Amendment does. It may already have become literally impossible for a government to shut people up.}}
-# {{&lit|freedom|speech}}
-#* {{quote-book|chapter=Of Simulation and Dissimulation|year=1625|title=The [[w:Essays (Francis Bacon)|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=[[w:Francis Bacon|Francis Bacon]]|year_published=1680|passage=For to him that opens himself, Men will hardly shew themselves averse, but will (fair) let him go on, and turn their '''freedom of speech''' to freedom of thought. And therefore it is a good shrewd Proverb of the ''Spaniard, Tell a lye, and find a Troth''; as if there were no way of discovery, but by ''Simulation''.|url=http://books.google.com/books?id=xjQCAAAAQAAJ&pg=PA20&dq=%22freedom+of+speech%22&hl=en&sa=X&ei=zTI-T9zcDYnr0gHcx_HOBw&ved=0CNoBEOgBMBo#v=onepage&q=%22freedom%20of%20speech%22&f=false}}
-
-====Quotations====
-{{seemoreCites}}
-
-====Related terms====
-* [[free speech]]
-* [[freedom of expression]]
-
-====Coordinate terms====
-* [[freedom of movement]], [[freedom of contract]], [[freedom of the press]], [[freedom of religion]], [[freedom of assembly]], [[right to petition]], [[right to privacy]], [[right to keep and bear arms]]
-
-====Translations====
-{{trans-top|right to speak without fear of harm}}
-* Arabic: {{t|ar|حرية التعبير|f|tr=Hurriyyat al-ta3biir}}
-* Armenian: {{t-|hy|խոսքի ազատություն|tr=xosk’i azatut’yun}}
-* Belarusian: {{t|be|свабода слова|f|tr=svabóda slóva|xs=Belarusian}}
-* Bulgarian: {{t|bg|свобода на слово|f|tr=svoboda na slovo}}
-* Chinese:
-*: Mandarin: {{t-|cmn|言論自由|sc=Hani}}, {{t-|cmn|言论自由|tr=yánlùnzìyóu|sc=Hani}}
-* Czech: {{t-|cs|svoboda slova|f}}, {{t|cs|svoboda projevu|f}}, {{t|cs|svoboda vyjadřování|f}}
-* Danish: {{t-|da|ytringsfrihed}}
-* Dutch: {{t|nl|vrijheid van meningsuiting|f}}
-* Estonian: {{t-|et|sõnavabadus}}
-* Finnish: {{t+|fi|sananvapaus}}
-* French: {{t+|fr|liberté d'expression|f}}
-* Georgian: {{t|ka|სიტყვის თავისუფლება|sc=Geor}}
-* German: {{t|de|freie Meinungsäußerung|f}}, {{t-|de|Redefreiheit|f}}
-* Greek: {{t|el|ελευθερία έκφρασης|f|tr=elefthería ékfrasis}}
-* Hebrew: {{t|he|חופש הביטוי}}
-* Hindi: {{t|hi|अभिव्यक्ति की स्वतंत्रता|tr=abhivyakti kī svatantratā|xs=Hindi}}
-* Hungarian: {{t-|hu|szólásszabadság}}
-* Icelandic: {{t|is|málfrelsi|n}}
-* Interlingua: [[libertate de parola]], [[libertate de expression]]
-* Italian: {{t|it|libertà di parola|f}}
-* Japanese: {{t|ja|言論の自由|tr=げんろんのじゆう, genron-no jiyū}} <!-- [[表現の自由]]?-->
-{{trans-mid}}
-* Korean: {{t|ko|표현의 자유|tr=pyohyeon jayu|sc=Hang}}
-* Latvian: {{t|lv|vārda brīvība|f|xs=Latvian}}
-* Macedonian: {{t|mk|слобода на говор|f|tr=sloboda na govor}}
-* Norwegian: {{t-|no|ytringsfrihet|m|f}}
-*: [[Norwegian Nynorsk]]: {{t|nn|ytringsfridom|xs=Norwegian Nynorsk}}
-* Persian: {{t-|fa|آزادی بیان|tr=âzâdi-ye bayân|xs=Persian}}
-* Polish: {{t|pl|wolność słowa|f}}
-* Portuguese: {{t|pt|liberdade de expressão|f}}
-* Russian: {{t-|ru|свобода слова|f|tr=svobóda slóva}}
-* Scottish Gaelic: {{t-|gd|saorsa cainnte|f|xs=Scottish Gaelic}}
-* Serbo-Croatian: {{t|sh|слобода говора|f|sc=Cyrl|xs=Serbo-Croatian}}, {{t|sh|sloboda govora|f|xs=Serbo-Croatian}}
-* Slovak: {{t|sk|sloboda slova|f}}
-* Slovene: {{t|sl|svoboda govora|f}}
-* Spanish: {{t|es|libertad de palabra|f}}, {{t|es|libertad de expresión|f}}
-* Swedish: {{t+|sv|yttrandefrihet}}
-* Thai: {{t|th|เสรีภาพในการพูด}}
-* Turkish: {{t|tr|ifade özgürlüğü}}
-* Ukrainian: {{t-|uk|свобода слова|f|tr=svobóda slóva|xs=Ukrainian}}
-* Urdu: {{t|ur|آزادی گفتار|xs=Urdu}}
-* Vietnamese: {{t|vi|tự do ngôn luận|xs=Vietnamese}}
-{{trans-bottom}}
-
-===See also===
-* {{pedia}}
-
-[[Category:en:Freedom of speech]]
-
-[[de:freedom of speech]]
-[[et:freedom of speech]]
-[[fr:freedom of speech]]
-[[pl:freedom of speech]]
-[[fi:freedom of speech]]
-[[ta:freedom of speech]]
+grain of salt:
+{wikipedia}
+<h3>Etymology</h3>
+From Latin {{term|cum grano salis}}, literally <em>with a grain of salt</em>, figuratively <em>with a bit of common sense</em>.
+<h3>Noun</h3>
+{{en-noun|-|sg=grain of salt}}
+<ol><li> {idiomatic} A bit of common sense and skepticism.  Generally used in some form of <em>to take with a grain of salt.</em></li>
+<ul><li> <em>I'd take anything I read in that paper with a <b>grain of salt</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> pinch of salt</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> face value</li>
+</ul>
+et:grain of saltid:grain of salt
+freedom of speech:
+{{wikipedia|Freedom of speech}}{{wikinews|Category:Free speech}}{{commons|Category:Freedom of speech}}{{wikiquote|Freedom of speech}}
+<h3>Etymology</h3>
+{rfe}
+<h3>Pronunciation</h3>
+<ul><li> {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|-|sg=freedom of speech}}
+<ol><li> The right of citizens to speak, or otherwise communicate, without fear of harm or prosecution.</li>
+<ul><li> {{quote-book|year=1720|author={{w|John Trenchard (writer)|John Trenchard}} and {{w|Thomas Gordon (writer)|Thomas Gordon}}|title={{w|Cato's Letters}}|publisher=|url=|isbn=|page=Letter Number 15, <em>Of Freedom of Speech, That the Same is inseparable from Publick Liberty</em>|passage=All Ministers ... who were Oppressors, or intended to be Oppressors, have been loud in their Complaints against <b>Freedom of Speech</b>, and the License of the Press; and always restrained, or endeavored to restrain, both.}}</li>
+<li> {{quote-book|author={{w|Frank Murphy}}|title={{w|Thornhill v. Alabama}}|publisher={{w|Supreme Court of the United States}}|year=1940|passage=The <b>freedom of speech</b> and of the press, which are secured by the First Amendment against abridgment by the United States, are among the fundamental personal rights and liberties which are secured to all persons by the Fourteenth Amendment against abridgment by a state. The safeguarding of these rights to the ends that men may speak as they think on matters vital to them and that falsehoods may be exposed through the processes of education and discussion is essential to free government. Those who won our independence had confidence in the power of free and fearless reasoning and communication of ideas to discover and spread political and economic truth.|page={{w|Case citation|310 U.S. 88 }}}}</li>
+<li> {{quote-book|year=1969|author={{w|Abe Fortas}}|title={{w|Tinker v. Des Moines Independent Community School District}}|publisher={{w|Supreme Court of the United States}}|url=|isbn=|page={{ussc|393|503|1969}}|passage=First Amendment rights, applied in light of the special characteristics of the school environment, are available to teachers and students. It can hardly be argued that either students or teachers shed their constitutional rights to <b>freedom of speech</b> or expression at the schoolhouse gate.}}</li>
+<li> {{quote-book|year=1997|author={{w|Wendy Grossman}}|title={{w|Net.wars}}|publisher={{w|New York University Press}}|url=|isbn=0814731031|page=90|passage=One question that remains is at what point an individual Net poster has the right to assume prerogatives that have traditionally been only the province of journalists and news-gathering organizations. When the Pentagon Papers landed on the doorstep of <em>The New York Times</em>, the newspaper was able to publish under the First Amendment's guarantees of <b>freedom of speech</b>, and to make a strong argument in court that publication was in the public interest. ... the amplification inherent in the combination of the Net's high-speed communications and the size of the available population has greatly changed the balance of power.}}</li>
+<li> {{quote-book|year=2003|author=Mike Godwin|authorlink=w:Mike Godwin|title={{w|Cyber Rights}}|publisher=The MIT Press|url=|isbn=0262571684|page=2|passage=The term <em>free speech</em>, which appears in this book's subtitle as well as in its text, is used more or less interchangeably with <em>freedom of the press</em>, <b><em>freedom of speech</b></em>, and <em>freedom of expression</em> to refer to all of the expressive rights guaranteed by the forty-five words of the First Amendment, as interpreted by the U.S. courts.}}</li>
+<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>
+</ol>
+
+<h4>Quotations</h4>
+{seemoreCites}
+<h4>Related terms</h4>
+<ul><li> free speech</li>
+<li> freedom of expression</li>
+</ul>
+
+<h4>Coordinate terms</h4>
+<ul><li> freedom of movement, freedom of contract, freedom of the press, freedom of religion, freedom of assembly, right to petition, right to privacy, right to keep and bear arms</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> {pedia}</li>
+</ul>
+Category:en:Freedom of speechde:freedom of speechet:freedom of speechfr:freedom of speechpl:freedom of speechfi:freedom of speechta:freedom of speech
 ***patronage***
-patronage: 
-{{wikipedia}}
-
-===Pronunciation===
-/ˈpeɪtrənɪd͡ʒ/<!--what it this?-->
-
-===Noun===
-{{en-noun}}
-
-# The act of providing [[approval]] and [[support]]; [[backing]]; [[championship]].
-#: ''His vigorous '''patronage''' of the conservatives got him in trouble with progressives.''
-# [[customer|Customer]]s [[collectively]]; [[clientele]]; [[business]].
-#: ''The restaurant had an upper class '''patronage'''.''
-# A [[communication]] that indicates lack of [[respect]] by patronizing the [[recipient]]; [[condescension]]; [[disdain]].
-# {{politics}} Granting [[favour]]s or giving [[contract]]s or making [[appointment]]s to [[office]] in return for [[political]] support.
-# The people who [[ride]] a form of [[transportation]]. i.e. The customers or clientele of that form of transportation. [[Synonym]] of [[ridership]].
-
-====Translations====
-{{trans-top|the act of providing approval and support}}
-* Finnish: [[tukeminen]], [[kannattaminen]]
-* French: {{t|fr|soutien|m}}
-{{trans-mid}}
-* Hungarian: {{t-|hu|pártfogás}}, {{t-|hu|patronázs}}
-* Portuguese: {{t|pt|mecenato|m}}
-{{trans-bottom}}
-
-{{trans-top|customers collectively; clientele; business}}
-* Finnish: {{t-|fi|asiakaskunta}}, {{t-|fi|asiakkaat|p}}
-* French: {{t|fr|clientèle|f}}
-* Greek: {{t+|el|πελατεία|f|tr=palateía}}
-{{trans-mid}}
-* Hungarian: {{t+|hu|vevőkör}}
-* Spanish: {{t+|es|clientela|f}}
-{{trans-bottom}}
-
-{{trans-top|a communication that indicates lack of respect by patronizing the recipient}}
-* Finnish: [[holhoaminen]], [[alentuvuus]]
-{{trans-mid}}
-* Greek: {{t|el|πατρονάρισμα|n}}
-{{trans-bottom}}
-
-{{trans-top|granting favours or giving contracts or making appointments to office in return for political support}}
-* French: {{t|fr|clientélisme|m}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|the business given to a commercial establishment by its customers; trade}}
-* Greek: {{t+|el|πελατεία|f|tr=palateía}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|fr}}: [[patronage]] {{m}}
-{{trans-mid}}
-* {{ttbc|it}}: [[patrocinio]] {{m}}
-* {{ttbc|es}}: [[patrocinio]] {{m}}
-{{trans-bottom}}
-
-===Verb===
+patronage:
+{wikipedia}
+<h3>Pronunciation</h3>
+/ˈpeɪtrənɪd͡ʒ/
+<h3>Noun</h3>
+{en-noun}
+<ol><li> The act of providing approval and support; backing; championship.</li>
+<ul><li> <em>His vigorous <b>patronage</b> of the conservatives got him in trouble with progressives.</em></li>
+</ul>
+<li> Customers collectively; clientele; business.</li>
+<ul><li> <em>The restaurant had an upper class <b>patronage</b>.</em></li>
+</ul>
+<li> A communication that indicates lack of respect by patronizing the recipient; condescension; disdain.</li>
+<li> {politics} Granting favours or giving contracts or making appointments to office in return for political support.</li>
+<li> The people who ride a form of transportation. i.e. The customers or clientele of that form of transportation. Synonym of ridership.</li>
+</ol>
+
+<h3>Verb</h3>
 {{en-verb|patronag|es}}
-
-# {{transitive}} To support by being a [[patron]] of.
-#* '''2003''', Hubert Michael Seiwert, ''Popular Religious Movements and Heterodox Sects in Chinese History'', BRILL, ISBN 9789004131460, [http://books.google.com/books?id=Xg-gcQq1TGQC&pg=PA62&dq=patronaged page 62]:
-#*: Mingdi continued the policy of his father who had '''patronaged''' Confucian learning.
-#* '''2004''', C.K. Gandhirajan, ''Organized Crime'', APH Publishing Corporation, ISBN 978-81-7648-481-7, [http://books.google.com/books?id=ohyhsmWmelAC&pg=PA147&dq=patronaged page 147]:
-#*: 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 '''patronaged''' and supported by the politicians either of the ruling or opposition party.
-#* '''2007''', Stefaan Fiers and Ineke Secker, “A Career through the Party”, chapter 6 of Maurizio Cotta and Heinrich Best (editors), ''Democratic Representation in Europe'', Oxford University Press, ISBN 978-0-19-923420-2, [http://books.google.com/books?id=EtetpwF-xHMC&pg=PA138&dq=patronaged page 138]:
-#*: 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 '''patronaged''' position in another organisation, i.e. ''the political functionary''’.
-# {{transitive}} To be a regular customer or client of; to [[patronize]]; to [[patronise]]; to [[support]]; to [[keep going]].
-#* {{circa|1880}} in ''The Primary Teacher'' (magazine), Volume III, Number ??, New-England Publishing Company, [http://books.google.com/books?id=sxgVAAAAIAAJ&pg=PA33&dq=patronaged page 63]:
-#*: This house is largely '''patronaged''' 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.
-#* '''1902''' May, in ''Oregon Poultry Journal'', [http://books.google.com/books?id=flRMAAAAYAAJ&pg=PA27&dq=patronage page 27]:
-#*: 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 '''patronage''' Mr. Welch.
-#* '''2002''', Kevin Fox Gotham, ''Race, Real Estate, and Uneven Development'', SUNY Press, ISBN 978-0-7914-5377-3, [http://books.google.com/books?id=CRG0QOEw9wAC&pg=PA28&dq=patronaged page 28]:
-#*: Most public establishments catered to Blacks, and Whites actively '''patronaged''' some black-owned businesses (Martin 1982, 6, 9–11; Slingsby 1980, 31–32).
-
+<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> 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>
+<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>
+<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> 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>
+<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>
+<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>
+</ol>
 ----
-
-
 ===pears===
-apples and pears: 
+apples and pears:
 
-===Noun===
-{{en-noun|sg=[[apples]] and [[pears]]|-}}
+<h3>Noun</h3>
+{{en-noun|-|sg=apples and pears}}
+<ol><li> {Cockney rhyming slang} stairs</li>
+</ol>
 
-# {{Cockney rhyming slang}} [[stairs]]
 ***pie***
-pie: 
-{{slim-wikipedia|Pie (disambiguation)}}
-[[Image:Lemon Meringue Pie 1.jpg|thumb|Unsliced Lemon Meringue Pie - Noun, definition 1]]
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/pʌɪ/}}
-* {{a|US}} {{enPR|pī}}, {{IPA|/paɪ/}}, {{X-SAMPA|/paI/}}
-* {{audio|en-us-pie.ogg|Audio (US)}}
-* {{homophones|pi|π|lang=en}}
-* {{rhymes|aɪ}}
-
-===Etymology 1===
+pie:
+{{slim-wikipedia|Pie (disambiguation)}}Unsliced Lemon Meringue Pie - Noun, definition 1
+<h3>Pronunciation</h3>
+<ul><li> {{a|UK}} {{IPA|/pʌɪ/}}</li>
+<li> {{a|US}} {{enPR|pī}}, {{IPA|/paɪ/}}, {{X-SAMPA|/paI/}}</li>
+<li> {{audio|en-us-pie.ogg|Audio (US)}}</li>
+<li> {{homophones|pi|π|lang=en}}</li>
+<li> {{rhymes|aɪ}}</li>
+</ul>
+
+<h3>Etymology 1</h3>
 From {{etyl|enm}}, unknown origin.
-
-====Noun====
+<h4>Noun</h4>
 {{en-noun|s|-}}
-
-# A type of [[pastry]] that consists of an outer crust and a [[filling]].
-#: ''The family had steak and kidney '''pie''' for dinner and cherry '''pie''' for dessert.''
-# Extended to other, non-pastry dishes that maintain the general concept of a shell with a filling.
-#: ''Shepherd's '''pie''' is made of mince covered with mashed potato.''
-# {{context|Northeastern US}} [[pizza|Pizza]].
-# {{figuratively}} The [[whole]] of a wealth or [[resource]], to be divided in parts.
-#* ''It is easier to get along when everyone, more or less, is getting ahead. But when the '''pie''' is shrinking, social groups are more likely to turn on each other.'' &mdash; [[w:Evan Thomas|Evan Thomas]], ''[http://www.newsweek.com/2010/12/04/the-deepest-dangers-facing-the-united-states.html Why It’s Time to Worry]'', Newsweek 2010-12-04
-# {{letterpress}} A disorderly mess of spilt [[type]].
-# {{cricket}} An especially badly [[bowl]]ed ball.
-# {{pejorative}} a [[gluttonous]] person.
-
-=====Derived terms=====
-{{rel-top3|Terms derived from ''pie''}}
-* [[apple pie]]
-* [[chicken pie]]
-* [[cottage pie]]
-* [[cutie pie]]
-* [[cream pie]]
-* [[easy as pie]]
-* [[have one's fingers in many pies]]
-* [[meat pie]]
-* [[mince pie]]
-{{rel-mid3}}
-* [[mud pie]]
-* [[pie chart]]
-* [[pie-eater]]
-* [[pie-eyed]]
-* [[pie-faced]]
-* [[pie floater]]
-* [[piehole]]
-* [[pie in the sky]]
-{{rel-mid3}}
-* [[pieing]]
-* [[party pie]]
-* [[piemaker]]
-* [[piet]]
-* [[pork pie]]
-* [[pot pie]]
-* [[shepherd's pie]]
-* [[sweet as pie]]
-* [[who ate all the pies]]
-{{rel-bottom}}
-
-=====Translations=====
-{{trans-top|type of pastry}}
-* Afrikaans: {{t|af|pastei|xs=Afrikaans}}
-* Albanian: {{t+|sq|byrek|xs=Albanian}}
-* Arabic: {{t|ar|فطيرة|f|tr=faTiira}}
-* Belarusian: {{t|be|пірог|m|tr=piróh|xs=Belarusian}}
-* Catalan: {{t|ca|pastís|m}}
-* Chinese:
-*: Mandarin: {{t-|cmn|餡餅|sc=Hani}}, {{t-|cmn|馅饼|tr=xiànbǐng|sc=Hani}}, {{t-|cmn|排|tr=pái|sc=Hani}}, {{t-|cmn|派|tr=pài|sc=Hani}}
-* Cornish: {{t-|kw|hogen|xs=Cornish}},  {{qualifier|dialectal}} {{t-|kw|hoggan|xs=Cornish}}
-* Czech: {{t-|cs|koláč|m}}
-* Danish: {{t|da|tærte|c}}
-* Dutch: {{t+|nl|taart|f}}, {{t|nl|pastei|f}}
-* Finnish: {{t+|fi|torttu}}, {{t-|fi|piirakka}}, {{t-|fi|piiras}}
-* French: {{t+|fr|tarte|f}}
-* German: {{t+|de|Torte|f}}
-* Greek: {{t+|el|πίτα|f|tr=píta}}
-* Hebrew: {{t+|he|פאי|tr=pái}} {{m}}, {{t|he|תמליא|tr=tamlí}} {{m}} (''the academy-sanctioned word, but not often used'')
-* Hindi: {{t|hi|पाई|tr=saī|xs=Hindi}}
-* Hungarian: {{t-|hu|pite}}
-* Icelandic: {{t+|is|baka|f}}
-* Ido: {{t+|io|torto|xs=Ido}}
-{{trans-mid}}
-* Indonesian: {{t+|id|kue pai|xs=Indonesian}}
-* Irish: {{t-|ga|pióg|f|xs=Irish}}, {{t|ga|pióg}}
-* Italian: {{t+|it|torta|f}}, {{t-|it|crostata|f}}
-* Japanese: {{t-|ja|パイ|tr=pai}}
-* Korean: {{t|ko|파이|tr=pai|sc=Hang}}
-* Latin: [[crustum]]
-* Macedonian: {{t-|mk|пита|f|tr=píta}},  {{t-|mk|комад|m|tr=kómad}}
-* Maltese: {{t-|mt|torta|f|xs=Maltese}}
-* Norwegian: {{t+|no|pai|m}}
-* Persian: {{t-|fa|پای|tr=pây|xs=Persian}}
-* Polish: {{t+|pl|ciasto|n}}
-* Portuguese: {{t+|pt|torta|f}}
-* Romanian: {{t+|ro|plăcintă|f}}
-* Russian: {{t+|ru|пирог|m|tr=piróg}}, {{qualifier|small, Russian style}} {{t+|ru|пирожок|m|tr=pirožók}}
-* Slovene: {{t+|sl|pita|f}}
-* Spanish: {{t+|es|pastel|m}}
-* Swedish: {{t+|sv|paj|c}}
-* Taos: [[pòstaléna]]
-* Thai: {{t-|th|พาย}}
-* Ukrainian: {{t|uk|пиріг|m|tr=pyríh|xs=Ukrainian}}
-* West Frisian: {{t-|fy|taart|c|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|other, nonpastry dishes that maintain the general concept of a shell with a filling}}
-* Dutch: {{t+|nl|taart|f}}, {{t|nl|pastei|f}}
-* Finnish: {{t+|fi|torttu}}, {{t-|fi|piirakka}}, {{t-|fi|piiras}}
-* French: {{t+|fr|tourte|f}}
-* Greek: {{t+|el|πίτα|f|tr=píta}}
-{{trans-mid}}
-* Irish: {{t-|ga|pióg|f|xs=Irish}}
-* Italian: {{t-|it|pasticcio|m}}
-* Swedish: {{t+|sv|paj|c}}
-{{trans-bottom}}
-
-{{trans-top|pizza}}
-* Japanese: {{t-|ja|ピザパイ|tr=pizapai}}
-{{trans-mid}}
-* Maltese: {{t|mt|ftajra|xs=Maltese}}
-{{trans-bottom}}
-
-{{trans-top|The whole of a wealth or resource}}
-* French: {{t+|fr|gâteau|m}} (lit., "cake")
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|printing: disorderly mess of spilt type}}
-* Italian: {{t-|it|pasticcio|m}}, {{t+|it|confusione|f}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|cricket: especially badly bowled ball}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|af}}: [[tert]]
-* {{ttbc|eo}}: {{t-|eo|torto|xs=Esperanto}}
-{{trans-mid}}
-* {{ttbc|pt}}: {{t+|pt|torta|f}}
-* {{ttbc|ro}}: [[plăcintă]] {{f}}
-* {{ttbc|es}}: {{t+|es|empanada|f}}
-{{trans-bottom}}
-
-=====See also=====
-* [[pastie]]
-* [[pasty]]
-
-====Verb====
+<ol><li> A type of pastry that consists of an outer crust and a filling.</li>
+<ul><li> <em>The family had steak and kidney <b>pie</b> for dinner and cherry <b>pie</b> for dessert.</em></li>
+</ul>
+<li> Extended to other, non-pastry dishes that maintain the general concept of a shell with a filling.</li>
+<ul><li> <em>Shepherd's <b>pie</b> is made of mince covered with mashed potato.</em></li>
+</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> {letterpress} A disorderly mess of spilt type.</li>
+<li> {cricket} An especially badly bowled ball.</li>
+<li> {pejorative} a gluttonous person.</li>
+</ol>
+
+<h5>Derived terms</h5>
+{{rel-top3|Terms derived from <em>pie</em>}}
+<ul><li> apple pie</li>
+<li> chicken pie</li>
+<li> cottage pie</li>
+<li> cutie pie</li>
+<li> cream pie</li>
+<li> easy as pie</li>
+<li> have one's fingers in many pies</li>
+<li> meat pie</li>
+<li> mince pie</li>
+</ul>
+{rel-mid3}
+<ul><li> mud pie</li>
+<li> pie chart</li>
+<li> pie-eater</li>
+<li> pie-eyed</li>
+<li> pie-faced</li>
+<li> pie floater</li>
+<li> piehole</li>
+<li> pie in the sky</li>
+</ul>
+{rel-mid3}
+<ul><li> pieing</li>
+<li> party pie</li>
+<li> piemaker</li>
+<li> piet</li>
+<li> pork pie</li>
+<li> pot pie</li>
+<li> shepherd's pie</li>
+<li> sweet as pie</li>
+<li> who ate all the pies</li>
+</ul>
+{rel-bottom}
+<h5>See also</h5>
+<ul><li> pastie</li>
+<li> pasty</li>
+</ul>
+
+<h4>Verb</h4>
 {{en-verb|pie|d}}
-
-# {{transitive}} To hit in the face with a pie, either for comic effect or as a means of protest (see also [[pieing]]).
-#: ''I'd like to see someone '''pie''' the chairman of the board.''
-# {{transitive}} To go around (a corner) in a guarded manner.
-
-=====Translations=====
-{{trans-top|to hit in the face with a pie}}
-* Finnish: {{t-|fi|kakuttaa}}
-* French: {{t+|fr|entarter}}
-{{trans-mid}}
-* Swedish: {{t+|sv|tårta}}
-{{trans-bottom}}
-
-{{trans-top|to go around (a corner) in a guarded manner}}
-{{trans-mid}}
-{{trans-bottom}}
-
-===Etymology 2===
-From {{etyl|fro|en}} {{term|pie|lang=fro}}, from {{etyl|la|en}} {{term|pica||lang=la}}, feminine of {{term|picus||lang=la|woodpecker}}
-
-====Noun====
-{{en-noun}}
-
-# {{obsolete}} [[magpie]]
-
-===Etymology 3===
-From {{etyl|hi}} {{term|पाई|tr=pāī||quarter}}, from {{etyl|sa}} {{term|पादिका||tr=pādikā|sc=Deva}}.
-
-====Noun====
+<ol><li> {transitive} To hit in the face with a pie, either for comic effect or as a means of protest (see also pieing).</li>
+<ul><li> <em>I'd like to see someone <b>pie</b> the chairman of the board.</em></li>
+</ul>
+<li> {transitive} To go around (a corner) in a guarded manner.</li>
+</ol>
+
+<h3>Etymology 2</h3>
+From {{etyl|fro|en}} {{term|pie|lang=fro}}, from {{etyl|la|en}} {{term|pica|lang=la}}, feminine of {{term|picus|woodpecker|lang=la}}
+<h4>Noun</h4>
+{en-noun}
+<ol><li> {obsolete} magpie</li>
+</ol>
+
+<h3>Etymology 3</h3>
+From {{etyl|hi}} {{term|पाई|quarter|tr=pāī}}, from {{etyl|sa}} {{term|पादिका|tr=pādikā|sc=Deva}}.
+<h4>Noun</h4>
 {{en-noun|pl=pie|pl2=pies}}
-
-# {{historical}} The smallest unit of currency in South Asia, equivalent to 1/192 of a [[Rupee]] or 1/12 of an [[anna]].
-#* '''1888''', Rudyard Kipling, ‘The Strange Ride of Morrowbie Jukes’, ''The Phantom ’Rickshaw and Other Tales'', Folio Society 2005, p. 117:
-#*: I gave him all the money in my possession, Rs.9.8.5. – nine rupees, eight annas, and five '''pie''' – for I always keep small change as ''bakshish'' when I am in camp.
-
-===Anagrams===
-* [[EIP#English|EIP]], [[ipe#English|ipe]], [[ipé#English|ipé]], [[PEI#English|PEI]]
-
-[[Category:English terms with unknown etymologies]]
-[[Category:en:Currency]]
-[[Category:en:Foods]]
-[[Category:en:Pies]]
-
-----
-
-
+<ol><li> {historical} The smallest unit of currency in South Asia, equivalent to 1/192 of a Rupee or 1/12 of an anna.</li>
+<ul><li> <b>1888</b>, Rudyard Kipling, ‘The Strange Ride of Morrowbie Jukes’, <em>The Phantom ’Rickshaw and Other Tales</em>, Folio Society 2005, p. 117:</li>
+<ul><li> I gave him all the money in my possession, Rs.9.8.5. – nine rupees, eight annas, and five <b>pie</b> – for I always keep small change as <em>bakshish</em> when I am in camp.</li>
+</ul>
+</ul>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> EIP, ipe, ipé, PEI</li>
+</ul>
+Category:English terms with unknown etymologiesCategory:en:CurrencyCategory:en:FoodsCategory:en:Pies----
 ***pies***
-pies: 
-
-===Pronunciation===
-* {{rhymes|aɪz}}
-
-===Noun===
-'''pies'''
-
-# {{plural of|pie}}
-
-===Verb===
-'''pies'''
-
-# {{third-person singular of|pie}}
-
-===Anagrams===
-* [[ipes#English|ipes]]
-* [[sipe#English|sipe]]
-
+pies:
+
+<h3>Pronunciation</h3>
+<ul><li> {{rhymes|aɪz}}</li>
+</ul>
+
+<h3>Noun</h3>
+<b>pies</b>
+<ol><li> {{plural of|pie}}</li>
+</ol>
+
+<h3>Verb</h3>
+<b>pies</b>
+<ol><li> {{third-person singular of|pie}}</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> ipes</li>
+<li> sipe</li>
+</ul>
 ----
-
-
 ***pneumonoultramicroscopicsilicovolcanoconiosis***
-pneumonoultramicroscopicsilicovolcanoconiosis: 
+pneumonoultramicroscopicsilicovolcanoconiosis:
 {{wikipedia|pneumonoultramicroscopicsilicovolcanoconiosis|pneumono...}}
-
-===Alternative forms===
-* [[pneumonoultramicroscopicsilicovolcano-coniosis]]
-* [[pneumonoultramicroscopicsilicovolcanokoniosis]]
-* [[P45]]
-
-===Etymology===
-Coined by Everett K Smith, President of the [[w:National Puzzlers' League|National Puzzlers’ League]], at their convention in 1935, from {{etyl|grc}} {{term|πνεύμων|tr=pneumōn||lung|lang=grc|sc=polytonic}} + {{etyl|la}} {{term|ultra||beyond|lang=la}} + {{etyl|en|-}} {{term|microscopic|lang=en}} + {{term|silico-|lang=en}} + {{term|volcano|lang=en}} + {{etyl|grc}} {{term|κόνις|tr=konis||dust|lang=grc|sc=polytonic}} + {{etyl|en|-}} {{term|-osis|lang=en}} as an extension of the medical term [[pneumonoconiosis]].
-
-===Pronunciation===
-* {{audio|Es-us-ncalif-pneumonoultramicroscopicsilicovolcanoconisis.ogg|Audio (US, Northern California)}}
+<h3>Alternative forms</h3>
+<ul><li> pneumonoultramicroscopicsilicovolcano-coniosis</li>
+<li> pneumonoultramicroscopicsilicovolcanokoniosis</li>
+<li> P45</li>
+</ul>
+
+<h3>Etymology</h3>
+Coined by Everett K Smith, President of the National Puzzlers’ League, at their convention in 1935, from {{etyl|grc}} {{term|πνεύμων|lung|tr=pneumōn|lang=grc|sc=polytonic}} + {{etyl|la}} {{term|ultra|beyond|lang=la}} + {{etyl|en|-}} {{term|microscopic|lang=en}} + {{term|silico-|lang=en}} + {{term|volcano|lang=en}} + {{etyl|grc}} {{term|κόνις|dust|tr=konis|lang=grc|sc=polytonic}} + {{etyl|en|-}} {{term|-osis|lang=en}} as an extension of the medical term pneumonoconiosis.
+<h3>Pronunciation</h3>
+<ul><li> {{audio|Es-us-ncalif-pneumonoultramicroscopicsilicovolcanoconisis.ogg|Audio (US, Northern California)}}</li>
+</ul>
 {{rel-top|Pronunciatory transcriptions and hyphenation}}
-* {{a|RP}}:
-*: {{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 '''Oxford English Dictionary''' [Second Edition]</ref>;
-*: {{X-SAMPA|/nju:%mQn@UVltr/@maIkr/@U"skQpIk%sIlIk@UvQlkeIn@Uk@Uni"@UsIs/}}
-* {{a|US}}:
-*: {{enPR|no͞o-män'ō-ŭl-trə-mī-krə-skäpʹĭk-sĭl'ē-kō-väl-kā-nō-kō-nē-ōʹsĭs}};
-*: {{IPA|/nuˌmɑːnoʊʌltrəmaɪkroʊˈskɑːpɪkˌsɪlɪkoʊvɑːlkeɪnoʊkoʊniˈoʊsɪs/}};
-*: {{X-SAMPA|/nu%mA:noUVltr@maIkroU"skA:pIk%sIlIkoUvA:lkeInoUkoUni"oUsIs/}}
-* {{audio|en-us-pneumonoultramicroscopicsilicovolcanoconiosis.ogg|Audio (US)}}
-; Hyphenation
-: pneu'''·'''mon'''·'''o'''·'''ul'''·'''tra'''·'''mi'''·'''cro'''·'''scop'''·'''ic'''·'''sil'''·'''i'''·'''co'''·'''vol'''·'''ca'''·'''no'''·'''co'''·'''ni'''·'''o'''·'''sis
-{{rel-bottom}}
-
-===Noun===
+<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> {{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>
+<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>
+</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>
+</ul>
+{rel-bottom}
+<h3>Noun</h3>
 {{en-noun|pneumonoultramicroscopicsilicovolcanoconioses}}
-
-# {{context|nonce}} A [[factitious]] [[disease]] of the lungs, allegedly caused by inhaling [[microscopic]] [[silicate]] [[particle|particles]] originating from eruption of a volcano.
-#* {{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]], '''pneumonoultramicroscopicsilicovolcanoconiosis''', coal workers' [[pneumoconiosis]], or [[black lung]]—they are all dust diseases with the same symptoms.
-}}
-#* {{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 '''pneumonoultramicroscopicsilicovolcanoconiosis'''.
-}}
-#* {{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 '''pneumonoultramicroscopicsilicovolcanoconiosis''', or a bad cough.
-}}
-#* {{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 ''House M.D.'' and not have my mind wonder{{...}} Even I can fear of having '''''Pneumonoultramicroscopicsilicovolcanoconiosis''''' after watching it.
-}}
-
-====Quotations====
-{{seemoreCites}}
-
-====Coordinate terms====
-* [[black lung]]
-* [[potter's rot]]
-* [[miner cough]]
-
-====Hypernyms====
-* [[pneumoconiosis]]
-* [[silicosis]]
-
-====Translations====
-{{trans-top|disease of the lungs}}
-* Chinese:
-*: Mandarin: {{t|zh|礦工氣管癌|sc=Hani}}
-* German: {{t-|de|Quarzstaublunge|f}}, {{t-|de|Quarzstaublungenkrankheit|f}}, {{t-|de|Silikose|f}}
-{{trans-mid}}
-* Korean: {{t|ko|진폐증|sc=Kore}}
-* Portuguese: {{t+|pt|pneumoultramicroscopicossilicovulcanoconiose|f}}
-* Spanish: {{t|es|pneumoultramicroscopicosilicovolcanoconiosis|f}}
-{{trans-bottom}}
-
-====Usage notes====
+<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 = 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>
+</ul>
+</ol>
+
+<h4>Quotations</h4>
+{seemoreCites}
+<h4>Coordinate terms</h4>
+<ul><li> black lung</li>
+<li> potter's rot</li>
+<li> miner cough</li>
+</ul>
+
+<h4>Hypernyms</h4>
+<ul><li> pneumoconiosis</li>
+<li> silicosis</li>
+</ul>
+
+<h4>Usage notes</h4>
 {{rel-top|Usage notes}}
-* The Oxford English Dictionary lists ''pneumonoultramicroscopicsilicovolcanoconiosis'' 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"/>
-
-* 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]].
-
-; Other contenders for the title of “the longest word in the English language”
-* [[hippopotomonstrosesquipedaliophobia]] — 35 letters
-* [[supercalifragilisticexpialidocious]] — 34 letters
-* [[floccinaucinihilipilificatious]] — 30 letters
-* [[floccinaucinihilipilification]] — 29 letters
-* [[antidisestablishmentarianism]] — 28 letters
-{{rel-bottom}}
-
-====References====
-<references/>
-
-[[Category:Long English words]]
-[[Category:English words suffixed with -osis]]
-
-[[de:pneumonoultramicroscopicsilicovolcanoconiosis]]
-[[fr:pneumonoultramicroscopicsilicovolcanoconiosis]]
-[[ko:pneumonoultramicroscopicsilicovolcanoconiosis]]
-[[tl:pneumonoultramicroscopicsilicovolcanoconiosis]]
-[[zh:pneumonoultramicroscopicsilicovolcanoconiosis]]
+<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>
+<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>
+<ul><li> Other contenders for the title of “the longest word in the English language”</li>
+<li> hippopotomonstrosesquipedaliophobia — 35 letters</li>
+<li> supercalifragilisticexpialidocious — 34 letters</li>
+<li> floccinaucinihilipilificatious — 30 letters</li>
+<li> floccinaucinihilipilification — 29 letters</li>
+<li> antidisestablishmentarianism — 28 letters</li>
+</ul>
+{rel-bottom}
+<h4>References</h4>
+<references/>Category:Long English wordsCategory:English words suffixed with -osisde:pneumonoultramicroscopicsilicovolcanoconiosisfr:pneumonoultramicroscopicsilicovolcanoconiosisko:pneumonoultramicroscopicsilicovolcanoconiosistl:pneumonoultramicroscopicsilicovolcanoconiosiszh:pneumonoultramicroscopicsilicovolcanoconiosis
 ***polysemic***
-polysemic: 
-
-===Adjective===
-{{en-adj}}
-
-# {{linguistics}} Having a number of [[meaning]]s, [[interpretation]]s or understandings.
-
-====Translations====
-{{trans-top|having a number of meanings, interpretations or understandings}}
-* Bulgarian: [[многозначен]]
-* Dutch: [[polyseem]]
-* Finnish: [[monimerkityksinen]]
-{{trans-mid}}
-* French: {{t+|fr|polysémique}}
-* German: {{t+|de|mehrdeutig}}
-* Spanish: {{t+|es|polisémico}}
-{{trans-bottom}}
-
-====Synonyms====
-* [[polysemantic]]
-* [[polysemous]]
-
-====Antonyms====
-* [[monosemous]]
-
-====Related terms====
-* [[polyseme]]
-* [[polysemy]]
-
-[[et:polysemic]]
-[[ru:polysemic]]
+polysemic:
+
+<h3>Adjective</h3>
+{en-adj}
+<ol><li> {linguistics} Having a number of meanings, interpretations or understandings.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> polysemantic</li>
+<li> polysemous</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> monosemous</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> polyseme</li>
+<li> polysemy</li>
+</ul>
+et:polysemicru:polysemic
 ***pond***
-pond: 
-{{wikipedia}}
-
-===Pronunciation===
-* {{a|UK}} {{enPR|pŏnd}}, {{IPA|/pɒnd/}}, {{X-SAMPA|/pQnd/}}
-* {{rhymes|ɒnd}}
-* {{a|US}} {{enPR|pänd}}, {{IPA|/pɑnd/}}, {{X-SAMPA|/pAnd/}}
-* {{audio|en-us-pond.ogg|Audio (US)}}
-
-===Etymology===
+pond:
+{wikipedia}
+<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> {{audio|en-us-pond.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Etymology</h3>
 Variant of {{term|pound|lang=en}}.
-
-===Noun===
-[[Image:Black pond near Esher.jpeg|thumb|A pond]]
-{{en-noun}}
-
-# An inland body of standing [[water]], either natural or man-made, that is smaller than a [[lake]].
-# {{colloquial}} The [[Atlantic Ocean]]. Especially in {{term|across the pond|lang=en}}.
-#:''I wonder how they do this on the other side of the '''pond'''.''
-#:''I haven't been back home across the '''pond''' in twenty years.''
-
-====Synonyms====
-* {{l|en|polynya}}
-* {{l|en|tarn}}
-
-====Derived terms====
-* {{l|en|across the pond}}
-* {{l|en|ducks on the pond}}
-* {{l|en|Leftpondia}}
-* {{l|en|pondian}}
-* {{l|en|Rightpondia}}
-
-====Translations====
-{{trans-top|small lake}}
-* Albanian: {{t|sq|pellg}}
-* Arabic: {{Arab|[[بركة]]}} {{IPAchar|(bírka)}} {{f}}, {{t-|ar|غدير|m|alt=غَدير|tr=ghadiir}}
-* Belarusian: {{t|be|стаў|sc=Cyrl}}
-* Chinese: [[池塘]] (chítáng), [[池]] (chí)
-* Croatian: {{t-|hr|jezerce|n}}, {{qualifier|fishpond}} {{t-|hr|ribnjak|m}}
-* Czech: {{t+|cs|rybník|m}}
-* Dutch: {{t+|nl|vijver|m}}
-* Esperanto: {{t-|eo|lageto|xs=Esperanto}}
-* Estonian: {{t|et|tiik}}
-* Finnish: {{t+|fi|lampi}}, {{t|fi|allas}}
-* French: {{t+|fr|étang|m}}, {{t+|fr|mare|f}}
-* Georgian: {{t-|ka|გუბე|tr=gube|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Teich|m}}
-* Hebrew: {{t|he|אגם|m|tr=agam}}, {{t|he|בריכה|f|tr=brekha}}
-* Hungarian: {{t|hu|tavacska}}
-* Icelandic: {{t|is|tjörn|f}}
-* Indonesian: {{t+|id|kolam|xs=Indonesian}}
-* Interlingua: {{t|ia|stagno}}
-* Irish: {{t-|ga|linn|f|xs=Irish}}
-* Italian: {{t+|it|stagno|m}}
-* Japanese: [[池]] ([[いけ]], ike)
-* Jèrriais: {{tø|roa-jer|mathe|f}}
-* Korean: [[못]] (mot)
-{{trans-mid}}
-* Kurdish:
-*: Sorani: {{ku-Arab|[[گۆم]]}}
-* Lao: [[ບຶງ]] (byng)
-* Latvian: {{t-|lv|dīķis|m|xs=Latvian}}
-* Macedonian: {{t|mk|езерце|n|tr=ézerce}}, {{t|mk|рибник|m|tr=ríbnik}} {{qualifier|fish pond}}
-* Malay: {{t|ms|kolam}}
-* Norwegian:
-*: Bokmål: {{t|nb|tjern|m|f|n}}, {{t|nb|dam|m}}
-*: Nynorsk: {{t|nn|tjern|f}}, {{t|nn|tjørn|f}}, {{t|nn|dam|m}}
-* Polish: {{t+|pl|staw|m}}
-* Portuguese: {{t+|pt|lagoa|f}}, {{t+|pt|tanque|m}}
-* Russian: {{t+|ru|пруд|m|tr=prud}}
-* Scottish Gaelic: {{t-|gd|linne|f|xs=Scottish Gaelic}}
-* Serbian:
-*: Cyrillic: [[језерце]], [[рибњак]] {{qualifier|fish pond}}, [[пруд]], [[жабњак]] {{m}} {{qualifier|frog pond}}
-*: Latin: [[jezerce]], [[ribnjak]] {{qualifier|fish pond}}, [[prud]], [[žabnjak]] {{m}} {{qualifier|frog pond}}
-* Slovene: {{t|sl|ribnik|m}}
-* Spanish: [[charca]] {{m}}, [[estanque]] {{m}}, [[laguna]] {{f}}
-* Swedish: {{t+|sv|damm|c}}
-* Tok Pisin: {{t|tpi|wara}}, {{t|tpi|raunwara}}
-* Turkish: {{t+|tr|göl}}
-* Ukrainian: {{t|uk|став|tr=stav|sc=Cyrl}}
-* Volapük: [[lulak]]
-{{trans-bottom}}
-
-{{trans-top|The Atlantic Ocean}}
-* Czech: {{t-|cs|Atlantský oceán|m}}
-* Dutch: De [[Atlantische Oceaan]]
-* Finnish: {{t-|fi|rapakko}}
-* French: {{t+|fr|océan Atlantique|m}}
-* German: Der [[groß|Große]] [[Teich]]
-{{trans-mid}}
-* Macedonian: {{t-|mk|бара|f|tr=bára}}
-* Norwegian: {{t-|no|dammen}}
-* Slovene: {{t|sl|luža|f}}
-* Spanish: {{qualifier|colloquial}} {{t|es|charco|m}}
-{{trans-bottom}}
-
-===Verb===
-{{en-verb}}
-
-# To block the flow of water so that it can escape only through evaporation or seepage; to [[dam]].
-#* '''2004''', Calvin W. Rose, ''An Introduction to the Environmental Physics of Soil, Water and Watersheds'' [http://books.google.com/books?id=TxCQ-DaSIwUC], ISBN 0521536790, page 201:
-#*: The rate of fall of the surface of water '''ponded''' over the soil within the ring gives a measure of the infiltration rate for the particular enclosed area.
-
-===Anagrams===
-* [[DNOP#English|DNOP]]
-
+<h3>Noun</h3>
+A pond{en-noun}
+<ol><li> An inland body of standing water, either natural or man-made, that is smaller than a lake.</li>
+<li> {colloquial} The Atlantic Ocean. Especially in {{term|across the pond|lang=en}}.</li>
+<ul><li><em>I wonder how they do this on the other side of the <b>pond</b>.</em></li>
+<li><em>I haven't been back home across the <b>pond</b> in twenty years.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{l|en|polynya}}</li>
+<li> {{l|en|tarn}}</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> {{l|en|across the pond}}</li>
+<li> {{l|en|ducks on the pond}}</li>
+<li> {{l|en|Leftpondia}}</li>
+<li> {{l|en|pondian}}</li>
+<li> {{l|en|Rightpondia}}</li>
+</ul>
+
+<h3>Verb</h3>
+{en-verb}
+<ol><li> To block the flow of water so that it can escape only through evaporation or seepage; to dam.</li>
+<ul><li> <b>2004</b>, Calvin W. Rose, <em>An Introduction to the Environmental Physics of Soil, Water and Watersheds</em> [http://books.google.com/books?id=TxCQ-DaSIwUC], ISBN 0521536790, page 201:</li>
+<ul><li> The rate of fall of the surface of water <b>ponded</b> over the soil within the ring gives a measure of the infiltration rate for the particular enclosed area.</li>
+</ul>
+</ul>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> DNOP</li>
+</ul>
 ----
-
-
 ===Pope===
-Pope Julius: 
-
-===Alternative forms===
-* [[Pope July]]
-* [[Pope Julio]]
-
-===Etymology===
-Unknown.  Presumably named after [[w:Pope Julius II|Pope Julius II]], the Warrior Pope.
-
-===Proper noun===
-{{en-proper noun}}
-
-# {{obsolete}} A sixteenth-century [[gambling]] [[card game]] about which little is known.
-#* {{quote-book|year=1525|author=[[w:John Skelton|John Skelton]]|url=http://books.google.com/books?id=H1g1AAAAMAAJ|title=Speake, Parrot|title=Speke, parrot|passage=Of '''Pope Julius''' cardys he ys chefe cardynall.}}
-#* {{quote-book|year=1532|date=November 30|title=Privy Purse Expences of King Henry VIII'', 30 Novembre 1532|passage=Item the laste day delived unto the kings grace whiche his grace lost at '''pope July''' game wt my lady marquess and m Weston xvj cor}}
-#* {{quote-book|year={{circa2|1596}}|author=Sir John Harington|title=A Treatise on Playe|quoted_in=Nugae antiquae|year_published=1804|passage='''Pope Julio''' (if I fail not in the name, and sure I am that there is a game of the cards after his name) was a great and wary player, a great vertue in a man of his profession}}
-
-[[Category:en:Card games]]
+Pope Julius:
+
+<h3>Alternative forms</h3>
+<ul><li> Pope July</li>
+<li> Pope Julio</li>
+</ul>
+
+<h3>Etymology</h3>
+Unknown.  Presumably named after Pope Julius II, the Warrior Pope.
+<h3>Proper noun</h3>
+{en-proper noun}
+<ol><li> {obsolete} A sixteenth-century gambling card game about which little is known.</li>
+<ul><li> {{quote-book|year=1525|author=John Skelton|url=http://books.google.com/books?id=H1g1AAAAMAAJ|title=Speke, parrot|passage=Of <b>Pope Julius</b> cardys he ys chefe cardynall.}}</li>
+<li> {{quote-book|year=1532|date=November 30|title=Privy Purse Expences of King Henry VIII<em>, 30 Novembre 1532|passage=Item the laste day delived unto the kings grace whiche his grace lost at <b>pope July</b> game wt my lady marquess and m Weston xvj cor}}</li>
+<li> {{quote-book|year={{circa2|1596}}|author=Sir John Harington|title=A Treatise on Playe|quoted_in=Nugae antiquae|year_published=1804|passage=<b>Pope Julio</b> (if I fail not in the name, and sure I am that there is a game of the cards after his name) was a great and wary player, a great vertue in a man of his profession}}</li>
+</ul>
+</ol>
+Category:en:Card games
 ***portmanteau***
-portmanteau: 
-{{was wotd|2007|March|8}}
-{{wikipedia}}
-
-===Alternative forms===
-* {{sense|travelling case}} [[portmantua]]
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/pɔːtˈmæn.təʊ/}}, {{X-SAMPA|/pO:t"m{nt@U/}}
-* {{a|US}} {{enPR|pôrt'măntō}}, {{IPA|/pɔːrtˈmæntoʊ/}}, {{X-SAMPA|/pO:rt"m{ntou/}}
-* {{audio|en-us-portmanteau-1.ogg|Audio 1 (US)}}
-* {{audio|en-us-portmanteau-2.ogg|Audio 2 (US)}}
-
-===Etymology 1===
-From {{etyl|fr}} {{term|portemanteau|lang=fr}}, literally {{term|porte||carry}} + {{term|manteau|lang=fr||coat}}
-
-====Noun====
+portmanteau:
+{{was wotd|2007|March|8}}{wikipedia}
+<h3>Alternative forms</h3>
+<ul><li> {{sense|travelling case}} portmantua</li>
+</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>
+<li> {{audio|en-us-portmanteau-1.ogg|Audio 1 (US)}}</li>
+<li> {{audio|en-us-portmanteau-2.ogg|Audio 2 (US)}}</li>
+</ul>
+
+<h3>Etymology 1</h3>
+From {{etyl|fr}} {{term|portemanteau|lang=fr}}, literally {{term|porte|carry}} + {{term|manteau|coat|lang=fr}}
+<h4>Noun</h4>
 {{en-noun|pl2=portmanteaux}}
-
-# A large [[travel]]ling [[case]] usually made of [[leather]], and opening into two equal sections.
-#* '''1667''', Charles Croke, ''Fortune's Uncertainty'':
-#*: Rodolphus therefore finding such an earnest Invitation, embrac'd it with thanks, and with his Servant and '''Portmanteau''', went to Don Juan's; where they first found good Stabling for their Horses, and afterwards as good Provision for themselves.
-# {{Australia|dated}} A school bag; often shortened to ''port'' or ''school port''
-
-=====Translations=====
-{{trans-top|case}}
-* Albanian: {{t+|sq|baule|f|xs=Albanian}}
-* Arabic: {{t-|ar|حقيبة سفر}}
-* Breton: {{t-|br|mal|f|xs=Breton}}, {{t|br|malizenn|f|xs=Breton}}
-* Bulgarian: {{t+|bg|голям}} {{t|bg|кожен}} {{t|bg|куфар|m}}
-* Czech: {{t-|cs|kontaminace}}
-* Dutch: {{t+|nl|koffer|f}}, {{t-|nl|valies|f}}
-* Finnish: {{t+|fi|matkalaukku}}
-* French: {{t+|fr|portemanteau|m}}, {{t+|fr|valise|f}}, {{t+|fr|malle|f}}
-* German: {{t+|de|Koffer|m}}
-* Interlingua: [[valise#Interlingua|valise]]
-{{trans-mid}}
-* Norwegian:
-*: Bokmål: {{t-|no|koffert|m}}
-*: Nynorsk: {{t-|nn|koffert|m|xs=Norwegian Nynorsk}}
-* Persian: {{t+|fa|چمدان|tr=chamedan|xs=Persian}}
-* Polish: {{t-|pl|waliza|f}}
-* Portuguese: {{t-|pt|maleta|f}}, {{t+|pt|valise|f}}
-* Russian: {{t+|ru|чемодан|m|tr=čemodan}}, {{t+|ru|баул|m|tr=baúl}}, дорожная {{t+|ru|сумка|f}}
-* Serbian: {{t|sr|кожни кофер|m|tr=kožni kofer|sc=Cyrl}}
-* Spanish: {{t+|es|maleta|f}}, {{t-|es|valija|f}}
-* Vietnamese: {{t+|vi|va li|xs=Vietnamese}}
-{{trans-bottom}}
-
-===Etymology 2===
-Coined by [[w:Lewis Carroll|Lewis Carroll]] in [[s:Through The Looking Glass (And What Alice Found There)|Through The Looking Glass]] to describe the words he coined in [[w:Jabberwocky|Jabberwocky]].
-
-====Noun====
+<ol><li> A large travelling case usually made of leather, and opening into two equal sections.</li>
+<ul><li> <b>1667</b>, Charles Croke, <em>Fortune's Uncertainty</em>:</li>
+<ul><li> Rodolphus therefore finding such an earnest Invitation, embrac'd it with thanks, and with his Servant and <b>Portmanteau</b>, went to Don Juan's; where they first found good Stabling for their Horses, and afterwards as good Provision for themselves.</li>
+</ul>
+</ul>
+<li> {{Australia|dated}} A school bag; often shortened to <em>port</em> or <em>school port</em></li>
+</ol>
+
+<h3>Etymology 2</h3>
+Coined by Lewis Carroll in Through The Looking Glass to describe the words he coined in Jabberwocky.
+<h4>Noun</h4>
 {{en-noun|pl2=portmanteaux}}
-
-# {{linguistics}} A [[portmanteau word]].
-#* '''1872''', Lewis Carroll, ''[[s:Through The Looking Glass (And What Alice Found There)|Through The Looking Glass]]'' ([[s:Through the Looking Glass (And What Alice Found There)/Chapter VI|Chapter VI. Humpty Dumpty]]), the first usage in this sense:
-#*: Well, “[[slithy]]” means “[[lithe]] and [[slimy]].” “Lithe” is the same as “active”. You see it’s like a '''[[portmanteau]]'''–there are two meanings packed up into one word.
-
-=====Synonyms=====
-* {{sense|portmanteau word}} [[blend]], [[frankenword]], [[portmanteau word]]
-
-=====Translations=====
-{{trans-see|portmanteau word}}
-
-====Adjective====
+<ol><li> {linguistics} A portmanteau word.</li>
+<ul><li> <b>1872</b>, Lewis Carroll, <em>Through The Looking Glass</em> (Chapter VI. Humpty Dumpty), the first usage in this sense:</li>
+<ul><li> Well, “slithy” means “lithe and slimy.” “Lithe” is the same as “active”. You see it’s like a <b>portmanteau</b>–there are two meanings packed up into one word.</li>
+</ul>
+</ul>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|portmanteau word}} blend, frankenword, portmanteau word</li>
+</ul>
+
+<h4>Adjective</h4>
 {{en-adj|-}}
-
-# {{context|used only before a noun|of a word, story, etc.}} Made by combining two words, stories, etc., in the manner of a linguistic portmanteau.
-#* '''2002''', Nicholas Lezard, ''Spooky tales by the master and friends'' in ''The Guardian'' (London) (December 14, 2002) page 30:
-#*: The overall narrator of this '''portmanteau''' story - for Dickens co-wrote it with five collaborators on his weekly periodical, ''All the Year Round'' - expresses deep, rational scepticism about the whole business of haunting.
-#* '''2002''', Nick Bradshaw, ''One day in September'' in ''Time Out'' (December 11, 2002) Page 71:
-#*: 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 '''portmanteau''' film, entitled '11'09"01' and composed of short films each running 11 minutes, nine seconds and one frame.
-
-====Derived terms====
-* [[portmanteau film]]
-* [[portmanteau word]]
-
-===See also===
-* [[:Category:English blends|List of portmanteau words defined in Wiktionary]]
-* [[w:Portmanteau|Wikipedia article on portmanteaus (cases and words)]]
-
-[[Category:English autological terms]]
-
-[[cs:portmanteau]]
-[[fr:portmanteau]]
-[[ko:portmanteau]]
-[[io:portmanteau]]
-[[kn:portmanteau]]
-[[my:portmanteau]]
-[[no:portmanteau]]
-[[pl:portmanteau]]
-[[ru:portmanteau]]
-[[simple:portmanteau]]
-[[fi:portmanteau]]
-[[sv:portmanteau]]
-[[tl:portmanteau]]
-[[te:portmanteau]]
-[[vi:portmanteau]]
-[[zh:portmanteau]]
+<ol><li> {{context|used only before a noun|of a word, story, etc.}} Made by combining two words, stories, etc., in the manner of a linguistic portmanteau.</li>
+<ul><li> <b>2002</b>, Nicholas Lezard, <em>Spooky tales by the master and friends</em> in <em>The Guardian</em> (London) (December 14, 2002) page 30:</li>
+<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>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> portmanteau film</li>
+<li> portmanteau word</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> List of portmanteau words defined in Wiktionary</li>
+<li> Wikipedia article on portmanteaus (cases and words)</li>
+</ul>
+Category:English autological termscs:portmanteaufr:portmanteauko:portmanteauio:portmanteaukn:portmanteaumy:portmanteauno:portmanteaupl:portmanteauru:portmanteausimple:portmanteaufi:portmanteausv:portmanteautl:portmanteaute:portmanteauvi:portmanteauzh:portmanteau
 ***pound***
-pound: 
-
-===Pronunciation===
-* {{IPA|/paʊnd/}}
-* {{audio|en-us-pound.ogg|Audio (US)}}
-* {{rhymes|aʊnd}}
-
-===Etymology 1===
-From {{etyl|enm}}, from {{etyl|ang}} {{term|pund||a pound, weight|lang=ang}}, from {{proto|Germanic|pundan|pound, weight|lang=en}}, an early borrowing from {{etyl|la}} {{term|pondo|pondō|lang=la|by weight}}, ablative form of {{term|pondus|lang=la||weight}}, from {{proto|Indo-European|pend-||spend-|to pull, stretch|lang=en}}. Cognate with Dutch {{term|pond|lang=nl}}, German {{term|Pfund|lang=de}}, Swedish {{term|pund|lang=sv}}.
-
-====Noun====
-{{en-noun}}
-
-# Short for [[pound-force]], a unit of force/weight.
-# A [[unit]] of [[mass]] equal to 16 [[avoirdupois]] ounces (= 453.592 37 g)
-# A unit of [[mass]] equal to 12 [[troy weight|troy ounce]]s (≈ 373.242 g).
-# {{US}} The symbol {{unsupported|#}} ([[octothorpe]], [[hash]]) <!--isn't this "pound sign" rather than "pound"?-->
-# The unit of currency of used in the United Kingdom and its [[dependency|dependencies]].
-# Any of various units of [[currency]] used in Cyprus, Egypt, Lebanon, and formerly in the Republic of Ireland and Israel.
-
-=====Usage notes=====
-* 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".
-* 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".
-
-=====Synonyms=====
-* {{sense|16 avoirdupois ounces}} [[lb]]
-* {{sense|12 troy ounces}} [[lb t]]
-* {{sense|UK unit of currency}} <big>[[£]]</big>, [[pound sterling]]
-* {{sense|Other units of currency}} [[punt]] {{qualifier|the former Irish currency}}
-* {{sense|# symbol}} [[hash]] {{qualifier|UK}}, [[sharp]]
-
-=====Derived terms=====
-* [[pack on the pounds]]
-* [[take care of the pennies and the pounds will take care of themselves]]
-
-=====See also=====
-* {{pedia|Pound (mass)|Pound (the unit of mass)}}
-* {{pedia|Pound_Sterling|Pound (the UK unit of currency)}}
-* {{sense|UK unit of currency}} [[sterling]]
-
-=====Translations=====
-{{trans-see|pound-force}}
-{{trans-top|unit of mass (16 ounces avoirdupois)}}
-* Arabic: {{Arab|[[باوند]]}} {{IPAchar|(baund)}} {{m}}, {{t|ar|منا|f|tr=mannah}}
-* Armenian: {{t|hy|ֆունտ|tr=funt|sc=Armn}}
-* Basque: [[libra]]
-* Bosnian: {{t-|bs|funta|f}}
-* Bulgarian: {{t-|bg|фунт|m}}
-* Catalan: [[lliura]] {{f}}
-* Chinese: [[磅]] (bàng)
-* Czech: {{t-|cs|libra|f}}
-* Danish: {{t-|da|pund|n}}
-* Dutch: {{t+|nl|pond|n}}
-* Esperanto: {{t-|eo|funto|xs=Esperanto}}
-* Faroese: {{t|fo|pund|n}}
-* Finnish: {{t+|fi|naula}}, {{t-|fi|pauna}}
-* French: {{t+|fr|livre|f}}
-* German: {{t+|de|Pfund|n}}
-* Greek: {{t+|el|λίβρα|f}}, {{t|el|μνα|f|tr=mnah}}
-* Hungarian: {{t+|hu|font}}
-* Irish: {{t-|ga|punt|m|xs=Irish}}
-* Italian: {{t+|it|libbra|f}}
-* Japanese: {{t+|ja|ポンド|tr=pondo}}
-* Jèrriais: {{tø|roa-jer|livre|f}}
-{{trans-mid}}
-* Korean: [[파운드]] (paundeu)
-* Latin: {{t-|la|libra|f}}
-* Lithuanian: {{t+|lt|svaras|m}}
-* Luxembourgish: [[Pond]]
-* Macedonian: {{t|mk|либра|f|tr=líbra}}, {{t-|mk|фунта|f|tr=fúnta}}
-* Maltese: {{t-|mt|libra|f|xs=Maltese}}
-* Manx: {{t|gv|punt|m}}
-* Norwegian: {{t+|no|pund|n}}
-* Polish: {{t+|pl|funt|m}}
-* Portuguese: {{t+|pt|libra|f}}
-* Romanian: {{t|ro|livră|f}}, {{t-|ro|pfund|m}}
-* Russian: {{t+|ru|фунт|m|tr=funt}}
-* Scottish Gaelic: {{t-|gd|punnd|m|xs=Scottish Gaelic}}
-* Serbo-Croatian: {{t|sh|фунта|f|tr=funta|sc=Cyrl}}
-* Slovak: {{t-|sk|libra|f}}
-* Slovene: {{t+|sl|funt|m}}
-* Spanish: {{t+|es|libra|f}}
-* Swahili: [[ratili]] ''(noun 9/10)''
-* Swedish: {{t+|sv|pund|n}}
-* Turkish: {{t+|tr|libre}}
-* Yiddish: [[פונט]] (punt) {{n}}
-{{trans-bottom}}
-
-{{trans-see|US: symbol #|pound sign}}
-
-{{trans-top|unit of currency}}
-* Arabic: {{t|ar|جنيه|m|tr=junayh|sc=Arab}}
-* Armenian: {{t|hy|ֆունտ|tr=funt|sc=Armn}}
-* Catalan: {{t|ca|lliura|f}}
-* Chinese:
-*: Mandarin: {{qualifier|British pound}} {{t|zh|英鎊|sc=Hani}}, {{t|zh|英镑|tr=Yīngbàng|sc=Hani}}
-* Czech: {{t-|cs|libra|f}}
-* Danish: {{t|da|pund|n}}
-* Dutch: {{t+|nl|pond|n}}
-* Esperanto: {{t|eo|pundo}}
-* Faroese: {{t|fo|pund|n}}
-* Finnish: {{t+|fi|punta}}
-* French: {{t+|fr|livre|f}}
-* German: {{t+|de|Pfund|n}}
-* Greek: {{t+|el|λίρα|f}}, {{t|el|λίρα|f|tr=líra|sc=Grek}}
-* Hebrew: {{t|he|לירה|f|tr=líra|sc=Hebr}}
-* Hindi: {{t|hi|पाउंड|tr=pā'uṇḍ|sc=Deva}}
-* Hungarian: {{t+|hu|font}}
-* Irish: {{t-|ga|punt|m|xs=Irish}}
-* Italian: {{t+|it|lira|f}}, {{t|it|lira sterlina}}, {{t+|it|sterlina}}
-{{trans-mid}}
-* Japanese: {{t+|ja|ポンド|tr=pondo}}
-* Jèrriais: {{tø|roa-jer|livre|f}}
-* Korean: {{t|ko|파운드|tr=paundeu|sc=Kore}}
-* Lithuanian: {{t|lt|svaras|m}}
-* Luxembourgish: {{t|lb|Pond|n}}
-* Macedonian: {{t-|mk|фунта|f|tr=fúnta}}
-* Maltese: {{t-|mt|lira|f|xs=Maltese}}
-* Manx: {{t|gv|punt|m}}
-* Polish: {{t+|pl|funt|m}}
-* Romanian: {{t|ro|liră|f}}
-* Russian: {{t+|ru|фунт|m|tr=funt}}
-* Scottish Gaelic: {{t-|gd|not|m|xs=Scottish Gaelic}}, {{t-|gd|punnd|m|xs=Scottish Gaelic}}, {{t-|gd|nota|m|xs=Scottish Gaelic}}
-* Serbo-Croatian: {{t|sh|фунта|f|tr=funta|sc=Cyrl}}
-* Slovak: {{t|sk|libra|f}}
-* Spanish: {{t+|es|libra|f}}
-* Swedish: {{t+|sv|pund|n}}
-* Thai: {{t|th|ปอนด์|tr=bpon|sc=Thai}}
-* Welsh: {{t|cy|punt|f}}
-{{trans-bottom}}
-
-===Etymology 2===
-From {{etyl|enm}} {{term|pounde|lang=enm}}, from {{etyl|ang}} {{term|pyndan||to enclose, impound|lang=ang}}.
-
-====Noun====
-{{en-noun}}
-
-# A place for the detention of stray or wandering [[animal]]s.
-#* '''2002''', [[w:25th Hour|25th Hour]], 00:27:30
-#*: (a policemant saying to a dog owner) "He better stay calm or I'll have the '''pound''' come get him." 
-# A place for the detention of automobiles that have been illegally parked, abandoned, etc.
-# The part of a [[canal]] between two [[lock]]s, and therefore at the same water level.
-
-=====Usage notes=====
-* [[w:Manx English|Manx English]] uses this word uncountably.
-
-=====Translations=====
-{{trans-top|place for the detention of stray animals}}
-* Finnish: {{t|fi|eläinkoti}}
-* French: {{t+|fr|fourrière|f}}
-* German: {{t|de|Zwinger|m}}, {{t+|de|Tierheim|n}}
-* Greek: {{t+|el|μαντρί|n}}
-* Irish: {{t|ga|póna|m}}
-{{trans-mid}}
-* Italian: {{t+|it|canile|m}}, {{t+|it|recinto}}
-* Macedonian: {{t|mk|кафилерија|f|tr=kafilérija}}
-* Malay: {{t|ms|kurungan}}, {{t|ms|kandang}}
-* Scottish Gaelic: {{t-|gd|punnd|m|xs=Scottish Gaelic}}
-* Spanish: {{t-|es|perrera|f}}
-{{trans-bottom}}
-
-{{trans-top|place for detention of automobiles}}
-* Finnish: {{t|fi|takavarikkoalue}}
-* French: {{t+|fr|fourrière|f}}
-* German: {{t+|de|Verwahrstelle|f}}
-{{trans-mid}}
-* Greek: {{t+|el|μάντρα|f}}
-* Irish: {{t|ga|póna|m}}
-* Italian: {{t-|it|autoparco}}, {{t|it|deposito auto}}
-{{trans-bottom}}
-
-{{trans-top|hard blow}}
-* Finnish: {{t+|fi|isku}}
-{{trans-mid}}
-* Italian: {{t+|it|botta}}, {{t|it|colpo forte}}, {{t-|it|tonfo}}, {{t-|it|martellio}}
-{{trans-bottom}}
-
-{{trans-top|part of canal}}
-* Finnish: {{t|fi|sulkuallas}}
-{{trans-mid}}
-* Italian: {{t|it|bacino idrico}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* Danish: {{t-|da|pund|n}}
-* Esperanto: [[funto]] (1), [[pundo]] (2), [[gardejo]] (3), [[frapego]] (4)
-* French: {{t+|fr|fourrière|f}} (3)
-{{trans-mid}}
-* Polish: {{t+|pl|funt|m}}
-* Slovak: [[funt]] {{m}} (1), [[libra]] {{f}} (2)
-{{trans-bottom}}
-
-===Etymology 3===
-From {{etyl|enm}} {{term|pounden|lang=enm}}, alteration of {{term|pounen|lang=enm}}, from {{etyl|ang}} {{term|punian|pūnian|lang=ang}}. Likely influenced by '''Etymology 2''' {{etyl|enm}} {{term|pounde|lang=enm}}, from {{etyl|ang}} {{term|pyndan||to enclose, impound|lang=ang}}, in relation to the hollow [[mortar]] for pounding with the [[pestle]].
-
-====Verb====
-{{en-verb}}
-
-# {{transitive}} To strike hard, usually repeatedly.
-# {{transitive}} To [[crush]] to pieces; to [[pulverize]].
-# {{transitive|slang}} To eat or drink very quickly.
-#: ''You really '''pounded''' that beer!''
-# {{transitive|baseball|slang}} To [[pitch]] consistently to a certain location.
-#: ''The pitcher has been '''pounding''' the outside corner all night.''
-# {{intransitive|of a body part, generally heart, blood, or head}} To [[beat]] strongly or [[throb]].
-#: ''As I tiptoed past the sleeping dog, my heart was '''pounding''' but I remained silent.''
-#: ''My head was '''pounding'''.''
-# {{transitive|slang}} To vigorously sexually [[penetrate]].
-
-=====Synonyms=====
-* {{sense|drink quickly}} [[Wikisaurus:drink]]
-
-=====Derived terms=====
-* [[pounding]]
-* [[pound down]]
-* [[pound the table]]
-* [[pound sand]]
-* [[pound up]]
-
-=====Translations=====
-{{trans-top|to strike hard repeatedly}}
-* Czech: [[bušit]]
-* Dutch: {{t|nl|beuken}}
-* Ewe: [[to]]
-* Finnish: {{t-|fi|takoa}}, {{t-|fi|rusikoida}}
-* French: {{t|fr|pilonner}}
-* Icelandic: {{t-|is|banga}}
-* Italian: {{t+|it|battere}}
-{{trans-mid}}
-* Lithuanian: {{t|lt|daužyti}}
-* Old Norse: [[banga]]
-* Romanian: {{t-|ro|pisa}}, {{t-|ro|bate}}
-* Scottish Gaelic: {{t|gd|buail}}
-* Spanish: {{t+|es|pilar}}
-* !Xóõ: {{tø|nmn|!qhāã}}
-{{trans-bottom}}
-
-{{trans-top|crush to pieces}}
-* Ewe: [[to]]
-* Finnish: {{t-|fi|murskata}}
-* Icelandic: {{t-|is|banga}}
-* Italian: {{t-|it|frantumare}}, {{t-|it|tritare}}, {{t-|it|triturare}}, {{t-|it|polverizzare}}
-{{trans-mid}}
-* Korean: ([[방아]])[[찧다]] ((bang-a-)jjihda), [[빻다]] (ppahda)
-* Old Norse: [[banga]]
-* Spanish: {{t|es|pulverizar}}
-{{trans-bottom}}
-
-{{trans-top|slang: eat or drink quickly}}
-* Finnish: {{t-|fi|imaista}}
-{{trans-mid}}
-* Italian: {{t-|it|ingurgitare}}
-{{trans-bottom}}
-
-=====See also=====
-* [[bang]]
-
-====Noun====
-{{en-noun}}
-
-# A hard blow.
-
-[[Category:en:Canals]]
-[[Category:en:Currency]]
-[[Category:en:Units of measure]]
-
-[[de:pound]]
-[[et:pound]]
-[[el:pound]]
-[[es:pound]]
-[[fa:pound]]
-[[fr:pound]]
-[[ko:pound]]
-[[io:pound]]
-[[it:pound]]
-[[kn:pound]]
-[[ku:pound]]
-[[lo:pound]]
-[[li:pound]]
-[[hu:pound]]
-[[mg:pound]]
-[[ml:pound]]
-[[my:pound]]
-[[ja:pound]]
-[[pl:pound]]
-[[ru:pound]]
-[[simple:pound]]
-[[fi:pound]]
-[[tl:pound]]
-[[ta:pound]]
-[[tt:pound]]
-[[te:pound]]
-[[tr:pound]]
-[[vi:pound]]
-[[zh:pound]]
+pound:
+
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/paʊnd/}}</li>
+<li> {{audio|en-us-pound.ogg|Audio (US)}}</li>
+<li> {{rhymes|aʊnd}}</li>
+</ul>
+
+<h3>Etymology 1</h3>
+From {{etyl|enm}}, from {{etyl|ang}} {{term|pund|a pound, weight|lang=ang}}, from {{proto|Germanic|pundan|pound, weight|lang=en}}, an early borrowing from {{etyl|la}} {{term|pondo|pondō|by weight|lang=la}}, ablative form of {{term|pondus|weight|lang=la}}, from {{proto|Indo-European|pend-|spend-|to pull, stretch|lang=en}}. Cognate with Dutch {{term|pond|lang=nl}}, German {{term|Pfund|lang=de}}, Swedish {{term|pund|lang=sv}}.
+<h4>Noun</h4>
+{en-noun}
+<ol><li> Short for pound-force, a unit of force/weight.</li>
+<li> A unit of mass equal to 16 avoirdupois ounces (= 453.592 37 g)</li>
+<li> A unit of mass equal to 12 troy ounces (≈ 373.242 g).</li>
+<li> {US} The symbol {{unsupported|#}} (octothorpe, hash) </li>
+<li> The unit of currency of used in the United Kingdom and its dependencies.</li>
+<li> Any of various units of currency used in Cyprus, Egypt, Lebanon, and formerly in the Republic of Ireland and Israel.</li>
+</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>
+
+<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|Other units of currency}} punt {{qualifier|the former Irish currency}}</li>
+<li> {{sense|# symbol}} hash {{qualifier|UK}}, sharp</li>
+</ul>
+
+<h5>Derived terms</h5>
+<ul><li> pack on the pounds</li>
+<li> take care of the pennies and the pounds will take care of themselves</li>
+</ul>
+
+<h5>See also</h5>
+<ul><li> {{pedia|Pound (mass)|Pound (the unit of mass)}}</li>
+<li> {{pedia|Pound_Sterling|Pound (the UK unit of currency)}}</li>
+<li> {{sense|UK unit of currency}} sterling</li>
+</ul>
+
+<h3>Etymology 2</h3>
+From {{etyl|enm}} {{term|pounde|lang=enm}}, from {{etyl|ang}} {{term|pyndan|to enclose, impound|lang=ang}}.
+<h4>Noun</h4>
+{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>
+</ul>
+<li> A place for the detention of automobiles that have been illegally parked, abandoned, etc.</li>
+<li> The part of a canal between two locks, and therefore at the same water level.</li>
+</ol>
+
+<h5>Usage notes</h5>
+<ul><li> Manx English uses this word uncountably.</li>
+</ul>
+
+<h3>Etymology 3</h3>
+From {{etyl|enm}} {{term|pounden|lang=enm}}, alteration of {{term|pounen|lang=enm}}, from {{etyl|ang}} {{term|punian|pūnian|lang=ang}}. Likely influenced by <b>Etymology 2</b> {{etyl|enm}} {{term|pounde|lang=enm}}, from {{etyl|ang}} {{term|pyndan|to enclose, impound|lang=ang}}, in relation to the hollow mortar for pounding with the pestle.
+<h4>Verb</h4>
+{en-verb}
+<ol><li> {transitive} To strike hard, usually repeatedly.</li>
+<li> {transitive} To crush to pieces; to pulverize.</li>
+<li> {{transitive|slang}} To eat or drink very quickly.</li>
+<ul><li> <em>You really <b>pounded</b> that beer!</em></li>
+</ul>
+<li> {{transitive|baseball|slang}} To pitch consistently to a certain location.</li>
+<ul><li> <em>The pitcher has been <b>pounding</b> the outside corner all night.</em></li>
+</ul>
+<li> {{intransitive|of a body part, generally heart, blood, or head}} To beat strongly or throb.</li>
+<ul><li> <em>As I tiptoed past the sleeping dog, my heart was <b>pounding</b> but I remained silent.</em></li>
+<li> <em>My head was <b>pounding</b>.</em></li>
+</ul>
+<li> {{transitive|slang}} To vigorously sexually penetrate.</li>
+</ol>
+
+<h5>Synonyms</h5>
+<ul><li> {{sense|drink quickly}} Wikisaurus:drink</li>
+</ul>
+
+<h5>Derived terms</h5>
+<ul><li> pounding</li>
+<li> pound down</li>
+<li> pound the table</li>
+<li> pound sand</li>
+<li> pound up</li>
+</ul>
+
+<h5>See also</h5>
+<ul><li> bang</li>
+</ul>
+
+<h4>Noun</h4>
+{en-noun}
+<ol><li> A hard blow.</li>
+</ol>
+Category:en:CanalsCategory:en:CurrencyCategory:en:Units of measurede:poundet:poundel:poundes:poundfa:poundfr:poundko:poundio:poundit:poundkn:poundku:poundlo:poundli:poundhu:poundmg:poundml:poundmy:poundja:poundpl:poundru:poundsimple:poundfi:poundtl:poundta:poundtt:poundte:poundtr:poundvi:poundzh:pound
 ===pro===
-quid pro quo: 
-{{was wotd|2009|August|17}}
-{{rfc}}
-
-===Etymology===
-From {{etyl|la|en}} : "what for what" . See [[quid#Latin|quid]], [[pro#Latin|pro]], and [[quo#Latin|quo]]
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˌkwɪd.pɹəʊˈkwəʊ/}}
-* {{a|US}} {{IPA|/ˌkwɪd.pɹoʊˈkwoʊ/}}
-
-===Noun===
-{{en-noun|sg=[[quid]] [[pro]] [[quo]]|pl=quid pro quos|pl2=quae pro quibus|pl3=quid pro quibus|pl4=quid pro quibus}}
-
-# Something understood as another ; an [[equivocation]].
-#* '''1844''', [[w:Arthur Schopenhauer|Arthur Schopenhauer]], translated by [[s:Author:Richard Burdon Haldane|Richard Burdon Haldane]], [[s:The World as Will and Representation/First Book|''The World as Will and Representation'', 2nd edition, first book]], section 13:
-#*: The misunderstanding of the word or the '''quid pro quo''' is the unintentional pun, and is related to it exactly as folly is to wit.
-#* '''1912''', [[w:Fyodor Dostoevsky|Fyodor Dostoevsky]], translated by [[s:Constance Garnett|Constance Garnett]], [[s:The Brothers Karamazov/Book V/Chapter 5|''The Brothers Karamazov'', part II, book V, chapter 5]]:
-#*: &ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &mdash; some impossible '''quid pro quo'''?&rdquo;
-# {{legal}} This for that; giving something to receive something else ; something [[equivalent]] ; something in [[return]].
-#* '''1895''', Uchimura Kanzo, [[s:The Diary of a Japanese Convert|''The Diary of a Japanese Convert'']], chapter 1:
-#*: No less weightier was to be the youth's consideration for his master, who was to him no mere school teacher or college professor on '''quid pro quo''' principle, but a veritable didaskalos, in whom he could and must completely confide the care of his body and soul.
-#* '''2002''', Barry G. Silverman, [[s:Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)|''Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)'']]:
-#*: Section 170 states that '''quid pro quo''' donations, for which a taxpayer receives something in return, are not deductible.
-# An [[equal]] [[exchange]].
-#: ''We had no money so we had to live by '''quid pro quo'''.''
-
-====Synonyms====
-* {{sense|an equal exchange}} [[barter]], [[swap]], [[swop]], [[trade]]
-
-====Related====
-* [[tit for tat]]
-
-====Translations====
-{{trans-top|Something understood as another}}
-* Finnish: {{t|fi|väärinkäsitys}}
-{{trans-mid}}
-* French: {{t+|fr|quiproquo|m}}
-{{trans-bottom}}
-
-{{trans-top|this for that}}
-* Chinese:
-*: Mandarin:{{t|zh|等價交換|sc=Hani}}, {{t|zh|等价交换|tr=děngjià jiāohuàn|sc=Hani}}
-* Finnish: {{t-|fi|vaihtokauppa}}, {{t|fi|vastasuoritus}}
-* French: {{t+|fr|contrepartie|f}}, {{t|fr|donnant donnant}}, {{t|fr|on ne donne rien pour rien}}
-{{trans-mid}}
-* Hebrew: {{t|he|שמור לי ואשמור לך}}, {{t|he|יד רוחצת יד}} 
-* Hungarian: {{t|hu|viszontszolgáltatás}}, {{t|hu|ellenszolgáltatás}}, {{t|hu|egyenérték}}, {{t|hu|ellenérték}}
-* Russian: {{t|ru|услуга за услугу|tr=uslúga za uslúgu|sc=Cyrl}}, {{t|ru|нечто за нечто|tr=néčto za néčto|sc=Cyrl}}, {{qualifier|colloquial}} {{t|ru|дашь на дашь|tr=daš' na dáš'|sc=Cyrl}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[quo pro quid#English|quo pro quid]]
-
-[[Category:English borrowed terms]]
-
-[[da:quid pro quo]]
-[[de:quid pro quo]]
-[[et:quid pro quo]]
-[[fr:quid pro quo]]
-[[my:quid pro quo]]
-[[pl:quid pro quo]]
-[[ru:quid pro quo]]
-[[ta:quid pro quo]]
+quid pro quo:
+{{was wotd|2009|August|17}}{rfc}
+<h3>Etymology</h3>
+From {{etyl|la|en}} : "what for what" . 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>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|sg=quid pro quo|pl=quid pro quos|pl2=quae pro quibus|pl3=quid pro quibus|pl4=quid pro quibus}}
+<ol><li> Something understood as another ; an equivocation.</li>
+<ul><li> <b>1844</b>, Arthur Schopenhauer, translated by Richard Burdon Haldane, <em>The World as Will and Representation</em>, 2nd edition, first book, section 13:</li>
+<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>
+</ul>
+<li> {legal} This for that; giving something to receive something else ; something equivalent ; something in return.</li>
+<ul><li> <b>1895</b>, Uchimura Kanzo, <em>The Diary of a Japanese Convert</em>, chapter 1:</li>
+<ul><li> No less weightier was to be the youth's consideration for his master, who was to him no mere school teacher or college professor on <b>quid pro quo</b> principle, but a veritable didaskalos, in whom he could and must completely confide the care of his body and soul.</li>
+</ul>
+<li> <b>2002</b>, Barry G. Silverman, <em>Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)</em>:</li>
+<ul><li> Section 170 states that <b>quid pro quo</b> donations, for which a taxpayer receives something in return, are not deductible.</li>
+</ul>
+</ul>
+<li> An equal exchange.</li>
+<ul><li> <em>We had no money so we had to live by <b>quid pro quo</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|an equal exchange}} barter, swap, swop, trade</li>
+</ul>
+
+<h4>Related</h4>
+<ul><li> tit for tat</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> quo pro quid</li>
+</ul>
+Category:English borrowed termsda:quid pro quode:quid pro quoet:quid pro quofr:quid pro quomy:quid pro quopl:quid pro quoru:quid pro quota:quid pro quo
 ***product***
-product: 
+product:
 
-===Etymology===
+<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.
-
-===Pronunciation===
-* {{enPR|prŏdʹ-ŭkt}}, {{IPA|/ˈprɒdˌʌkt/}}, {{X-SAMPA|/"prQd%Vkt/}}
-** {{a|UK}} {{IPA|[ˈpɹɒd.ˌʌkt]}}, {{X-SAMPA|["pr\Qd.%Vkt]}}
-** {{a|US}} {{IPA|[ˈpɹɑd.ˌʌkt]}}, {{X-SAMPA|["pr\Ad.%Vkt]}}
-** {{audio|en-us-product.ogg|Audio (US)}}
-
-===Noun===
+<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>
+<li> {{audio|en-us-product.ogg|Audio (US)}}</li>
+</ul>
+</ul>
+
+<h3>Noun</h3>
 {{en-noun|s|-}}
-
-# {{countable|uncountable}} A [[commodity]] offered for sale.
-#: ''That store offers a variety of '''products'''.''
-#: ''We've got to sell a lot of '''product''' by the end of the month.''
-# The amount of an artifact that has been created by someone or some process.
-#: ''They improve their '''product''' every year; they export most of their agricultural production.''
-# A consequence of someone's efforts or of a particular set of circumstances.
-#: ''Skill is the '''product''' of hours of practice; His reaction was the '''product''' of hunger and fatigue.''
-# {{chemistry}} A chemical substance formed as a result of a chemical reaction.
-#: ''This is a '''product''' of lime and nitric acid.''
-# {{mathematics}} A quantity obtained by multiplication of two or more numbers.
-#: ''The '''product''' of 2 and 3 is 6.''
-#: ''The '''product''' of 2, 3, and 4 is 24.''
-# {{category theory}} [[categorical product]]
-# 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.
-#* {{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 '''product'''.}}
-#* {{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 '''product''' users.}}
-#* {{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 '''product''' unless you know what it is supposed to do. You must work with the stakeholders to create the '''product''' scope.}}
-# The outcome or 'thingness' of an activity, especially in contrast to a [[process]] by which it was created or altered.
-#: ''This '''product''' of last month's quality standards committee is quite good, even though the process was flawed.''
-# {{US|slang}} Illegal drugs, especially cocaine, when viewed as a commodity.
-#: ''I got some '''product''' here – you buying?''
-
-====Usage notes====
-* 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.
-
-====Synonyms====
-* {{sense|items for sale}} [[merchandise]], [[wares]], [[goods]]
-* {{sense|amount created by a process}} [[production]], [[output]], [[creation]]
-
-====Derived terms====
-* [[by-product]]
-* [[categorical product]]
-* [[end product]]
-* [[finished product]]
-* [[gross domestic product]], [[gross national product]]
-* [[product placement]]
-* [[product recall]]
-
-====Related terms====
-* [[produce]]
-* [[producer]]
-* [[production]]
-
-====Translations====
-{{trans-top|commodity for sale}}
-* Armenian: {{t|hy|ապրանք|tr=aprank’}}
-* Bulgarian: {{t+|bg|стока|f}}
-* Catalan: {{t|ca|producte|m}}
-* Chinese:
-*: Mandarin: {{t|zh|產品|sc=Hani}}, {{t|zh|产品|tr=chǎnpǐn|sc=Hani}}, {{t|zh|商品|tr=shāngpǐn|sc=Hani}}, {{t|zh|製品|sc=Hani}}, {{t|zh|制品|tr=zhìpǐn|sc=Hani}}
-* Czech: {{t|cs|výrobek|m}}, {{t|cs|zboží|n}}
-* Finnish: {{t+|fi|tuote}}
-* French: {{t+|fr|produit|m}}
-* German: {{t+|de|Produkt|n}}
-* Greek: {{t+|el|προϊόν|n|tr=proïón|sc=Grek}}
-* Haitian Creole: {{tø|ht|pwodui}}
-{{trans-mid}}
-* Hungarian: {{t+|hu|termék}}
-* Irish: {{t|ga|táirge|m}}
-* Italian: {{t+|it|prodotto|m}}
-* Japanese: {{t+|ja|商品|tr=shōhin}}, {{t+|ja|製品|tr=seihin}}
-* Khmer: {{t|km|ផលិតផល|tr=pho lit tak phol|sc=Khmr}}
-* Polish: {{t+|pl|produkt|m}}
-* Portuguese: {{t+|pt|produto|m}}, {{t|pt|produtos|m|p}}
-* Romanian: {{t|ro|produs|n}}
-* Russian: {{t+|ru|продукт|m|tr=prodúkt}}, {{t+|ru|товар|m|tr=továr}}
-* Swedish: {{t+|sv|produkt|c}}, {{t+|sv|vara|c}}
-* Telugu: {{t|te|ఉత్పత్తి|tr=utpatti}}
-{{trans-bottom}}
-
-{{trans-top|amount created by a process}}
-* Bulgarian: {{t+|bg|производство|n}}
-* Catalan: {{t|ca|producte|m}}
-* Finnish: {{t+|fi|tuotanto}}
-* French: {{t+|fr|produit|m}}
-* Greek: {{t|el|προϊόν|n|tr=proïón|sc=Grek}}
-* Haitian Creole: {{tø|ht|pwodui}}
-* Italian: {{t+|it|prodotto|m}}
-{{trans-mid}}
-* Japanese: {{t|ja|生成物|tr=seiseibutsu}}
-* Polish: {{t+|pl|produkcja|f}}
-* Portuguese: {{t+|pt|produto|m}}, {{t+|pt|produção|f}}, {{t|pt|produtos|m|p}}, {{t|pt|produções|f|p}}
-* Romanian: {{t|ro|produs|n}}, {{t|ro|producție|f}}
-* Russian: {{t+|ru|продукция|f|tr=prodúkcija}}, {{t|ru|выработка|f|tr=výrabotka}}
-* Swedish: {{t+|sv|produkt|c}}
-{{trans-bottom}}
-
-{{trans-top|consequence of efforts}}
-* Armenian: {{t+|hy|արգասիք|tr=argasik’}}, {{t|hy|արդյունք|tr=ardyunk’}}
-* Bulgarian: {{t+|bg|резултат|m}}
-* Catalan: {{t|ca|producte|m}}
-* Chinese:
-*: Mandarin: {{t|zh|結果|sc=Hani}}, {{t|zh|结果|tr=jiéguǒ|sc=Hani}}
-* Esperanto: {{t|eo|produktaĵo}}
-* Finnish: {{t+|fi|tuote}}
-* French: {{t+|fr|produit|m}}
-* German: {{t+|de|Produkt|n}}
-{{trans-mid}}
-* Greek: {{t|el|προϊόν|n|tr=proïón|sc=Grek}}
-* Haitian Creole: {{tø|ht|pwodui}}
-* Italian: {{t+|it|frutto|m}}
-* Japanese: {{t+|ja|結果|tr=kekka}}
-* Polish: {{t+|pl|wynik|m}}, {{t+|pl|efekt|m}}
-* Portuguese: {{t+|pt|produto|m}}, {{t|pt|produtos|m|p}}
-* Romanian: {{t|ro|produs|n}}
-* Russian: {{t+|ru|результат|m|tr=rezul’tát}}, {{t|ru|плод|m|p|tr=plodý|alt=плоды|sc=Cyrl}}
-* Swedish: {{t+|sv|resultat|n}}
-{{trans-bottom}}
-
-{{trans-top|result of chemical reaction}}
-* Armenian: {{t+|hy|արգասիք|tr=argasik’}}
-* Bulgarian: {{t+|bg|следствие|n}}, {{t+|bg|продукт|m}}
-* Catalan: {{t|ca|producte|m}}
-* Finnish: {{t|fi|reaktiotuote}}
-* French: {{t+|fr|produit|m}}
-* German: {{t+|de|Produkt|n}}, {{t|de|Reaktionsprodukt|n}}
-* Greek: {{t+|el|προϊόν|n|tr=proïón|sc=Grek}}
-* Haitian Creole: {{tø|ht|pwodui}}
-{{trans-mid}}
-* Irish: {{t|ga|táirge|m}}
-* Italian: {{t+|it|prodotto|m}}
-* Japanese: {{t|ja|生成物|tr=seiseibutsu}}
-* Polish: {{t+|pl|produkt|m}}
-* Portuguese: {{t+|pt|produto|m}}, {{t|pt|produtos|m|p}}
-* Romanian: {{t|ro|produs|n}}
-* Russian: {{t+|ru|продукт|m|tr=prodúkt}}
-* Swedish: {{t+|sv|produkt|c}}
-{{trans-bottom}}
-
-{{trans-top|multiplication result}}
-* Arabic: {{t|ar|حاصل الضرب}}
-* Bulgarian: {{t+|bg|произведение|n}}
-* Catalan: {{t|ca|producte|m}}
-* Chinese:
-*: Mandarin: {{t|zh|積|sc=Hani}}, {{t|zh|积|tr=jī|sc=Hani}}
-* Czech: {{t-|cs|součin|m}}
-* Dutch: {{t+|nl|product|n}}
-* Esperanto: {{t-|eo|produto|xs=Esperanto}}
-* Finnish: {{t+|fi|tulo}}
-* French: {{t+|fr|produit|m}}
-* German: {{t+|de|Produkt|n}}
-* Greek: {{t|el|γινόμενο|n|tr=ginómeno|sc=Grek}}
-* Haitian Creole: {{tø|ht|pwodui}}
-{{trans-mid}}
-* Hebrew: {{t|he|מכפלה|f|tr=machpelá|sc=Hebr}}
-* Hungarian: {{t|hu|szorzat}}
-* Irish: {{t|ga|iolrach|m}}
-* Italian: {{t+|it|prodotto|m}}
-* Japanese: {{t+|ja|積|tr=seki}}
-* Persian: {{t|fa|حاصل ضرب|xs=Persian}}
-* Polish: {{t+|pl|iloczyn|m}}
-* Portuguese: {{t+|pt|produto|m}}, {{t|pt|produtos|m|p}}
-* Romanian: {{t|ro|produs|n}}
-* Russian: {{t+|ru|произведение|n|tr=proizvedénije}}
-* Spanish: {{t+|es|producto|m}}
-* Swedish: {{t+|sv|produkt|c}}
-* Urdu: {{t|ur|حاصل ضرب|xs=Urdu}}
-{{trans-bottom}}
-
-{{trans-top|any tangible output}}
-* French: {{t+|fr|produit|m}}
-* German: {{t+|de|Produkt|n}}
-* Greek: {{t+|el|προϊόν|n|tr=proïón|sc=Grek}}
-* Haitian Creole: {{tø|ht|pwodui}}
-{{trans-mid}}
-* Irish: {{t|ga|toradh|m}}
-* Italian: {{t+|it|prodotto|m}}, {{t+|it|frutto|m}}
-* Portuguese: {{t|pt|produto|m}}, {{t|pt|produtos|m|p}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|eu}}: {{t|eu|produktu|xs=Basque}}, {{t|eu|ekoizpen|xs=Basque}}
-* {{ttbc|et}}: {{t-|et|toode}}
-* {{ttbc|id}}: {{t|id|produk|xs=Indonesian}}
-{{trans-mid}}
-* {{ttbc|ia}}: [[producto]]
-* {{ttbc|es}}: {{t+|es|producto|m}}
-{{trans-bottom}}
-
-====See also====
-* [[multiplication]]: ([[multiplier]]) × ([[multiplicand]]) = ([[product]])
-
+<ol><li> {{countable|uncountable}} A commodity offered for sale.</li>
+<ul><li> <em>That store offers a variety of <b>products</b>.</em></li>
+<li> <em>We've got to sell a lot of <b>product</b> by the end of the month.</em></li>
+</ul>
+<li> The amount of an artifact that has been created by someone or some process.</li>
+<ul><li> <em>They improve their <b>product</b> every year; they export most of their agricultural production.</em></li>
+</ul>
+<li> A consequence of someone's efforts or of a particular set of circumstances.</li>
+<ul><li> <em>Skill is the <b>product</b> of hours of practice; His reaction was the <b>product</b> of hunger and fatigue.</em></li>
+</ul>
+<li> {chemistry} A chemical substance formed as a result of a chemical reaction.</li>
+<ul><li> <em>This is a <b>product</b> of lime and nitric acid.</em></li>
+</ul>
+<li> {mathematics} A quantity obtained by multiplication of two or more numbers.</li>
+<ul><li> <em>The <b>product</b> of 2 and 3 is 6.</em></li>
+<li> <em>The <b>product</b> of 2, 3, and 4 is 24.</em></li>
+</ul>
+<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=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>
+<ul><li> <em>This <b>product</b> of last month's quality standards committee is quite good, even though the process was flawed.</em></li>
+</ul>
+<li> {{US|slang}} Illegal drugs, especially cocaine, when viewed as a commodity.</li>
+<ul><li> <em>I got some <b>product</b> here – you buying?</em></li>
+</ul>
+</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>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|items for sale}} merchandise, wares, goods</li>
+<li> {{sense|amount created by a process}} production, output, creation</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> by-product</li>
+<li> categorical product</li>
+<li> end product</li>
+<li> finished product</li>
+<li> gross domestic product, gross national product</li>
+<li> product placement</li>
+<li> product recall</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> produce</li>
+<li> producer</li>
+<li> production</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> multiplication: (multiplier) × (multiplicand) = (product)</li>
+</ul>
 ----
-
-
 ===pronunciation===
-Appendix:English pronunciation: 
-The following tables show the [[Wiktionary:International Phonetic Alphabet|IPA]], [[SAMPA]] and enPR/[[w:American Heritage Dictionary|AHD]] representations of English pronunciation, in both [[Received Pronunciation]] (UK) and [[General American]] (US). For vowels in other dialects, see [[w:IPA chart for English|IPA chart for English]].
-
-===[[vowel|Vowels]]===
-
-The vowel table lists both monophthongs and [[diphthong|diphthongs]].
-
-{| {{wikitable}}
-! rowspan="2" | enPR<br/>([[w:American Heritage Dictionary|AHD]])
-! colspan="2" | [[w:International Phonetic Alphabet|IPA]]
-! colspan="2" | [[w:SAMPA|SAMPA]]
-! rowspan="2" | Examples
-|-
-! [[Received Pronunciation|RP]]
-! [[General American|GA]]
-! [[Received Pronunciation|RP]]
-! [[General American|GA]]
-|-align="center"
-| {{enPRchar|ă}}
-| colspan="2" | {{IPAchar2|Near-open front unrounded vowel.ogg|æ}}
-| colspan="2" | <tt>{</tt>
-| [[bad|b'''a'''d]], [[cat|c'''a'''t]], [[ran|r'''a'''n]]
-|-align="center"
-| {{enPRchar|ăr}}
-| colspan="2" | {{IPAchar|æɹ}}
-| colspan="2" | <tt>{r\</tt>
-| [[carry|c'''arr'''y]]
-|-align="center"
-| {{enPRchar|ā}}
-| colspan="2" | {{IPAchar|eɪ}}
-| colspan="2" | <tt>eI</tt>
-| [[bait|b'''ai'''t]], [[play|pl'''ay''']], [[same|s'''a'''me]]
-|-align="center"
-| {{enPRchar|ä}}
-| {{IPAchar|ɑː}}
-| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}
-| <tt>A:</tt>
-| <tt>A</tt>
-| [[father|f'''a'''ther]]
-|-align="center"
-| {{enPRchar|är}}
-| {{IPAchar|ɑː(ɹ)}}
-| {{IPAchar|ɑɹ}}
-| <tt>A:</tt>
-| <tt>Ar\</tt>
-| [[arm|'''ar'''m]], [[bard|b'''ar'''d]], [[aria|'''ar'''ia]]
-|-align="center"
-| {{enPRchar|âr}}
-| {{IPAchar|ɛə(ɹ)}}
-| {{IPAchar|ɛɹ}}
-| <tt>E@</tt>
-| <tt>Er\</tt>
-| [[hair|h'''air''']], [[pear|p'''ear''']], [[there|th'''ere''']], [[scary|sc'''ar'''y]]
-|-align="center"
-| {{enPRchar|ĕ}}
-| colspan="2" | {{IPAchar2|Open-mid front unrounded vowel.ogg|ɛ}}
-| colspan="2" | <tt>E</tt>
-| [[bed|b'''e'''d]], [[bet|b'''e'''t]], [[end|'''e'''nd]]
-|-align="center"
-| {{enPRchar|ĕr}}
-| colspan="2" | {{IPAchar|ɛɹ}}
-| colspan="2" | <tt>Er\</tt>
-| [[merry|m'''err'''y]]
-|-align="center"
-| {{enPRchar|ē}}
-| {{IPAchar|iː}}
-| {{IPAchar2|Close front unrounded vowel.ogg|i}}
-| <tt>i:</tt>
-| <tt>i</tt>
-| [[ease|'''ea'''se]], [[see|s'''ee''']]
-|-align="center"
-| {{enPRchar|ĭ}}
-| colspan="2" | {{IPAchar2|Near-close near-front unrounded vowel.ogg|ɪ}}
-| colspan="2" | <tt>I</tt>
-| [[city|c'''i'''ty]], [[bit|b'''i'''t]]
-|-align="center"
-| {{enPRchar|i}}<ref>Not an [[w:American Heritage Dictionary|AHD]] symbol. Often written as AHD ''ē'' in Wiktionary entries.</ref>
-| colspan="2" | {{IPAchar2|Close front unrounded vowel.ogg|i}}
-| colspan="2" | <tt>i</tt>
-| [[city|cit'''y''']], [[very|ver'''y''']], [[ready|read'''y''']]
-|-align="center"
-| {{enPRchar|ĭr}}
-| colspan="2" | {{IPAchar|ɪɹ}}
-| colspan="2" | <tt>Ir\</tt>
-| [[syrup|s'''yr'''up]], [[Sirius|S'''ir'''ius]]
-|-align="center"
-| {{enPRchar|ī}}
-| colspan="2" | {{IPAchar|aɪ}}
-| colspan="2" | <tt>aI</tt>
-| [[my|m'''y''']], [[rise|r'''i'''se]]
-|-align="center"
-| {{enPRchar|îr}}
-| {{IPAchar|ɪə(ɹ)}}
-| {{IPAchar|ɪɹ}}
-| <tt>I@</tt>
-| <tt>Ir\</tt>
-| [[here|h'''ere''']], [[near|n'''ear''']], [[peer|p'''eer''']], [[serious|s'''er'''ious]]
-|-align="center"
-| {{enPRchar|ŏ}}
-| {{IPAchar2|Open back rounded vowel.ogg|ɒ}}
-| {{IPAchar2|Open back unrounded vowel.ogg|ɑ}}
-| <tt>Q</tt>
-| <tt>A</tt>
-| [[not|n'''o'''t]]
-|-align="center"
-| {{enPRchar|ō}}
-| {{IPAchar|əʊ}}
-| {{IPAchar|oʊ}}
-| <tt>@U</tt>
-| <tt>oU</tt>
-| [[go|g'''o''']], [[hope|h'''o'''pe]], [[know|kn'''ow''']]
-|-align="center"
-| {{enPRchar|ōr}}
-| {{IPAchar|ɔə(ɹ)}}
-| {{IPAchar|oɹ, ɔɹ}}
-| <tt>O@</tt>
-| <tt>or\, Or\</tt>
-| [[hoarse|h'''oar'''se]], [[glory|gl'''or'''y]]
-|-align="center"
-| {{enPRchar|ô}}
-| {{IPAchar|ɔː}}
-| {{IPAchar2|Open-mid back rounded vowel.ogg|ɔ}}
-| <tt>O:</tt>
-| <tt>O</tt>
-| [[law|l'''aw''']], [[caught|c'''au'''ght]], [[saw|s'''aw''']]
-|-align="center"
-| {{enPRchar|ôr}}
-| {{IPAchar|ɔː(ɹ)}}
-| {{IPAchar|ɔɹ}}
-| <tt>O:</tt>
-| <tt>Or\</tt>
-| [[horse|h'''or'''se]], [[more|m'''ore''']], [[laureate|l'''aur'''eate]]
-|-align="center"
-| {{enPRchar|oi}}
-| colspan="2" | {{IPAchar|ɔɪ}}
-| colspan="2" | <tt>OI</tt>
-| [[boy|b'''oy''']], [[noise|n'''oi'''se]]
-|-align="center"
-| {{enPRchar|o͝o, ŏŏ}}
-| colspan="2" | {{IPAchar2|Near-close near-back rounded vowel.ogg|ʊ}}
-| colspan="2" | <tt>U</tt>
-| [[put|p'''u'''t]], [[foot|f'''oo'''t]]
-|-align="center"
-| {{enPRchar|o͝or, ŏŏr}}
-| {{IPAchar|ʊə(ɹ)}}
-| {{IPAchar|ʊɹ}}
-| <tt>U@</tt>
-| <tt>Ur\</tt>
-| [[poor|p'''oor''']], [[tour|t'''our''']], [[tourism|t'''our'''ism]]
-|-align="center"
-| {{enPRchar|o͞o, ōō}}
-| {{IPAchar|uː}}
-| {{IPAchar2|Close back rounded vowel.ogg|u}}
-| <tt>u:</tt>
-| <tt>u</tt>
-| [[lose|l'''o'''se]], [[soon|s'''oo'''n]], [[through|thr'''ou'''gh]]
-|-align="center"
-| {{enPRchar|ou}}
-| colspan="2" | {{IPAchar|aʊ}}
-| colspan="2" | <tt>aU</tt>
-| [[house|h'''ou'''se]], [[now|n'''ow''']]
-|-align="center"
-| {{enPRchar|ŭ}}
-| colspan="2" | {{IPAchar2|Open-mid back unrounded vowel.ogg|ʌ}}
-| colspan="2" | <tt>V</tt>
-| [[run|r'''u'''n]], [[enough|en'''ou'''gh]], [[up|'''u'''p]]
-|-align="center"
-| {{enPRchar|ûr}}
-| {{IPAchar|ɜː(ɹ)}}
-| {{IPAchar|ɝ}}
-| <tt>3:</tt>
-| <tt>3`</tt>
-| [[fur|f'''ur''']], [[bird|b'''ir'''d]]
-|-align="center"
-| {{enPRchar|ə}}
-| colspan="2" | {{IPAchar2|Schwa.ogg|ə}}
-| colspan="2" | <tt>@</tt>
-| [[about|'''a'''bout]]
-|-align="center"
-| {{enPRchar|ər}}
-| {{IPAchar|ə(ɹ)}}
-| {{IPAchar|ɚ}}
-| <tt>@</tt>
-| <tt>@`</tt>
-| [[enter|ent'''er''']]
-|}
-<references/>
-
-===[[consonant|Consonants]]===
-{| {{wikitable}}
-! enPR<br>([[w:American Heritage Dictionary|AHD]])
-! [[w:International_Phonetic_Alphabet|IPA]]
-! [[w:SAMPA|SAMPA]]
-! Examples
-|-
-| {{enPRchar|b}}
-| {{IPAchar2|Voiced bilabial plosive.ogg|b}}
-| <tt>b</tt>
-| [[but|'''b'''ut]], [[able|a'''b'''le]], [[cab|ca'''b''']], [[wobble|wo'''bb'''le]], [[ebb|e'''bb''']]
-|-
-| {{enPRchar|ch}}
-| {{IPAchar2|voiceless palato-alveolar affricate.ogg|tʃ}}<ref name=tiebar>May also be written with a tie bar, thus: {{IPAchar|/t͡ʃ/, /d͡ʒ/}}</ref>
-| <tt>tS</tt>
-| [[chat|'''ch'''at]], [[teach|tea'''ch'''er]], [[inch|in'''ch''']], [[catch|ca'''tch''']], [[nature|na'''t'''ure]]
-|-
-| {{enPRchar|d}}
-| {{IPAchar2|Voiced alveolar plosive.ogg|d}}
-| <tt>d</tt>
-| [[dot|'''d'''ot]], [[idea|i'''d'''ea]], [[nod|no'''d''']], [[fodder|fo'''dd'''er]], [[odd|o'''dd''']]
-|-
-| {{enPRchar|f}}
-| {{IPAchar2|Voiceless labiodental fricative.ogg|f}}
-| <tt>f</tt>
-| [[fan|'''f'''an]], [[left|le'''f'''t]], [[leaf|lea'''f''']], [[enough|enou'''gh''']], [[phase|'''ph'''ase]], [[graphic|gra'''ph'''ic]], [[epitaph|epita'''ph''']]
-|-
-| {{enPRchar|g}}
-| {{IPAchar2|Voiced velar plosive.ogg|ɡ}}
-| <tt>g</tt>
-| [[get|'''g'''et]], [[magnet|ma'''g'''net]], [[bag|ba'''g''']]
-|-
-| {{enPRchar|h}}
-|{{IPAchar2|Voiceless glottal fricative.ogg|h}}
-| <tt>h</tt>
-| [[ham|'''h'''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>
-| [[which|'''wh'''ich]]
-|-
-| {{enPRchar|j}}
-| {{IPAchar2|voiced palato-alveolar affricate.ogg|dʒ}}<ref name=tiebar />
-| <tt>dZ</tt>
-| [[joy|'''j'''oy]], [[ajar|a'''j'''ar]], [[gin|'''g'''in]], [[agile|a'''g'''ile]], [[age|a'''ge''']], [[edge|e'''dge''']]
-|-
-| {{enPRchar|k}}
-| {{IPAchar2|Voiceless velar plosive.ogg|k}}
-| <tt>k</tt>
-| [[cat|'''c'''at]], [[kit|'''k'''it]], [[queen|'''q'''ueen]], [[pique|pi'''que''']], [[choir|'''ch'''oir]], [[ache|a'''ch'''e]], [[tack|ta'''ck''']]
-|-
-| {{enPRchar|ᴋʜ}}
-| {{IPAchar2|voiceless velar fricative.ogg|x}}
-| <tt>x</tt>
-| (''Scottish'') [[loch|lo'''ch''']]
-|-
-| {{enPRchar|l}}
-| {{IPAchar2|Alveolar lateral approximant.ogg|l}}
-| <tt>l</tt>
-| [[left|'''l'''eft]] (''before vowel of syllable'')
-|-
-| {{enPRchar|l}}
-| {{IPAchar|l̩ (əl)}}<ref name="cons">Phonologists may deny that {{IPAchar|/l̩, n̩, m̩/}} are distinct phonemes, and instead use {{IPAchar|/əl, ən, əm/}}.</ref>
-| <tt>l=</tt>
-| [[little|litt'''le''']]
-|-
-| {{enPRchar|m}}
-| {{IPAchar2|Bilabial nasal.ogg|m}}
-| <tt>m</tt>
-| [[man|'''m'''an]], [[animal|ani'''m'''al]], [[him|hi'''m''']]
-|-
-| {{enPRchar|m}}
-| {{IPAchar|m̩ (əm)}}<ref name="cons"/>
-| <tt>m=</tt>
-| [[spasm|spas'''m''']], [[prism|pris'''m''']]
-|-
-| {{enPRchar|n}}
-| {{IPAchar2|Alveolar nasal.ogg|n}}
-| <tt>n</tt>
-| [[note|'''n'''ote]], [[ant|a'''n'''t]], [[pan|pa'''n''']]
-|-
-| {{enPRchar|n}}
-| {{IPAchar|n̩ (ən)}}<ref name="cons"/>
-| <tt>n=</tt>
-| [[hidden|hidd'''en''']]
-|-
-| {{enPRchar|ng}}
-| {{IPAchar2|Retroflex nasal.ogg|ŋ}}
-| <tt>N</tt>
-| [[singer|si'''ng'''er]], [[ring|ri'''ng''']]
-|-
-| {{enPRchar|p}}
-| {{IPAchar2|Voiceless bilabial plosive.ogg|p}}
-| <tt>p</tt>
-| [[pen|'''p'''en]], [[spin|s'''p'''in]], [[top|to'''p''']], [[apple|a'''pp'''le]]
-|-
-| {{enPRchar|r}}
-| {{IPAchar2|Alveolar approximant.ogg|ɹ}}<ref>Often conventionally written {{IPAchar|/r/}}, especially in works that cover only English.</ref>
-| <tt>r\</tt>
-| [[run|'''r'''un]], [[very|ve'''r'''y]]
-|-
-| {{enPRchar|s}}
-| {{IPAchar2|Voiceless_alveolar_sibilant.ogg|s}}
-| <tt>s</tt>
-| [[set|'''s'''et]], [[list|li'''s'''t]], [[pass|pa'''ss''']], [[city|'''c'''ity]], [[ice|i'''ce''']]
-|-
-| {{enPRchar|sh}}
-| {{IPAchar2|Voiceless_palato-alveolar_sibilant.ogg|ʃ}}
-| <tt>S</tt>
-| [[she|'''sh'''e]], [[ash|a'''sh''']], [[sure|'''s'''ure]], [[ration|ra'''t'''ion]]
-|-
-| {{enPRchar|t}}
-| {{IPAchar2|Voiceless alveolar plosive.ogg|t}}
-| <tt>t</tt>
-| [[ton|'''t'''on]], [[stab|s'''t'''ab]], [[mat|ma'''t''']], [[attend|a'''tt'''end]], [[butt|bu'''tt''']], [[ought|ou'''ght''']]
-|-
-| {{enPRchar|th}}
-| {{IPAchar2|Voiceless dental fricative.ogg|θ}}
-| <tt>T</tt>
-| [[thin|'''th'''in]], [[nothing|no'''th'''ing]], [[moth|mo'''th''']]
-|-
-| {{enPRchar|''th''}}
-| {{IPAchar2|voiced dental fricative.ogg|ð}}
-| <tt>D</tt>
-| [[this|'''th'''is]], [[father|fa'''th'''er]], [[clothe|clo'''the''']]
-|-
-| {{enPRchar|v}}
-| {{IPAchar2|Voiced labiodental fricative.ogg|v}}
-| <tt>v</tt>
-| [[voice|'''v'''oice]], [[navel|na'''v'''el]], [[save|sa'''ve''']], [[of|o'''f''']]
-|-
-| {{enPRchar|w}}
-| {{IPAchar2|Voiced labio-velar approximant.ogg|w}}
-| <tt>w</tt>
-| [[wet|'''w'''et]]
-|-
-| {{enPRchar|y}}
-| {{IPAchar2|Palatal approximant.ogg|j}}
-| <tt>j</tt>
-| [[yes|'''y'''es]]
-|-
-| {{enPRchar|z}}
-| {{IPAchar2|Voiced_alveolar_sibilant.ogg|z}}
-| <tt>z</tt>
-| [[zoo|'''z'''oo]], [[quiz|qui'''z''']], [[fuzz|fu'''zz''']], [[rose|ro'''s'''e]], [[xylem|'''x'''ylem]]
-|-
-| {{enPRchar|zh}}
-| {{IPAchar2|Voiced_palato-alveolar_sibilant.ogg|ʒ}}
-| <tt>Z</tt>
-| [[vision|vi'''s'''ion]], [[treasure|trea'''s'''ure]], [[beige|bei'''ge''']]
-|}
-
-<references/>
-
-===Other symbols===
-A stress mark is placed before the syllable that is stressed in IPA and SAMPA and after it in enPR and AHD. 
-
-{| {{wikitable}}
-! enPR<br>([[w:American Heritage Dictionary|AHD]])
-! [[w:International Phonetic Alphabet|IPA]]
-! [[w:SAMPA|SAMPA]]
-! Indicates
-|-
-| {{enPRchar|ʹ}} (a{{enPRchar|ʹ}})
-| {{IPAchar|ˈ}} ({{IPAchar|ˈ}}a)
-| <tt>"</tt> (<tt>"</tt>a)
-| primary [[w:Stress (linguistics)|stress]]
-|-
-| {{enPRchar|'}} (a{{enPRchar|'}})
-| {{IPAchar|ˌ}} ({{IPAchar|ˌ}}a)
-| <tt>%</tt> (<tt>%</tt>a)
-| [[w:secondary stress|secondary stress]], sometimes tertiary stress
-|-
-| a{{enPRchar|-}}a
-| a{{IPAchar|.}}a
-| a<tt>.</tt>a
-| division between [[syllable|syllables]]
-|}
-
-'''Note:''' The EnPR and print AHD marks are formatted slightly differently. Online, AHD writes both {{enPRchar|'}}, though they do not always represent the same phoneme.<!--When in the order secondary-primary, they represent the same phoneme. However, when primary-secondary, they do not, and dictionaries such as the OED simply omit the secondary.-->
-
-
-pronunciation guide: 
-
-===Noun===
-{{en-noun|sg=[[pronunciation]] [[guide]]}}
-
-#{{countable}} A [[table]] in a [[reference work]] [[explain]]ing the [[symbol]]s that it uses to represent the pronunciation of its [[entry|entries]].
-
-[[pt:pronunciation guide]]
-[[ru:pronunciation guide]]
+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/>
+<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/>
+<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.
+pronunciation guide:
+
+<h3>Noun</h3>
+{{en-noun|sg=pronunciation guide}}
+<ol><li>{countable} A table in a reference work explaining the symbols that it uses to represent the pronunciation of its entries.</li>
+</ol>
+pt:pronunciation guideru:pronunciation guide
 ===Public===
-Wiktionary:Public domain sources: 
-
-The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.
-
-Some scanned fascicles of Oxford English Dictionary under the title ''A New English Dictionary on Historical Principles'' by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.
-
-The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240].
-
-
+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].
 ***pumpkin***
-pumpkin: 
-
-===Alternative forms===
-* {{sense|US|term of endearment}} [[punkin]]
-
-===Etymology===
-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}}.
-
-===Pronunciation===
-* {{enPR|pŭmpʹkin}}, {{IPA|/ˈpʌmpkɪn/}}, {{X-SAMPA|/"pVmpkin/}}
-* {{audio|en-us-pumpkin.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun}}
-
-# A [[domesticated]] [[plant]], ''Cucurbita pepo'' similar in [[growth]] pattern, [[foliage]], [[flower]], and [[fruit]] to the [[squash]] or [[melon]].
-# The [[round]] [[yellow]] or [[orange]] fruit of this plant.
-#* ''The Land of Oz'', L. Frank Baum, [http://www.literature.org/authors/baum-l-frank/the-marvelous-land-of-oz/chapter-01.html]:
-#*: There were '''pumpkins''' in Mombi’s corn-fields, lying golden red among the rows of green stalks; and these had been planted and carefully tended that the four-horned cow might eat of them in the winter time.
-# The [[color]] of the fruit of the pumpkin plant.
-#: {{color panel|FF7518}}
-# {{Australia}} Any of a number of [[cultivar]]s from the genus ''[[Cucurbita]]''; ''known in the US as [[winter squash]]''.
-# {{US}} A [[term of endearment]] for someone [[small]] and [[cute]].
-#* {{rfdate}} John Prine, ''Daddy’s Little '''Pumpkin''''': You must be daddy’s little '''pumpkin'''.
-
-====Translations====
-{{trans-top|plant}}
-* Achuar-Shiwiar: {{tø|acu|yuwi}}
-* Afrikaans: {{t|af|pampoen|xs=Afrikaans}}
-* Alabama: [[choksi]]
-* Arabic: {{t-|ar|قرع|m|tr=qar`}}, {{t|ar|يقطين|tr=yaqṭīn|sc=Arab}}, {{t|ar|الدباء|f|tr=al-dubaʔ|sc=Arab}}
-*: Egyptian Arabic: {{tø|arz|قرع|m|p|tr=ʔarʕ|sc=Arab}}
-* Armenian: {{t-|hy|դդում|tr=ddum}}
-* Catalan: {{t+|ca|carbassera|f}}
-* Chinese:
-*: Cantonese: {{tø|yue|南瓜|tr=naam4 gwaa1|sc=Hani|xs=Cantonese}},{{tø|yue|番瓜|tr=faan1 gwaa1|sc=Hani|xs=Cantonese}}
-*: Mandarin: {{t-|cmn|南瓜|tr=nánguā|sc=Hani}}
-* Croatian: {{t-|hr|buča|f}}, {{t-|hr|bundeva|f}}
-* Czech: {{t+|cs|dýně|f}}
-* Danish: {{t|da|græskar}}, {{t|da|græskarplante}}
-* Dutch: {{t-|nl|pompoen|f}}
-* Estonian: {{t|et|kõrvits}}
-* Finnish: {{t+|fi|kurpitsa}}
-* French: {{t+|fr|citrouille|f}}
-* Galician: [[cabaza]] {{f}}
-* German: {{t+|de|Kürbis|m}}
-* Greek: {{t+|el|κολοκύθα|tr=kοlοkútha}}
-* Hebrew: {{t+|he|דלעת|f|tr=dlá`at}}
-* Hiligaynon: {{tø|hil|kalabasa}}
-* Hungarian: {{t+|hu|tök}}
-{{trans-mid}}
-* Indonesian: {{t+|id|labu|xs=Indonesian}}
-* Irish: {{t|ga|puimcín|m|xs=Irish}}
-* Japanese: {{t-|ja|南瓜|tr=かぼちゃ, kabocha}}, {{t-|ja|カボチャ|tr=kabocha}}
-* Korean: {{t+|ko|호박|tr=hobak|sc=Hang}}
-* Lithuanian: {{t+|lt|moliūgas|m|xs=Lithuanian}}
-* Lojban: [[brazme]], [[kurbita]]
-* Luxembourgish: {{t|lb|Kalbass|f}}, {{t|lb|Kürbis|m}}
-* Macedonian: {{t-|mk|тиква|f|tr=tíkva}}
-* Polish: {{t+|pl|dynia|f}}
-* Portuguese: {{t+|pt|abóbora|f}}, {{t+|pt|jerimum|m}}
-*: {{qualifier|Brazil}}: {{qualifier|pé de}} {{t+|pt|jerimum|m}}, {{t+|pt|aboboreira|f}}
-* Romanian: {{t|ro|bostan|m}}, {{t|ro|dovleac|m}}
-* Russian: {{t+|ru|тыква|f|tr=týkva}}
-* Serbian: {{t-|sr|bundeva|f}}, {{t-|sr|tikva|f}}
-* Slovene: {{t+|sl|buča|f}}
-* Sotho: {{t|st|mokopu|xs=Sotho}}
-* Spanish: {{t+|es|calabaza|f}}
-* Sundanese: {{t|su|waluh|xs=Sundanese}}
-* Swahili: {{t+|sw|malenge|xs=Swahili}}, {{t|sw|maboga}}
-* Tagalog: {{t|tl|kalabasa|xs=Tagalog}}
-* Taos: [[póna]]
-* Turkish: {{t+|tr|bal kabağı}}
-* West Frisian: {{t+|fy|klabats|c|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|fruit of this plant}}
-* Afrikaans: {{t|af|pampoen|xs=Afrikaans}}
-* Alabama: [[choksi]]
-* Arabic: {{t-|ar|قرع|m|tr=qar`}}, {{t|ar|يقطين|tr=yaqṭīn|sc=Arab}}, {{t|ar|الدباء|f|tr=al-dubaʔ|sc=Arab}}
-*: Egyptian Arabic: {{tø|arz|قرع|m|p|tr=ʔarʕ|sc=Arab}}
-* Armenian: {{t-|hy|դդում|tr=ddum}}
-* Belarusian: {{t|be|гарбуз|m|tr=harbúz|sc=Cyrl}}
-* Bulgarian: {{t|bg|тиква|f|tr=tíkva|sc=Cyrl}}
-* Catalan: {{t+|ca|carbassa|f}}
-* Chinese:
-*: Cantonese: {{tø|yue|南瓜|tr=naam4 gwaa1|sc=Hani|xs=Cantonese}},{{tø|yue|番瓜|tr=faan1 gwaa1|sc=Hani|xs=Cantonese}}
-*: Mandarin: {{t-|cmn|南瓜|tr=nánguā|sc=Hani}}
-*: [[Min Nan]]: {{tø|nan|朱瓜|tr=chu-koe|sc=Hans}}, {{tø|nan|金瓜|tr=kim-koe|sc=Hans}}
-* Croatian: {{t-|hr|buča|f}}, {{t-|hr|bundeva|f}}
-* Czech: {{t|cs|dýně|f}}
-* Danish: {{t-|da|græskar}}
-* Dutch: {{t-|nl|pompoen|f}}
-* Esperanto: {{t-|eo|kukurbo|xs=Esperanto}}
-* Estonian: {{t|et|kõrvits}}
-* Finnish: {{t+|fi|kurpitsa}}, {{t+|fi|pallokurpitsa}}
-* French: {{t+|fr|citrouille|f}}
-* Friulian: [[čučhe]] {{f}}
-* Georgian: {{t|ka|გოგრა|tr=gogra|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Kürbis|m}}
-* Greek: {{t|el|κολοκύθα|f|sc=Grek}}
-* Hebrew: {{t+|he|דלעת|f|tr=dlá`at}}
-* Hiligaynon: {{tø|hil|kalabasa}}
-{{trans-mid}}
-* Hindi: {{t-|hi|कद्दू|m|tr=kadū, kaddū|sc=Deva}}
-* Hungarian: {{t|hu|tök}}
-* Irish: {{t|ga|puimcín|m|xs=Irish}}
-* Italian: {{t+|it|zucca|f}}
-* Japanese: {{t-|ja|南瓜|tr=かぼちゃ, kabocha}}, {{t-|ja|カボチャ|tr=kabocha}}
-* Lithuanian: {{t+|lt|moliūgas|m|xs=Lithuanian}}
-* Lojban: [[brazme]], [[kurbita]]
-* Luxembourgish: {{t|lb|Kalbass|f}}, {{t|lb|Kürbis|m}}
-* Macedonian: {{t-|mk|тиква|f|tr=tíkva}}
-* Polish: {{t+|pl|dynia|f}}
-* Portuguese: {{t+|pt|abóbora|f}}, {{t+|pt|jerimum|m}} {{qualifier|Brazil}}
-* Romanian: {{t+|ro|dovleac}}, {{t|ro|bostan|m}}
-* Russian: {{t+|ru|тыква|f|tr=týkva}}
-* Slovene: {{t+|sl|buča|f}}
-* Sotho: {{t|st|mokopu|xs=Sotho}}
-* Spanish: [[calabaza]] {{f}}, [[auyama]] {{f}} {{qualifier|Colombia|Venezuela|Dominican Republic}}, [[ayote]] {{f}} {{qualifier|Costa Rica|El Salvador|Honduras|Nicaragua|Guatemala}}, [[zapallo]] {{m}} {{qualifier|Argentina|Bolivia|Chile|Ecuador|Panama|Paraguay|Peru|Uruguay}}
-* Swahili: {{t+|sw|malenge|xs=Swahili}}, {{t|sw|boga}}
-* Swedish: {{t|sv|pumpa|c}}
-* Tagalog: {{t|tl|kalabasa|xs=Tagalog}}
-* Turkish: {{t+|tr|bal kabağı}}
-* Ukrainian: {{t|uk|гарбуз|m|tr=harbúz|sc=Cyrl}}
-* Urdu: {{t|ur|کدو|m|tr=kadū, kaddū|sc=ur-Arab}}
-* Walloon: {{t|wa|peturon|m}}
-* West Frisian: {{t+|fy|klabats|c|xs=West Frisian}}
-{{trans-bottom}}
-
-{{trans-top|color}}
-* Finnish: {{t+|fi|kurpitsa}}
-* Hebrew: {{t+|he|דלעת|f|tr=dlá`at}}
-* Polish: {{t|pl|dyniowy|m}}
-{{trans-mid}}
-* Portuguese: {{t+|pt|abóbora}}
-* Swahili: {{t+|sw|malenge|xs=Swahili}}
-{{trans-bottom}}
-
-{{trans-top|term of endearment}}
-* Swedish: {{t|sv|sötnos|c}}, {{t|sv|smulan|c}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|sq}}: {{t|sq|kungull}}
-* {{ttbc|bg}}: {{t|bg|тиква}} (tikva) {{f}} (1,2)
-* {{ttbc|fr}}: {{t|fr|citrouille|f}} (1) (2), {{t|fr|potiron|m}} (1) (2), {{t|fr|courge|f}} ("courge" is not right: this is "marrow" (UK)/"squash" (US) - a different fruit: elongated and green; a large version of courgette (UK)/zucchini (US))
-* {{ttbc|gn}}: {{t|gn|andai}} (1)
-* {{ttbc|ia}}: [[cucurbita]] (1,2,3)
-* {{ttbc|ko}}: [[호박]] (hobak)
-* {{ttbc|ml}}: [[മത്തങ്ങ]] (matthangga)
-* {{ttbc|mrc}}: [[xmat]]
-* {{ttbc|no}}: {{t|no|gresskar}}
-* {{ttbc|ood}}: [[<nowiki>ha:l</nowiki>]]
-* {{ttbc|ro}}: {{t|ro|dovleac|m}}, {{t|ro|bostan|m}}
-{{trans-bottom}}
-
-===See also===
-* [[calabash]]
-* [[calabaza]]
-* [[gourd]]
-* [[marrow]]
-* [[squash]]
-
-[[Category:en:Colors]]
-[[Category:en:Terms of endearment]]
-
-[[cs:pumpkin]]
-[[de:pumpkin]]
-[[et:pumpkin]]
-[[el:pumpkin]]
-[[eo:pumpkin]]
-[[eu:pumpkin]]
-[[fr:pumpkin]]
-[[gl:pumpkin]]
-[[ko:pumpkin]]
-[[io:pumpkin]]
-[[id:pumpkin]]
-[[zu:pumpkin]]
-[[kn:pumpkin]]
-[[kk:pumpkin]]
-[[lo:pumpkin]]
-[[lt:pumpkin]]
-[[hu:pumpkin]]
-[[mg:pumpkin]]
-[[ml:pumpkin]]
-[[my:pumpkin]]
-[[nl:pumpkin]]
-[[ja:pumpkin]]
-[[pl:pumpkin]]
-[[pt:pumpkin]]
-[[ru:pumpkin]]
-[[fi:pumpkin]]
-[[sv:pumpkin]]
-[[tl:pumpkin]]
-[[ta:pumpkin]]
-[[tr:pumpkin]]
-[[vi:pumpkin]]
-[[zh:pumpkin]]
+pumpkin:
+
+<h3>Alternative forms</h3>
+<ul><li> {{sense|US|term of endearment}} punkin</li>
+</ul>
+
+<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>
+<li> {{audio|en-us-pumpkin.ogg|Audio (US)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> A domesticated plant, <em>Cucurbita pepo</em> similar in growth pattern, foliage, flower, and fruit to the squash or melon.</li>
+<li> The round yellow or orange fruit of this plant.</li>
+<ul><li> <em>The Land of Oz</em>, L. Frank Baum, [http://www.literature.org/authors/baum-l-frank/the-marvelous-land-of-oz/chapter-01.html]:</li>
+<ul><li> There were <b>pumpkins</b> in Mombi’s corn-fields, lying golden red among the rows of green stalks; and these had been planted and carefully tended that the four-horned cow might eat of them in the winter time.</li>
+</ul>
+</ul>
+<li> The color of the fruit of the pumpkin plant.</li>
+<ul><li> {{color panel|FF7518}}</li>
+</ul>
+<li> {Australia} Any of a number of cultivars from the genus <em>Cucurbita</em>; <em>known in the US as winter squash</em>.</li>
+<li> {US} A term of endearment for someone small and cute.</li>
+<ul><li> {rfdate} John Prine, <em>Daddy’s Little <b>Pumpkin</b></em>: You must be daddy’s little <b>pumpkin</b>.</li>
+</ul>
+</ol>
+
+<h3>See also</h3>
+<ul><li> calabash</li>
+<li> calabaza</li>
+<li> gourd</li>
+<li> marrow</li>
+<li> squash</li>
+</ul>
+Category:en:ColorsCategory:en:Terms of endearmentcs:pumpkinde:pumpkinet:pumpkinel:pumpkineo:pumpkineu:pumpkinfr:pumpkingl:pumpkinko:pumpkinio:pumpkinid:pumpkinzu:pumpkinkn:pumpkinkk:pumpkinlo:pumpkinlt:pumpkinhu:pumpkinmg:pumpkinml:pumpkinmy:pumpkinnl:pumpkinja:pumpkinpl:pumpkinpt:pumpkinru:pumpkinfi:pumpkinsv:pumpkintl:pumpkinta:pumpkintr:pumpkinvi:pumpkinzh:pumpkin
 ===quid===
-quid pro quo: 
-{{was wotd|2009|August|17}}
-{{rfc}}
-
-===Etymology===
-From {{etyl|la|en}} : "what for what" . See [[quid#Latin|quid]], [[pro#Latin|pro]], and [[quo#Latin|quo]]
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˌkwɪd.pɹəʊˈkwəʊ/}}
-* {{a|US}} {{IPA|/ˌkwɪd.pɹoʊˈkwoʊ/}}
-
-===Noun===
-{{en-noun|sg=[[quid]] [[pro]] [[quo]]|pl=quid pro quos|pl2=quae pro quibus|pl3=quid pro quibus|pl4=quid pro quibus}}
-
-# Something understood as another ; an [[equivocation]].
-#* '''1844''', [[w:Arthur Schopenhauer|Arthur Schopenhauer]], translated by [[s:Author:Richard Burdon Haldane|Richard Burdon Haldane]], [[s:The World as Will and Representation/First Book|''The World as Will and Representation'', 2nd edition, first book]], section 13:
-#*: The misunderstanding of the word or the '''quid pro quo''' is the unintentional pun, and is related to it exactly as folly is to wit.
-#* '''1912''', [[w:Fyodor Dostoevsky|Fyodor Dostoevsky]], translated by [[s:Constance Garnett|Constance Garnett]], [[s:The Brothers Karamazov/Book V/Chapter 5|''The Brothers Karamazov'', part II, book V, chapter 5]]:
-#*: &ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &mdash; some impossible '''quid pro quo'''?&rdquo;
-# {{legal}} This for that; giving something to receive something else ; something [[equivalent]] ; something in [[return]].
-#* '''1895''', Uchimura Kanzo, [[s:The Diary of a Japanese Convert|''The Diary of a Japanese Convert'']], chapter 1:
-#*: No less weightier was to be the youth's consideration for his master, who was to him no mere school teacher or college professor on '''quid pro quo''' principle, but a veritable didaskalos, in whom he could and must completely confide the care of his body and soul.
-#* '''2002''', Barry G. Silverman, [[s:Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)|''Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)'']]:
-#*: Section 170 states that '''quid pro quo''' donations, for which a taxpayer receives something in return, are not deductible.
-# An [[equal]] [[exchange]].
-#: ''We had no money so we had to live by '''quid pro quo'''.''
-
-====Synonyms====
-* {{sense|an equal exchange}} [[barter]], [[swap]], [[swop]], [[trade]]
-
-====Related====
-* [[tit for tat]]
-
-====Translations====
-{{trans-top|Something understood as another}}
-* Finnish: {{t|fi|väärinkäsitys}}
-{{trans-mid}}
-* French: {{t+|fr|quiproquo|m}}
-{{trans-bottom}}
-
-{{trans-top|this for that}}
-* Chinese:
-*: Mandarin:{{t|zh|等價交換|sc=Hani}}, {{t|zh|等价交换|tr=děngjià jiāohuàn|sc=Hani}}
-* Finnish: {{t-|fi|vaihtokauppa}}, {{t|fi|vastasuoritus}}
-* French: {{t+|fr|contrepartie|f}}, {{t|fr|donnant donnant}}, {{t|fr|on ne donne rien pour rien}}
-{{trans-mid}}
-* Hebrew: {{t|he|שמור לי ואשמור לך}}, {{t|he|יד רוחצת יד}} 
-* Hungarian: {{t|hu|viszontszolgáltatás}}, {{t|hu|ellenszolgáltatás}}, {{t|hu|egyenérték}}, {{t|hu|ellenérték}}
-* Russian: {{t|ru|услуга за услугу|tr=uslúga za uslúgu|sc=Cyrl}}, {{t|ru|нечто за нечто|tr=néčto za néčto|sc=Cyrl}}, {{qualifier|colloquial}} {{t|ru|дашь на дашь|tr=daš' na dáš'|sc=Cyrl}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[quo pro quid#English|quo pro quid]]
-
-[[Category:English borrowed terms]]
-
-[[da:quid pro quo]]
-[[de:quid pro quo]]
-[[et:quid pro quo]]
-[[fr:quid pro quo]]
-[[my:quid pro quo]]
-[[pl:quid pro quo]]
-[[ru:quid pro quo]]
-[[ta:quid pro quo]]
+quid pro quo:
+{{was wotd|2009|August|17}}{rfc}
+<h3>Etymology</h3>
+From {{etyl|la|en}} : "what for what" . 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>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|sg=quid pro quo|pl=quid pro quos|pl2=quae pro quibus|pl3=quid pro quibus|pl4=quid pro quibus}}
+<ol><li> Something understood as another ; an equivocation.</li>
+<ul><li> <b>1844</b>, Arthur Schopenhauer, translated by Richard Burdon Haldane, <em>The World as Will and Representation</em>, 2nd edition, first book, section 13:</li>
+<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>
+</ul>
+<li> {legal} This for that; giving something to receive something else ; something equivalent ; something in return.</li>
+<ul><li> <b>1895</b>, Uchimura Kanzo, <em>The Diary of a Japanese Convert</em>, chapter 1:</li>
+<ul><li> No less weightier was to be the youth's consideration for his master, who was to him no mere school teacher or college professor on <b>quid pro quo</b> principle, but a veritable didaskalos, in whom he could and must completely confide the care of his body and soul.</li>
+</ul>
+<li> <b>2002</b>, Barry G. Silverman, <em>Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)</em>:</li>
+<ul><li> Section 170 states that <b>quid pro quo</b> donations, for which a taxpayer receives something in return, are not deductible.</li>
+</ul>
+</ul>
+<li> An equal exchange.</li>
+<ul><li> <em>We had no money so we had to live by <b>quid pro quo</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|an equal exchange}} barter, swap, swop, trade</li>
+</ul>
+
+<h4>Related</h4>
+<ul><li> tit for tat</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> quo pro quid</li>
+</ul>
+Category:English borrowed termsda:quid pro quode:quid pro quoet:quid pro quofr:quid pro quomy:quid pro quopl:quid pro quoru:quid pro quota:quid pro quo
 ===quo===
-quid pro quo: 
-{{was wotd|2009|August|17}}
-{{rfc}}
-
-===Etymology===
-From {{etyl|la|en}} : "what for what" . See [[quid#Latin|quid]], [[pro#Latin|pro]], and [[quo#Latin|quo]]
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˌkwɪd.pɹəʊˈkwəʊ/}}
-* {{a|US}} {{IPA|/ˌkwɪd.pɹoʊˈkwoʊ/}}
-
-===Noun===
-{{en-noun|sg=[[quid]] [[pro]] [[quo]]|pl=quid pro quos|pl2=quae pro quibus|pl3=quid pro quibus|pl4=quid pro quibus}}
-
-# Something understood as another ; an [[equivocation]].
-#* '''1844''', [[w:Arthur Schopenhauer|Arthur Schopenhauer]], translated by [[s:Author:Richard Burdon Haldane|Richard Burdon Haldane]], [[s:The World as Will and Representation/First Book|''The World as Will and Representation'', 2nd edition, first book]], section 13:
-#*: The misunderstanding of the word or the '''quid pro quo''' is the unintentional pun, and is related to it exactly as folly is to wit.
-#* '''1912''', [[w:Fyodor Dostoevsky|Fyodor Dostoevsky]], translated by [[s:Constance Garnett|Constance Garnett]], [[s:The Brothers Karamazov/Book V/Chapter 5|''The Brothers Karamazov'', part II, book V, chapter 5]]:
-#*: &ldquo;Is it simply a wild fantasy, or a mistake on the part of the old man &mdash; some impossible '''quid pro quo'''?&rdquo;
-# {{legal}} This for that; giving something to receive something else ; something [[equivalent]] ; something in [[return]].
-#* '''1895''', Uchimura Kanzo, [[s:The Diary of a Japanese Convert|''The Diary of a Japanese Convert'']], chapter 1:
-#*: No less weightier was to be the youth's consideration for his master, who was to him no mere school teacher or college professor on '''quid pro quo''' principle, but a veritable didaskalos, in whom he could and must completely confide the care of his body and soul.
-#* '''2002''', Barry G. Silverman, [[s:Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)|''Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)'']]:
-#*: Section 170 states that '''quid pro quo''' donations, for which a taxpayer receives something in return, are not deductible.
-# An [[equal]] [[exchange]].
-#: ''We had no money so we had to live by '''quid pro quo'''.''
-
-====Synonyms====
-* {{sense|an equal exchange}} [[barter]], [[swap]], [[swop]], [[trade]]
-
-====Related====
-* [[tit for tat]]
-
-====Translations====
-{{trans-top|Something understood as another}}
-* Finnish: {{t|fi|väärinkäsitys}}
-{{trans-mid}}
-* French: {{t+|fr|quiproquo|m}}
-{{trans-bottom}}
-
-{{trans-top|this for that}}
-* Chinese:
-*: Mandarin:{{t|zh|等價交換|sc=Hani}}, {{t|zh|等价交换|tr=děngjià jiāohuàn|sc=Hani}}
-* Finnish: {{t-|fi|vaihtokauppa}}, {{t|fi|vastasuoritus}}
-* French: {{t+|fr|contrepartie|f}}, {{t|fr|donnant donnant}}, {{t|fr|on ne donne rien pour rien}}
-{{trans-mid}}
-* Hebrew: {{t|he|שמור לי ואשמור לך}}, {{t|he|יד רוחצת יד}} 
-* Hungarian: {{t|hu|viszontszolgáltatás}}, {{t|hu|ellenszolgáltatás}}, {{t|hu|egyenérték}}, {{t|hu|ellenérték}}
-* Russian: {{t|ru|услуга за услугу|tr=uslúga za uslúgu|sc=Cyrl}}, {{t|ru|нечто за нечто|tr=néčto za néčto|sc=Cyrl}}, {{qualifier|colloquial}} {{t|ru|дашь на дашь|tr=daš' na dáš'|sc=Cyrl}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[quo pro quid#English|quo pro quid]]
-
-[[Category:English borrowed terms]]
-
-[[da:quid pro quo]]
-[[de:quid pro quo]]
-[[et:quid pro quo]]
-[[fr:quid pro quo]]
-[[my:quid pro quo]]
-[[pl:quid pro quo]]
-[[ru:quid pro quo]]
-[[ta:quid pro quo]]
+quid pro quo:
+{{was wotd|2009|August|17}}{rfc}
+<h3>Etymology</h3>
+From {{etyl|la|en}} : "what for what" . 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>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|sg=quid pro quo|pl=quid pro quos|pl2=quae pro quibus|pl3=quid pro quibus|pl4=quid pro quibus}}
+<ol><li> Something understood as another ; an equivocation.</li>
+<ul><li> <b>1844</b>, Arthur Schopenhauer, translated by Richard Burdon Haldane, <em>The World as Will and Representation</em>, 2nd edition, first book, section 13:</li>
+<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>
+</ul>
+<li> {legal} This for that; giving something to receive something else ; something equivalent ; something in return.</li>
+<ul><li> <b>1895</b>, Uchimura Kanzo, <em>The Diary of a Japanese Convert</em>, chapter 1:</li>
+<ul><li> No less weightier was to be the youth's consideration for his master, who was to him no mere school teacher or college professor on <b>quid pro quo</b> principle, but a veritable didaskalos, in whom he could and must completely confide the care of his body and soul.</li>
+</ul>
+<li> <b>2002</b>, Barry G. Silverman, <em>Sklar v. Commissioner of Internal Revenue - Concurrence by Judge Silverman (2002)</em>:</li>
+<ul><li> Section 170 states that <b>quid pro quo</b> donations, for which a taxpayer receives something in return, are not deductible.</li>
+</ul>
+</ul>
+<li> An equal exchange.</li>
+<ul><li> <em>We had no money so we had to live by <b>quid pro quo</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|an equal exchange}} barter, swap, swop, trade</li>
+</ul>
+
+<h4>Related</h4>
+<ul><li> tit for tat</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> quo pro quid</li>
+</ul>
+Category:English borrowed termsda:quid pro quode:quid pro quoet:quid pro quofr:quid pro quomy:quid pro quopl:quid pro quoru:quid pro quota:quid pro quo
 ===rain===
-rain cats and dogs: 
-
-===Etymology===
-Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά||lang=grc|tr=cata|against}} and {{term|δόξα||tr=doxa|lang=grc|opinion, expectation}}, but see Etymology in [[:Citations:rain cats and dogs#Etymology|Citations]]
-
-===Verb===
-{{en-verb|head=[[rain]] [[cat]]s and [[dog]]s|rains cats and dogs|raining cats and dogs|rained cats and dogs}}
-
-# {{idiomatic}} To [[rain]] very [[heavily]].
-
-====Synonyms====
-* {{sense|to rain very heavily}} [[bucket]], [[bucket down]], [[chuck it down]], [[rain buckets]], [[rain pitchforks]], [[pelt]], [[piss down]] {{qualifier|coarse slang}}, [[pour]], [[stream]], [[teem]]
-
-====Translations====
-{{trans-top|to rain very heavily}}
-* Arabic: {{t|ar|إنها تمطر بغزارة|tr='innahaa tumTir bi-ghazaara|sc=Arab}}
-* Catalan: {{t|ca|ploure a bots i barrals}}
-* Chinese:
-*: Mandarin: {{t|cmn|傾盆大雨|sc=Hani}},  {{t|cmn|倾盆大雨|tr=qīngpéndàyǔ|sc=Hani}}
-* Czech: {{t-|cs|lít jako z konve}}
-* Dutch: {{t|nl|pijpenstelen regenen}}, {{t|nl|regenen dat het giet}}
-* Finnish: {{t-|fi|sataa kaatamalla}}, {{t-|fi|sataa äkäisiä ämmiä äkeet selässä}}, {{t-|fi|sataa kuin saavista kaataen}}, {{t|fi|kuin esterin perseestä}}
-* French: {{t+|fr|pleuvoir des cordes}}, {{t+|fr|pleuvoir à verse}}, {{t+|fr|pleuvoir des hallebardes}}, {{t+|fr|pleuvoir comme vache qui pisse}}, {{qualifier|Québec}} {{t+|fr|pleuvoir à boire debout}}, {{qualifier|Belgium}} {{t+|fr|dracher}}
-* German: {{t+|de|Bindfäden regnen}}, {{t+|de|in Strömen regnen}}, {{t-|de|aus allen Kannen gießen}}, {{t-|de|aus allen Kannen schütten}}, {{t|de|wie aus Eimern schütten}}
-* Greek: {{t+|el|βρέχει καρεκλοπόδαρα}},  {{t|el|ρίχνει καρεκλοπόδαρα}},  {{t|el|βρέχει με το τουλούμι}}
-* Hungarian: {{t|hu|zuhog, mintha dézsából öntenék}}
-{{trans-mid}}
-* Icelandic: {{t|is|vera mígandi rigning}}, {{t|is|rigna eldi og brennisteini}}
-* Interlingua: [[pluver]] [[torrentialmente]]
-* Italian: {{t-|it|piovere a catinelle}}
-* Japanese: {{t|ja|土砂降りになる|tr=どしゃぶりになる, doshaburi-ni naru}}
-* Norwegian: {{t+|no|høljeregne}}
-* Polish: {{t-|pl|leje jak z cebra}}
-* Portuguese: {{qualifier|Portugal}} {{t+|pt|chover a cântaros}}, {{qualifier|Portugal}} {{t-|pt|chover a potes}}, [[chover]] [[torrencialmente]], {{qualifier|Brazil}} [[cair]] [[um]] [[toró]]
-* Romanian: {{t-|ro|a ploua cu găleata}}
-* Russian: {{t-|ru|лить как из ведра|tr=lit’ kak iz v'edrá}}
-* Spanish: {{t-|es|llover a cántaros}}
-* Swedish: {{t+|sv|ösregna}}, {{t+|sv|spöregna}}, {{t-|sv|stå som spön i backen}}
-* Turkish: {{t|tr|bardaktan boşalırcasına yağmak}}
-* Vietnamese: [[trời]] [[mưa]] [[như]] [[trút]]
-* Welsh: {{t|cy|bwrw hen wragedd â ffyn}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[rain dogs and cats#English|rain dogs and cats]]
-
-[[cy:rain cats and dogs]]
-[[de:rain cats and dogs]]
-[[et:rain cats and dogs]]
-[[es:rain cats and dogs]]
-[[fr:rain cats and dogs]]
-[[gl:rain cats and dogs]]
-[[ja:rain cats and dogs]]
-[[no:rain cats and dogs]]
-[[pl:rain cats and dogs]]
-[[pt:rain cats and dogs]]
-[[ru:rain cats and dogs]]
-[[sv:rain cats and dogs]]
-[[zh:rain cats and dogs]]
+rain cats and dogs:
+
+<h3>Etymology</h3>
+Unknown. Perhaps from {{etyl|grc|en}} {{term|κατά|against|lang=grc|tr=cata}} and {{term|δόξα|opinion, expectation|tr=doxa|lang=grc}}, but see Etymology in Citations
+<h3>Verb</h3>
+{{en-verb|rains cats and dogs|raining cats and dogs|rained cats and dogs|head=rain cats and dogs}}
+<ol><li> {idiomatic} To rain very heavily.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|to rain very heavily}} bucket, bucket down, chuck it down, rain buckets, rain pitchforks, pelt, piss down {{qualifier|coarse slang}}, pour, stream, teem</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> rain dogs and cats</li>
+</ul>
+cy:rain cats and dogsde:rain cats and dogset:rain cats and dogses:rain cats and dogsfr:rain cats and dogsgl:rain cats and dogsja:rain cats and dogsno:rain cats and dogspl:rain cats and dogspt:rain cats and dogsru:rain cats and dogssv:rain cats and dogszh:rain cats and dogs
 ***raven***
-raven: 
-{{wikipedia}}
-[[Image:The Raven.jpg|thumb|right|A raven (bird).]]
-
-===Pronunciation===
-* {{enPR|rāʹvən}}, {{IPA|/ˈreɪvən/}}, {{X-SAMPA|/"reIv@n/}}
-* {{audio|en-us-raven.ogg|Audio (US)}}
-* {{rhymes|eɪvən}}
-
-===Etymology 1===
-{{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|title=|ḱer||ḱor}} (compare {{etyl|la|-}} {{term|crepare|lang=la}} ‘to creak, crack’, {{etyl|sa|-}} {{term||kṛ́patē}} ‘he laments, implores’).
-
-====Noun====
-{{en-noun}}
-
-# A common name for several, generally large and lustrous black species of [[bird]]s in the genus ''[[Corvus]]'', especially the [[common raven]], ''Corvus corax''.
-
-=====Translations=====
-{{trans-top|bird}}
-* Albanian: {{t-|sq|korb|m|xs=Albanian}}
-* Arabic: {{t|ar|غراب|m|tr=ghuraab}}, {{t-|ar|زاغ|m|tr=zaagh}}
-* Armenian: {{t+|hy|ագռավ|tr=agṙav}}
-* Basque: [[erroi]]
-* Belarusian: [[крумкач]]
-* Bosnian: {{t-|bs|gavran|m}}
-* Breton: [[bran]] {{m}}
-* Bulgarian: {{t+|bg|гарван|tr=garvan}}
-* Catalan: [[corb]] {{m}}
-* Chechen: {{tø|ce|хьаргIа}}
-* Chinese:
-*: Mandarin: {{zh-tsp|烏鴉|乌鸦|wūyā}}, {{zh-tsp|渡鴉|渡鸦|dùyā}}, {{zh-tsp|烏黑|乌黑|wūhēi}}
-* Croatian: {{t+|hr|gavran}}
-* Czech: {{t+|cs|krkavec}}
-* Danish: {{t-|da|ravn}}
-* Dutch: {{t+|nl|raaf|m}}
-* Esperanto: {{t+|eo|korvo|xs=Esperanto}}, {{t+|eo|korako|xs=Esperanto}}
-* Estonian: {{t-|et|kaaren}}, {{t-|et|ronk}}, {{t-|et|korp}}
-* Ewe: [[akpaviã]]
-* Faroese: {{t+|fo|ravnur|xs=Faroese}}, {{t|fo|krunkur|xs=Faroese}}, {{t|fo|gorpur |xs=Faroese}}
-* Finnish: {{t+|fi|korppi}}
-* French: {{t+|fr|corbeau|m}}
-* Friulian: [[corvat]]
-* Galician: [[corvo carnazal]]
-* Georgian: {{t|ka|ყორანი|tr=qorani|sc=Geor}}
-* German: {{t+|de|Rabe|m}}, {{t+|de|Kolkrabe|m}}
-* Gothic: {{tø|got|𐌷𐍂𐌰𐌱𐌽𐍃|m|tr=hrabns|sc=Goth}}
-* Greek:
-*: Ancient: {{tø|grc|κόραξ|tr=koraks|sc=polytonic}}
-*: Modern: {{t+|el|κόρακας|m|tr=kórakas}}, {{t+|el|κοράκι|n|tr=koráki}}
-* Hebrew: {{t-|he|עורב}}
-* Hungarian: {{t+|hu|holló}}
-* Icelandic: {{t+|is|hrafn}}, {{t-|is|krummi}}
-* Indonesian: [[gagak besar]]
-* Irish: {{t-|ga|fiach|m|xs=Irish}}, {{t|ga|fiach dubh|m|xs=Irish}}
-*: Old Irish: {{tø|sga|bran|m|xs=Old Irish}}, {{tø|sga|fiach|m|alt=fïach|xs=Old Irish}}, {{tø|sga|trogan|m|xs=Old Irish}}
-* Italian: {{t-|it|corvo|m}}
-* Japanese: [[渡り鴉]] ([[ワタリガラス]], watari-garasu), [[大鴉]] ([[オオガラス]], oo-garasu)
-* Kannada: {{t-|kn|ಕಾರ್ಗೊರಲಕಾಗೆ|sc=Knda|xs=Kannada}}
-* Korean: {{t|ko|큰까마귀|sc=Kore}}
-* Kurdish:
-*: Sorani: {{ku-Arab|[[داڵ]]}}
-* Kyrgyz: {{t+|ky|карга|tr=karga|sc=Cyrl|xs=Kyrgyz}}
-* Ladin: [[corf]]
-{{trans-mid}}
-* Latgalian: {{tø|ltg|krauklis|m}}
-* Latin: {{t-|la|corvus|m}}
-* Latvian: [[krauklis]]
-* Lithuanian: {{t+|lt|kranklys|m|xs=Lithuanian}}
-* Low German: {{t|nds|Raav|f}}, {{t|nds|Roov|f}}
-* Low Saxon: [[Raav’]] {{m}}
-* Lower Sorbian: [[wron]], [[rapak]]
-* Luxembourgish: {{t|lb|Ramm|f}}
-* Macedonian: [[гавран]] (gavran)
-* Maltese: {{t-|mt|għarab|xs=Maltese}}
-* Manx: {{t-|gv|feeagh|m|xs=Manx}}, {{t|gv|feeagh mooar|m|xs=Manx}}
-* Marathi: [[डोमेकाव्ळा]] (dome-kāvllā)
-* Montagnais: {{tø|moe|kakatshu}}
-* Navajo: {{tø|nv|zhį́ʼii}}
-* Norwegian: {{t+|no|ravn}}
-* Occitan: [[còrb]]
-* Old Church Slavonic: {{tø|cu|вранъ|m|tr=vranŭ|sc=Cyrs}}
-* Persian: {{t-|fa|زاغ|tr=zâq|xs=Persian}}
-* Polish: {{t+|pl|kruk|m}}
-* Portuguese: {{t+|pt|corvo|m}}
-* Romani: [[kakarachi]] {{m}}, [[kakarachka]] {{f}}
-* Romanian: {{t+|ro|corb}}
-* Romansch: {{t|rm|corv grond|xs=Romansch}}, {{t|rm|corv|m}}
-* Russian: {{t+|ru|ворон|m|tr=vóron}}
-* Sami: [[gáranas]], [[bulddogas]], [[garjá]]
-* Sardinian: [[corbu]], [[crobu]] {{m}}
-* Scots: {{tø|sco|corbie}}
-* Scottish Gaelic: {{t-|gd|fitheach|m|xs=Scottish Gaelic}}
-* Serbian: {{t-|sr|гавран|tr=gavran|sc=Cyrl}}
-* Slovak: {{t-|sk|havran|m}}, {{t-|sk|krkavec|m}}
-* Slovene: [[krokar]] {{m}}, [[vran]] {{m}} (poetically)
-* Spanish: {{t+|es|cuervo|m}}
-* Swedish: {{t+|sv|korp}}
-* Turkish: {{t+|tr|kuzgun}}
-* Ukrainian: {{t-|uk|ворон|tr=voron|xs=Ukrainian}}, {{t-|uk|крук|tr=kruk|xs=Ukrainian}}
-* Upper Sorbian: [[rapak]]
-* Vilamovian: {{tø|wym|row}}
-* Volapük: {{qualifier|♂♀}} {{t+|vo|rab}}, {{qualifier|♂}} {{t-|vo|hirab}}, {{qualifier|♀}} {{t-|vo|jirab}}, {{qualifier|♂♀ offspring}} {{t-|vo|rabül}}, {{qualifier|♂ offspring}} {{t-|vo|hirabül}}, {{qualifier|♀ offspring}} {{t-|vo|jirabül}}
-* Welsh: {{t-|cy|cigfran|xs=Welsh}}
-* West Frisian: {{t-|fy|raven|c|xs=West Frisian}}
-{{trans-bottom}}
-
-====Adjective====
+raven:
+{wikipedia}A raven (bird).
+<h3>Pronunciation</h3>
+<ul><li> {{enPR|rāʹvən}}, {{IPA|/ˈreɪvən/}}, {{X-SAMPA|/"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’).
+<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>
+</ol>
+
+<h4>Adjective</h4>
 {{en-adj|-}}
-
-# Of the color of the raven; [[jet-black]]
-#: ''raven curls''
-#: ''raven darkness''
-#: ''She was a tall, sophisticated, raven-haired beauty.''
-
-=====Derived terms=====
-* [[raven-black]]
-* [[raven-haired]]
-* [[raven standard]]
-
-=====Translations=====
-{{trans-top|of the color of the raven; jet-black}}
-* Dutch: {{t|nl|ravezwart}}
-* French: {{t-|fr|noir comme un corbeau}}
-* German: {{t|de|rabenschwarz}}
-* Greek: {{t|el|κορακίσιος|tr=korakísios}}
-{{trans-mid}}
-* Italian: {{t-|it|corvino}}
-* Norwegian: {{t|no|ravnsort}}, {{t|no|ravnsvart}}
-* Swedish: {{t|sv|korpsvart}}, {{t|sv|ramsvart}}
-* Volapük: {{t-|vo|rabablägik}}
-{{trans-bottom}}
-
-===Etymology 2===
-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}}
-
-====Pronunciation====
-* {{enPR|răvʹən}}, {{IPA|/ˈrævən/}}, {{X-SAMPA|/"r{v@n/}}
-* {{rhymes|ævən}}
-
-====Noun====
-{{en-noun}}
-
-# [[rapine|Rapine]]; [[rapacity]].
-# [[prey|Prey]]; [[plunder]]; food obtained by [[violence]].
-
-=====Translations=====
-{{trans-top|rapine; rapacity}}
-* Portuguese: {{t|pt|rapina|f}}, {{t|pt|voraz|m|f}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|prey; plunder; food obtained by violence}}
-{{trans-mid}}
-{{trans-bottom}}
-
-====Verb====
-{{en-verb}}
-
-# {{archaic}} To [[obtain]] or [[seize]] by [[violence]].
-# To [[devour]] with great [[eagerness]].
-# To [[prey]] with [[rapacity]]; to be [[greedy]]; to show [[rapacity]].
-#: ''The raven is both a [[scavenger]], who '''ravens''' a dead animal almost like a vulture, and a [[bird of prey]], who commonly '''ravens''' to catch a rodent.''
-
-=====Related terms=====
-* [[ravener]]
-* [[ravening]]
-* [[ravenous]], [[ravenously]], [[ravenousness]]
-
-===See also===
-* [[Appendix:English collective nouns]]
-
-===External links===
-* {{pedia}}
-* {{pedia|Corvus (genus)}}
-
-===References===
-* {{R:Webster NCD 1967}}
-* {{R:Online Etymology Dictionary}} [http://www.etymonline.com/index.php?search=raven&searchmode=none]
-
-===Anagrams===
-* [[Verna#English|Verna]]
-
-[[Category:English adjectives ending in -en]]
-[[Category:English heteronyms]]
-[[Category:en:Birds]]
-
-----
-
-
+<ol><li> Of the color of the raven; jet-black</li>
+<ul><li> <em>raven curls</em></li>
+<li> <em>raven darkness</em></li>
+<li> <em>She was a tall, sophisticated, raven-haired beauty.</em></li>
+</ul>
+</ol>
+
+<h5>Derived terms</h5>
+<ul><li> raven-black</li>
+<li> raven-haired</li>
+<li> raven standard</li>
+</ul>
+
+<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>
+
+<h4>Noun</h4>
+{en-noun}
+<ol><li> Rapine; rapacity.</li>
+<li> Prey; plunder; food obtained by violence.</li>
+</ol>
+
+<h4>Verb</h4>
+{en-verb}
+<ol><li> {archaic} To obtain or seize by violence.</li>
+<li> To devour with great eagerness.</li>
+<li> To prey with rapacity; to be greedy; to show rapacity.</li>
+<ul><li> <em>The raven is both a scavenger, who <b>ravens</b> a dead animal almost like a vulture, and a bird of prey, who commonly <b>ravens</b> to catch a rodent.</em></li>
+</ul>
+</ol>
+
+<h5>Related terms</h5>
+<ul><li> ravener</li>
+<li> ravening</li>
+<li> ravenous, ravenously, ravenousness</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> Appendix:English collective nouns</li>
+</ul>
+
+<h3>External links</h3>
+<ul><li> {pedia}</li>
+<li> {{pedia|Corvus (genus)}}</li>
+</ul>
+
+<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>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> Verna</li>
+</ul>
+Category:English adjectives ending in -enCategory:English heteronymsCategory:en:Birds----
 ===salt===
-grain of salt: 
-{{wikipedia}}
-===Etymology===
-From Latin {{term|cum grano salis}}, literally ''with a grain of salt'', figuratively ''with a bit of common sense''.
-
-===Noun===
-{{en-noun|sg=[[grain]] of [[salt]]|-}}
-
-# {{idiomatic}} A bit of [[common sense]] and [[skepticism]].  Generally used in some form of ''to take with a grain of salt.''
-#: ''I'd take anything I read in that paper with a '''grain of salt'''.''
-
-====Synonyms====
-* [[pinch of salt]]
-
-====Translations====
-{{trans-top|with common sense and skepticism}}
-* {{trreq|Catalan}}
-* Chinese:
-*: Mandarin: {{qualifier|to take with a grain of salt; not to be believed literally}} {{t|cmn|不可全信|tr=bùkěquánxìn|sc=Hani}}
-* Czech: {{t|cs|rezerva|f}}
-* Dutch: [[korrel]]tje [[zout]] (iets met een korreltje zout nemen)
-* Finnish: {{t|fi|varauksin}}, {{t|fi|varauksellisesti}}, {{t|fi|varauksella}},  {{t-|fi|varovasti}}
-{{trans-mid}}
-* {{trreq|Georgian}}
-* German: mit einem Körnchen Salz
-* Portuguese: Com um grão de sal (literal), com reservas, não confiar muito.
-* Russian: {{qualifier|adverb}} {{t|ru|скептически|tr=skeptíčeski}}, {{qualifier|adverb}} {{t|ru|недоверчиво|tr=nedovérčivo}}
-* Spanish: {{t-|es|reservas|f|p}}, {{t-|es|dudas|f|p}}
-* Swedish: {{t|sv|en nypa salt}}
-{{trans-bottom}}
-
-====See also====
-* [[face value]]
-
-[[et:grain of salt]]
-[[id:grain of salt]]
+grain of salt:
+{wikipedia}
+<h3>Etymology</h3>
+From Latin {{term|cum grano salis}}, literally <em>with a grain of salt</em>, figuratively <em>with a bit of common sense</em>.
+<h3>Noun</h3>
+{{en-noun|-|sg=grain of salt}}
+<ol><li> {idiomatic} A bit of common sense and skepticism.  Generally used in some form of <em>to take with a grain of salt.</em></li>
+<ul><li> <em>I'd take anything I read in that paper with a <b>grain of salt</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> pinch of salt</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> face value</li>
+</ul>
+et:grain of saltid:grain of salt
 ***Saturday***
-Saturday: 
-
-===Etymology===
-{{etyl|ang}} {{term|sæterndæg|Sæternesdæg|day of Saturn}}, from {{term|Sætern||Saturn}}, from {{etyl|la}} {{term|Saturnus||the god of agriculture}}, possibly from Etruscan, + {{etyl|ang}} {{term|dæg||day}}; a translation of {{etyl|la}} {{term|dies Saturni}}
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈsætədeɪ/}}, {{X-SAMPA|/"s{t@deI/}} ''or'' {{IPA|/ˈsætədi/}}, {{X-SAMPA|/"s{t@di/}}
-* {{a|US}} {{enPR|săʹtər-dā}}, {{IPA|/ˈsætɚdeɪ/}}, {{X-SAMPA|/"s{t@`deI/}} ''or'' {{enPR|săʹtər-di}}, {{IPA|/ˈsætɚdi/}}, {{X-SAMPA|/"s{t@`di/}}
-* {{audio|en-us-Saturday.ogg|Audio (US)}}
-* {{audio|En-uk-Saturday.ogg|Audio (UK)}}
-
-===Noun===
+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}}
+<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>
+<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}}
-
-# 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]].
-<!--probably just the attributive form of the noun: #An appointment, person, or feeling associated with this day of the week.-->
-
-====Derived terms====
-{{top2}}
-* [[Black Saturday]]
-* [[Dynamite Saturday]]
-* [[Easter Saturday]]
-* [[Egg Saturday]]
-* [[first Saturday devotions]]
-* [[Holy Saturday]]
-* [[Hospital Saturday]]
-* [[Little Saturday]]
-* [[Pink Saturday]]
-* [[Sat]], [[Sat.]]
-{{mid2}}
-* [[Saturday closing]]
-* [[Saturdaying]]
-* [[Saturdayite]]
-* [[Saturday-night]]
-* [[Saturday Night Live]]
-* [[Saturday penny]]
-* [[Saturday pops]]
-* [[Saturdays]]<!--adverb-->
-* [[Saturday-sabbatharian]]
-* [[Saturday-to-Monday]]
-* [[w:Third Saturday in October|Third Saturday in October]]
-{{bottom}}
-
-====Translations====
-{{trans-top|day of the week}}
-* Abkhaz: {{t|ab|асабш|tr=asabš|sc=Cyrl}}
-* Afrikaans: {{t|af|Saterdag|xs=Afrikaans}}
-* Alabama: [[nihtahollosi]]
-* Albanian: {{t|sq|e shtunë}}
-* Alutiiq: {{tø|ems|Maqineq}}
-* American Sign Language: {{tø|ase|S@Side-PalmBack CirclesHoriz|xs=American Sign Language}}
-* Amharic: [[ቅዳሜ]] (kidami)
-* Arabic: {{t|ar|السبت|m|tr=al-sábt|sc=Arab}}, {{t|ar|يوم السبت|m|tr=yawm al-sábt|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|السبت|m|tr=el-sabt|sc=Arab}}
-* Armenian: {{t+|hy|շաբաթ|tr=šabat'}}
-*: Old Armenian: {{tø|xcl|շաբաթ|tr=šabatʿ|sc=Armn}}
-* Avar: {{t-|av|щамат|sc=Cyrl|xs=Avar}}
-* Azeri: {{t|az|şənbə}}
-* Bashkir: {{tø|ba|шәмбе|tr=şembi|sc=Cyrl}}
-* Basque: [[larunbat]]
-* Belarusian: {{t-|be|субота|f|tr=subóta}}
-* Bengali: {{t|bn|শনিবার|tr=shônibar|sc=Beng}}
-* Blackfoot: [[to'tohtáátoyiiksistsiko]]
-* Breton: [[Sadorn]] {{m}}, [[disadorn]] ''adverb''
-* Bulgarian: {{t+|bg|събота|f|tr=săbóta}}
-* Burmese: {{t-|my|စနေ|tr=săne|sc=Mymr|xs=Burmese}}
-* Catalan: {{t+|ca|dissabte|m}}
-* Central Atlas Tamazight: {{tø|tzm|ⵙⴰⴷ|tr=sad}}
-* Chechen: {{tø|ce|шот|tr=šot}}
-* Cherokee: [[ᎤᎾᏙᏓᏈᏕᎾ]] (unadodawidena)
-* Chichewa: {{tø|ny|loweluka}}
-* Chinese:
-*: Mandarin: {{t|zh|星期六|tr=xīngqīliù|sc=Hani}}, {{t|zh|禮拜六|sc=Hani}}, {{t|zh|礼拜六|tr=lǐbàiliù|sc=Hani}}, {{t|zh|周六|tr=zhōuliù|sc=Hani}}
-* Chuvash: {{tø|cv|шăматкун|tr=şӓmatkun|sc=Cyrl}}
-* Corsican: [[sàbatu]]
-* Czech: {{t+|cs|sobota|f}}
-* Dakota: {{tø|dak|Owaŋkayužažapi}}
-* Danish: {{t+|da|lørdag}}
-* Dutch: {{t+|nl|zaterdag|m}}
-* Esperanto: {{t+|eo|sabato|xs=Esperanto}}
-* Estonian: {{t+|et|laupäev}}
-* Faroese: {{t-|fo|leygardagur|m|xs=Faroese}}
-* Fijian: {{t|fj|Vakarauwai}}
-* Finnish: {{t+|fi|lauantai}}
-* French: {{t+|fr|samedi|m}}
-* Georgian: {{t-|ka|შაბათი|tr=šabat'i|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Samstag|m}}, {{t+|de|Sonnabend|m}}, {{t+|de|Sabbat|m}}
-* Greek: {{t|el|Σάββατο|n|tr=Sávvato}}
-* Greenlandic: {{t|kl|arfininngorneq|xs=Greenlandic}}
-* Gujarati: {{t|gu|શનિવાર|m|tr=śanivār|sc=Gujr}}
-* Haitian Creole: {{tø|ht|samdi}}
-* Hawaiian: {{tø|haw|Pōʻaono}}
-* Hebrew: {{t|he|שבת|f|tr=shabát}}
-* Hindi: {{t|hi|शनिवार|m|tr=śanivār|xs=Hindi}}
-* Hungarian: {{t+|hu|szombat}}
-* Icelandic: {{t+|is|laugardagur|m}}
-* Ido: [[saturdio]]
-* Indonesian: {{t|id|hari sabtu}}
-* Interlingua: [[sabbato]]
-* Irish: {{t+|ga|Satharn|m|xs=Irish}}
-* Italian: {{t+|it|sabato|m}}
-* Japanese: {{t|ja|土曜日|tr=どようび, doyōbi|sc=Jpan}}, {{t|ja|土曜|tr=どよう, doyō|sc=Jpan}}
-* Kashubian: [[sobòta]] {{f}}
-* Kazakh: {{t+|kk|сенбі|tr=senbi|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|ថ្ងៃសៅរ៏|tr=tngai sao|sc=Khmr}}
-* Kinyarwanda: [[Kwagatandatu]]
-* Kongo: {{tø|kg|Lumbu kia sabala}}
-* Korean: {{t+|ko|토요일|tr=toyoil|sc=Kore}} ({{t|ko|土曜日|sc=Kore}})
-* Kurdish:
-*: Sorani: {{t+|ku|شه‌مه‌|sc=ku-Arab}}
-* Kyrgyz: {{t|ky|ишемби|tr=işembi|sc=Cyrl}}
-* Lao: {{t+|lo|ວັນເສົາ|tr=wan-sao|sc=Laoo|xs=Lao}}
-* Latgalian: {{t|ltg|sastdīne}} {{f}}
-* Latin: {{t|la|dies Saturni|m|alt=diēs Saturnī}}, {{t|la|Sabbata|n|p}}
-* Latvian: {{t+|lv|sestdiena|xs=Latvian}}
-* Lithuanian: {{t+|lt|šeštadienis|m|xs=Lithuanian}}
-* Livonian: [[pūolpǟva]]
-{{trans-mid}}
-* Lower Sorbian: {{l|dsb|sobota}} {{f}}
-* Luganda: {{tø|lg|Lwamukaaga}}
-* Luxembourgish: {{t|lb|Samschden|m}}, {{t|lb|Samschdeg|m}}
-* Macedonian: {{t+|mk|сабота|f|tr=sábota}}
-* Malay: {{t+|ms|Sabtu|xs=Malay}}
-* Maltese: {{t-|mt|is-Sibt|xs=Maltese}}
-* Maori: [[Hātarei]], [[Rāhoroi]]
-* Mongolian: {{t|mn|бямба|tr=bjamba|sc=Cyrl}}
-* Navajo: {{tø|nv|Yiską́ Damį́įgo}}
-* Neapolitan: [[sàbbato]], [[sàpato]]
-* Norwegian:
-*: [[Bokmål]]: {{t+|no|lørdag}}
-*: [[Nynorsk]]: {{t+|nn|laurdag|xs=Norwegian Nynorsk}}
-* Occitan: [[dissabte]]
-* Ojibwe: [[ishkwaajanokii-giizhigad]], [[giziibiigisaginige-giizhigad]]
-* Old English: {{t-|ang|Sæteresdæg|m|xs=Old English}}, {{t-|ang|Sæterndæg|m|xs=Old English}}, {{t-|ang|Sæternesdæg|m|xs=Old English}}
-* Old Norse: [[laugardagr]] {{m}}
-* Old Turkic: {{tø|otk|şanba}}
-* Ossetian: {{tø|os|сабат|tr=sábat|sc=Cyrl|xs=Ossetian}}
-* Papiamentu: {{tø|pap|diasabra}}
-* Persian: {{t+|fa|شنبه|tr=šanbe|xs=Persian}}
-* Polish: {{t+|pl|sobota|f}}
-* Portuguese: {{t+|pt|sábado|m}}
-* Romani: {{tø|rom|savato}}
-* Romanian: {{t+|ro|sâmbătă|f}}
-* Romansch: {{t|rm|sonda|f}}, {{t|rm|sanda|f}}, {{t|rm|somda|f}}
-* Russian: {{t+|ru|суббота|f|tr=subbóta}}
-* Sami:
-*: Northern: {{tø|se|lávvadat}}
-* Samoan: {{t|sm|Aso To'ona'i}}
-* Scots: {{tø|sco|Seturday}}
-* Scottish Gaelic: {{t-|gd|Disathairne|m|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|субота|f}}
-*: Roman: {{t|sh|subota|f}}
-* Shona: {{t|sn|Chitanhatu}}
-* Sinhalese: {{t|si|සෙනසුරාදා|tr=senasurādā|sc=Sinh}}
-* Skolt Sami: {{tø|sms|sueˊvet}}
-* Slovak: {{t+|sk|sobota|f}}
-* Slovene: {{t+|sl|sobota|f}}
-* Somali: [[Sabti]]
-* Sotho: [[Moqebele]]
-* Spanish: {{t+|es|sábado|m}}
-* Swahili: {{t-|sw|Jumamosi|xs=Swahili}}
-* Swati: {{t|ss|úm-gcibélo}}
-* Swedish: {{t+|sv|lördag|c}}
-* Tagalog: {{t|tl|Sabado}}, {{t|tl|sabado}}
-* Tahitian: {{tø|ty|mahama maa}}
-* Tajik: {{t|tg|шанбе|tr=šanbe|sc=Cyrl}}
-* Taos: [[sóbolu]]
-* Tarantino: {{tø|roa-tar|sàbbete}}
-* Tatar: {{t+|tt|шимбә|tr=şimbä|sc=Cyrl|xs=Tatar}}
-* Thai: {{t|th|วันเสาร์|tr=wan sáo}}
-* Tok Pisin: {{t|tpi|Sarere}}
-* Tongan: {{t|to|Tokonaki}}
-* Tswana: {{t|tn|Matlhatso}}
-* Turkish: {{t+|tr|cumartesi}}
-* Turkmen: {{t|tk|şenbe}}, {{t|tk|ruhgün}}
-* Ukrainian: {{t+|uk|субота|f|tr=subóta|xs=Ukrainian}}
-* Upper Sorbian: {{l|hsb|sobota}} {{f}}
-* Urdu: {{t|ur|ہفتہ|tr=hafta|sc=ur-Arab}}
-* Uyghur: {{t|ug|شەنبە|sc=ug-Arab}}
-* Uzbek: {{t|uz|shanba}}
-* Venetian: {{tø|vec|sabo|m}}
-* Vietnamese: {{t+|vi|thứ bảy|xs=Vietnamese}}
-* Volapük: {{t|vo|zädel}}, {{t|vo|velüdel}}
-* Welsh: {{t+|cy|dydd Sadwrn|m|xs=Welsh}}
-* West Frisian: [[sneon]], [[saterdei]]
-* Wolof: [[Gaawu]]
-* Xhosa: [[uMgqibelo]]
-* Yiddish: {{t|yi|שבת|m|tr=shábes}}
-* Zulu: [[ngoMgqibelo]]
-{{trans-bottom}}
-
-{{trans-top|Translations to check}}
-* Tibetan: [[གཟའ་སྤེན་པ་]]
-{{trans-mid}}
-{{trans-bottom}}
-
-===Adverb===
+<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>
+
+<h4>Derived terms</h4>
+{top2}
+<ul><li> Black Saturday</li>
+<li> Dynamite Saturday</li>
+<li> Easter Saturday</li>
+<li> Egg Saturday</li>
+<li> first Saturday devotions</li>
+<li> Holy Saturday</li>
+<li> Hospital Saturday</li>
+<li> Little Saturday</li>
+<li> Pink Saturday</li>
+<li> Sat, Sat.</li>
+</ul>
+{mid2}
+<ul><li> Saturday closing</li>
+<li> Saturdaying</li>
+<li> Saturdayite</li>
+<li> Saturday-night</li>
+<li> Saturday Night Live</li>
+<li> Saturday penny</li>
+<li> Saturday pops</li>
+<li> Saturdays</li>
+<li> Saturday-sabbatharian</li>
+<li> Saturday-to-Monday</li>
+<li> Third Saturday in October</li>
+</ul>
+{bottom}
+<h3>Adverb</h3>
 {{en-adv|-}}
+<ol><li> on Saturday</li>
+</ol>
 
-# on Saturday
-
-====Translations====
-{{trans-top|on Saturday}}
-* American Sign Language: {{tø|ase|S@Side-PalmBack CirclesHoriz|xs=American Sign Language}}
-* Dutch: {{t|nl|op zaterdag}}
-* Irish: {{t+|ga|Dé Sathairn|xs=Irish}}
-* Latvian: {{t|lv|sestdien}}
-* Old Irish: {{tø|sga|día Sathairn}}
-{{trans-mid}}
-* Romanian: {{t|ro|sâmbătă}}, {{t|ro|sâmbăta}}
-* Romansch: {{t|rm|sonda}}
-* Turkish: {{t|tr|cumartesi}}
-* Volapük: {{t|vo|zädelo}}, {{t|vo|velüdelo}}
-{{trans-bottom}}
-
-===See also===
-* {{list|en|days of the week}}
-
-[[af:Saturday]]
-[[ar:Saturday]]
-[[ast:Saturday]]
-[[az:Saturday]]
-[[cs:Saturday]]
-[[cy:Saturday]]
-[[da:Saturday]]
-[[de:Saturday]]
-[[et:Saturday]]
-[[el:Saturday]]
-[[es:Saturday]]
-[[eo:Saturday]]
-[[eu:Saturday]]
-[[fa:Saturday]]
-[[fr:Saturday]]
-[[fy:Saturday]]
-[[ga:Saturday]]
-[[gl:Saturday]]
-[[ko:Saturday]]
-[[hy:Saturday]]
-[[hr:Saturday]]
-[[io:Saturday]]
-[[id:Saturday]]
-[[it:Saturday]]
-[[kl:Saturday]]
-[[ka:Saturday]]
-[[kk:Saturday]]
-[[ku:Saturday]]
-[[lo:Saturday]]
-[[la:Saturday]]
-[[lv:Saturday]]
-[[lt:Saturday]]
-[[hu:Saturday]]
-[[mg:Saturday]]
-[[ml:Saturday]]
-[[mn:Saturday]]
-[[my:Saturday]]
-[[nl:Saturday]]
-[[ja:Saturday]]
-[[no:Saturday]]
-[[nn:Saturday]]
-[[oc:Saturday]]
-[[km:Saturday]]
-[[pl:Saturday]]
-[[pt:Saturday]]
-[[ro:Saturday]]
-[[ru:Saturday]]
-[[simple:Saturday]]
-[[sk:Saturday]]
-[[sr:Saturday]]
-[[fi:Saturday]]
-[[sv:Saturday]]
-[[ta:Saturday]]
-[[tg:Saturday]]
-[[tr:Saturday]]
-[[uk:Saturday]]
-[[vi:Saturday]]
-[[vo:Saturday]]
-[[zh:Saturday]]
+<h3>See also</h3>
+<ul><li> {{list|en|days of the week}}</li>
+</ul>
+af:Saturdayar:Saturdayast:Saturdayaz:Saturdaycs:Saturdaycy:Saturdayda:Saturdayde:Saturdayet:Saturdayel:Saturdayes:Saturdayeo:Saturdayeu:Saturdayfa:Saturdayfr:Saturdayfy:Saturdayga:Saturdaygl:Saturdayko:Saturdayhy:Saturdayhr:Saturdayio:Saturdayid:Saturdayit:Saturdaykl:Saturdayka:Saturdaykk:Saturdayku:Saturdaylo:Saturdayla:Saturdaylv:Saturdaylt:Saturdayhu:Saturdaymg:Saturdayml:Saturdaymn:Saturdaymy:Saturdaynl:Saturdayja:Saturdayno:Saturdaynn:Saturdayoc:Saturdaykm:Saturdaypl:Saturdaypt:Saturdayro:Saturdayru:Saturdaysimple:Saturdaysk:Saturdaysr:Saturdayfi:Saturdaysv:Saturdayta:Saturdaytg:Saturdaytr:Saturdayuk:Saturdayvi:Saturdayvo:Saturdayzh:Saturday
 ***semantics***
-semantics: 
-{{wikipedia}}
-
-===Pronunciation===
-* {{IPA|/sɪˈmæntɪks/}}
+semantics:
+{wikipedia}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/sɪˈmæntɪks/}}</li>
+</ul>
 
-===Noun===
+<h3>Noun</h3>
 {{en-noun|-}}
-
-# {{linguistics}} A branch of [[linguistics]] studying the [[meaning]] of words.
-#: '''''Semantics''' is a foundation of lexicography.''
-# The study of the relationship between words and their meanings.
-#* '''2006''', Patrick Blackburn · Johan Bos · Kristina Striegnitz, ''[http://www.learnprolognow.org/lpnpage.php?pagetype=html&pageid=lpn-htmlse32 Learn Prolog Now!]'', &sect;8.1
-#*: ''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>''
-# The individual meanings of words, as opposed to the overall meaning of a passage.
-#: ''The '''semantics''' of the terms used are debatable.''
-#: ''The '''semantics''' of a single preposition is a dissertation in itself.''
-
-====Derived terms====
-* [[algebraic semantics]]
-* [[axiomatic semantics]]
-* [[computational semantics]]
-* [[denotational semantics]]
-* [[formal semantics]]
-* [[lexical semantics]]
-* [[mathematical semantics]]
-* [[operational semantics]]
-* [[statistical semantics]]
-
-====Related terms====
-* [[seme]]
-* [[sememe]]
-* [[semantic]]
-* [[semasiology]]
-* [[sematic]]
-* [[sematology]]
-* [[semiotic]]
-* [[semiotics]]
-
-====Translations====
-{{trans-top|science of the meaning of words}}
-* Afrikaans: {{t|af|semantiek}}
-* Albanian: {{t|sq|semantikë|f}}
-* Arabic: {{t|ar|علم المعاني|m|sc=Arab}}
-* Catalan: {{t|ca|semàntica|f}}
-* Chinese:
-*: Mandarin: {{t|zh|语义学|tr=yǔyìxué|sc=Hani}}
-* Croatian: {{t-|hr|semantika|f}}
-* Czech: {{t-|cs|sémantika|f}}
-* Danish: {{t|da|semantik|c}}
-* Dutch: {{t|nl|semantiek|f}}
-* Finnish: {{t-|fi|semantiikka}}, {{t-|fi|merkitysoppi}}
-* French: {{t|fr|sémantique|f}}
-* Hungarian: {{t|hu|szemantika}}
-{{trans-mid}}
-* Indonesian: {{t|id|semantik}}
-* Japanese: {{Jpan|[[意味論]]}} ({{Jpan|[[いみろん]]}}, imiron)
-* Korean: {{t|ko|의미론|tr=uimilon|sc=Kore}}
-* Kurdish:
-*: Kurmanji: {{t|kmr|watenasî|f}}
-* Norwegian: {{t+|no|semantikk|m}}
-* Persian: {{t|fa|علم معانی|sc=fa-Arab}}, {{t|fa|معنی‌شناسی|sc=fa-Arab}}
-* Polish: {{t+|pl|semantyka|f}}
-* Russian: {{t|ru|семантика|f|sc=Cyrl|tr=semántika}}
-* Slovene: {{t+|sl|pomenoslovje|n}}
-* Spanish: {{t+|es|semántica|f}}
-* Tagalog: {{t|tl|semantika}}
-* Vietnamese: {{t|vi|ngữ nghĩa học}}
-{{trans-bottom}}
-
-{{trans-top|study of the relationship between words and their meanings}}
-* Croatian: {{t-|hr|semantika|f}}
-* Danish: {{t|da|semantik|c}}, {{t|da|betydningslære|c}}
-* Finnish: {{t-|fi|semantiikka}}, {{t-|fi|merkitysoppi}}
-{{trans-mid}}
-* Norwegian: {{t+|no|semantikk|m}}
-* Russian: {{t|ru|семантика|f|sc=Cyrl|tr=semántika}}
-{{trans-bottom}}
-
-{{trans-top|individual meanings of words}}
-* Croatian: {{t-|hr|semantika|f}}
-* Danish: {{t|da|semantik|c}}
-* Finnish: {{t-|fi|semantiikka}}
-{{trans-mid}}
-* Norwegian: {{t+|no|semantikk|m}}
-* Russian: {{t|ru|семантика|f|sc=Cyrl|tr=semántika}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|nl}}: [[semantiek]] {{f}}
-* {{ttbc|de}}: [[Semantik]] {{f}}
-* {{ttbc|ia}}: [[semantica]]
-* {{ttbc|it}}: [[Semantica]] {{f}}
-* {{ttbc|lt}}: [[semantika]] {{f}}
-* {{ttbc|he}}: [[דקדוק]]
-* {{ttbc|no}}: [[semantikk]] {{c}}
-* {{ttbc|fa}}: [[معنی‌شناسی]] (ma'ni-shenasi)
-* {{ttbc|sv}}: [[semantik]] {{c}}
-{{trans-bottom}}
-
-====See also====
-* [[Appendix:Glossary of semantics]]
-
-====External links====
-<!-- Note: absent in Webster 1913 and Century 1911 -->
-* {{R:OneLook}}
-
-[[Category:en:Philosophy]]
-
-[[et:semantics]]
-[[el:semantics]]
-[[fa:semantics]]
-[[io:semantics]]
-[[id:semantics]]
-[[kn:semantics]]
-[[hu:semantics]]
-[[no:semantics]]
-[[pl:semantics]]
-[[pt:semantics]]
-[[simple:semantics]]
-[[fi:semantics]]
-[[ta:semantics]]
-[[tr:semantics]]
-[[vi:semantics]]
-[[zh:semantics]]
+<ol><li> {linguistics} A branch of linguistics studying the meaning of words.</li>
+<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>
+</ul>
+<li> The individual meanings of words, as opposed to the overall meaning of a passage.</li>
+<ul><li> <em>The <b>semantics</b> of the terms used are debatable.</em></li>
+<li> <em>The <b>semantics</b> of a single preposition is a dissertation in itself.</em></li>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> algebraic semantics</li>
+<li> axiomatic semantics</li>
+<li> computational semantics</li>
+<li> denotational semantics</li>
+<li> formal semantics</li>
+<li> lexical semantics</li>
+<li> mathematical semantics</li>
+<li> operational semantics</li>
+<li> statistical semantics</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> seme</li>
+<li> sememe</li>
+<li> semantic</li>
+<li> semasiology</li>
+<li> sematic</li>
+<li> sematology</li>
+<li> semiotic</li>
+<li> semiotics</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> Appendix:Glossary of semantics</li>
+</ul>
+
+<h4>External links</h4>
+<ul><li> {R:OneLook}</li>
+</ul>
+Category:en:Philosophyet:semanticsel:semanticsfa:semanticsio:semanticsid:semanticskn:semanticshu:semanticsno:semanticspl:semanticspt:semanticssimple:semanticsfi:semanticsta:semanticstr:semanticsvi:semanticszh:semantics
 ***September***
-September: 
-
-===Alternative forms===
-* [[Septembre]] {{qualifier|obsolete}}
-
-===Etymology===
-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.
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/sɛpˈtɛmbə/}}, {{X-SAMPA|/sEp"tEmb@/}}
-* {{a|US}} {{enPR|sĕp-tĕmʹbər}} {{IPA|/sɛpˈtɛmbəɹ/}}, {{X-SAMPA|/sEp"tEmb@r/}}
-* {{audio|en-us-September.ogg|Audio (US)}}
-* {{rhymes|ɛmbə(r)}}
-
-===Proper noun===
+September:
+
+<h3>Alternative forms</h3>
+<ul><li> Septembre {{qualifier|obsolete}}</li>
+</ul>
+
+<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>
+<li> {{audio|en-us-September.ogg|Audio (US)}}</li>
+<li> {{rhymes|ɛmbə(r)}}</li>
+</ul>
+
+<h3>Proper noun</h3>
 {{en-proper noun|s}}
-
-# The ninth [[month]] of the [[Gregorian calendar]], following [[August]] and preceding [[October]]. Abbreviations: '''[[Sep]]''' or '''[[Sep.]]''', '''[[Sept]]''' or '''[[Sept.]]'''
-#: ''Late '''September''' is a beautiful time of year.''
-#: ''This was one of the warmest '''Septembers''' on record.''
-
-====Derived terms====
-{{top3}}
-* [[w:Black September|Black September]]
-* [[endless September]]
-* [[eternal September]]
-* [[Great September]]
-* [[it's always September]]
-* [[May-September romance]]
-* [[mid-September]]
-* [[perpetual September]]
-* [[September 10th]]
-* [[September 11]]
-{{mid3}}
-* [[September call-up]]
-* {{w|September Campaign}}
-* {{w|September Convention}}
-* {{w|September Dossier}}
-* [[Septembered]]
-* [[september elm]]
-* [[september equinox]]
-* [[Septemberer]]
-* {{w|September Group}}
-{{mid3}}
-* [[Septemberish]], [[Septembrish]]
-* [[Septemberism]]
-* {{w|September Massacres}}
-* [[September people]]
-* {{w|September Six}}
-* {{w|Eternal September|September that never ended}}
-* [[September thorn]]
-* [[Septembrian]]
-* [[Septembrist]]
-{{bottom}}
-
-====Related terms====
-* [[septembral]]
-* [[septembrise]], [[septembrize]]
-* [[septembriser]], [[septembrizer]]
-
-====Translations====
-{{trans-top|ninth month of the Gregorian calendar}}
-* Abaza: {{tø|abq|сентябрь}}
-* Abkhaz: {{t|ab|цәыббра|tr=cwəbbra}}
-* Afrikaans: {{t+|af|September|xs=Afrikaans}}
-* Alabama: [[hasiholtina istachákkàali]]
-* Albanian: {{t|sq|shtator|xs=Albanian}}
-* Alutiiq: {{tø|ems|Qakiiyat Iraluat}}
-* Amharic: {{t|am|ሰፕቴምበር|tr=septembär|sc=Ethi|xs=Amharic}}
-* Apache:
-*: Western Apache: {{tø|apw|Binestʼánchoh}}
-* Arabic: {{t|ar|سبتمبر|alt=سبْتمْبر|tr=sibtímbir, sibtámbir, sabtámbar|m}}, {{t|ar|ايلول|alt=أيْلولٌ|tr=’éilūl|m}}
-* Armenian: {{t+|hy|սեպտեմբեր|tr=september}}
-*: Old Armenian: {{tø|xcl|սեպտեմբեր|tr=september|sc=Armn}}
-* Asturian: {{t|ast|septiembre|m}}
-* Azeri: {{t|az|sentyabr|xs=Azeri}}
-* Basque: {{t+|eu|irail|xs=Basque}}
-* Bengali: {{t-|bn|সেপ্টেম্বর|sc=Beng|xs=Bengali}}
-* Bislama: {{t|bi|septemba}}
-* Breton: {{t+|br|Gwengolo|xs=Breton}}, miz Gwengolo
-* Bulgarian: {{t+|bg|септември|m|tr=septémvri}}
-* Burmese: {{t|my|စက်တင်ဘာ|sc=Mymr|tr=settinba}}
-* Catalan: {{t+|ca|setembre|m}}
-* Cherokee: {{t|chr|ᏚᎵᏍᏗ|tr=Dulisdi|sc=Cher}}
-* Chinese:
-*: Mandarin: {{t|cmn|九月|tr=jiǔyuè}}
-* Czech: {{t+|cs|září|n}}
-* Dakota: {{tø|dak|Wiinapciŋwaŋka}}
-* Danish: {{t+|da|september}}
-* Dutch: {{t+|nl|september}}
-* Esperanto: {{t+|eo|septembro|xs=Esperanto}}, {{t-|eo|Septembro|xs=Esperanto}}
-* Ewe: {{t|ee|Anyɔnyɔ}}, {{t|ee|September}}
-* Faroese: {{t|fo|september|m}}, {{t|fo|septembur|m}}
-* Fijian: {{t|fj|Seviteba}}
-* Finnish: {{t+|fi|syyskuu}}
-* French: {{t+|fr|septembre|m}}
-* Galician: {{t|gl|setembro|m}}
-* Georgian: {{t-|ka|სექტემბერი|tr=sek'temberi|sc=Geor|xs=Georgian}}
-* German: {{t+|de|September|m}}, {{t+|de|Scheiding|m}}
-* Gilbertese: {{tø|gil|Tebetembwa|sc=Cyrl}}
-* Greek: {{t+|el|Σεπτέμβριος|m|tr=Septémvrios}}, {{t+|el|Σεπτέμβρης|m|tr=Septémvris}}, {{t|el|Τρυγητής|m|tr=Trygitís}}
-* Greenlandic: {{t+|kl|Septembari|xs=Greenlandic}}
-* Haitian Creole: {{tø|ht|septanm}}
-* Hawaiian: {{tø|haw|Kepakemapa}}
-* Hebrew: {{t|he|ספטמבר|alt=סֶפְּטֶמְבֶּר|tr=septémber}}
-* Hindi: {{t+|hi|सितम्बर|tr=sitambar|xs=Hindi}}
-* Hungarian: {{t+|hu|szeptember}}
-* Icelandic: {{t+|is|september|m}}, {{t-|is|septembermánuður|m}}
-* Ido: {{t+|io|septembro|xs=Ido}}
-* Inari Sami: [[čohčâmáánu]]
-* Indonesian: {{t-|id|september|xs=Indonesian}}
-* Interlingua: {{t|ia|septembre}}
-* Irish: {{t+|ga|Meán Fómhair|m|xs=Irish}}
-* Italian: {{t+|it|settembre|m}}
-* Japanese: {{t+|ja|九月|tr=くがつ, kugatsu}}, {{t+|ja|長月|tr=ながつき, nagatsuki}}
-{{trans-mid}}
-* Kazakh: {{t|kk|қыркүйек|tr=qırküyek|sc=Cyrl}}
-* Khmer: {{t|km|កញ្ញា|tr=kăññā}}
-* Korean: {{t+|ko|구월|tr=guwol|sc=Kore}}
-* Latin: {{t+|la|september}}
-* Latvian: {{t+|lv|septembris|m|xs=Latvian}}
-* Lithuanian: {{t+|lt|rugsėjis|m|xs=Lithuanian}}, {{t|lt|rugsėjo|f}}
-* Livonian: {{t|liv|septembõr}}, {{t|liv|sigžkū}}
-* Low German: {{t|nds|September|m}}, {{t|nds|Septembermaand|m}}
-* Luxembourgish: {{t|lb|September|m}}, {{t|lb|Hierschtmount|m}}
-* Macedonian: {{t+|mk|септември|m|tr=septémvri}}
-* Malagasy: {{t|mg|septambra}}
-* Maltese: {{t-|mt|Settembru|xs=Maltese}}
-* [[Manchu]]: (uyun biya)
-* Maori: {{t|mi|hepetemamahuru}}
-* Montagnais: {{tø|moe|ushkau-pishimᵘ}}
-* Navajo: {{tø|nv|Biniʼantʼą́ą́tsoh}}
-* Neapolitan: {{t|nap|settiembre|m}}, {{t|nap|settembre|m}}
-* Norwegian: {{t+|no|september}}
-* Novial: {{t|nov|septembre}}
-* Occitan: {{t|oc|setembre|m}}
-* Ojibwe: {{t|oj|waatebagaa-giizis}}
-* Old English: {{t-|ang|hærfestmonaþ|m|alt=hærfestmōnaþ|xs=Old English}}, {{t-|ang|haligmonaþ|m|alt=hāliġmōnaþ|xs=Old English}}
-* Oriya: {{t|or|ସେପ୍ଟେମ୍ବର|sc=Orya}}
-* Ossetian: {{tø|os|сентябрь|tr=sentjabr’|sc=Cyrl|xs=Ossetian}}
-* Persian: {{t+|fa|سپتامبر|tr=septâmbr|xs=Persian}}
-* Polish: {{t+|pl|wrzesień|m}}
-* Portuguese: {{t+|pt|setembro|m}}
-* Romanian: {{t+|ro|septembrie}}, {{qualifier|popular}} {{t+|ro|răpciune}}, {{qualifier|popular}} {{t|ro|vincer}}
-* Romansch: {{t|rm|satember|m}}, {{t|rm|settember|m}}
-* Russian: {{t+|ru|сентябрь|m|tr=sentjábr’}}
-* Samoan: {{t|sm|setema}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|септембар|m|sc=Cyrl}}
-*: Roman: {{t|sh|septembar|m}}, {{t|sh|rujan|m}} {{qualifier|Croatia}}
-* Skolt Sami: {{tø|sms|čõhččmään}}
-* Slovak: {{t+|sk|september|m}}
-* Slovene: {{t|sl|septêmber|m}}
-* Sotho: {{t|st|Lwetse|xs=Sotho}}
-* Spanish: {{t+|es|septiembre|m}}
-* Swedish: {{t+|sv|september}}
-* Tahitian: {{tø|ty|tetepa}}
-* Tajik: {{t-|tg|сентябр|tr=sentjabr|sc=Cyrl|xs=Tajik}}
-* Telugu: {{t|te|సెప్టెంబరు|tr=sepTeMbaru}}
-* Thai: {{t|th|กันยายน|tr=gan yaa yohn}}
-* Tok Pisin: {{t|tpi|septemba}}
-* Tongan: {{t|to|sēpitema}}
-* Turkish: {{t+|tr|eylül}}
-* Ukrainian: {{t+|uk|вересень|m|tr=véresen’|xs=Ukrainian}}
-* Volapük: {{t|vo|setul}}
-* Võro: {{t|vro|süküskuu}}
-* Welsh: {{t+|cy|Medi|m|xs=Welsh}}
-* West Frisian: {{t|fy|septimber}}, {{t|fy|hjerstmoanne}}
-* Wolof: {{t|wo|Sattumbar}}
-* Yiddish: {{t-|yi|סעפּטעמבער|m|tr=september|sc=Hebr|xs=Yiddish}}
-{{trans-bottom}}
-
-====See also====
-* [[9/11]]
-* {{list|en|Gregorian calendar months}}
-
+<ol><li> The ninth month of the Gregorian calendar, following August and preceding October. Abbreviations: <b>Sep</b> or <b>Sep.</b>, <b>Sept</b> or <b>Sept.</b></li>
+<ul><li> <em>Late <b>September</b> is a beautiful time of year.</em></li>
+<li> <em>This was one of the warmest <b>Septembers</b> on record.</em></li>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+{top3}
+<ul><li> Black September</li>
+<li> endless September</li>
+<li> eternal September</li>
+<li> Great September</li>
+<li> it's always September</li>
+<li> May-September romance</li>
+<li> mid-September</li>
+<li> perpetual September</li>
+<li> September 10th</li>
+<li> September 11</li>
+</ul>
+{mid3}
+<ul><li> September call-up</li>
+<li> {{w|September Campaign}}</li>
+<li> {{w|September Convention}}</li>
+<li> {{w|September Dossier}}</li>
+<li> Septembered</li>
+<li> september elm</li>
+<li> september equinox</li>
+<li> Septemberer</li>
+<li> {{w|September Group}}</li>
+</ul>
+{mid3}
+<ul><li> Septemberish, Septembrish</li>
+<li> Septemberism</li>
+<li> {{w|September Massacres}}</li>
+<li> September people</li>
+<li> {{w|September Six}}</li>
+<li> {{w|Eternal September|September that never ended}}</li>
+<li> September thorn</li>
+<li> Septembrian</li>
+<li> Septembrist</li>
+</ul>
+{bottom}
+<h4>Related terms</h4>
+<ul><li> septembral</li>
+<li> septembrise, septembrize</li>
+<li> septembriser, septembrizer</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> 9/11</li>
+<li> {{list|en|Gregorian calendar months}}</li>
+</ul>
 ----
-
-
 ***sesquipedalianism***
-sesquipedalianism: 
-
-===Etymology===
-Surface form analyzed as {{suffix|sesquipedalian|ism}}, from {{prefix|sesqui|pedalian|t1=one and a half|t2=of the foot}}.
-
-From {{etyl|la}} {{term|sesquipedalis||a foot and a half long; in [[metaphorical]] use, “of an unnatural length, huge, big”|lang=la}}, from {{term|sesqui||one and a half times as great|lang=la}} + {{term|pedalis||foot|lang=la}}.<ref>From ''A New and Copious Lexicon of the Latin Language'', Compiled Chiefly from the Magnum Totius Latinitatis Lexicon of Facciolati and Forcellini, and the German Works of Scheller and Luenemann'', edited by F. P. Leverett, Wilkins, Carter & Co., Boston, 1849.</ref>
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/sɛz.kwɪ.pəˈdɛl.i.ən.ɪsm̩/}}, {{X-SAMPA|1=/sEz.kwI.p@"dEk.i.@n.Ism=/}}
-* {{a|US}} {{IPA|/ˌʃɛs.kwɪ.pɛˈdɑɫ.i.ɑn.ɪsm̩/}}, {{X-SAMPA|[%SEs.kwI.pE."dA5.i.An.Is'm]}}
-* {{audio|en-us-sesquipedalianism.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun}}
-
-# {{uncountable}} The [[practice]] of using [[long]], sometimes [[obscure]], [[word]]s in [[speech]] or [[writing]].
-#* {{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 '''sesquipedalianism''' ("the rich bouquet of exuded sebaceousness") and swell conversational slang (...)}}
-# {{countable}} A very long word.
-
-====Related terms====
-* [[sequi-]]
-* [[sesquipedal]]
-* [[sesquipedian]]
-* [[sesquipedalian]]
-
-====References====
-<references/>
-[[et:sesquipedalianism]]
+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>
+<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>
+<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> {countable} A very long word.</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> sequi-</li>
+<li> sesquipedal</li>
+<li> sesquipedian</li>
+<li> sesquipedalian</li>
+</ul>
+
+<h4>References</h4>
+<references/>et:sesquipedalianism
 ===sources===
-Wiktionary:Public domain sources: 
-
-The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.
-
-Some scanned fascicles of Oxford English Dictionary under the title ''A New English Dictionary on Historical Principles'' by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.
-
-The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240].
-
-
+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].
 ===speech===
-freedom of speech: 
-{{wikipedia|Freedom of speech}}
-{{wikinews|Category:Free speech}}
-{{commons|Category:Freedom of speech}}
-{{wikiquote|Freedom of speech}}
-
-===Etymology===
-{{rfe}}
-
-===Pronunciation===
-* {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}
-
-===Noun===
-{{en-noun|sg=[[freedom]] [[of]] [[speech]]|-}}
-
-# The [[right]] of [[citizen]]s to [[speak]], or otherwise [[communicate]], without fear of harm or [[prosecution]].
-#* {{quote-book|year=1720|author={{w|John Trenchard (writer)|John Trenchard}} and {{w|Thomas Gordon (writer)|Thomas Gordon}}|title={{w|Cato's Letters}}|publisher=|url=|isbn=|page=Letter Number 15, ''Of Freedom of Speech, That the Same is inseparable from Publick Liberty''|passage=All Ministers ... who were Oppressors, or intended to be Oppressors, have been loud in their Complaints against '''Freedom of Speech''', and the License of the Press; and always restrained, or endeavored to restrain, both.}}
-#* {{quote-book
-|author={{w|Frank Murphy}}
-|title={{w|Thornhill v. Alabama}}
-|publisher={{w|Supreme Court of the United States}}
-|year=1940|passage=The '''freedom of speech''' and of the press, which are secured by the First Amendment against abridgment by the United States, are among the fundamental personal rights and liberties which are secured to all persons by the Fourteenth Amendment against abridgment by a state. The safeguarding of these rights to the ends that men may speak as they think on matters vital to them and that falsehoods may be exposed through the processes of education and discussion is essential to free government. Those who won our independence had confidence in the power of free and fearless reasoning and communication of ideas to discover and spread political and economic truth.|page={{w|Case citation|310 U.S. 88 }}
-}}
-#* {{quote-book|year=1969|author={{w|Abe Fortas}}|title={{w|Tinker v. Des Moines Independent Community School District}}|publisher={{w|Supreme Court of the United States}}|url=|isbn=|page={{ussc|393|503|1969}}|passage=First Amendment rights, applied in light of the special characteristics of the school environment, are available to teachers and students. It can hardly be argued that either students or teachers shed their constitutional rights to '''freedom of speech''' or expression at the schoolhouse gate.}}
-#* {{quote-book|year=1997|author={{w|Wendy Grossman}}|title={{w|Net.wars}}|publisher={{w|New York University Press}}|url=|isbn=0814731031|page=90|passage=One question that remains is at what point an individual Net poster has the right to assume prerogatives that have traditionally been only the province of journalists and news-gathering organizations. When the Pentagon Papers landed on the doorstep of ''The New York Times'', the newspaper was able to publish under the First Amendment's guarantees of '''freedom of speech''', and to make a strong argument in court that publication was in the public interest. ... the amplification inherent in the combination of the Net's high-speed communications and the size of the available population has greatly changed the balance of power.}}
-#* {{quote-book|year=2003|author=Mike Godwin|authorlink=w:Mike Godwin|title={{w|Cyber Rights}}|publisher=The MIT Press|url=|isbn=0262571684|page=2|passage=The term ''free speech'', which appears in this book's subtitle as well as in its text, is used more or less interchangeably with ''freedom of the press'', '''''freedom of speech''''', and ''freedom of expression'' to refer to all of the expressive rights guaranteed by the forty-five words of the First Amendment, as interpreted by the U.S. courts.}}
-#* {{quote-book  | last =Green  | first =David L.  | title =IQuote: Brilliance and Banter from the Internet Age  | publisher =Globe Pequot  | date =2007  | pages =113  | isbn = 1599211505|passage={{w|Mike Godwin}} (1994): Cyberspace may give '''freedom of speech''' more muscle than the First Amendment does. It may already have become literally impossible for a government to shut people up.}}
-# {{&lit|freedom|speech}}
-#* {{quote-book|chapter=Of Simulation and Dissimulation|year=1625|title=The [[w:Essays (Francis Bacon)|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=[[w:Francis Bacon|Francis Bacon]]|year_published=1680|passage=For to him that opens himself, Men will hardly shew themselves averse, but will (fair) let him go on, and turn their '''freedom of speech''' to freedom of thought. And therefore it is a good shrewd Proverb of the ''Spaniard, Tell a lye, and find a Troth''; as if there were no way of discovery, but by ''Simulation''.|url=http://books.google.com/books?id=xjQCAAAAQAAJ&pg=PA20&dq=%22freedom+of+speech%22&hl=en&sa=X&ei=zTI-T9zcDYnr0gHcx_HOBw&ved=0CNoBEOgBMBo#v=onepage&q=%22freedom%20of%20speech%22&f=false}}
-
-====Quotations====
-{{seemoreCites}}
-
-====Related terms====
-* [[free speech]]
-* [[freedom of expression]]
-
-====Coordinate terms====
-* [[freedom of movement]], [[freedom of contract]], [[freedom of the press]], [[freedom of religion]], [[freedom of assembly]], [[right to petition]], [[right to privacy]], [[right to keep and bear arms]]
-
-====Translations====
-{{trans-top|right to speak without fear of harm}}
-* Arabic: {{t|ar|حرية التعبير|f|tr=Hurriyyat al-ta3biir}}
-* Armenian: {{t-|hy|խոսքի ազատություն|tr=xosk’i azatut’yun}}
-* Belarusian: {{t|be|свабода слова|f|tr=svabóda slóva|xs=Belarusian}}
-* Bulgarian: {{t|bg|свобода на слово|f|tr=svoboda na slovo}}
-* Chinese:
-*: Mandarin: {{t-|cmn|言論自由|sc=Hani}}, {{t-|cmn|言论自由|tr=yánlùnzìyóu|sc=Hani}}
-* Czech: {{t-|cs|svoboda slova|f}}, {{t|cs|svoboda projevu|f}}, {{t|cs|svoboda vyjadřování|f}}
-* Danish: {{t-|da|ytringsfrihed}}
-* Dutch: {{t|nl|vrijheid van meningsuiting|f}}
-* Estonian: {{t-|et|sõnavabadus}}
-* Finnish: {{t+|fi|sananvapaus}}
-* French: {{t+|fr|liberté d'expression|f}}
-* Georgian: {{t|ka|სიტყვის თავისუფლება|sc=Geor}}
-* German: {{t|de|freie Meinungsäußerung|f}}, {{t-|de|Redefreiheit|f}}
-* Greek: {{t|el|ελευθερία έκφρασης|f|tr=elefthería ékfrasis}}
-* Hebrew: {{t|he|חופש הביטוי}}
-* Hindi: {{t|hi|अभिव्यक्ति की स्वतंत्रता|tr=abhivyakti kī svatantratā|xs=Hindi}}
-* Hungarian: {{t-|hu|szólásszabadság}}
-* Icelandic: {{t|is|málfrelsi|n}}
-* Interlingua: [[libertate de parola]], [[libertate de expression]]
-* Italian: {{t|it|libertà di parola|f}}
-* Japanese: {{t|ja|言論の自由|tr=げんろんのじゆう, genron-no jiyū}} <!-- [[表現の自由]]?-->
-{{trans-mid}}
-* Korean: {{t|ko|표현의 자유|tr=pyohyeon jayu|sc=Hang}}
-* Latvian: {{t|lv|vārda brīvība|f|xs=Latvian}}
-* Macedonian: {{t|mk|слобода на говор|f|tr=sloboda na govor}}
-* Norwegian: {{t-|no|ytringsfrihet|m|f}}
-*: [[Norwegian Nynorsk]]: {{t|nn|ytringsfridom|xs=Norwegian Nynorsk}}
-* Persian: {{t-|fa|آزادی بیان|tr=âzâdi-ye bayân|xs=Persian}}
-* Polish: {{t|pl|wolność słowa|f}}
-* Portuguese: {{t|pt|liberdade de expressão|f}}
-* Russian: {{t-|ru|свобода слова|f|tr=svobóda slóva}}
-* Scottish Gaelic: {{t-|gd|saorsa cainnte|f|xs=Scottish Gaelic}}
-* Serbo-Croatian: {{t|sh|слобода говора|f|sc=Cyrl|xs=Serbo-Croatian}}, {{t|sh|sloboda govora|f|xs=Serbo-Croatian}}
-* Slovak: {{t|sk|sloboda slova|f}}
-* Slovene: {{t|sl|svoboda govora|f}}
-* Spanish: {{t|es|libertad de palabra|f}}, {{t|es|libertad de expresión|f}}
-* Swedish: {{t+|sv|yttrandefrihet}}
-* Thai: {{t|th|เสรีภาพในการพูด}}
-* Turkish: {{t|tr|ifade özgürlüğü}}
-* Ukrainian: {{t-|uk|свобода слова|f|tr=svobóda slóva|xs=Ukrainian}}
-* Urdu: {{t|ur|آزادی گفتار|xs=Urdu}}
-* Vietnamese: {{t|vi|tự do ngôn luận|xs=Vietnamese}}
-{{trans-bottom}}
-
-===See also===
-* {{pedia}}
-
-[[Category:en:Freedom of speech]]
-
-[[de:freedom of speech]]
-[[et:freedom of speech]]
-[[fr:freedom of speech]]
-[[pl:freedom of speech]]
-[[fi:freedom of speech]]
-[[ta:freedom of speech]]
+freedom of speech:
+{{wikipedia|Freedom of speech}}{{wikinews|Category:Free speech}}{{commons|Category:Freedom of speech}}{{wikiquote|Freedom of speech}}
+<h3>Etymology</h3>
+{rfe}
+<h3>Pronunciation</h3>
+<ul><li> {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|-|sg=freedom of speech}}
+<ol><li> The right of citizens to speak, or otherwise communicate, without fear of harm or prosecution.</li>
+<ul><li> {{quote-book|year=1720|author={{w|John Trenchard (writer)|John Trenchard}} and {{w|Thomas Gordon (writer)|Thomas Gordon}}|title={{w|Cato's Letters}}|publisher=|url=|isbn=|page=Letter Number 15, <em>Of Freedom of Speech, That the Same is inseparable from Publick Liberty</em>|passage=All Ministers ... who were Oppressors, or intended to be Oppressors, have been loud in their Complaints against <b>Freedom of Speech</b>, and the License of the Press; and always restrained, or endeavored to restrain, both.}}</li>
+<li> {{quote-book|author={{w|Frank Murphy}}|title={{w|Thornhill v. Alabama}}|publisher={{w|Supreme Court of the United States}}|year=1940|passage=The <b>freedom of speech</b> and of the press, which are secured by the First Amendment against abridgment by the United States, are among the fundamental personal rights and liberties which are secured to all persons by the Fourteenth Amendment against abridgment by a state. The safeguarding of these rights to the ends that men may speak as they think on matters vital to them and that falsehoods may be exposed through the processes of education and discussion is essential to free government. Those who won our independence had confidence in the power of free and fearless reasoning and communication of ideas to discover and spread political and economic truth.|page={{w|Case citation|310 U.S. 88 }}}}</li>
+<li> {{quote-book|year=1969|author={{w|Abe Fortas}}|title={{w|Tinker v. Des Moines Independent Community School District}}|publisher={{w|Supreme Court of the United States}}|url=|isbn=|page={{ussc|393|503|1969}}|passage=First Amendment rights, applied in light of the special characteristics of the school environment, are available to teachers and students. It can hardly be argued that either students or teachers shed their constitutional rights to <b>freedom of speech</b> or expression at the schoolhouse gate.}}</li>
+<li> {{quote-book|year=1997|author={{w|Wendy Grossman}}|title={{w|Net.wars}}|publisher={{w|New York University Press}}|url=|isbn=0814731031|page=90|passage=One question that remains is at what point an individual Net poster has the right to assume prerogatives that have traditionally been only the province of journalists and news-gathering organizations. When the Pentagon Papers landed on the doorstep of <em>The New York Times</em>, the newspaper was able to publish under the First Amendment's guarantees of <b>freedom of speech</b>, and to make a strong argument in court that publication was in the public interest. ... the amplification inherent in the combination of the Net's high-speed communications and the size of the available population has greatly changed the balance of power.}}</li>
+<li> {{quote-book|year=2003|author=Mike Godwin|authorlink=w:Mike Godwin|title={{w|Cyber Rights}}|publisher=The MIT Press|url=|isbn=0262571684|page=2|passage=The term <em>free speech</em>, which appears in this book's subtitle as well as in its text, is used more or less interchangeably with <em>freedom of the press</em>, <b><em>freedom of speech</b></em>, and <em>freedom of expression</em> to refer to all of the expressive rights guaranteed by the forty-five words of the First Amendment, as interpreted by the U.S. courts.}}</li>
+<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>
+</ol>
+
+<h4>Quotations</h4>
+{seemoreCites}
+<h4>Related terms</h4>
+<ul><li> free speech</li>
+<li> freedom of expression</li>
+</ul>
+
+<h4>Coordinate terms</h4>
+<ul><li> freedom of movement, freedom of contract, freedom of the press, freedom of religion, freedom of assembly, right to petition, right to privacy, right to keep and bear arms</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> {pedia}</li>
+</ul>
+Category:en:Freedom of speechde:freedom of speechet:freedom of speechfr:freedom of speechpl:freedom of speechfi:freedom of speechta:freedom of speech
 ***substantive***
-substantive: 
-{{wikipedia}}
-
-===Etymology===
-From {{etyl|fro}} ''[[substantif]]''.
-
-===Adjective===
-{{en-adj}}
-
-# Of the essence or essential element of a thing; as, "substantive information".
-# Having [[substance]] and prompting thought.
-# {{legal}} Applying to essential legal principles and rules of right; as, "substantive law".
-# {{chemistry}} Of a [[dye]] that does not need the use of a [[mordant]] to be made [[fast]] to that which is being dyed.
-
-====Synonyms====
-* {{sense|of the essential element}} [[essential]], [[in essence]]
-* {{sense|having substance}} [[meaty]], [[substantial]]
-
-====Antonyms====
-* {{sense|legal}} [[adjective]], [[procedural]]
-* [[verbal]]
-* {{sense|of a dye that does not need the use of a mordant}} [[adjective]]
-
-====Derived terms====
-* [[substantive law]]
-
-====Translations====
-{{trans-top|of the essence or essential element of a thing}}
-* Finnish: {{t-|fi|oleellinen}}, {{t-|fi|olennainen}}
-{{trans-mid}}
-* Portuguese: {{t|pt|substantivo}}, {{t|pt|substancial}}, {{t|pt|essencial}}
-{{trans-bottom}}
-
-{{trans-top|having substance and prompting thought}}
-* Finnish: {{t-|fi|oleellinen}}, {{t-|fi|olennainen}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|''(law)''}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|of a dye that does not need the use of a mordant}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|fr}}: [[substantif]] {{m}}, [[substantive#French|substantive]] {{f}} (4)
-{{trans-bottom}}
-
-===Noun===
-{{en-noun}}
-
-# {{grammar}} A [[word]] that names or refers to a [[person]], [[place]], [[thing]], or [[idea]]. [[noun|Nouns]] and [[personal pronoun]]s are always substantives by nature.
-
-====Hyponyms====
-* [[noun]]
-* [[personal pronoun]]
-
-====Derived terms====
-* [[substantivise]]/[[substantivize]]
-* [[substantival]]
-
-====Translations====
-{{trans-top|''(grammar)''}}
-* Dutch: {{t+|nl|zelfstandig naamwoord|n}}, {{t+|nl|substantief|n}}
-* Esperanto: {{t+|eo|substantivo|xs=Esperanto}}
-* Finnish: {{t+|fi|substantiivi}}, {{t+|fi|nimisana}}
-* French: {{t+|fr|substantif|m}}
-* German: {{t+|de|Substantiv|n}}
-* Italian: {{t+|it|sostantivo|m}}
-* Latvian: {{t|lv|lietvārds|m}}
-{{trans-mid}}
-* Novial: [[substantive]]
-* Portuguese: {{t+|pt|substantivo}}
-* Romanian: {{t+|ro|substantiv|n}}
-* Spanish: {{t+|es|substantivo|m}}, {{t+|es|sustantivo|m}}
-* Turkish: {{t+|tr|isim}}
-* Volapük: {{t|vo|subsat}}
-{{trans-bottom}}
-
-[[Category:en:Nouns]]
-[[Category:en:Parts of speech]]
-
-----
-
+substantive:
+{wikipedia}
+<h3>Etymology</h3>
+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>
+<li> Having substance and prompting thought.</li>
+<li> {legal} Applying to essential legal principles and rules of right; as, "substantive law".</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>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|of the essential element}} essential, in essence</li>
+<li> {{sense|having substance}} meaty, substantial</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> {{sense|legal}} adjective, procedural</li>
+<li> verbal</li>
+<li> {{sense|of a dye that does not need the use of a mordant}} adjective</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> substantive law</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> {grammar} A word that names or refers to a person, place, thing, or idea. Nouns and personal pronouns are always substantives by nature.</li>
+</ol>
+
+<h4>Hyponyms</h4>
+<ul><li> noun</li>
+<li> personal pronoun</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> substantivise/substantivize</li>
+<li> substantival</li>
+</ul>
 
 ***Sunday***
-Sunday: 
-
-===Etymology===
-{{etyl|enm}} ''[[sunnenday]]'' from {{etyl|ang}} {{term|sunnandæg|lang=ang||day of the sun}}, from {{term|sunne|lang=ang||sun}}, + {{term|dæg|lang=ang||day}}, as a translation of {{etyl|la}} ''[[dies solis]]''; declared the "venerable day of the sun" by Roman Emperor [[w:Constantine|Constantine]] on March 7, 321 {{C.E.}}.
-
-===Pronunciation===
-* {{enPR|sŭnʹdā}}, {{IPA|/ˈsʌndeɪ/}}, {{X-SAMPA|/"sVndeI/}} ''or'' {{enPR|sŭnʹdē}}, {{IPA|/ˈsʌndi/}}, {{X-SAMPA|/"sVndi/}}
-* {{audio|en-us-Sunday.ogg|Audio (US)}}
-* {{audio|En-uk-Sunday.ogg|Audio (UK)}}
-*: {{rhymes|ʌndeɪ}}, {{rhymes|ʌndi}}
-* {{homophones|sundae}}
-
-===Noun===
+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.}.
+<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>
+<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>
+</ul>
+<li> {{homophones|sundae}}</li>
+</ul>
+
+<h3>Noun</h3>
 {{en-noun|Sundays}}
+<ol><li> The seventh day of the week in systems using the ISO 8601 standard, or the first day of the week in many religious traditions. The Sabbath for most Christians; it follows Saturday and precedes Monday.</li>
+<ul><li>{{quote-news|year=2012|date=June 19|author=Phil McNulty|title=England 1-0 Ukraine|work=BBC Sport|url=http://www.bbc.co.uk/sport/0/football/18181971|page=|passage=And after missing a simple header in the first half, the Manchester United striker ensured England topped Group D to set up a quarter-final meeting with Italy in Kiev on <b>Sunday</b>.}}</li>
+</ul>
+</ol>
 
-# The seventh day of the week in systems using the [[w:ISO 8601|ISO 8601]] standard, or the first [[day]] of the [[week]] in many religious traditions. The [[Sabbath]] for most [[Christian]]s; it follows [[Saturday]] and precedes [[Monday]].
-#*{{quote-news
-|year=2012
-|date=June 19
-|author=Phil McNulty
-|title=England 1-0 Ukraine
-|work=BBC Sport
-|url=http://www.bbc.co.uk/sport/0/football/18181971
-|page=
-|passage=And after missing a simple header in the first half, the Manchester United striker ensured England topped Group D to set up a quarter-final meeting with Italy in Kiev on '''Sunday'''.}}
-<!--probably just an attributive form of the noun: #An appointment, person, or feeling associated with this day of the week.-->
-
-====Derived terms====
+<h4>Derived terms</h4>
 {{rel-top4|Terms derived from Sunday}}
-* [[Advent Sunday]]
-* [[Albless Sunday]], [[Alb Sunday]]
-* [[a month of Sundays]]
-* [[Antipascha Sunday]]
-* [[Ascension Sunday]]
-* [[Black Sunday]]
-* [[Bloody Sunday]]
-* [[Branch Sunday]]
-* [[cannonball Sunday]]
-* [[Cantate Sunday]]
-* [[Care Sunday]]
-* [[Carling Sunday]]
-* [[Chestnut Sunday]]
-* [[Christmas Sunday]]
-* [[Cold Sunday]]
-* [[Communion Sunday]]
-* [[Divine Mercy Sunday]]
-* [[Easter Sunday]]
-* [[Expectation Sunday]]
-* [[Fast Sunday]]
-* [[Fig Sunday]]
-* [[Garland Sunday]]
-* [[Gaudete Sunday]]
-* [[God's Sunday]]
-* [[Good Shepherd Sunday]]
-* [[Greasy Sunday]]
-* [[Hall' Sunday]]<!--sic-->
-* [[Hospital Sunday]]
-* [[Jubilate Sunday]]
-* [[Judica Sunday]]
-{{rel-mid4}}
-* [[Justice Sunday]]
-* [[Laetare Sunday]]
-* [[Low Sunday]]
-* [[Mid-fast Sunday]]
-* [[Mid-Lent Sunday]]
-* [[Mothering Sunday]]
-* [[never in a month of Sundays]]
-* [[Oculi Sunday]]
-* [[Palm Sunday]]
-* [[Passion Sunday]]
-* [[Plough Sunday]]
-* [[Quadragesima Sunday]]
-* [[Quasimodo Sunday]]
-* [[Quinquagesima Sunday]]
-* [[Racial Justice Sunday]]
-* [[Refreshment Sunday]]
-* [[Remembrance Sunday]]
-* [[Rogation Sunday]]
-* [[rope yarn Sunday]]
-* [[Rose Sunday]]
-* [[Rush-bearing Sunday]]
-* [[Saint Sunday]]
-* [[Scout Sunday]]
-* [[Seedy Sunday]]
-* [[Selection Sunday]]
-* [[Septuagesima Sunday]]
-* [[Sexagesima Sunday]]
-* [[Shrove Sunday]]
-* [[six ways to Sunday]]
-* [[Stir-up Sunday]]
-* [[Suicide Sunday]]
-{{rel-mid4}}
-* [[Sun]], [[Sun.]]
-* [[sundae]]
-* [[Sunday baby]]
-* [[Sunday best]], [[Sunday's best]]
-* [[Sunday child]]
-* [[Sunday Christian]]
-* [[Sunday closing law]]
-* [[Sunday clothes]]
-* [[Sunday comics]]
-* [[Sunday dinner]]
-* [[Sunday driver]]
-* [[Sundayed]]
-* [[Sunday face]]
-* [[Sundayfied]]
-* [[Sunday funnies]]
-* [[Sunday-going]]
-* [[Sunday-go-to-meeting]]<!--adjective-->
-* [[Sunday gravy]]
-* [[Sunday in Sexagesima]]
-* [[Sundayish]]
-* [[Sundayism]]
-* [[Sunday joint]]
-* [[Sunday letter]]
-* [[Sunday lunch]]
-* [[Sundayly]]
-* [[Sunday man]]
-* [[Sunday motorist]]
-* [[Sunday observance]]
-* [[Sunday out]]
-* [[Sunday painter]]
-{{rel-mid4}}
-* [[Sunday paper]]
-* [[Sunday punch]]
-* [[Sunday roast]]
-* [[Sundays]]<!--adverb-->
-* [[Sunday saint]]
-* [[Sunday salt]]
-* [[Sunday's child]]
-* [[Sunday's daughter]]
-* [[Sunday school]]
-* [[Sunday shopping]]
-* [[Sunday strip]]
-* [[Sunday supplement]]
-* [[Sunday throat]]
-* [[Sunday trading]]
-* [[w:Sunday Trading Act|Sunday Trading Act]]
-* [[Sunday within the Octave of Christmas]]
-* [[Super Bowl Sunday]]
-* [[Super Sunday]]
-* [[Tap-up Sunday]]
-* [[Tradition Sunday]]
-* [[Trinity Sunday]]
-* [[Vocations Sunday]]
-* [[Wentsunday]]
-* [[when two Sundays come together]], [[when two Sundays meet]]
-* [[White Sunday]]
-* [[Whit Sunday]], [[Whitsunday]]
-* [[World Communion Sunday]]
-{{rel-bottom}}
-
-====Translations====
-{{trans-top|day of the week}}
-* Abkhaz: {{t|ab|амҽыш|tr=amç̌əš|sc=Cyrl}}
-* Afrikaans: {{t|af|Sondag|xs=Afrikaans}}
-* Alabama: [[nihtahollo]], [[nihta istontòklo]]
-* Albanian: {{t|sq|e diele}}
-* Alutiiq: {{tø|ems|Agayuneq}}
-* Amharic: {{t|am|እሑድ|tr=ehud|sc=Ethi}}
-* Arabic: {{t|ar|الأحد|m|tr=al-ʾáḥad|sc=Arab}}, {{t|ar|يوم الأحد|m|tr=yawm al-ʾáḥad|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|الحد|m|tr=el-ḥad|sc=Arab}}
-* Aramaic: [[חדבשבא]]
-* Armenian: {{t+|hy|կիրակի|tr=kiraki}}
-*: Old Armenian: {{tø|xcl|կիւրակէ|tr=kiwrakē|sc=Armn}}, {{tø|xcl|միաշաբաթի|tr=miašabatʿi|sc=Armn}}
-* Assamese: {{t|as|দেওবাৰ|tr=deobār|sc=Beng}}, {{t|as|ৰবিবাৰ|tr=rôbibār|sc=Beng}}
-* Azeri: {{t|az|bazar}}
-* Bashkir: {{tø|ba|йәкшәмбе|tr=yekşembi|sc=Cyrl}}
-* Basque: [[igande]]
-* Belarusian: {{t-|be|нядзеля|f|tr=njadzélja}}
-* Bengali: {{t|bn|রবিবার|tr=rôbibar|sc=Beng}}
-* Blackfoot: [[naatoyiksistsiko]]
-* Breton: [[Sul]] {{m}}, Sulioù {{p}}, [[disul]] ''adverb''
-* Bulgarian: {{t+|bg|неделя|f|tr=nedélja}}
-* Burmese: {{t+|my|တနင်္ဂနွေ|tr=tănin-gănwe|sc=Mymr|xs=Burmese}}
-* Catalan: {{t|ca|diumenge|m}}
-* Cebuano: [[Dominggo]]
-* Central Atlas Tamazight: [[ⴰⵛⴻⵔ]] (ašer)
-* Chechen: {{tø|ce|кIиранде|tr=ḳirande}}
-* Cherokee: [[ᎤᎾᏙᏓᏆᏍᎬᎢ]] (unadodaquasgvi)
-* Chichewa: {{tø|ny|pasabata}}, {{tø|ny|lamulungu}}
-* Chickasaw: [[nitak hullo]]
-* Chinese:
-*: Mandarin: {{qualifier|formal}} {{t|zh|星期日|tr=xīngqīrì|sc=Hani}}, {{qualifier|informal}} {{t|zh|星期天|tr=xīngqītiān|sc=Hani}}, {{t|zh|禮拜日|sc=Hani}}, {{t|zh|礼拜日|tr=lǐbàirì|sc=Hani}}, {{qualifier|colloquial}} {{t|zh|禮拜天|sc=Hani}}, {{t|zh|礼拜天|tr=lǐbàitiān|sc=Hani}}, {{t|zh|周日|tr=zhōurì|sc=Hani}}
-* Chuvash: {{tø|cv|вырсарникун|tr=vyrsarnikun|sc=Cyrl}}
-* Corsican: [[dumenica]]
-* Czech: {{t+|cs|neděle|f}}
-* Dakota: {{tø|dak|Aŋpetuwakaŋ}}
-* Danish: {{t+|da|søndag}}
-* Dhivehi: {{t|dv|އާދިއްތަ|tr=āditta|sc=Thaa}}
-* Dutch: {{t+|nl|zondag|m}}
-* Esperanto: {{t+|eo|dimanĉo|xs=Esperanto}}
-* Estonian: {{t+|et|pühapäev}}
-* Ewe: {{tø|ee|Kɔsiɖagbe|xs=Ewe}} {{n}}
-* Faroese: {{t-|fo|sunnudagur|m|xs=Faroese}}
-* Fijian: {{t|fj|Sigatabu}}
-* Finnish: {{t+|fi|sunnuntai}}
-* French: {{t+|fr|dimanche|m}}
-* Georgian: {{t-|ka|კვირადღე|tr=kviradḡe|sc=Geor|xs=Georgian}},  {{t-|ka|კვირა|tr=kvira|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Sonntag|m}}
-* Greek: {{t+|el|Κυριακή|f|tr=Kyriakí}}
-* Greenlandic: {{t+|kl|Sapaat|xs=Greenlandic}}
-* Guernésiais: {{tø|roa-grn|desmanche|m}}
-* Gujarati: {{t|gu|રવિવાર|m|tr=ravivār|sc=Gujr}}
-* Haitian Creole: {{tø|ht|dimanch}}
-* Hawaiian: {{tø|haw|Lāpule}}
-* Hebrew: {{t|he|יום ראשון|m|tr=yom rishón|alt=יוֹם רִאשׁוֹן}}
-* Hindi: {{t+|hi|रविवार|m|tr=ravivār|xs=Hindi}}, {{t-|hi|इतवार|m|tr=itvār|xs=Hindi}}
-* Hungarian: {{t+|hu|vasárnap}}
-* Icelandic: {{t+|is|sunnudagur|m}}
-* Ido: [[sundio]]
-* Indonesian: {{t-|id|Minggu|xs=Indonesian}}, {{t-|id|Ahad|xs=Indonesian}}
-* Interlingua: [[dominica]]
-* Irish: {{t+|ga|Domhnach|m|xs=Irish}}
-* Italian: {{t+|it|domenica|f}}
-* Japanese: {{t|ja|日曜日|tr=にちようび, nichiyōbi|sc=Jpan}}, {{t|ja|日曜|tr=にちよう, nichiyō|sc=Jpan}}
-* Jèrriais: {{tø|roa-jer|Dînmanche|m}}
-* Kannada: {{t|kn|ಭಾನುವಾರ|tr=bhānuvār|sc=Knda}}
-* Kashmiri: {{t|ks|آتھٕوار|tr=āthụvār|sc=ks-Arab}}
-* Kashubian: [[niedzela]] {{f}}
-* Kazakh: {{t+|kk|жексенбі|tr=jeksenbi|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|ថ្ងៃអាទិត្យ|tr=tngai ādteut|sc=Khmr}}
-* Kinyarwanda: [[Kwamungu]]
-* Kongo: {{tø|kg|Lumbu kia lumingu}}
-* Korean: {{t+|ko|일요일|tr=iryoil|sc=Kore}} ({{t|ko|日曜日|sc=Kore}})
-* Kurdish:
-*: Sorani: {{ku-Arab|[[یه‌کشه‌م]]}}, {{ku-Arab|[[یه‌کشه‌مه‌]]}}
-* Kyrgyz: {{t|ky|жекшемби|tr=cekşembi|sc=Cyrl}}
-* Lao: {{t+|lo|ວັນອາທິດ|tr=wan-'aa-thit|sc=Laoo|xs=Lao}}
-* Latgalian: {{t|ltg|svātdīne}} {{f}}
-* Latin: {{t+|la|dies Solis|m}}, {{t-|la|dies Dominica|m}}
-* Latvian: {{t+|lv|svētdiena|xs=Latvian}}
-* Lithuanian: {{t+|lt|sekmadienis|xs=Lithuanian}}
-* Livonian: [[pivāpǟva]]
-* Lower Sorbian: [[njeźela]] {{f}}
-* Luganda: {{tø|lg|sande}}
-{{trans-mid}}
-* Luxembourgish: {{t|lb|Sonnden|m}}, {{t|lb|Sonndeg|m}}
-* Macedonian: {{t+|mk|недела|f|tr=nédela}}
-* Malay: [[Hari Minggu]]; [[Hari Ahad]], {{t|ms|Ahad}}
-* Malayalam: {{t|ml|ഞായര്|tr=ñāyar‍|sc=Mlym}}
-* Maltese: {{t-|mt|il-Ħadd|xs=Maltese}}
-* Maori: [[Rātapu]]
-* Marathi: {{t|mr|रविवार|m|tr=ravivār|sc=Deva}}
-* Mongolian: {{t|mn|ням|tr=njam|sc=Cyrl}}
-* Navajo: {{tø|nv|Damį́įgo}}, {{tø|nv|Damóo}}
-* Neapolitan: [[dumméneca]]
-* Nepali: {{t|ne|आइत्बार|tr=āitbār|sc=Deva}}, {{t|ne|रबिबार|tr=rabibār|sc=Deva}}
-* Norman: {{tø|roa-nor|dîmmaunche|m}}
-* Norwegian: {{t+|no|søndag}}
-* Occitan: [[dimenge]] {{m}}
-* Ojibwe: [[anami'egiizhigad]]
-* Old English: {{t+|ang|sunnandæg|m|xs=Old English}}
-* Old Norse: [[sunnudagr]] {{m}}
-* Old Turkic: {{tø|otk|yetinç}}
-* Oriya: {{t|or|ରବିବାର|tr=rôbibār|sc=Orya}}
-* Ossetian:
-*: Digor: {{tø|os|хуцаубон|tr=xucaubon|sc=Cyrl|xs=Ossetian}}
-*: Iron: {{tø|os|хуыцаубон|tr=xuycaubon|sc=Cyrl|xs=Ossetian}}
-* Papiamentu: {{tø|pap|diadomingu}}
-* Pashto: {{t|ps|يکشنبه|tr=yakšanba|sc=ps-Arab}}
-* Persian: {{t|fa|یک‌شنبه|tr=yekšanbe}}
-* Picard: {{tø|pcd|diminche}}
-* Polish: {{t+|pl|niedziela|f}}
-* Portuguese: {{t+|pt|domingo|m}}
-* Punjabi: {{t|pa|ਐਤਵਾਰ|tr=ætvār|sc=Guru}}
-* Quechua: {{t|qu|dumingu}}
-* Romani: {{tø|rom|kurko}}
-* Romanian: {{t+|ro|duminică|f}}
-* Russian: {{t+|ru|воскресенье|n|tr=voskresénʹje}}
-* Sami:
-*: Northern: {{tø|se|sotnabeavi}}
-* Samoan: {{t|sm|Aso Sa}}
-* Sanskrit: {{t|sa|रविवारः|tr=ravivāraḥ|sc=Deva}}, {{t|sa|आदित्यवारः|tr=ādityavāraḥ|sc=Deva}}
-* Scots: {{tø|sco|Sunday}}
-* Scottish Gaelic:{{t|gd|Didòmhnaich|m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sr|недеља|f|sc=Cyrl}}, {{t|sh|недјеља|f|sc=Cyrl}}
-*: Roman: {{t|sh|nedelja|f}}, {{t+|sh|nedjelja|f}}
-* Shona: {{t|sn|Svondo}}
-* Sicilian: [[duminica]] {{f}}
-* Sindhi: {{t|sd|آچر|tr=āčaru|sc=sd-Arab}}
-* Sinhalese: {{t|si|ඉරිදා|tr=iridā|sc=Sinh}}
-* Skolt Sami: {{tø|sms|pâˊsspeiˊvv}}
-* Slovak: {{t+|sk|nedeľa|f}}
-* Slovene: {{t+|sl|nedelja|f}}
-* Somali: [[Axad]]
-* Sotho: [[Sontaha]]
-* Spanish: {{t+|es|domingo|m}}
-* Swati: {{t|ss|lí-Sontfo }}
-* Swedish: {{t+|sv|söndag}}
-* Tagalog: {{t|tl|Linggo}}, {{t|tl|linggo}}
-* Tahitian: {{tø|ty|Tapati}}
-* Tajik: {{t|tg|якшанбе|tr=yakšanbe|sc=Cyrl}}
-* Tamil: {{t|ta|ஞாயிறு|tr=nyaayiṟu|sc=Taml}}
-* Taos: [[tumį́ku]]
-* Tarantino: {{tø|roa-tar|dumèneche}}
-* Tatar: {{t+|tt|якшәмбе|tr=yäkşämbe|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t|te|ఆదివారం|tr=ādivāram|sc=Telu}}, {{t+|te|రవివారము}}
-* Thai: {{t|th|วันอาทิตย์|tr=wan aa thīt}}
-* Tibetan: {{t|bo|གཟའ་ཉི་མ|tr=gzā.ñi.ma|alt=གཟའ་ཉི་མ།|sc=Tibt}}
-* Tok Pisin: {{t|tpi|sande}}
-* Tongan: {{t|to|Sapate}}
-* Tswana: {{t|tn|tshipi}}
-* Turkish: {{t+|tr|pazar}}
-* Turkmen: {{t|tk|ýekşenbe}}, {{t|tk|dynçgün}}
-* Ukrainian: {{t+|uk|неділя|f|tr=nedílja|xs=Ukrainian}}
-* Upper Sorbian: [[njedźela]] {{f}}
-* Urdu: {{t|ur|اتوار|m|tr=itvār|sc=ur-Arab}}, {{t|ur|رویوار|m|tr=ravivār|sc=ur-Arab}}
-* Uyghur: {{t|ug|يەكشەنبە|tr=yekshenbe|sc=ug-Arab}}
-* Uzbek: {{t|uz|yakshanba}}
-* Venetian: {{tø|vec|doménega|f}}
-* Vietnamese: {{t-|vi|chủ nhật|xs=Vietnamese}}
-* Volapük: {{t|vo|sudel}}, {{t|vo|balüdel}}, {{t|vo|soldel}}
-* Welsh: {{t-|cy|Dydd Sul|xs=Welsh}}
-* West Frisian: [[snein]]
-* Wolof: [[Dibéer]], {{t|wo|Dimas}}
-* Xhosa: {{t|xh|isonto}}
-* Yiddish: {{t+|yi|זונטיק|m|tr=zúntik|xs=Yiddish}}
-* Zulu: {{t|zu|iSonto }}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|bo}}: [[གཟའ་ཉི་མ་]]
-{{trans-mid}}
-{{trans-bottom}}
-
-===Adverb===
+<ul><li> Advent Sunday</li>
+<li> Albless Sunday, Alb Sunday</li>
+<li> a month of Sundays</li>
+<li> Antipascha Sunday</li>
+<li> Ascension Sunday</li>
+<li> Black Sunday</li>
+<li> Bloody Sunday</li>
+<li> Branch Sunday</li>
+<li> cannonball Sunday</li>
+<li> Cantate Sunday</li>
+<li> Care Sunday</li>
+<li> Carling Sunday</li>
+<li> Chestnut Sunday</li>
+<li> Christmas Sunday</li>
+<li> Cold Sunday</li>
+<li> Communion Sunday</li>
+<li> Divine Mercy Sunday</li>
+<li> Easter Sunday</li>
+<li> Expectation Sunday</li>
+<li> Fast Sunday</li>
+<li> Fig Sunday</li>
+<li> Garland Sunday</li>
+<li> Gaudete Sunday</li>
+<li> God's Sunday</li>
+<li> Good Shepherd Sunday</li>
+<li> Greasy Sunday</li>
+<li> Hall' Sunday</li>
+<li> Hospital Sunday</li>
+<li> Jubilate Sunday</li>
+<li> Judica Sunday</li>
+</ul>
+{rel-mid4}
+<ul><li> Justice Sunday</li>
+<li> Laetare Sunday</li>
+<li> Low Sunday</li>
+<li> Mid-fast Sunday</li>
+<li> Mid-Lent Sunday</li>
+<li> Mothering Sunday</li>
+<li> never in a month of Sundays</li>
+<li> Oculi Sunday</li>
+<li> Palm Sunday</li>
+<li> Passion Sunday</li>
+<li> Plough Sunday</li>
+<li> Quadragesima Sunday</li>
+<li> Quasimodo Sunday</li>
+<li> Quinquagesima Sunday</li>
+<li> Racial Justice Sunday</li>
+<li> Refreshment Sunday</li>
+<li> Remembrance Sunday</li>
+<li> Rogation Sunday</li>
+<li> rope yarn Sunday</li>
+<li> Rose Sunday</li>
+<li> Rush-bearing Sunday</li>
+<li> Saint Sunday</li>
+<li> Scout Sunday</li>
+<li> Seedy Sunday</li>
+<li> Selection Sunday</li>
+<li> Septuagesima Sunday</li>
+<li> Sexagesima Sunday</li>
+<li> Shrove Sunday</li>
+<li> six ways to Sunday</li>
+<li> Stir-up Sunday</li>
+<li> Suicide Sunday</li>
+</ul>
+{rel-mid4}
+<ul><li> Sun, Sun.</li>
+<li> sundae</li>
+<li> Sunday baby</li>
+<li> Sunday best, Sunday's best</li>
+<li> Sunday child</li>
+<li> Sunday Christian</li>
+<li> Sunday closing law</li>
+<li> Sunday clothes</li>
+<li> Sunday comics</li>
+<li> Sunday dinner</li>
+<li> Sunday driver</li>
+<li> Sundayed</li>
+<li> Sunday face</li>
+<li> Sundayfied</li>
+<li> Sunday funnies</li>
+<li> Sunday-going</li>
+<li> Sunday-go-to-meeting</li>
+<li> Sunday gravy</li>
+<li> Sunday in Sexagesima</li>
+<li> Sundayish</li>
+<li> Sundayism</li>
+<li> Sunday joint</li>
+<li> Sunday letter</li>
+<li> Sunday lunch</li>
+<li> Sundayly</li>
+<li> Sunday man</li>
+<li> Sunday motorist</li>
+<li> Sunday observance</li>
+<li> Sunday out</li>
+<li> Sunday painter</li>
+</ul>
+{rel-mid4}
+<ul><li> Sunday paper</li>
+<li> Sunday punch</li>
+<li> Sunday roast</li>
+<li> Sundays</li>
+<li> Sunday saint</li>
+<li> Sunday salt</li>
+<li> Sunday's child</li>
+<li> Sunday's daughter</li>
+<li> Sunday school</li>
+<li> Sunday shopping</li>
+<li> Sunday strip</li>
+<li> Sunday supplement</li>
+<li> Sunday throat</li>
+<li> Sunday trading</li>
+<li> Sunday Trading Act</li>
+<li> Sunday within the Octave of Christmas</li>
+<li> Super Bowl Sunday</li>
+<li> Super Sunday</li>
+<li> Tap-up Sunday</li>
+<li> Tradition Sunday</li>
+<li> Trinity Sunday</li>
+<li> Vocations Sunday</li>
+<li> Wentsunday</li>
+<li> when two Sundays come together, when two Sundays meet</li>
+<li> White Sunday</li>
+<li> Whit Sunday, Whitsunday</li>
+<li> World Communion Sunday</li>
+</ul>
+{rel-bottom}
+<h3>Adverb</h3>
 {{en-adv|-}}
+<ol><li> On Sunday</li>
+</ol>
 
-# On Sunday
-
-====Translations====
-{{trans-top|on Sunday}}
-* Irish: {{t+|ga|Dé Domhnaigh|xs=Irish}}
-* Latvian: {{t|lv|svētdien}}
-* Romanian: {{t|ro|duminică}}, {{t|ro|duminica}}
-{{trans-mid}}
-* Turkish: {{t|tr|pazar}}
-* Volapük: {{t|vo|sudelo}}, {{t|vo|balüdelo}}, {{t|vo|soldelo}}
-{{trans-bottom}}
-
-===See also===
-* {{list|en|days of the week}}
-
-[[af:Sunday]]
-[[ast:Sunday]]
-[[az:Sunday]]
-[[cs:Sunday]]
-[[cy:Sunday]]
-[[da:Sunday]]
-[[de:Sunday]]
-[[et:Sunday]]
-[[el:Sunday]]
-[[es:Sunday]]
-[[eo:Sunday]]
-[[eu:Sunday]]
-[[fr:Sunday]]
-[[ga:Sunday]]
-[[gl:Sunday]]
-[[ko:Sunday]]
-[[hy:Sunday]]
-[[hr:Sunday]]
-[[io:Sunday]]
-[[id:Sunday]]
-[[it:Sunday]]
-[[kl:Sunday]]
-[[kn:Sunday]]
-[[ka:Sunday]]
-[[kk:Sunday]]
-[[ku:Sunday]]
-[[lo:Sunday]]
-[[la:Sunday]]
-[[lv:Sunday]]
-[[lt:Sunday]]
-[[hu:Sunday]]
-[[mg:Sunday]]
-[[ml:Sunday]]
-[[mn:Sunday]]
-[[my:Sunday]]
-[[nl:Sunday]]
-[[ja:Sunday]]
-[[no:Sunday]]
-[[nn:Sunday]]
-[[oc:Sunday]]
-[[km:Sunday]]
-[[pl:Sunday]]
-[[pt:Sunday]]
-[[ro:Sunday]]
-[[ru:Sunday]]
-[[simple:Sunday]]
-[[sr:Sunday]]
-[[fi:Sunday]]
-[[sv:Sunday]]
-[[ta:Sunday]]
-[[te:Sunday]]
-[[tg:Sunday]]
-[[tr:Sunday]]
-[[uk:Sunday]]
-[[vi:Sunday]]
-[[vo:Sunday]]
-[[zh:Sunday]]
+<h3>See also</h3>
+<ul><li> {{list|en|days of the week}}</li>
+</ul>
+af:Sundayast:Sundayaz:Sundaycs:Sundaycy:Sundayda:Sundayde:Sundayet:Sundayel:Sundayes:Sundayeo:Sundayeu:Sundayfr:Sundayga:Sundaygl:Sundayko:Sundayhy:Sundayhr:Sundayio:Sundayid:Sundayit:Sundaykl:Sundaykn:Sundayka:Sundaykk:Sundayku:Sundaylo:Sundayla:Sundaylv:Sundaylt:Sundayhu:Sundaymg:Sundayml:Sundaymn:Sundaymy:Sundaynl:Sundayja:Sundayno:Sundaynn:Sundayoc:Sundaykm:Sundaypl:Sundaypt:Sundayro:Sundayru:Sundaysimple:Sundaysr:Sundayfi:Sundaysv:Sundayta:Sundayte:Sundaytg:Sundaytr:Sundayuk:Sundayvi:Sundayvo:Sundayzh:Sunday
 ***swap***
-swap: 
-{{wikipedia}}
-
-===Alternative forms===
-* [[swop]] {{qualifier|nonstandard}}
-
-===Pronunciation===
-* {{audio|en-us-swap.ogg|Audio (US)}}
-* {{rhymes|ɒp}}
-
-===Etymology===
+swap:
+{wikipedia}
+<h3>Alternative forms</h3>
+<ul><li> swop {{qualifier|nonstandard}}</li>
+</ul>
+
+<h3>Pronunciation</h3>
+<ul><li> {{audio|en-us-swap.ogg|Audio (US)}}</li>
+<li> {{rhymes|ɒp}}</li>
+</ul>
+
+<h3>Etymology</h3>
 Uncertain, probably from imitative origin.
-
-===Noun===
-{{en-noun}}
-[[File:Swapping apples.svg|thumb|Alice has a red apple and Bob has a green apple. After a '''swap''', Alice has the green apple and Bob has the red apple.]]
-
-# A roughly equal exchange of two comparable things.
-# {{finance}} A financial [[derivative]] in which two parties agree to exchange one stream of [[cashflow]] against another stream.
-
-====Derived terms====
-* [[credit default swap]]
-* [[swap meet]]
-* [[total return swap]]
-* [[swapsies]]
-
-====Synonyms====
-* [[barter]]
-* [[trade]]
-* [[quid pro quo]]
-
-====Translations====
-{{trans-top|equal exchange}}
-* Finnish: {{t-|fi|vaihtokauppa}}
-* Latvian: {{t|lv|maiņa|f}}
-{{trans-mid}}
-* Spanish: {{t+|es|cambalache|m}}
-{{trans-bottom}}
-
-{{trans-top|finance: derivative}}
-* Finnish: {{t-|fi|vaihtosopimus}}, {{t+|fi|swap}}
-{{trans-mid}}
-* Spanish: {{t+|es|permuta|f}}
-{{trans-bottom}}
-
-===Verb===
+<h3>Noun</h3>
+{en-noun}Alice has a red apple and Bob has a green apple. After a <b>swap</b>, Alice has the green apple and Bob has the red apple.
+<ol><li> A roughly equal exchange of two comparable things.</li>
+<li> {finance} A financial derivative in which two parties agree to exchange one stream of cashflow against another stream.</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> credit default swap</li>
+<li> swap meet</li>
+<li> total return swap</li>
+<li> swapsies</li>
+</ul>
+
+<h4>Synonyms</h4>
+<ul><li> barter</li>
+<li> trade</li>
+<li> quid pro quo</li>
+</ul>
+
+<h3>Verb</h3>
 {{en-verb|swap|p|ing}}
-
-# {{obsolete}} To [[strike]], [[hit]].
-#* '''1485''', Sir Thomas Malory, ''Le Morte Darthur'', Book VI:
-#*: and therewith was the knyght and the lady on one side – and suddeynly he '''swapped''' of the ladyes hede.
-# To exchange or give (something) in an exchange (for something else).
-#* {{quote-book|title=Religion in the workplace|page=98|author=Michael Wolf|coauthors=Bruce Friedman, Daniel Sutherland|year=1998|passage=In an effort to provide more permanent accommodations, employers may offer employees the opportunity either to '''swap''' jobs with a colleague or to transfer to a new position.}}
-#* {{quote-book|title=A Season of Fire and Ice|author=Lloyd Zimpel|year=2007|passage=Chief watched these goings-on without pleasure, and waved them off in disgust when the smarmiest of the two suggested he might wish to '''swap''' that elk's tooth for this jug of fine rye whiskey.}}
-#* {{quote-book|title=The Oil Kings: How the U.S., Iran, and Saudi Arabia Changed the Balance of Power in the Middle East|page=253|author=Andrew Scott Cooper|year=2011|passage=The Shah wanted to '''swap''' oil for more arms.}}
-
-====Derived terms====
-* [[swap in]], [[swap out]]
-
-====Synonyms====
-* {{sense|exchange}} [[exchange]], [[trade]], [[switch]]
-
-====Translations====
-{{trans-top|exchange or give (something) in exchange for}}
-* {{trreq|Arabic}}
-* Chinese:
-*: {{trreq|Mandarin}}
-* Czech: {{t-|cs|vyměnit}}, {{t-|cs|prohodit}}
-* {{trreq|Dutch}}
-* {{trreq|Esperanto}}
-* Finnish: [[vaihtaa]], [[tehdä]] [[vaihtokauppa]]
-* French: {{t+|fr|échanger}}
-{{trans-mid}}
-* {{trreq|Georgian}}
-* {{trreq|German}}
-* {{trreq|Japanese}}
-* {{trreq|Korean}}
-* Latvian: {{t|lv|mainīt}}
-* Spanish: {{t|es|intercambiar}}
-* {{trreq|Swahili}}
-* {{trreq|Turkish}}
-{{trans-bottom}}
-
-===Anagrams===
-* [[paws#English|paws]]
-* [[wasp#English|wasp]]
-* [[WSPA#English|WSPA]]
-
-[[Category:Trading]]
-
-----
-
-
+<ol><li> {obsolete} To strike, hit.</li>
+<ul><li> <b>1485</b>, Sir Thomas Malory, <em>Le Morte Darthur</em>, Book VI:</li>
+<ul><li> and therewith was the knyght and the lady on one side – and suddeynly he <b>swapped</b> of the ladyes hede.</li>
+</ul>
+</ul>
+<li> To exchange or give (something) in an exchange (for something else).</li>
+<ul><li> {{quote-book|title=Religion in the workplace|page=98|author=Michael Wolf|coauthors=Bruce Friedman, Daniel Sutherland|year=1998|passage=In an effort to provide more permanent accommodations, employers may offer employees the opportunity either to <b>swap</b> jobs with a colleague or to transfer to a new position.}}</li>
+<li> {{quote-book|title=A Season of Fire and Ice|author=Lloyd Zimpel|year=2007|passage=Chief watched these goings-on without pleasure, and waved them off in disgust when the smarmiest of the two suggested he might wish to <b>swap</b> that elk's tooth for this jug of fine rye whiskey.}}</li>
+<li> {{quote-book|title=The Oil Kings: How the U.S., Iran, and Saudi Arabia Changed the Balance of Power in the Middle East|page=253|author=Andrew Scott Cooper|year=2011|passage=The Shah wanted to <b>swap</b> oil for more arms.}}</li>
+</ul>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> swap in, swap out</li>
+</ul>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|exchange}} exchange, trade, switch</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> paws</li>
+<li> wasp</li>
+<li> WSPA</li>
+</ul>
+Category:Trading----
 ***swop***
-swop: 
-
-===Noun===
-{{en-noun}}
+swop:
 
-# {{alternative spelling of|swap}}
+<h3>Noun</h3>
+{en-noun}
+<ol><li> {{alternative spelling of|swap}}</li>
+</ol>
 
-===Verb===
+<h3>Verb</h3>
 {{en-verb|swops|swopping|swopped}}
-
-# {{alternative spelling of|swap}}
-#* '''1977''', [[w:Geoffrey Chaucer|Geoffrey Chaucer]], ''[[w:The Canterbury Tales|The Canterbury Tales]]'', Penguin Classics, p. 315:
-#*: 'We make a pair, by God and by St James! / But, brother, what do you say to '''swopping''' names?'
-
-===Anagrams===
-* [[pows#English|pows]], [[POWs#English|POWs]]
-* [[wops#English|wops]]
-
-[[et:swop]]
-[[fi:swop]]
-[[te:swop]]
-[[vi:swop]]
+<ol><li> {{alternative spelling of|swap}}</li>
+<ul><li> <b>1977</b>, Geoffrey Chaucer, <em>The Canterbury Tales</em>, Penguin Classics, p. 315:</li>
+<ul><li> 'We make a pair, by God and by St James! / But, brother, what do you say to <b>swopping</b> names?'</li>
+</ul>
+</ul>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> pows, POWs</li>
+<li> wops</li>
+</ul>
+et:swopfi:swopte:swopvi:swop
 ***synonym***
-synonym: 
-{{wikipedia}}
-
-===Etymology===
-From {{etyl|enm}} {{term|sinonyme|lang=enm}}, from {{etyl|la}} {{term|synonymum|synōnymum|lang=la}}, from {{etyl|grc}} {{term|συνώνυμον|tr=sunōnumon|lang=grc}}, neuter singular form of {{term|συνώνυμος||synonymous|tr=sunōnumos|lang=grc}}, from {{term|σύν||with|lang=grc}} + {{term|ὄνομα||name|onoma|lang=grc}}.
-
-===Pronunciation===
-* {{IPA|/ˈsɪnənɪm/}}
-* {{audio|en-us-synonym.ogg|Audio (US)}}
-
-===Noun===
-{{en-noun}}
-
-# {{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.
-#: ''"Happy" is a '''synonym''' of "glad".''
-#* {{quote-book|passage=The proportion of English words that have an exact '''synonym''' is small.|author=William T. Parry, Edward A. Hacker|title=Aristotelian Logic|year=1991|url=http://books.google.com/books?id=rJceFowdGEAC}}
-# {{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]]).
-# {{botany|with respect to a name for a given taxon}} Any name for the taxon, usually a validly published, formally accepted one, but often also an unpublished name.
-# {{databases}} An alternative (often shorter) [[name]] defined for an [[object]] in a [[database]].
-#* '''2011''', Paul Nielsen, Uttam Parui, ''Microsoft SQL Server 2008 Bible''
-#*: '''Synonyms''' are part of the SQL standard and are used frequently by Oracle DBAs. Note that Oracle includes both private and public synonyms.
-
-====Synonyms====
-* {{sense|word or phrase with same meaning as another}} [[equivalent]], <!--not according to the definition given for it: * [[metonym]],--> [[poecilonym]]
-
-====Antonyms====
-* {{sense|word or phrase with same meaning as another}} [[antonym]], [[opposite]]
-
-====Derived terms====
-* [[near-synonym]]
-
-====Related terms====
-* [[synonymic]]
-* [[synonymist]]
-* [[synonymous]]
-* [[synonymy]]
-
-====Translations====
-{{trans-top|word with same meaning as another}}
-* Armenian: [[հոմանիշ]] (homaniš)
-* Bengali: {{t-|bn|প্রতিশব্দ|sc=Beng|xs=Bengali}}
-* Catalan: [[sinònim]] {{m}}
-* Chinese:
-*: Mandarin: {{t-|cmn|同義詞|sc=Hani}}, {{t-|cmn|同义词|tr=tóngyìcí|sc=Hani}}, {{t-|cmn|代名詞|sc=Hani}}, {{t-|cmn|代名词|tr=dàimíngcí|sc=Hani}}, {{qualifier|near-synonym}} {{t|cmn|近義詞|sc=Hani}}, {{t|cmn|近义词|tr=jìnyìcí|sc=Hani}}
-* Czech: {{t+|cs|synonymum|n}}, {{t|cs|slovo souznačné|n}}
-* Danish: {{t+|da|synonym|n}}
-* Dutch: {{t+|nl|synoniem|n}}
-* Esperanto: {{t-|eo|sinonimo|xs=Esperanto}}
-* Estonian: {{t|et|sünonüüm}}
-* Finnish: {{t+|fi|synonyymi}}
-* French: {{t+|fr|synonyme|m}}
-* Galician: {{t|gl|sinónimo|m}}
-* German: {{t+|de|Synonym|n}}
-* Greek: {{t+|el|συνώνυμο|n}} (synónymo)
-* Hindi: {{t-|hi|पर्याय|m|tr=paryāy|xs=Hindi}}, {{t|hi|पर्यायवाची|sc=Deva}}, {{t|hi|समानार्थी शब्द|sc=Deva}}
-* Hungarian: {{t+|hu|szinonima}}
-* Icelandic: {{t+|is|samheiti|n}}
-{{trans-mid}}
-* Italian: {{t+|it|sinonimo|m}}
-* Japanese: {{Jpan|[[同義語]]}} ({{Jpan|どうぎご}}, dōgi-go; same), {{Jpan|[[類義語]]}} ({{Jpan|るいぎご}}, ruigi-go; similar)
-* Khmer: {{t|km|ន័យដូច|sc=Khmr|tr=ney dooch}}
-* Latvian: {{t|lv|sinonīms|m|xs=Latvian}}
-* Lithuanian: {{t+|lt|sinonimas|m|alt=sinonìmas|xs=Lithuanian}}
-* Malay: {{t-|ms|synonim|xs=Malay}}
-* Persian: {{t|fa|هم‌معنی|tr=ham-ma'ni|sc=fa-Arab}}, {{t|fa|مترادف|tr=motarâdef|sc=fa-Arab}}
-* Polish: {{t+|pl|synonim|m}}
-* Romanian: {{t-|ro|sinonim|n}}
-* Russian: {{t+|ru|синоним|m|tr=sinónim}}
-* Serbo-Croatian:
-*: Cyrillic: {{t+|sh|истозначница|f}}, {{t+|sh|синоним|m|alt=сино̀нӣм|sc=Cyrl}}
-*: Roman: {{t+|sh|istoznačnica|f|alt=istòznačnica}}, {{t+|sh|sinonim|m|alt=sinònīm}}
-* Slovene: {{t+|sl|sopomenka|f}}, {{t+|sl|sinonim|m}}
-* Spanish: {{t+|es|sinónimo|m}}
-* Swahili: {{t+|sw|kisawe|xs=Swahili}}
-* Swedish: {{t|sv|synonym|c}}, {{t|sv|liktyding|c}}
-* Volapük: {{t|vo|leigasinifavöd}}
-* Welsh: {{t+|cy|cyfystyr|m|xs=Welsh}}
-{{trans-bottom}}
-
-{{trans-top|in zoological nomenclature}}
-* Czech: {{t+|cs|synonymum|n}}
-* Dutch: {{t+|nl|synoniem|n}}
-{{trans-mid}}
-* Finnish: {{t+|fi|synonyymi}}
-* Swahili: {{t+|sw|sinonimu|xs=Swahili}}
-{{trans-bottom}}
-
-{{trans-top|in botanical nomenclature}}
-* Czech: {{t+|cs|synonymum|n}}
-* Dutch: {{t+|nl|synoniem|n}}
-{{trans-mid}}
-* Finnish: {{t+|fi|synonyymi}}
-* Swahili: {{t+|sw|sinonimu|xs=Swahili}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|zh}}: [[同義詞]], [[同义词]] (tongyici)
-* {{ttbc|id}}: [[sama|persamaan]] [[kata]], [[sinonim]]
-* {{ttbc|ia}}: [[synonymo]]
-* {{ttbc|ml}}: [[പര്യായം]] (paryaayam)
-* {{ttbc|pt}}: [[sinônimo]] {{qualifier|Brazil}}, [[sinónimo]] {{qualifier|Portugal}}
-* {{ttbc|sv}}: {{l|sv|synonym}}
-* {{ttbc|tr}}: [[eş anlamlı]]
-{{trans-bottom}}
-
-===See also===
-{{nyms}}
-* [[homotypic]]
-* [[heterotypic]]
-
+synonym:
+{wikipedia}
+<h3>Etymology</h3>
+From {{etyl|enm}} {{term|sinonyme|lang=enm}}, from {{etyl|la}} {{term|synonymum|synōnymum|lang=la}}, from {{etyl|grc}} {{term|συνώνυμον|tr=sunōnumon|lang=grc}}, neuter singular form of {{term|συνώνυμος|synonymous|tr=sunōnumos|lang=grc}}, from {{term|σύν|with|lang=grc}} + {{term|ὄνομα|name|onoma|lang=grc}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈsɪnənɪm/}}</li>
+<li> {{audio|en-us-synonym.ogg|Audio (US)}}</li>
+</ul>
+
+<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>
+<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>
+<li> {{botany|with respect to a name for a given taxon}} Any name for the taxon, usually a validly published, formally accepted one, but often also an unpublished name.</li>
+<li> {databases} An alternative (often shorter) name defined for an object in a database.</li>
+<ul><li> <b>2011</b>, Paul Nielsen, Uttam Parui, <em>Microsoft SQL Server 2008 Bible</em></li>
+<ul><li> <b>Synonyms</b> are part of the SQL standard and are used frequently by Oracle DBAs. Note that Oracle includes both private and public synonyms.</li>
+</ul>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|word or phrase with same meaning as another}} equivalent,  poecilonym</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> {{sense|word or phrase with same meaning as another}} antonym, opposite</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> near-synonym</li>
+</ul>
+
+<h4>Related terms</h4>
+<ul><li> synonymic</li>
+<li> synonymist</li>
+<li> synonymous</li>
+<li> synonymy</li>
+</ul>
+
+<h3>See also</h3>
+{nyms}
+<ul><li> homotypic</li>
+<li> heterotypic</li>
+</ul>
 ----
-
-
 ***thesaurus***
-thesaurus: 
-{{wikipedia}}
-
-===Etymology===
-16th century, from {{etyl|la|en}} {{term|thesaurus|thēsaurus|lang=la}}, from {{etyl|grc|en}} {{term|θησαυρός||storehouse, treasure|tr=thēsauros|lang=grc|sc=polytonic}}; its current English usage/meaning was established soon after the publication of Peter Roget's ''Thesaurus of English Words and Phrases'' in 1852
-
-===Pronunciation===
-* {{IPA|/θɪˈsɔːɹəs/}}, {{X-SAMPA|/TI"sO:r@s/}}
-* {{rhymes|ɔːrəs}}
-
-===Noun===
+thesaurus:
+{wikipedia}
+<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>
+<li> {{rhymes|ɔːrəs}}</li>
+</ul>
+
+<h3>Noun</h3>
 {{en-noun|thesauri|pl2=thesauruses}}
-
-# A [[publication]], usually in the form of a [[book]], that provides [[synonym]]s (and sometimes [[antonym]]s) for the [[word]]s of a given [[language]].
-#: ''"Roget" is the leading brand name for a print English '''thesaurus''''' that lists words under general concepts rather than just close synonyms.
-# {{archaic}} A [[dictionary]] or [[encyclopedia]].
-# {{information science}} A hierarchy of subject headings—canonic titles of themes and topics, the titles serving as search keys.
-
-====Synonyms====
-* [[synonymicon]]
-
-====Derived terms====
-* [[thesaural]]
-
-====Translations====
-{{trans-top|book of synonyms}}
-* [[Catalan]]: {{t|ca|diccionari de sinònims}}
-* Chinese:
-*: Mandarin: {{t|cmn|分類詞詞典|sc=Hani}}, {{t|cmn|分类词词典|tr=fēnlèicí cídiǎn|sc=Hani}}
-* Czech: {{t-|cs|tezaurus|m}}
-* Danish: {{t|da|begrebsordbog|c}}, {{t|da|saggruppeordbog|c}}, {{t|da|tesaurus}}, {{t-|da|synonymordbog|c}}
-* Dutch: thesaurus {{m}}, [[synoniemenwoordenboek]] {{n}}
-* Esperanto: {{t-|eo|tezaŭro|xs=Esperanto}}
-* Finnish: {{t+|fi|synonyymisanakirja}}, {{t|fi|käsitesanakirja}}
-* French: {{t|fr|dictionnaire des synonymes}},  {{t+|fr|thésaurus|m}}, {{t|fr|dictionnaire de notions}}, {{t|fr|dictionnaire par ordre de matières}}
-* [[Galician]]: {{t|gl|dicionario de sinónimos|m}}
-* German: {{t+|de|Thesaurus|m}}, {{t|de|Begriffswörterbuch|n}}, {{t|de|Sachgruppenwörterbuch|n}}
-* Hungarian: {{t+|hu|szinonimaszótár}},  {{t|hu|tezaurusz}}
-* Icelandic: {{t|is|hugtakaorðabók}}
-* [[Ido]]: {{t|io|tezauro|xs=Ido}}
-{{trans-mid}}
-* Indonesian: {{t-|id|tesaurus|xs=Indonesian}}
-* Italian: {{t|it|dizionario dei sinonimi}}, {{t+|it|tesoro|m}}
-* Japanese: [[シソーラス]] (shisōrasu), [[類語辞典]] (ruigo jiten)
-* [[Macedonian]]: {{t-|mk|тезаурус|m|tr=tezáurus}},  {{t|mk|синонимен речник|m|tr=sinonímen réčnik}}
-* Norwegian: {{t|no|begrepsordbok}}, {{t|no|begrepsklasseordbok}}, {{t|no|omgrepsordbok}}, {{t|no|omgrepsklasseordbok}}, {{t|no|tesaurus}}, {{t-|no|synonymordbok|m|f}}
-* Polish: {{t+|pl|tezaurus|m}}
-* Portuguese: {{t|pt|dicionário de sinônimos}}, {{t+|pt|tesauro|m}}
-* Russian: {{t+|ru|тезаурус|tr=tezaurus}}
-* [[Scottish Gaelic]]: {{t|gd|co-fhaclair|m}}
-* Serbian: {{t|sr|речник синонима|m|tr=rečnik sinonima|sc=Cyrl}}
-* Spanish: {{t+|es|tesauro|m}}
-* Swedish: {{t|sv|begreppsordbok|c}}, {{t|sv|begreppsklassordbok}}, {{t|sv|tesaurus|c}}, {{t+|sv|synonymordbok|c}}
-* Turkish: {{t+|tr|sözlük}}
-{{trans-bottom}}
-
-{{trans-top|information science: hierarchy of titles}}
-* [[Catalan]]: {{t|ca|tesaurus|m}}
-{{trans-mid}}
-* Czech: {{t-|cs|tezaurus|m}}
-{{trans-bottom}}
-
-====See also====
-* [[ontology]]
-* [[Wiktionary:Wikisaurus|Wiktionary's thesaurus (Wikisaurus)]]
-* [[Appendix:Roget's thesaurus classification]]
-
-===External links===
-* {{R:Webster 1913}}
-* {{R:Century 1911}}
-* ''Roget's Thesaurus can be found at:'' http://www.bartleby.com/thesauri
-
-[[Category:en:Reference works]]
-
-----
-
-
+<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> {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>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> synonymicon</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> thesaural</li>
+</ul>
+
+<h4>See also</h4>
+<ul><li> ontology</li>
+<li> Wiktionary's thesaurus (Wikisaurus)</li>
+<li> Appendix:Roget's thesaurus classification</li>
+</ul>
+
+<h3>External links</h3>
+<ul><li> {R:Webster 1913}</li>
+<li> {R:Century 1911}</li>
+<li> <em>Roget's Thesaurus can be found at:</em> http://www.bartleby.com/thesauri</li>
+</ul>
+Category:en:Reference works----
 ***Thursday***
-Thursday: 
-
-===Etymology===
-From {{etyl|enm}}, from {{etyl|ang}} {{term|þursdæg|þursdæġ|lang=ang}}, {{term|þurresdæg|þurresdæġ|Thursday|lang=ang}}, possibly from a contraction of {{etyl|ang}} {{term|þunresdæg|þunresdæġ|Thursday|lit=[[Thor]]'s day|lang=ang}}, but more likely of {{etyl|gmq}} origin, from {{etyl|non}} {{term|þórsdagr|þōrsdagr|lang=non}} or Old {{etyl|da}} {{term|þursdag|þūrsdag|Thursday|lang=da}}; all from {{proto|Germanic|Þunras dagaz|Thor's day|lang=en}}. More at {{l|en|thunder}}, {{l|en|day}}.
-
-A calque of Latin ''[[dies Iovis]] (dies Jovis)'', via an association of the god [[Thor]] with the Roman god of thunder [[Jove]] (Jupiter).
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈθɜːzdeɪ/}}, {{X-SAMPA|/"T3:zdeI/}} ''or'' {{IPA|/ˈθɜːzdi/}}, {{X-SAMPA|/"T3:zdi/}}
-* {{a|US}} {{IPA|/ˈθɝzdeɪ/}}, {{X-SAMPA|/"T3`zdeI/}} ''or'' {{IPA|/ˈθɝzdi/}}, {{X-SAMPA|/"T3`zdi/}}
-* {{audio|en-us-Thursday.ogg|Audio (US)}}
-* {{audio|En-uk-Thursday.ogg|Audio (UK)}}
-:* {{rhymes|ɜː(r)zdeɪ}}, {{rhymes|ɜː(r)zdi}}
-
-===Noun===
-{{en-noun}}
-
-# The fifth [[day]] of the [[week]] in many religious traditions, and the fourth day of the week in systems using the ISO 8601 norm; it follows [[Wednesday]] and precedes [[Friday]].
-<!-- probably just an attributive use of the noun: # An appointment, person, or feeling associated with this day of the week.-->
-
-====Derived terms====
-{{top3}}
-* [[Ascension Thursday]]
-* [[Black Thursday]]
-* [[Bounds Thursday]]
-* [[Carnival Thursday]]
-* [[Chare Thursday]]
-* [[dirty tricks Thursday]]
-* [[dress-up Thursday]]
-* [[Fat Thursday]]
-* [[Great and Holy Thursday]]
-{{mid3}}
-* [[Great Thursday]]
-* [[Green Thursday]]
-* [[Hallow Thursday]]
-* [[Holy Thursday]]
-* [[Maundy Thursday]]
-* [[Running Thursday]]
-* [[Shear Thursday]]
-* [[Sheer Thursday]]
-* [[Shore Thursday]], [[Shorpthursday]], [[Shorthursday]]
-{{mid3}}
-* [[Shrove Thursday]]
-* [[Silver Thursday]]
-* [[Skire Thursday]], [[Skis Thursday]]
-* [[Super Thursday]]
-* [[Thu]], [[Thu.]], [[Thur]], [[Thur.]], [[Thurs]], [[Thurs.]]
-* [[w:Thursday Dinners|Thursday Dinners]]
-* [[w:Thursday Island|Thursday Island]]
-* [[Thursdays]]<!--adverb-->
-* [[Whit Thursday]]
-{{bottom}}
-
-====Translations====
-{{trans-top|day of the week}}
-* Abkhaz: {{t|ab|аҧшьаш|tr=aṗṣ̌aš|sc=Cyrl}}
-* Afrikaans: {{t|af|Donderdag|xs=Afrikaans}}
-* Alabama: [[istonóstàaka]], [[nihta istonóstàaka]]
-* Albanian: {{t|sq|e enjte}}
-* Alutiiq: {{tø|ems|Staamiin}}
-* Amharic: [[ሐሙስ]] (hamus)
-* Arabic: {{t|ar|الخميس|m|tr=al-xamīs|sc=Arab}}, {{t|ar|يوم الخميس|m|tr=yawm al-xamīs|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|الخميس|m|tr=el-xamīs|sc=Arab}}
-* Aragonese: {{t|an|chueves}}
-* Aramaic: [[חמשבשבא]]
-* Armenian: {{t+|hy|հինգշաբթի|tr=hingšabt'i}}
-*: Old Armenian: {{tø|xcl|հինգշաբաթի|tr=hingšabatʿi|sc=Armn}}
-* Azeri: {{t|az|cümə axşamı}}
-* Bashkir: {{tø|ba|кесаҙна|tr=kesaðna|sc=Cyrl}}
-* Basque: [[ostegun]]
-* Belarusian: {{t-|be|чацвер|m|tr=čatvér|xs=Belarusian}}
-* Bengali: {{t|bn|বৃহস্পতিবার|tr=brihôshpôtibar|sc=Beng}}
-* Blackfoot: [[náámiksistsiko]]
-* Breton: [[Yaou]] {{m}}, [[diriaou]] ''adverb'' <!-- move this to [[Thursdays]] once it is created-->
-* Bulgarian: {{t+|bg|четвъртък|m|tr=četvărtăk}}
-* Burmese: {{t-|my|ကြာသပတေး|tr=kyatha.pa.de:|sc=Mymr|xs=Burmese}}
-* Catalan: {{t+|ca|dijous|m}}
-* Central Atlas Tamazight: [[ⴰⵎⵀⴰⴷ]] (amhad)
-* Chechen: {{tø|ce|еара|tr=jeara}}
-* Cherokee: [[ᏅᎩᏁ ᎢᎦ]] (nvgine iga)
-* Chichewa: {{tø|ny|lachinayi}}
-* Chinese:
-*: Mandarin: {{t|zh|星期四|tr=xīngqīsì|sc=Hani}}, {{t|zh|禮拜四|sc=Hani}}, {{t|zh|礼拜四|tr=lǐbàisì|sc=Hani}}, {{t|zh|周四|tr=zhōusì|sc=Hani}}
-* Chuvash: {{tø|cv|кĕçнерникун|tr=kiɕnernikun|sc=Cyrl}}
-* Corsican: [[ghjovi]]
-* Coptic:
-*: Bohairic: {{tø|cop| ⲡⲓ ⲧⲓⲟⲩ |m|tr=pi ʔtiou }}
-*: Sahidic: {{tø|cop| ⲡ ϯⲟⲩ|m|tr=ʔp tiou}}
-* Czech: {{t+|cs|čtvrtek|m}}
-* Dakota: {{tø|dak|Aŋpetuitopa}}
-* Danish: {{t+|da|torsdag}}
-* Dutch: {{t+|nl|donderdag|m}}
-* Esperanto: {{t+|eo|ĵaŭdo|xs=Esperanto}}
-* Estonian: {{t+|et|neljapäev}}
-* Faroese: {{t-|fo|hósdagur|m|xs=Faroese}}, {{t|fo|tórsdagur|m}}
-* Fijian: {{t|fj|Lotulevu}}
-* Finnish: {{t+|fi|torstai}}
-* French: {{t+|fr|jeudi|m}}
-* Galician: {{t+|gl|xoves|m|xs=Galician}}
-* Georgian: {{t|ka|ხუთშაბათი|tr=xut'šabat'i|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Donnerstag|m}}
-* Gilbertese: {{tø|gil|Kabong}}
-* Greek: {{t+|el|Πέμπτη|f}} (Pém(p)ti)
-* Greenlandic: {{t+|kl|Sisamanngorneq|xs=Greenlandic}}
-* Gujarati: {{t|gu|ગુરુવાર|tr=guruvār|sc=Gujr}}
-* Haitian Creole: {{tø|ht|jedi}}
-* Hawaiian: {{tø|haw|Pōʻahā}}
-* Hebrew: {{t|he|יום חמישי|m|tr=yom khamishí}}
-* Hindi: {{t+|hi|गुरूवार|tr=gurūvār|xs=Hindi}}, {{t+|hi|बृहस्पतिवार|tr=brhaspativār|xs=Hindi}}
-* Hungarian: {{t+|hu|csütörtök}}
-* Icelandic: {{t+|is|fimmtudagur|m}}
-* Ido: {{t|io|jovdio}}
-* Indonesian: [[hari kamis]]
-* Interlingua: {{t|ia|jovedi}}
-* Irish: {{t+|ga|Déardaoin|m|xs=Irish}}
-* Italian: {{t+|it|giovedì|m}}
-* Japanese: {{t|ja|木曜日|tr=もくようび, mokuyōbi|sc=Jpan}}, {{t|ja|木曜|tr=もくよう, mokuyō|sc=Jpan}}
-* Kashubian: [[czwôrtk]] {{m}}
-* Kazakh: {{t+|kk|бейсенбі|tr=beysenbi|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|ព្រហស្បតិ៍|tr=tngai bprăhōă|sc=Khmr}}
-* Kinyarwanda: [[Kwakane]]
-* Kongo: {{tø|kg|Lumbu kia nya}}
-* Korean: {{t+|ko|목요일|tr=mogyoil|sc=Kore}} ({{t|ko|木曜日|sc=Kore}})
-* Kurdish: {{t+|ku|pêncşem|f}}, {{ku-Arab|[[پێنجشه‌م]]}}, {{ku-Arab|[[پێنجشه‌مه‌]]}}
-* Kyrgyz: {{t|ky|бейшемби|tr=beyşembi|sc=Cyrl}}
-* Lao: {{t+|lo|ວັນພະຫັດ|tr=wan-pha-hat|sc=Laoo|xs=Lao}}
-* Latin: {{t+|la|dies Iovis}}, {{t-|la|dies Jovis}}
-* Latvian: {{t+|lv|ceturtdiena|xs=Latvian}}
-* Lithuanian: {{t+|lt|ketvirtadienis|m|xs=Lithuanian}}
-* Livonian: [[neļļõndpǟva]]
-* Lower Sorbian: [[stwórtk]] {{m}}
-{{trans-mid}}
-* Luganda: {{tø|lg|Lwakuna}}
-* Luxembourgish: {{t|lb|Donneschden|m}}, {{t|lb|Donneschdeg|m}}
-* Macedonian: {{t+|mk|четврток|m|tr=čétvrtok}}
-* Malay: {{t|ms|khamis|xs=Malay}}
-* Maltese: {{t-|mt|il-Ħamis|xs=Maltese}}
-* Maori: [[Tāite]], [[Rāwhā]], [[Rāpare]]
-* Mongolian: {{t|mn|пүрэв|tr=pürev|sc=Cyrl}}
-* Navajo: {{tø|nv|Dį́ʼíjį́ Ndaʼanish}}
-* Neapolitan: [[gioverì]]
-* Norwegian: {{t+|no|torsdag}}
-* Ojibwe: [[niiyogiizhigad]]
-* Old English: {{t-|ang|þunresdæg|m|alt=þunresdæġ|xs=Old English}}
-* Old Norse: {{t|non|þórsdagr|m}}
-* Old Turkic: {{tø|otk|beşünç}}
-* Ossetian:
-*: Digor: {{tø|os|цуппæрæн|tr=cuppæræn|sc=Cyrl|xs=Ossetian}}
-*: Iron: {{tø|os|цыппæрæм|tr=cyppæræm|sc=Cyrl|xs=Ossetian}}
-* Papiamentu: {{tø|pap|diaweps}}
-* Persian: {{t|fa|پنج‌شنبه|tr=panj-šanbeh|sc=fa-Arab}}
-* Polish: {{t+|pl|czwartek|m}}
-* Portuguese: {{t+|pt|quinta-feira|f}}
-* Quechua: {{t|qu|juivis|xs=Quechua}}
-* Romani: {{tø|rom|zhoja}}
-* Romanian: {{t+|ro|joi|f}}
-* Russian: {{t+|ru|четверг|m|tr=četvérg}}
-* Sami:
-*: Northern: {{tø|se|duorastat}}
-* Samoan: {{t|sm|Aso Tofi}}
-* Scots: {{tø|sco|Thursday}}
-* Scottish Gaelic: {{t|gd|Diardaoin|m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|четвртак|m}}
-*: Roman: {{t|sh|četvrtak|m}}
-* Shona: {{t|sn|China}}
-* Sinhalese: {{t|si|බ්‍රහස්‍පතින්‍දා|tr=brahaspatindā|sc=Sinh}}
-* Skolt Sami: {{tø|sms|nelljdpeiˊvv}}
-* Slovak: {{t+|sk|štvrtok|m}}
-* Slovene: {{t+|sl|četrtek|m}}
-* Somali: [[Khamiis]]
-* Sotho: [[Labone]]
-* Spanish: {{t+|es|jueves|m}}
-* Swahili: {{t+|sw|ljuma|xs=Swahili}}
-* Swati: {{t|ss|Lesíne}}
-* Swedish: {{t+|sv|torsdag|c}}
-* Tagalog: {{t|tl|Huwebes}}, {{t|tl|huwebes}}
-* Tahitian: {{tø|ty|mahana maha}}
-* Tajik: {{t|tg|панҷшанбе|tr=panjšanbe|sc=Cyrl}}
-* Taos: [[xwábasi]]
-* Tarantino: {{tø|roa-tar|sciuvedìe}}
-* Tatar: {{t+|tt|пәнҗешәмбе|tr=pänceşämbe|sc=Cyrl|xs=Tatar}},  {{qualifier|colloquial}} {{t|tt|атнакич|tr=atnakiç|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t+|te|గురువారము}}
-* Thai: {{t|th|วันพฤหัสบดี|tr=wan phriā hàt bà dee}}
-* Tok Pisin: {{t|tpi|Fonde}}
-* Tongan: {{t|to|Tu'apulelulu}}
-* Tswana: {{t|tn|Labone}}
-* Turkish: {{t+|tr|perşembe}}
-* Turkmen: {{t|tk|penşenbe}}, {{t|tk|sogapgün}}
-* Ukrainian: {{t+|uk|четвер|tr=četvér|xs=Ukrainian}}
-* Upper Sorbian: [[štwórtk]] {{m}}
-* Urdu: {{t|ur|جمعرات|tr=jume'rāt|sc=ur-Arab}}
-* Uyghur: {{t|ug|پەيشەنبە|sc=ug-Arab}}
-* Uzbek: {{t|uz|payshanba}}
-* Venetian: {{tø|vec|zioba|m}}
-* Vietnamese: {{t+|vi|thứ năm|xs=Vietnamese}}
-* Vilamovian: {{tø|wym|dunyśtaog}}
-* Volapük: {{t|vo|dödel}}, {{t|vo|lulüdel}}
-* Welsh: {{t+|cy|dydd Iau|m|xs=Welsh}}
-* West Frisian: [[tongersdei]]
-* Wolof: [[Alxames]]
-* Xhosa: {{t|xh|ulwesine}}
-* Yiddish: {{t|yi|דאָנערשטיק|m|tr=dónershtik}}
-* Zulu: {{t|zu|uLwesine}}
-{{trans-bottom}}
-
-{{trans-top|Translations to check}}
-* Swahili: {{t|sw|alahamisi|xs=Swahili}}
-{{trans-mid}}
-* Tibetan: [[གཟའ་ཕུར་པུ་]]
-{{trans-bottom}}
-
-===Adverb===
+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).
+<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>
+<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>
+</ul>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> The fifth day of the week in many religious traditions, and the fourth day of the week in systems using the ISO 8601 norm; it follows Wednesday and precedes Friday.</li>
+</ol>
+
+<h4>Derived terms</h4>
+{top3}
+<ul><li> Ascension Thursday</li>
+<li> Black Thursday</li>
+<li> Bounds Thursday</li>
+<li> Carnival Thursday</li>
+<li> Chare Thursday</li>
+<li> dirty tricks Thursday</li>
+<li> dress-up Thursday</li>
+<li> Fat Thursday</li>
+<li> Great and Holy Thursday</li>
+</ul>
+{mid3}
+<ul><li> Great Thursday</li>
+<li> Green Thursday</li>
+<li> Hallow Thursday</li>
+<li> Holy Thursday</li>
+<li> Maundy Thursday</li>
+<li> Running Thursday</li>
+<li> Shear Thursday</li>
+<li> Sheer Thursday</li>
+<li> Shore Thursday, Shorpthursday, Shorthursday</li>
+</ul>
+{mid3}
+<ul><li> Shrove Thursday</li>
+<li> Silver Thursday</li>
+<li> Skire Thursday, Skis Thursday</li>
+<li> Super Thursday</li>
+<li> Thu, Thu., Thur, Thur., Thurs, Thurs.</li>
+<li> Thursday Dinners</li>
+<li> Thursday Island</li>
+<li> Thursdays</li>
+<li> Whit Thursday</li>
+</ul>
+{bottom}
+<h3>Adverb</h3>
 {{en-adv|-}}
+<ol><li> on Thursday</li>
+</ol>
 
-# on Thursday
-
-====Translations====
-{{trans-top|on Thursday}}
-* Dutch: {{t|nl|op donderdag}}
-* Irish: {{t+|ga|Déardaoin|xs=Irish}}
-* Latvian: {{t|lv|ceturtdien}}
-{{trans-mid}}
-* Romanian: {{t|ro|joi}}, {{t|ro|joia}}, {{t|ro|joia}}
-* Turkish: {{t|tr|perşembe}}
-* Volapük: {{t|vo|dödelo}}, {{t|vo|lulüdelo}}
-{{trans-bottom}}
-
-===See also===
-* {{list|en|days of the week}}
-
-[[Category:en:Time]]
-
-[[af:Thursday]]
-[[ast:Thursday]]
-[[az:Thursday]]
-[[ca:Thursday]]
-[[cs:Thursday]]
-[[cy:Thursday]]
-[[da:Thursday]]
-[[de:Thursday]]
-[[et:Thursday]]
-[[el:Thursday]]
-[[es:Thursday]]
-[[eo:Thursday]]
-[[eu:Thursday]]
-[[fr:Thursday]]
-[[ga:Thursday]]
-[[gl:Thursday]]
-[[ko:Thursday]]
-[[hy:Thursday]]
-[[hr:Thursday]]
-[[io:Thursday]]
-[[id:Thursday]]
-[[it:Thursday]]
-[[kl:Thursday]]
-[[kn:Thursday]]
-[[ka:Thursday]]
-[[kk:Thursday]]
-[[ku:Thursday]]
-[[lo:Thursday]]
-[[la:Thursday]]
-[[lv:Thursday]]
-[[lt:Thursday]]
-[[hu:Thursday]]
-[[mg:Thursday]]
-[[ml:Thursday]]
-[[mn:Thursday]]
-[[my:Thursday]]
-[[nl:Thursday]]
-[[ja:Thursday]]
-[[no:Thursday]]
-[[nn:Thursday]]
-[[oc:Thursday]]
-[[km:Thursday]]
-[[pl:Thursday]]
-[[pt:Thursday]]
-[[ro:Thursday]]
-[[ru:Thursday]]
-[[simple:Thursday]]
-[[fi:Thursday]]
-[[sv:Thursday]]
-[[ta:Thursday]]
-[[te:Thursday]]
-[[tg:Thursday]]
-[[tr:Thursday]]
-[[uk:Thursday]]
-[[vi:Thursday]]
-[[vo:Thursday]]
-[[zh:Thursday]]
+<h3>See also</h3>
+<ul><li> {{list|en|days of the week}}</li>
+</ul>
+Category:en:Timeaf:Thursdayast:Thursdayaz:Thursdayca:Thursdaycs:Thursdaycy:Thursdayda:Thursdayde:Thursdayet:Thursdayel:Thursdayes:Thursdayeo:Thursdayeu:Thursdayfr:Thursdayga:Thursdaygl:Thursdayko:Thursdayhy:Thursdayhr:Thursdayio:Thursdayid:Thursdayit:Thursdaykl:Thursdaykn:Thursdayka:Thursdaykk:Thursdayku:Thursdaylo:Thursdayla:Thursdaylv:Thursdaylt:Thursdayhu:Thursdaymg:Thursdayml:Thursdaymn:Thursdaymy:Thursdaynl:Thursdayja:Thursdayno:Thursdaynn:Thursdayoc:Thursdaykm:Thursdaypl:Thursdaypt:Thursdayro:Thursdayru:Thursdaysimple:Thursdayfi:Thursdaysv:Thursdayta:Thursdayte:Thursdaytg:Thursdaytr:Thursdayuk:Thursdayvi:Thursdayvo:Thursdayzh:Thursday
 ***trade***
-trade: 
-{{wikipedia|dab=trade (disambiguation)|trade}}
-
-===Etymology===
-From {{etyl|enm|en}} {{term|trade||lang=enm|path, course of conduct}}, cognate with {{etyl|ang}} {{term|tredan||lang=ang|tread}}; See [http://www.etymonline.com/index.php?search=trade&searchmode=none Online Etymology Dictionary]
-
-===Pronunciation===
-* {{audio|En-uk-trade.ogg|Audio (UK)}}
-* {{IPA|/tɹeɪd/}}, {{X-SAMPA|/'treId/}}
-* {{audio|en-us-trade.ogg|Audio (US)}}
-* {{rhymes|eɪd}}
-
-===Noun===
+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]
+<h3>Pronunciation</h3>
+<ul><li> {{audio|En-uk-trade.ogg|Audio (UK)}}</li>
+<li> {{IPA|/tɹeɪd/}}, {{X-SAMPA|/'treId/}}</li>
+<li> {{audio|en-us-trade.ogg|Audio (US)}}</li>
+<li> {{rhymes|eɪd}}</li>
+</ul>
+
+<h3>Noun</h3>
 {{en-noun|s|-}}
-
-# {{uncountable}} Buying and selling of goods and services on a [[market]].
-# {{countable}} A particular instance of [[buy]]ing or [[sell]]ing.
-#: ''I did no '''trades''' with them once the rumors started.''
-# {{countable}} An instance of [[barter]]ing items in [[exchange]] for one another.
-#* '''1989''', [[w:Bruce Pandolfini|Bruce Pandolfini]], ''Chess Openings: Traps and Zaps'', ISBN 0671656902, "Glossary" section, page 225&nbsp;[http://books.google.com/books?id=pocVITTr8tMC&pg=PA225&dq=trade]:
-#*: EXCHANGE — A '''trade''' or swap of no material profit to either side.
-#* '''2009''', Elliott Kalb and Mark Weinstein, ''The 30 Greatest Sports Conspiracy Theories of All Time'', ISBN 9781602396784, page 60&nbsp;[http://books.google.com/books?id=nQd8MHuaXysC&pg=PA60&dq=trade]:
-#*: When Golden State matched the Knicks' offer sheet, the Warriors and Knicks worked out a '''trade''' that sent King to New York for Richardson.
-# {{countable}} Those who [[perform]] a particular kind of [[skilled]] work.
-#: ''The skilled '''trades''' were the first to organize modern labor unions.''
-# {{countable}} Those engaged in an industry or group of related industries.
-#: ''It is not a retail showroom. It is only for the '''trade'''.''
-# {{countable}} The skilled practice of a practical [[occupation]].
-#: ''He learned his '''trade''' as an [[apprentice]].''
-# {{uncountable|UK}} The [[business]] given to a [[commercial]] [[establishment]] by its customers.
-#: ''Even before noon there was considerable '''trade'''.''
-# {{context|only as plural}} [[steady|Steady]] [[wind]]s blowing from east to west above and below the [[equator]].
-#: ''They rode the '''trades''' going west.''
-# {{context|only as plural}} A publication intended for participants in an industry or related group of industries.
-#: ''Rumors about layoffs are all over the '''trades'''.''
-# {{uncountable|LGBT|slang}} A brief sexual encounter.
-#: ''Josh picked up some '''trade''' last night.''
-
-====Quotations====
-* {{seeCites}}
-
-====Derived terms====
-{{rel-top|terms derived from ''trade (noun)''}}
-* [[anti trade]]/[[anti-trade]]
-* [[balance of trade]]
-* [[basket trade]]
-* [[block trade]]
-* [[bullet trade]]
-* [[carbon trade]]
-* [[carriage trade]]
-* [[carry trade]]
-* [[carousel trade]]
-* [[cash and carry trade]]
-* [[coasting trade]]
-* [[countertrade]]
-* [[cross-trade]]
-* [[day trade]]
-* [[fair trade]]
-* [[free trade]]
-* [[horse trade]]
-* [[invisible trade]]
-* [[jack of all trades]]
-* [[off-trade]]
-* [[on-trade]]
-* [[out trade]]
-* [[paper trade]]
-* [[rag trade]]
-* [[restraint of trade]]
-* [[rough trade]]
-* [[reverse of trade]]
-* [[slave trade]]
-{{rel-mid}}
-* [[spot trade]]
-* [[stock-in-trade]]
-* [[terms of trade]]
-* [[trade barrier]]
-* [[trade card]]
-* [[trade deficit]]
-* [[trade dispute]]
-* [[trade fair]]
-* [[trade magazine]]
-* [[trade mark]]/[[trademark]]
-* [[trade name]]
-* [[trade newspaper]]
-* [[trade-off]]
-* [[trade route]]
-* [[trade secret]]
-* [[trade show]]
-* [[trade standard]]
-* [[trade surplus]]
-* [[trade term]]
-* [[trade union]]
-* [[trade war]]
-* [[trade wind]]
-* [[trader]]
-* [[tradesman]]
-* [[tradesperson]]
-* [[uptick trade]]
-* [[visible trade]]
-{{rel-bottom}}
-
-====Synonyms====
-* {{sense|the commercial exchange of goods and services}} [[commerce]]
-* {{sense|the collective people who perform a particular kind of skilled work}} [[business]]
-* {{sense|the skilled practice of a practical occupation}} [[craft]]
-* {{sense|An instance of buying and selling}} [[deal]], [[barter]]
-* {{sense|the business given to a commercial establishment by its customers}} [[patronage]]
-<!--* {{sense|steady winds blowing from east to west above and below the equator}} [[trade wind]]-->
-
-====Translations====
-{{trans-top|buying and selling}}
-* Afrikaans: {{t-|af|ruil|xs=Afrikaans}}
-* Arabic: {{t|ar|تجارة|f|tr=tijaara|sc=Arab}}
-* Armenian: {{t|hy|առևտուր|tr=aṙevtur}}
-* Bosnian: {{t-|bs|trgovina|f}}
-* Chinese:
-*: Mandarin: {{t-|cmn|貿易|sc=Hani}},  {{t-|cmn|贸易|tr=màoyì|sc=Hani}},  {{t-|cmn|交易|tr=jiāoyì|sc=Hani}}
-* Croatian: {{t-|hr|trgovina|f}}
-* Czech: {{t+|cs|obchod|m}}
-* Danish: {{t-|da|handel}}, {{t-|da|byttehandel}}
-* Dutch: {{t+|nl|handel|m}}
-* Finnish: {{t+|fi|kauppa}}, {{t|fi|kaupankäynti}}
-* French: {{t+|fr|commerce|m}}
-* German: {{t+|de|Handel|m}}, {{t|de|Kommerz|f}}
-* Hebrew: {{t|he|סחר|m|tr=sakhar|sc=Hebr}}, {{t|he|מסחר|m|tr=miskhar|sc=Hebr}}
-* Hindi: {{t|hi|व्यापार|m|tr=vyāpār|sc=Deva}}, {{t|hi|तिजारत|f|tr=tijārat|sc=Deva}}
-* Hungarian: {{t+|hu|kereskedelem}}
-* Italian: {{t+|it|commercio|m}}
-* Japanese: {{t-|ja|貿易|tr=ぼうえき, bōeki|sc=Jpan}}, {{t-|ja|交易|tr=こうえき, kōeki|sc=Jpan}}
-{{trans-mid}}
-* Korean: {{t|ko|무역|tr=muyeok|sc=Kore}} ({{t|ko|貿易|sc=Kore}})
-* Macedonian: {{t|mk|трговија|f|tr=trgóvija}}
-* Norwegian: {{t+|no|handel|m}}
-* Persian: {{t|fa|تجارت|tr=tejârat|sc=fa-Arab}}
-* Polish: {{t+|pl|handel|m}}
-* Portuguese: {{t+|pt|comércio|m}}
-* Russian: {{t+|ru|торговля|f|tr=torgóvlja}}, {{t|ru|коммерция|f|tr=kommércija|sc=Cyrl}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|трговина|f}}, {{t|sh|обход|m}}
-*: Roman: {{t|sh|trgovina|f}}, {{t|sh|obhod|m}}
-* Spanish: {{t+|es|comercio|m}}, {{t-|es|gremio|m}}
-* Swedish: {{t+|sv|handel|c}}
-* Telugu: [[వర్తకము]] (vartakamu), [[వాణిజ్యము]] (vaaNijyamu)
-* Thai: {{t|th|พาณิชย์|tr=paa-nít|sc=Thai}}, {{t|th|ธุรกิจ|tr=tú-rá-gìt|sc=Thai}}, {{t|th|การค้า|tr=gaan-káa|sc=Thai}}
-* Urdu: {{t|ur|تجارت|f|tr=tijārat|sc=ur-Arab}}
-* Vietnamese: {{t|vi|buôn bán|alt=sự buôn bán}}, {{t|vi|thương mại}}, {{t|vi|thương nghiệp}}
-{{trans-bottom}}
-
-{{trans-top|instance of buying or selling}}
-* Afrikaans: {{t-|af|handel|xs=Afrikaans}}
-* Chinese:
-*: Mandarin: {{t-|cmn|貿易|sc=Hani}},  {{t-|cmn|贸易|tr=màoyì|sc=Hani}}
-* Czech: {{t+|cs|obchod|m}}
-* Danish: {{t-|da|handel|c}}
-* Dutch: {{t+|nl|handel|m}}
-* Finnish: {{t|fi|kauppa}}
-{{trans-mid}}
-* German: {{t+|de|Handel|m}}
-* Japanese: {{t-|ja|商売|tr=shōbai}}
-* Macedonian: {{t|mk|тргување|n|tr=trgúvanje}}
-* Norwegian: {{t+|no|handel|m}}
-* Polish: {{t+|pl|transakcja|f}}
-* Serbian: {{t-|sr|razmena|f}}, {{t-|sr|izmena|f}}
-{{trans-bottom}}
-
-{{trans-top|instance of bartering}}
-* Finnish: {{t|fi|vaihtokauppa}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|those who perform a particular kind of skilled work}}
-* Finnish: {{t|fi|ammattikunta}}, {{t|fi|ammatti}}
-{{trans-mid}}
-* Swedish: {{t|sv|yrkesman|c}}, {{t|sv|fackman|c}}
-{{trans-bottom}}
-
-{{trans-top|those engaged in an industry}}
-* Finnish: {{t|fi|ammattilainen|alt=ammattilaiset|p}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|skilled practice of an occupation}}
-* Afrikaans: [[ambag]]
-* Armenian: {{t-|hy|արհեստ|tr=arhest}}
-* Bosnian: {{t-|bs|zanat|m}}
-* Dutch: {{t+|nl|gilde|m}}
-* Finnish: {{t|fi|ammattitaito}}, {{t|fi|ammatti}}
-* German: {{t+|de|Handwerk|n}}
-* Macedonian: {{t|mk|занает|m|tr=zánaet}}, {{t-|mk|струка|f|tr=strúka}}
-{{trans-mid}}
-* Norwegian: {{t|no|håndverk|n}}, {{t-|no|fag|n}}
-* Polish: {{t-|pl|profesja|f}}, {{t+|pl|zawód|m}}, {{t+|pl|fach|m}}
-* Romanian: {{t-|ro|meserie}}
-* Russian: {{t+|ru|ремесло|n|tr=r'emesló}}, {{t+|ru|профессия|f|tr=prof'éssija}}
-* Serbian:
-*: Cyrillic: [[занат]] {{m}}
-*: Roman: [[zanat]] {{m}}
-* Swedish: {{t|sv|yrke|n}}, {{t|sv|hantverk|n}}
-{{trans-bottom}}
-
-{{trans-top|business given by customers}}
-* Arabic: {{t|ar|تجارة|f|tr=tijaara}}
-* Chinese:
-*: Mandarin: {{t-|cmn|貿易|sc=Hani}},  {{t-|cmn|贸易|tr=màoyì|sc=Hani}}, {{t-|cmn|商業|sc=Hani}},  {{t-|cmn|商业|tr=shāngyè|sc=Hani}}
-* Finnish: {{t|fi|kauppa}}
-* Japanese: {{t-|ja|貿易|tr=ぼうえき, bōeki}}
-{{trans-mid}}
-* Korean: {{t+|ko|무역|tr=muyeok|sc=Hang}} ({{t+|ko|貿易|sc=Hani}})
-* Manx: {{t|gv|cochionneeaght|f}}
-* Russian: {{t+|ru|торговля|f|tr=torgóvlja}}
-* Serbian: {{t-|sr|trgovina|f}}
-* Vietnamese: {{t|vi|thương mại}}
-{{trans-bottom}}
-
-{{trans-top|steady winds above and below equator}}
-* Finnish: {{t|fi|pasaati}}, {{t|fi|pasaatituuli}}
-* Japanese: {{t|ja|貿易風|tr=bōekifū}}
-{{trans-mid}}
-* Russian: {{t|ru|пассат|m|tr=passát}}
-{{trans-bottom}}
-
-{{trans-top|publication intended for participants in an industry}}
-* Finnish: {{t|fi|ammattilehti}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|slang: brief sexual encounter}}
-* Finnish: {{t|fi|poka}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-* {{ttbc|Dutch}}: [[arbeidsmarkt]] {{f}}
-* {{ttbc|id}}: [[niaga|perniagaan]], [[dagang|perdagangan]]
-* {{ttbc|ro}}: [[comerț]], [[negoț]]
-* {{ttbc|sh}}: [[trgovci]] {{m|p}}
-{{trans-bottom}}
-
-===Verb===
+<ol><li> {uncountable} Buying and selling of goods and services on a market.</li>
+<li> {countable} A particular instance of buying or selling.</li>
+<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> 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>
+<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>
+<li> {countable} Those who perform a particular kind of skilled work.</li>
+<ul><li> <em>The skilled <b>trades</b> were the first to organize modern labor unions.</em></li>
+</ul>
+<li> {countable} Those engaged in an industry or group of related industries.</li>
+<ul><li> <em>It is not a retail showroom. It is only for the <b>trade</b>.</em></li>
+</ul>
+<li> {countable} The skilled practice of a practical occupation.</li>
+<ul><li> <em>He learned his <b>trade</b> as an apprentice.</em></li>
+</ul>
+<li> {{uncountable|UK}} The business given to a commercial establishment by its customers.</li>
+<ul><li> <em>Even before noon there was considerable <b>trade</b>.</em></li>
+</ul>
+<li> {{context|only as plural}} Steady winds blowing from east to west above and below the equator.</li>
+<ul><li> <em>They rode the <b>trades</b> going west.</em></li>
+</ul>
+<li> {{context|only as plural}} A publication intended for participants in an industry or related group of industries.</li>
+<ul><li> <em>Rumors about layoffs are all over the <b>trades</b>.</em></li>
+</ul>
+<li> {{uncountable|LGBT|slang}} A brief sexual encounter.</li>
+<ul><li> <em>Josh picked up some <b>trade</b> last night.</em></li>
+</ul>
+</ol>
+
+<h4>Quotations</h4>
+<ul><li> {seeCites}</li>
+</ul>
+
+<h4>Derived terms</h4>
+{{rel-top|terms derived from <em>trade (noun)</em>}}
+<ul><li> anti trade/anti-trade</li>
+<li> balance of trade</li>
+<li> basket trade</li>
+<li> block trade</li>
+<li> bullet trade</li>
+<li> carbon trade</li>
+<li> carriage trade</li>
+<li> carry trade</li>
+<li> carousel trade</li>
+<li> cash and carry trade</li>
+<li> coasting trade</li>
+<li> countertrade</li>
+<li> cross-trade</li>
+<li> day trade</li>
+<li> fair trade</li>
+<li> free trade</li>
+<li> horse trade</li>
+<li> invisible trade</li>
+<li> jack of all trades</li>
+<li> off-trade</li>
+<li> on-trade</li>
+<li> out trade</li>
+<li> paper trade</li>
+<li> rag trade</li>
+<li> restraint of trade</li>
+<li> rough trade</li>
+<li> reverse of trade</li>
+<li> slave trade</li>
+</ul>
+{rel-mid}
+<ul><li> spot trade</li>
+<li> stock-in-trade</li>
+<li> terms of trade</li>
+<li> trade barrier</li>
+<li> trade card</li>
+<li> trade deficit</li>
+<li> trade dispute</li>
+<li> trade fair</li>
+<li> trade magazine</li>
+<li> trade mark/trademark</li>
+<li> trade name</li>
+<li> trade newspaper</li>
+<li> trade-off</li>
+<li> trade route</li>
+<li> trade secret</li>
+<li> trade show</li>
+<li> trade standard</li>
+<li> trade surplus</li>
+<li> trade term</li>
+<li> trade union</li>
+<li> trade war</li>
+<li> trade wind</li>
+<li> trader</li>
+<li> tradesman</li>
+<li> tradesperson</li>
+<li> uptick trade</li>
+<li> visible trade</li>
+</ul>
+{rel-bottom}
+<h4>Synonyms</h4>
+<ul><li> {{sense|the commercial exchange of goods and services}} commerce</li>
+<li> {{sense|the collective people who perform a particular kind of skilled work}} business</li>
+<li> {{sense|the skilled practice of a practical occupation}} craft</li>
+<li> {{sense|An instance of buying and selling}} deal, barter</li>
+<li> {{sense|the business given to a commercial establishment by its customers}} patronage</li>
+</ul>
+
+<h3>Verb</h3>
 {{en-verb|trad|ing}}
-
-# To [[engage]] in trade
-#: ''This company '''trades''' in precious metal.''
-# To be traded at a certain price or under certain conditions.
-#: ''stock trade''
-# To give (something) in [[exchange]] for.
-#: ''Will you '''trade''' your precious watch for my earring?''
-# To do business; offer for sale as for one's [[livelihood]].
-
-====Quotations====
-* {{seeCites}}
-
-====Derived terms====
+<ol><li> To engage in trade</li>
+<ul><li> <em>This company <b>trades</b> in precious metal.</em></li>
+</ul>
+<li> To be traded at a certain price or under certain conditions.</li>
+<ul><li> <em>stock trade</em></li>
+</ul>
+<li> To give (something) in exchange for.</li>
+<ul><li> <em>Will you <b>trade</b> your precious watch for my earring?</em></li>
+</ul>
+<li> To do business; offer for sale as for one's livelihood.</li>
+</ol>
+
+<h4>Quotations</h4>
+<ul><li> {seeCites}</li>
+</ul>
+
+<h4>Derived terms</h4>
 {{rel-top3|Terms derived from the verb "trade"}}
-* [[insider trading]]
-{{rel-mid3}}
-* [[trade in]]
-{{rel-mid3}}
-* [[tradable]]
-{{rel-bottom}}
-
-====Synonyms====
-* {{sense|engage in the trade of}} [[deal]]
-* {{sense|be traded at a certain price or under certain conditions}}
-* {{sense|give something in exchange for}} [[exchange]], [[swap]], [[switch]]
-* {{sense|do business}} [[do business]], [[make a deal]]
-
-====Translations====
-{{trans-top|exchange}}
-* Esperanto: {{t-|eo|interŝanĝi|xs=Esperanto}}
-* French: {{t|fr|échanger}}
-{{trans-mid}}  
-* {{trreq|Georgian}}
-* Spanish: {{t+|es|comerciar}}
-{{trans-bottom}}
-
-===See also===
-* [[buy]]
-* [[sell]]
-
-===Anagrams===
-* [[adret#English|adret]], [[dater#English|dater]], [[derat#English|derat]], [[drate#English|drate]], [[rated#English|rated]], [[tared#English|tared]], [[tread#English|tread]]
-
-[[Category:1000 English basic words]]
-
-----
-
-
-trade wind: 
-
-===Alternative forms===
-* [[trade-wind]]
-
-===Pronunciation===
-* {{IPA|/ˈtreɪdˑwɪnd/}}
-
-===Noun===
-{{en-noun|sg=[[trade]] [[wind]]}}
-
-# A steady wind that blows from east to west above and below the equator.
-#: ''They rode the '''trade winds''' going west.''
-
-====Translations====
-{{trans-top|steady wind}}
-* Finnish: {{t-|fi|pasaatituuli}}
-* French: [[alizé]] {{m}}, [[vent alizé]] {{m}}
-* Hungarian: {{t-|hu|passzátszél}}
-* Italian: {{t-|it|aliseo|m}}
-{{trans-mid}}
-* Norwegian: {{t|no|passatvind|m}}
-* Polish: {{t|pl|pasat|m}}
-* Romanian: {{t+|ro|alizeu|n}}
-* Spanish: {{t|es|vientos alisios|m|p}}
-{{trans-bottom}}
-
-====Synonyms====
-* [[westerly]]
-
-====Antonyms====
-* [[easterly]]
-
-[[Category:en:Wind]]
-
-[[io:trade wind]]
-[[ja:trade wind]]
-[[ro:trade wind]]
-[[fi:trade wind]]
-[[ta:trade wind]]
-[[zh:trade wind]]
+<ul><li> insider trading</li>
+</ul>
+{rel-mid3}
+<ul><li> trade in</li>
+</ul>
+{rel-mid3}
+<ul><li> tradable</li>
+</ul>
+{rel-bottom}
+<h4>Synonyms</h4>
+<ul><li> {{sense|engage in the trade of}} deal</li>
+<li> {{sense|be traded at a certain price or under certain conditions}}</li>
+<li> {{sense|give something in exchange for}} exchange, swap, switch</li>
+<li> {{sense|do business}} do business, make a deal</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> buy</li>
+<li> sell</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> adret, dater, derat, drate, rated, tared, tread</li>
+</ul>
+Category:1000 English basic words----
+trade wind:
+
+<h3>Alternative forms</h3>
+<ul><li> trade-wind</li>
+</ul>
+
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈtreɪdˑwɪnd/}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|sg=trade wind}}
+<ol><li> A steady wind that blows from east to west above and below the equator.</li>
+<ul><li> <em>They rode the <b>trade winds</b> going west.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> westerly</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> easterly</li>
+</ul>
+Category:en:Windio:trade windja:trade windro:trade windfi:trade windta:trade windzh:trade wind
 ***Tuesday***
-Tuesday: 
-
-===Etymology===
-From {{etyl|enm}} {{term|Tewesday|lang=enm}}, from {{etyl|ang}} {{term|Tiwesdæg|Tīwesdæġ|Tuesday|lang=ang}}, from {{proto|Germanic|Tīwas dagaz|Tuesday|lit=Tiw's Day|lang=en}} (a rendering of {{etyl|la|-}} {{term|dies Martis|lang=la}} (see ''{{w|interpretatio germanica}}''), itself a translation of {{etyl|grc|-}} {{term|||tr=Areos hemera|lang=grc}} (see ''{{w|interpretatio romana}}'')), equivalent to {{proto|Germanic|Tīwaz|god of war|lang=en}} (compare {{etyl|non|-}} {{term|Tyr|lang=non}}, {{etyl|goh|-}} {{term|Ziu|lang=goh}}), from {{proto|Indo-European|dyewós|god|lang=en}} + {{proto|Germanic|dagaz|day|lang=en}}. Cognate with {{etyl|sco|-}} {{term|Tysday||Tuesday|lang=sco}}, {{etyl|fy|-}} {{term|tiisdei||Tuesday|lang=fy}}, {{etyl|de|-}} dialectal {{term|Ziestag||Tuesday|lang=de}}, {{etyl|da|-}} {{term|tirsdag||Tuesday|lang=da}}, {{etyl|sv|-}} {{term|tisdag||Tuesday|lang=sv}}. More at [[Zeus]], [[day]].
-
-A calque of Latin ''[[dies Martis]]'', via an association of the god [[Tiw]] with the Roman god of war [[Mars]].
-
-===Pronunciation===
-* {{a|RP}} {{IPA|/ˈtjuːzdeɪ/}}, {{X-SAMPA|/"tju:zdeI/}} ''or'' {{IPA|/ˈtjuːzdɪ/}}, {{X-SAMPA|/"tju:zdI/}}
-* {{a|US}} {{enPR|to͞ozʹdā}}, {{IPA|/ˈtuːzdeɪ/}}, {{X-SAMPA|/"tu:zdeI/}}
-* {{audio|en-us-Tuesday.ogg|Audio (US)}}
-* {{audio|En-uk-Tuesday.ogg|Audio (UK)}}
-
-===Noun===
-{{en-noun}}
-
-# The third [[day]] of the [[week]] in many religious traditions, and the second day of the week in systems that use the ISO 8601 norm; it follows [[Monday]] and precedes [[Wednesday]].
-<!--this is probably just an attributive use of the noun: #An appointment, person, or feeling associated with this day of the week.-->
-
-====Derived terms====
-{{top3}}
-* [[Black Tuesday]]
-* [[ecstasy Tuesday]]
-* [[Fasten-Tuesday]], [[Fastens-Tuesday]]
-* [[Fat Tuesday]]
-* [[Happy Tuesday]]
-* [[Hock Tuesday]]
-* [[Holy Tuesday]]
-{{mid3}}
-* [[Mini-Tuesday]]
-* [[Pancake Tuesday]]
-* [[Patch Tuesday]]
-* [[Pentecost Tuesday]]
-* [[see you next Tuesday]]<!--UK slang-->
-* [[Shroft Tuesday]]
-* [[Shrove Tuesday]]
-* [[suicide Tuesday]]
-{{mid3}}
-* [[Super Tuesday]]
-* [[w:Terrible Tuesday|Terrible Tuesday]]
-* [[Tue]], [[Tues]]<!--abbreviation-->
-* [[Tuesday blues]]
-* [[Tuesday Group]]
-* [[Tuesdays]]<!--adverb-->
-* [[Whitsun Tuesday]]
-* [[Whit Tuesday]], [[Whit-Tuesday]]
-{{bottom}}
-
-====Translations====
-{{trans-top|day of the week}}
-* Abkhaz: {{t|ab|аҩаш|tr=aɥaš|sc=Cyrl}}
-* Afrikaans: [[Dinsdag]]
-* Alabama: [[atòkla]], [[nihta atòkla]]
-* Albanian: {{t|sq|e martë}}
-* Alutiiq: {{tø|ems|Aipiin}}
-* Amharic: [[ማክሰኞ]] (maksenyo)
-* Amuzgo: [[martè]]
-* Arabic: {{t|ar|الثلاثاء|m|tr=al-ṯalaṯāʾ|sc=Arab}}, {{t|ar|يوم الثلاثاء|m|tr=yawm al-ṯalaṯāʾ|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|التلات|m|tr=etalāt|sc=Arab}}
-* Armenian: {{t+|hy|երեքշաբթի|tr=erek'šabt'i}}
-*: Old Armenian: {{tø|xcl|երեքշաբաթի|tr=erekʿšabatʿi|sc=Armn}}
-* Aromanian: {{t|rup|martsã}}
-* Azeri: {{t|az|çərşənbə axşamı}}
-* Bashkir: {{tø|ba|шишәмбе|tr=şişembi|sc=Cyrl}}
-* Basque: {{t+|eu|astearte|xs=Basque}}
-* Belarusian: {{t-|be|аўторак|m|tr=aŭtórak|xs=Belarusian}}
-* Bengali: {{t|bn|মঙ্গলবার|tr=monggolbar|sc=Beng}}
-* Blackfoot: [[isttsinaiksistsiko]]
-* Breton: [[Meurzh]] {{m}}, [[dimeurzh]] ''adverb''
-* Bulgarian: {{t+|bg|вторник|m|tr=vtórnik}}
-* Burmese: {{t-|my|အင်္ဂါ|tr=in-ga|sc=Mymr|xs=Burmese}}
-* Catalan: {{t|ca|dimarts|m}}
-* Central Atlas Tamazight: [[ⴰⵔⴰⵎ]] (aram)
-* Chechen: {{tø|ce|шинара|tr=šinara}}
-* Cherokee: [[ᏔᎵᏁ ᎢᎦ]] (taline iga)
-* Chichewa: {{tø|ny|lachiwiri}}
-* Chinese:
-*: Mandarin: {{t|zh|星期二|tr=xīngqī'èr|sc=Hani}}, {{t|zh|禮拜二|sc=Hani}}, {{t|zh|礼拜二|tr=lǐbài'èr|sc=Hani}}, {{t|zh|周二|tr=zhōu'èr|sc=Hani}}
-* Chuvash: {{tø|cv|ытларикун|tr=ytlarikun|sc=Cyrl}}
-* Corsican: [[marti]]
-* Czech: {{t+|cs|úterý|n}}
-* Dalmatian: {{t|dlm|mirte|m}}
-* Dakota: {{tø|dak|Aŋpetuinoŋpa}}
-* Danish: {{t+|da|tirsdag}}
-* Dutch: {{t+|nl|dinsdag|m}}
-* Esperanto: {{t+|eo|mardo|xs=Esperanto}}
-* Estonian: {{t+|et|teisipäev}}
-* Faroese: {{t+|fo|týsdagur|m|xs=Faroese}}
-* Fijian: {{t|fj|Tusiti}}
-* Finnish: {{t+|fi|tiistai}}
-* French: {{t+|fr|mardi|m}}
-* Friulian: {{t|fur|martars}}
-* Galician: [[martes]]
-* Georgian: {{t-|ka|სამშაბათი|tr=samšabati|sc=Geor|xs=Georgian}}
-* German: {{t|de|Dienstag|m}}
-* Gilbertese: {{tø|gil|Kauabong}}
-* Greek: {{t+|el|Τρίτη|f|tr=Tríti}}
-* Greenlandic: {{t+|kl|Marlunngorneq|xs=Greenlandic}}
-* Gujarati: {{t|gu|મંગળવાર|m|tr=mãgaḷavār|sc=Gujr}}
-* Gulay: {{tø|gvl|Yn Vayrt}}
-* Haitian Creole: {{tø|ht|madi}}
-* Hawaiian: {{tø|haw|Pōʻalua}}
-* Hebrew: {{t|he|יום שלישי|m|tr=yom shlishí|sc=Hebr}}
-* Hindi: {{t|hi|मंगलवार|m|tr=mãgalvār|sc=Deva}}, {{t|hi|भौमवार|m|tr=bhaumvār|sc=Deva}}
-* Hungarian: {{t+|hu|kedd}}
-* Icelandic: {{t+|is|þriðjudagur|m}}
-* Ido: [[mardio]]
-* Indonesian: [[hari selasa]]
-* Interlingua: [[martedi]]
-* Irish: {{t+|ga|Máirt|f|xs=Irish}}
-* Italian: {{t+|it|martedì|m}}
-* Japanese: {{t|ja|火曜日|tr=かようび, kayōbi|sc=Jpan}}, {{t|ja|火曜|tr=かよう, kayō|sc=Jpan}}
-* Kashubian: [[wtórk]] {{m}}
-* Kazakh: {{t+|kk|сейсенбі|tr=seysenbi|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|ថ្ងៃអង្គារ|tr=tngai ongīă|sc=Khmr}}
-* Kinyarwanda: [[Kwakabiri]]
-* Kongo: {{tø|kg|Lumbu kia nzole}}
-* Korean: {{t+|ko|화요일|tr=hwayoil|sc=Kore}} ({{t|ko|火曜日|sc=Kore}})
-* Kurdish:
-*: Sorani: {{t-|ku|سێشه‌م|sc=ku-Arab}}, {{t+|ku|سێشه‌مه‌|sc=ku-Arab}}
-* Kyrgyz: {{t|ky|шейшемби|tr=şeyşembi|sc=Cyrl}}
-* Lao: {{t+|lo|ວັນອັງຄານ|tr=wan-'ang-khaan|sc=Laoo|xs=Lao}}
-* Latin: {{t+|la|dies Martis}}
-* Latvian: {{t+|lv|otrdiena|xs=Latvian}}
-* Lithuanian: {{t+|lt|antradienis|m|xs=Lithuanian}}
-* Livonian: [[tuoiznapǟva]]
-* Lower Sorbian: [[wałtora]] {{f}}
-* Luganda: {{tø|lg|Lwakubiri}}
-* Luxembourgish: {{t|lb|Dënschden|m}}, {{t|lb|Dënschdeg|m}}
-{{trans-mid}}
-* Macedonian: {{t+|mk|вторник|m|tr=vtórnik}}
-* Malay: {{t+|ms|Selasa|xs=Malay}}
-* Maltese: {{t-|mt|it-Tlieta|xs=Maltese}}
-* Manx: {{t|gv|Mayrt}}
-* Maori: [[Tūrei]], [[Rārua]], [[Rātū]]
-* Mongolian: {{t|mn|мягмар|tr=mjagmar|sc=Cyrl}}
-* Navajo: {{tø|nv|Naakijį́ Ndaʼanish}}
-* Neapolitan: [[marterì]]
-* Norwegian: {{t|no|tirsdag}} {{qualifier|Bokmål}}
-*: Norwegian Nynorsk: {{t|nn|tysdag|xs=Norwegian Nynorsk}}
-* Occitan: {{t+|oc|dimars|xs=Occitan}}
-* Ojibwe: [[niizhogiizhigad]]
-* Old English: {{t-|ang|Tiwesdæg|alt=Tīwesdæg|xs=Old English}}
-* Old Norse: [[týsdagr]] {{m}}
-* Old Turkic: {{tø|otk|üçünç}}
-* Ossetian:
-*: Digor: {{tø|os|косгифиццагбон|tr=kosgificcagbon|sc=Cyrl|xs=Ossetian}}, {{tø|os|геуæргибон|tr=geuærgibon|sc=Cyrl|xs=Ossetian}}
-*: Iron: {{tø|os|дыццæг|tr=dyccæg|sc=Cyrl|xs=Ossetian}}
-* Papiamentu: {{tø|pap|diamars}}
-* Pashto: {{t|ps|سه‌شنبې|tr=sehšanbâ|sc=ps-Arab}}, {{t|ps|سه‌شنبه|tr=sehšanbe|sc=ps-Arab}}
-* Persian: {{t|fa|سه‌شنبه|tr=se-šanbe|sc=fa-Arab}}
-* Polish: {{t+|pl|wtorek}}
-* Portuguese: {{t+|pt|terça-feira|f}}
-* Quechua: {{t|qu|martis}}
-* Romani: {{tø|rom|marci}}
-* Romanian: {{t+|ro|marți|f}}
-* Romansch: {{t|rm|mardi}}, {{t|rm|mardis}}, {{t|rm|margis}}
-* Russian: {{t+|ru|вторник|m|tr=vtórnik}}
-* Sami:
-*: Northern: {{tø|se|disdat}}, {{tø|se|maŋŋebárga}}
-* Samoan: {{t|sm|Aso Lua}}
-* Sardinian: {{tø|sc|martis|xs=Sardinian}}, {{t|sc|maltis}}
-* Scots: [[Tysday]]
-* Scottish Gaelic: {{t|gd|Dimàirt|m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|уторак|m}}
-*: Roman: {{t|sh|utorak|m}}
-* Sinhalese: {{t|si|අඟහරුවාදා|tr=aṅgaharuvādā|sc=Sinh}}
-* Skolt Sami: {{tø|sms|mââibargg}}
-* Slovak: {{t+|sk|utorok|m}}
-* Slovene: {{t+|sl|torek|m}}
-* Somali: [[Talaado]]
-* Sotho: [[Labobedi]]
-* Spanish: {{t+|es|martes|m}}
-* Swahili: {{t-|sw|jumaane|xs=Swahili}}
-* Swati: {{t|ss|Lesíbilí}}
-* Swedish: {{t+|sv|tisdag|c}}
-* Tagalog: {{t|tl|Martes}}, {{t|tl|martes}}
-* Tahitian: {{tø|ty|Mahana piti}}
-* Tajik: {{t|tg|сешанбе|tr=sešanbe|sc=Cyrl}}
-* Tamil: {{t|ta|செவ்வாய்|tr=chevvāy|sc=Taml}}
-* Taos: [[móltəsi]]
-* Tarantino: {{tø|roa-tar|martedìe}}
-* Tatar: {{t+|tt|сишәмбе|tr=sişämbe|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t+|te|మంగళవారము}}
-* Thai: {{t|th|วันอังคาร|tr=wan ang khaan}}
-* Tok Pisin: {{t|tpi|tunde}}
-* Tongan: {{t|to|Tusite}}
-* Tswana: {{t|tn|Labobedi}}
-* Turkish: {{t+|tr|salı}}
-* Turkmen: {{t|tk|sişenbe}}, {{t|tk|ýaşgün}}
-* Ukrainian: {{t+|uk|вівторок|m|tr=vivtórok|xs=Ukrainian}}
-* Upper Sorbian: [[wutora]] {{f}}
-* Urdu: {{t|ur|منگل|tr=mangal|sc=ur-Arab}}
-* Uyghur: {{t|ug|سەيشەنبە|sc=ug-Arab}}
-* Uzbek: {{t|uz|seshanba}}
-* Venetian: {{tø|vec|marti|m}}
-* Vietnamese: {{t+|vi|thứ ba|xs=Vietnamese}}
-* Vilamovian: {{tø|wym|dynstaog}}
-* Volapük: {{t|vo|tudel}}, {{t|vo|kilüdel}}, {{t|vo|tusdel}}
-* Welsh: {{t+|cy|dydd Mawrth|m|xs=Welsh}}
-* West Frisian: [[tiisdei]]
-* Wolof: [[Talaata]]
-* Xhosa: {{t|xh|ulwesibini}}
-* Yao: {{tø|yao|dyaviidi}}
-* Yiddish: {{t|yi|דינסטיק|m|tr=dinstik|sc=Hebr}}
-* Zulu: {{t|zu|uLwesibili}}
-{{trans-bottom}}
-
-{{trans-top|Translations to check}}
-* Tibetan: [[གཟའ་མིག་དམར་]]
-{{trans-mid}}
-{{trans-bottom}}
-
-===Adverb===
+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.
+<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>
+<li> {{audio|en-us-Tuesday.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-Tuesday.ogg|Audio (UK)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> The third day of the week in many religious traditions, and the second day of the week in systems that use the ISO 8601 norm; it follows Monday and precedes Wednesday.</li>
+</ol>
+
+<h4>Derived terms</h4>
+{top3}
+<ul><li> Black Tuesday</li>
+<li> ecstasy Tuesday</li>
+<li> Fasten-Tuesday, Fastens-Tuesday</li>
+<li> Fat Tuesday</li>
+<li> Happy Tuesday</li>
+<li> Hock Tuesday</li>
+<li> Holy Tuesday</li>
+</ul>
+{mid3}
+<ul><li> Mini-Tuesday</li>
+<li> Pancake Tuesday</li>
+<li> Patch Tuesday</li>
+<li> Pentecost Tuesday</li>
+<li> see you next Tuesday</li>
+<li> Shroft Tuesday</li>
+<li> Shrove Tuesday</li>
+<li> suicide Tuesday</li>
+</ul>
+{mid3}
+<ul><li> Super Tuesday</li>
+<li> Terrible Tuesday</li>
+<li> Tue, Tues</li>
+<li> Tuesday blues</li>
+<li> Tuesday Group</li>
+<li> Tuesdays</li>
+<li> Whitsun Tuesday</li>
+<li> Whit Tuesday, Whit-Tuesday</li>
+</ul>
+{bottom}
+<h3>Adverb</h3>
 {{en-adv|-}}
+<ol><li> on Tuesday</li>
+</ol>
 
-# on Tuesday
-
-====Translations====
-{{trans-top|on Tuesday}}
-* German: {{t|de|am Dienstag|m}}
-* Hungarian: {{t|hu|kedden}}
-* Irish: {{t+|ga|Dé Máirt|xs=Irish}}
-* Latvian: {{t|lv|otrdien}}
-{{trans-mid}}
-* Romanian: {{t|ro|marți}}, {{t|ro|marțea}}
-* Turkish: {{t|tr|salı}}
-* Volapük: {{t|vo|tudelo}}, {{t|vo|kilüdelo}}, {{t|vo|tusdelo}}
-{{trans-bottom}}
-
-===See also===
-* {{list|en|days of the week}}
-
-[[af:Tuesday]]
-[[ast:Tuesday]]
-[[az:Tuesday]]
-[[zh-min-nan:Tuesday]]
-[[cs:Tuesday]]
-[[cy:Tuesday]]
-[[da:Tuesday]]
-[[de:Tuesday]]
-[[et:Tuesday]]
-[[el:Tuesday]]
-[[es:Tuesday]]
-[[eo:Tuesday]]
-[[eu:Tuesday]]
-[[fr:Tuesday]]
-[[ga:Tuesday]]
-[[gl:Tuesday]]
-[[ko:Tuesday]]
-[[hy:Tuesday]]
-[[hr:Tuesday]]
-[[io:Tuesday]]
-[[id:Tuesday]]
-[[it:Tuesday]]
-[[kl:Tuesday]]
-[[kn:Tuesday]]
-[[ka:Tuesday]]
-[[kk:Tuesday]]
-[[ku:Tuesday]]
-[[lo:Tuesday]]
-[[la:Tuesday]]
-[[lv:Tuesday]]
-[[lt:Tuesday]]
-[[hu:Tuesday]]
-[[mg:Tuesday]]
-[[ml:Tuesday]]
-[[mn:Tuesday]]
-[[my:Tuesday]]
-[[nl:Tuesday]]
-[[ja:Tuesday]]
-[[no:Tuesday]]
-[[nn:Tuesday]]
-[[oc:Tuesday]]
-[[km:Tuesday]]
-[[pl:Tuesday]]
-[[pt:Tuesday]]
-[[ro:Tuesday]]
-[[ru:Tuesday]]
-[[simple:Tuesday]]
-[[sr:Tuesday]]
-[[fi:Tuesday]]
-[[sv:Tuesday]]
-[[ta:Tuesday]]
-[[tg:Tuesday]]
-[[tr:Tuesday]]
-[[uk:Tuesday]]
-[[vi:Tuesday]]
-[[vo:Tuesday]]
-[[zh:Tuesday]]
+<h3>See also</h3>
+<ul><li> {{list|en|days of the week}}</li>
+</ul>
+af:Tuesdayast:Tuesdayaz:Tuesdayzh-min-nan:Tuesdaycs:Tuesdaycy:Tuesdayda:Tuesdayde:Tuesdayet:Tuesdayel:Tuesdayes:Tuesdayeo:Tuesdayeu:Tuesdayfr:Tuesdayga:Tuesdaygl:Tuesdayko:Tuesdayhy:Tuesdayhr:Tuesdayio:Tuesdayid:Tuesdayit:Tuesdaykl:Tuesdaykn:Tuesdayka:Tuesdaykk:Tuesdayku:Tuesdaylo:Tuesdayla:Tuesdaylv:Tuesdaylt:Tuesdayhu:Tuesdaymg:Tuesdayml:Tuesdaymn:Tuesdaymy:Tuesdaynl:Tuesdayja:Tuesdayno:Tuesdaynn:Tuesdayoc:Tuesdaykm:Tuesdaypl:Tuesdaypt:Tuesdayro:Tuesdayru:Tuesdaysimple:Tuesdaysr:Tuesdayfi:Tuesdaysv:Tuesdayta:Tuesdaytg:Tuesdaytr:Tuesdayuk:Tuesdayvi:Tuesdayvo:Tuesdayzh:Tuesday
 ***verb***
-verb: 
-{{wikipedia}}
-
-===Etymology===
-From {{etyl|fro|en}} {{term|verbe|lang=fro}}, from {{etyl|la|en}} {{term|verbum||word|lang=la}}, from {{proto|Indo-European|wer-|lang=en}}.
-
-===Pronunciation===
-* {{IPA|/vɜː(ɹ)b/}}, {{X-SAMPA|/v3:(r\)b/}}
-* {{audio|en-us-verb.ogg|Audio (US)}}
-* {{rhymes|ɜː(ɹ)b}}
-
-===Noun===
-{{en-noun}}
-
-# {{grammar}} A [[word]] that indicates an action, event, or state.
-#: ''The word “speak” is an English '''verb'''.''
-
-====Usage notes====
-Verbs compose a fundamental category of words in most languages.  In an English clause, a verb forms the [[head]] of the [[predicate]] of the clause.  In many languages, verbs uniquely [[conjugate]] for [[tense]] and [[aspect]].
-
-====Quotations====
-* '''2001''' — [[w:Eoin Colfer|Eoin Colfer]], ''Artemis Fowl'', p 221
-*: Then you could say that the doorway exploded.  But the particular '''verb''' doesn't do the action justice.  Rather, it shattered into infinitesimal pieces.
-
-====Hyponyms====
-* See also [[Wikisaurus:verb]]
-
-====Derived terms====
-{{der-top}}
-* [[adverb]]
-* [[anomalous verb]]
-* [[auxiliary verb]]
-* [[boot verb]]
-* [[copular verb]]
-* [[coverb]]
-* [[defective verb]]
-* [[ditransitive verb]]
-* [[dynamic verb]]
-* [[full verb]]
-* [[helping verb]]
-{{der-mid3}}
-* [[impersonal verb]]
-* [[intransitive verb]]
-* [[irregular verb]]
-* [[linking verb]]
-* [[modal verb]]
-* [[passive verb]]
-* [[phrasal verb]]
-* [[preverb]]
-* [[regular verb]]
-* [[serial verb]]
-* [[stative verb]]
-{{der-mid3}}
-* [[subject-verb agreement]]
-* [[transitive verb]]
-* [[verb inflection]]
-* [[verb phrase]]
-* [[verb tense]]
-* [[verbal]]
-* [[verbal complement]]
-* [[verbal noun]]
-* [[verbal regency]]
-* [[verbless clause]]
-{{der-bottom}}
-
-====Translations====
-{{trans-top|(grammar) a word that indicates an action, event, or a state}}
-* Afrikaans: {{t+|af|werkwoord|xs=Afrikaans}}
-* Albanian: {{t+|sq|folje|f|xs=Albanian}}
-* Ancient Greek: {{tø|grc|ῥῆμα|tr=rhēma|sc=polytonic}}
-* Arabic: {{t|ar|فعل|m|tr=fiʿl}}
-* Aragonese: {{t|an|berbo|xs=Aragonese}}
-* Aramaic:
-*: Syriac: [[ܡܠܬܐ]] (miltā’) {{f}}
-*: Hebrew: [[מלתא]] (miltā’) {{f}}
-* Armenian: {{t-|hy|բայ|tr=bay}}
-* Asturian: [[verbu]]
-* Aymara: {{t|ay|parliri|xs=Aymara}}
-* Azeri: {{t|az|fe'l|xs=Azeri}}
-* {{trreq|ba}}
-* Basque: {{t-|eu|aditz|xs=Basque}}
-* Belarusian: {{t|be|дзеяслоў|m|tr=dzejaslóŭ|xs=Belarusian}}
-* Bengali: {{t|bn|ক্রিয়া|tr=kriya|sc=Beng}}
-* {{trreq|bpy}}
-* Breton: {{t-|br|verb|xs=Breton}}
-* Bulgarian: {{t+|bg|глагол|m|tr=glagól}}
-* Burmese: {{t|my|ကြိယာ|tr=kări.ya|sc=Mymr}}
-* Catalan: {{t+|ca|verb}}
-* Chechen: {{tø|ce|хандош|tr=handoš}}
-* Chinese:
-*: Cantonese: {{tø|yue|動詞|sc=Hani|xs=Cantonese}}, {{tø|yue|动词|tr=dung6 ci4|sc=Hani|xs=Cantonese}}
-*: Mandarin: {{t+|zh|動詞|sc=Hani}}, {{t+|zh|动词|tr=dòngcí|sc=Hani}}
-*: Min Nan: {{tø|nan|動詞|sc=Hani}}, {{tø|nan|动词|tr=tōng-sû|sc=Hani}}
-* Chuvash: {{tø|cv|глагол|sc=Cyrl|xs=Chuvash}}
-* Crimean Tatar: {{tø|crh|fiil|xs=Crimean Tatar}}
-* Czech: {{t+|cs|sloveso|n}}
-* Danish: {{t+|da|udsagnsord|n}},  {{t+|da|verbum|n}}
-* Dhivehi: {{t|dv|ކއަނ|tr=kan|sc=Thaa}}
-* Dutch: {{t+|nl|werkwoord|n}}
-* Esperanto: {{t+|eo|verbo|xs=Esperanto}}
-* Estonian: {{t+|et|tegusõna}}, {{t|et|pöördsõna}}, {{t+|et|verb}}
-* Ewe: {{tø|ee|dɔwɔnya|xs=Ewe}}
-* Faroese: {{t-|fo|sagnorð|n|xs=Faroese}}
-* Finnish: {{t+|fi|verbi}}, {{t+|fi|teonsana}}
-* {{trreq|frp}}
-* French: {{t+|fr|verbe|m}}
-* {{trreq|fur}}
-* Galician: {{t+|gl|verbo|m|xs=Galician}}
-* Georgian: {{t|ka|ზმნა|tr=zmna|sc=Geor}}
-* German: {{t+|de|Verb|n}}, {{t+|de|Verbum|n}}, {{t+|de|Zeitwort|n}}
-* Greek: {{t+|el|ρήμα|n|tr=ˈrima}}
-* Greenlandic: {{t-|kl|oqaluut|xs=Greenlandic}}
-* Hebrew: {{t+|he|פועל|tr=pô'al}}
-* Hindi: {{t+|hi|क्रिया|f|tr=kriyā|xs=Hindi}}
-* Hungarian: {{t+|hu|ige}}
-* Icelandic: {{t+|is|sagnorð|n}}, {{t+|is|sögn|f}}
-* Ido: {{t+|io|verbo|xs=Ido}}
-* Indonesian: {{t+|id|kata kerja|xs=Indonesian}}
-* Interlingua: {{t-|ia|verbo|xs=Interlingua}}
-* Interlingue: {{t-|ie|verbe|xs=Interlingue}}
-* Irish: {{t+|ga|briathar|m|xs=Irish}}
-* Italian: {{t+|it|verbo|m}}
-* Japanese: {{t+|ja|動詞|tr=[[どうし]], dōshi}}
-* {{trreq|jv}}
-* Kashubian: [[czasnik]] {{m}}
-* Kazakh: {{t|kk|етістік|tr=etistik|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t-|km|កិរិយាស័ព្ទ|tr=gēiriyā səp|sc=Khmr|xs=Khmer}}
-* Korean: {{t+|ko|동사|tr=dongsa|sc=Hang}} ({{t|ko|動詞}})
-* Kurdish:
-*: Sorani: {{ku-Arab|[[کردار]]}}
-{{trans-mid}}
-* Kyrgyz: {{t|ky|этиш|tr=etiş|sc=Cyrl|xs=Kyrgyz}}
-* Lao: {{t|lo|ຄຳກຳມະ|tr=kham kam ma|sc=Laoo}}
-* Latin: {{t+|la|verbum|n}}
-* Latvian: {{t-|lv|darbības vārds|m|xs=Latvian}}
-* Limburgish: {{t+|li|wèrkwaord|n}}, {{t-|li|vèrb|n}}
-* Lingala: {{t|ln|likelelo|xs=Lingala}}
-* Lithuanian: {{t+|lt|veiksmažodis|xs=Lithuanian}}
-* Low Saxon: {{t-|nds|verb|xs=Low Saxon}}
-* Lower Sorbian: [[werb]] {{m}}
-* Macedonian: {{t-|mk|глагол|m|tr=glágol}}
-* Malay: {{t-|ms|kata kerja|xs=Malay}}
-* Malayalam: {{t|ml|ക്രിയ|tr=kriya|sc=Mlym|xs=Malayalam}}
-* Maltese: {{t|mt|verb}}
-* Marathi: {{t|mr|क्रियापद|tr=kriyāpada|sc=Deva}}
-* Mongolian: {{t-|mn|үйл үг|tr=üjl üg|sc=Cyrl|xs=Mongolian}}
-* {{trreq|ne}}
-* {{trreq|new}}
-* Northern Sami: {{tø|se|vearba|xs=Northern Sami}}
-* Norwegian: {{t+|no|verb}}
-*: Nynorsk: {{t-|nn|verb|xs=Norwegian Nynorsk}}
-* Novial: {{tø|nov|verbe|xs=Novial}}
-* Occitan: {{t+|oc|vèrb|m|xs=Occitan}}
-* Old English: {{t+|ang|word|n|xs=Old English}}
-* Persian: {{t|fa|فعل|tr=fe'l|sc=fa-Arab}}
-* Polish: {{t+|pl|czasownik|m}}
-* Portuguese: {{t+|pt|verbo|m}}
-* Quechua: {{t|qu|ruray rimana|xs=Quechua}}
-* Romanian: {{t+|ro|verb|n}}
-* Russian: {{t+|ru|глагол|m|tr=glagól}}
-* Samogitian: {{tø|sgs|veikruodis}}
-* Scots: {{tø|sco|verb|xs=Scots}}
-* Scottish Gaelic: {{t-|gd|gnìomhair|xs=Scottish Gaelic}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|глагол|m|sc=Cyrl}}
-*: Roman: {{t|sh|glagol|m}}
-* Sicilian: {{t+|scn|verbu|m|xs=Sicilian}}
-* Sinhalese: {{t|si|ක්රියා පද|tr=kriyā pada|sc=Sinh}}, {{t|si|ක්රියාව|tr=kriyāva|sc=Sinh}}
-* Slovak: {{t+|sk|sloveso|n}}
-* Slovene: {{t+|sl|glagol|m}}
-* Spanish: {{t+|es|verbo|m}}
-* {{trreq|su}}
-* Swahili: {{t+|sw|kielezi|xs=Swahili}}
-* {{trreq|ss}}
-* Swedish: {{t+|sv|verb|n}}
-* Tagalog: {{t-|tl|pandiwa|xs=Tagalog}}
-* Tajik: {{t|tg|феъл|tr=fe'l|sc=Cyrl}}
-* Tamil: {{t|ta|வினைச்சொல்|tr=vinnnaicamcolam|xs=Tamil}}
-* Telugu: {{t|te|క్రియ|tr=kriya}}
-* Thai: {{t|th|คำกริยา|tr=khâm-kri-yā}}
-* Turkish: {{t+|tr|fiil}}, {{t+|tr|eylem}}
-* Turkmen: {{t|tk|işlik}}
-* Ukrainian: {{t+|uk|дієслово|n|tr=dijeslóvo|xs=Ukrainian}}
-* Upper Sorbian: [[werb]] {{m}}
-* Urdu: {{t|ur|فعل|m|tr=fe'l|sc=ur-Arab}}
-* Uzbek: {{t|uz|fe'l}}
-* Vietnamese: {{t+|vi|động từ|xs=Vietnamese}} ({{t|vi|動詞}})
-* Volapük: {{t+|vo|värb|xs=Volapük}}
-* Welsh: {{t+|cy|berf|f|xs=Welsh}}
-* West Frisian: {{t+|fy|tiidwurd|n|xs=West Frisian}}
-* Yiddish: {{t+|yi|ווערב|m|tr=verb|xs=Yiddish}}, {{t|yi|צייטווארט|n|tr=tsaytvort|xs=Yiddish}}
-* {{trreq|zza}}
-{{trans-bottom}}
-
-===Verb===
-{{en-verb}}
-
-# {{transitive|nonstandard|colloquial}} To use any word that is not a verb (especially a noun) as if it were a verb.
-#* a. '''1981''' Feb 22, unknown Guardian editor as quoted by William Safire, ''On Language'', in ''New York Times'', pSM3
-#*: Haig, in congressional hearings before his confirmatory, paradoxed his auditioners by abnormalling his responds so that verbs were nouned, nouns '''verbed''' 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... .
-#* '''1997''', David. F. Griffiths, Desmond J. Higham, ''learning L<sup>A</sup>T<sub>E</sub>X'', p8
-#*: Nouns should ''never'' be '''verbed'''.
-#* '''2005''' Oct 5, Jeffrey Mattison, ''Letters'', in ''The Christian Science Monitor'', p8
-#*: In English, '''verbing''' nouns is okay
-# {{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.
-#* '''1946''': Rand Corporation, ''The Rand Paper Series''
-#*: ''For example, one-part versions of the proposition "The doctor pursued the lawyer" were "The doctor '''verbed''' the object,"'' ...
-#* '''1964''': ''Journal of Mathematical Psychology''
-#*: ''Each sentence had the same basic structure: ''The subject transitive '''verbed''' the object who intransitive '''verbed''' in the location''.''
-#* '''1998''': Marilyn A. Walker, Aravind Krishna Joshi, ''Centering Theory in Discourse''
-#*: ''The sentence frame was ''Dan '''verbed''' Ben approaching the store''. This sentence frame was followed in all cases by ''He went inside''.''
-
-====Quotations====
-* {{seeCites}}
-
-===See also===
-* [[v.#English|v.]]
-* [[copula]]
-
-[[Category:English autological terms]]
-[[Category:en:Parts of speech]]
-[[Category:en:Verbs]]
-
-----
-
-
+verb:
+{wikipedia}
+<h3>Etymology</h3>
+From {{etyl|fro|en}} {{term|verbe|lang=fro}}, from {{etyl|la|en}} {{term|verbum|word|lang=la}}, from {{proto|Indo-European|wer-|lang=en}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/vɜː(ɹ)b/}}, {{X-SAMPA|/v3:(r\)b/}}</li>
+<li> {{audio|en-us-verb.ogg|Audio (US)}}</li>
+<li> {{rhymes|ɜː(ɹ)b}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> {grammar} A word that indicates an action, event, or state.</li>
+<ul><li> <em>The word “speak” is an English <b>verb</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Usage notes</h4>
+Verbs compose a fundamental category of words in most languages.  In an English clause, a verb forms the head of the predicate of the clause.  In many languages, verbs uniquely conjugate for tense and aspect.
+<h4>Quotations</h4>
+<ul><li> <b>2001</b> — Eoin Colfer, <em>Artemis Fowl</em>, p 221</li>
+<ul><li> Then you could say that the doorway exploded.  But the particular <b>verb</b> doesn't do the action justice.  Rather, it shattered into infinitesimal pieces.</li>
+</ul>
+</ul>
+
+<h4>Hyponyms</h4>
+<ul><li> See also Wikisaurus:verb</li>
+</ul>
+
+<h4>Derived terms</h4>
+{der-top}
+<ul><li> adverb</li>
+<li> anomalous verb</li>
+<li> auxiliary verb</li>
+<li> boot verb</li>
+<li> copular verb</li>
+<li> coverb</li>
+<li> defective verb</li>
+<li> ditransitive verb</li>
+<li> dynamic verb</li>
+<li> full verb</li>
+<li> helping verb</li>
+</ul>
+{der-mid3}
+<ul><li> impersonal verb</li>
+<li> intransitive verb</li>
+<li> irregular verb</li>
+<li> linking verb</li>
+<li> modal verb</li>
+<li> passive verb</li>
+<li> phrasal verb</li>
+<li> preverb</li>
+<li> regular verb</li>
+<li> serial verb</li>
+<li> stative verb</li>
+</ul>
+{der-mid3}
+<ul><li> subject-verb agreement</li>
+<li> transitive verb</li>
+<li> verb inflection</li>
+<li> verb phrase</li>
+<li> verb tense</li>
+<li> verbal</li>
+<li> verbal complement</li>
+<li> verbal noun</li>
+<li> verbal regency</li>
+<li> verbless clause</li>
+</ul>
+{der-bottom}
+<h3>Verb</h3>
+{en-verb}
+<ol><li> {{transitive|nonstandard|colloquial}} To use any word that is not a verb (especially a noun) as if it were a verb.</li>
+<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>
+<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>
+<ul><li> In English, <b>verbing</b> nouns is okay</li>
+</ul>
+</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> <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>
+</ul>
+<li> <b>1998</b>: Marilyn A. Walker, Aravind Krishna Joshi, <em>Centering Theory in Discourse</em></li>
+<ul><li> <em>The sentence frame was </em>Dan <b>verbed</b> Ben approaching the store<em>. This sentence frame was followed in all cases by </em>He went inside<em>.</em></li>
+</ul>
+</ul>
+</ol>
+
+<h4>Quotations</h4>
+<ul><li> {seeCites}</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> v.</li>
+<li> copula</li>
+</ul>
+Category:English autological termsCategory:en:Parts of speechCategory:en:Verbs----
 ***wares***
-wares: 
+wares:
 
-===Pronunciation===
-* {{audio|en-us-wares.ogg|Audio (US)}}
-* {{rhymes|ɛə(r)z}}
-* Homophones: [[wears]], [[warez]], [[where's]] (''in accents with the [[wine-whine merger]]'')
+<h3>Pronunciation</h3>
+<ul><li> {{audio|en-us-wares.ogg|Audio (US)}}</li>
+<li> {{rhymes|ɛə(r)z}}</li>
+<li> Homophones: wears, warez, where's (<em>in accents with the wine-whine merger</em>)</li>
+</ul>
 
-===Noun===
+<h3>Noun</h3>
 {{head|en|noun}}
-
-# {{plural of|ware}}
-# {{in the plural}} [[item|Items]] that are for [[sale]].
-#: ''The square was filled with booths, with vendors offering their '''wares'''.''
-
-====Synonyms====
-* [[goods]], [[merchandise]], [[product]]s
-
-====Translations====
-{{trans-top|items for sale}}
-* Latvian: {{t|lv|prece|f}}
-* Russian: {{t|ru|товар|sc=Cyrl}}
-* [[Scottish Gaelic]]: {{t-|gd|bathar|m|xs=Scottish Gaelic}}
-{{trans-mid}}
-* Spanish: {{t|es|mercancías|f|p}}
-{{trans-bottom}}
-
-===See also===
-* [[warez]]
-
-===Anagrams===
-* [[sawer#English|sawer]]
-* [[sware#English|sware]]
-* [[swear#English|swear]]
-* [[wears#English|wears]]
-
-[[Category:English terms with homophones]]
-
-[[fr:wares]]
-[[ko:wares]]
-[[io:wares]]
-[[kn:wares]]
-[[hu:wares]]
-[[my:wares]]
-[[nl:wares]]
-[[fi:wares]]
+<ol><li> {{plural of|ware}}</li>
+<li> {in the plural} Items that are for sale.</li>
+<ul><li> <em>The square was filled with booths, with vendors offering their <b>wares</b>.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> goods, merchandise, products</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> warez</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> sawer</li>
+<li> sware</li>
+<li> swear</li>
+<li> wears</li>
+</ul>
+Category:English terms with homophonesfr:waresko:waresio:wareskn:wareshu:waresmy:waresnl:waresfi:wares
 ***Wednesday***
-Wednesday: 
-{{wikipedia|dab=wednesday (disambiguation)|wednesday}}
-===Etymology===
-From {{etyl|enm}} {{term|Wednesdai|lang=enm}}, {{term|Wodnesdei|lang=enm}}, from {{etyl|ang}} {{term|wodnesdæg|wōdnesdæġ|Wednesday|lang=ang}}, from a Germanic calque of {{etyl|la}} {{term|dies|lang=la||day}} {{term|Mercurii||lang=la|of Mercurii}} and Koine {{etyl|grc|-}} {{term|ἡμέρα||tr=hemera|lang=grc|day}} {{term|Ἕρμου||lang=grc|tr=Hermou|of Hermes}}, via an association of the god [[Odin]] (Woden) with [[Mercury]] and [[Hermes]].
-{{rel-top|additional etymological information}}
-*Cognate with {{etyl|fy|-}} {{term|woansdei||Wednesday|lang=fy}}, {{etyl|nl|-}} {{term|woensdag||Wednesday|lang=nl}}, {{etyl|de|-}} dialectal {{term|Wodenstag||Wednesday|lang=de}}, {{etyl|da|-}} {{term|onsdag||Wednesday|lang=da}}, {{etyl|sv|-}} {{term|onsdag||Wednesday|lang=sv}}.
-{{rel-bottom}}
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/ˈwɛdənzdeɪ/}}, {{X-SAMPA|/"wEd@nzdeI/}} ''or'' {{IPA|/ˈwɛnzdeɪ/}}, {{X-SAMPA|/"wEnzdeI/}} ''or'' {{IPA|/ˈwɛdənzdi/}}, {{X-SAMPA|/"wEd@nzdi/}} ''or'' {{IPA|/ˈwɛnzdi/}}, {{X-SAMPA|/"wEnzdi/}}
-* {{a|US}} {{IPA|/ˈwɛnzdeɪ/}}, {{X-SAMPA|/"wEnzdeI/}} ''or'' {{IPA|/ˈwɛnzdi/}}, {{X-SAMPA|/"wEnzdi/}}
-* {{audio|en-us-Wednesday.ogg|Audio (US)}}
-* {{audio|En-uk-Wednesday.ogg|Audio (UK)}}
-
-===Noun===
-{{wikipedia|Week-day names}}
-{{en-noun}}
-
-# The fourth day of the week in many religious traditions, and the third day of the week in systems using the ISO 8601 norm; it follows [[Tuesday]] and precedes [[Thursday]].
-<!--probably just an attributive use of the noun: #An appointment, person, or feeling associated with this day of the week.-->
-
-====Synonyms====
-* [[Humpday]] {{qualifier|slang}}
-
-====Derived terms====
-{{top2}}
-* [[Ash Wednesday]]
-* [[Black Wednesday]]
-* [[calendar Wednesday]]
-* [[Good Wednesday]]
-* [[Holy Wednesday]]
-* [[w:Sheffield Wednesday|Sheffield Wednesday]]
-* [[Spy Wednesday]]
-{{mid2}}
-* [[Wed]], [[Wed.]]
-* [[Wednesday crucifixion theory]]
-* [[Wednesdays]]<!--adverb-->
-* [[w:Wednesdays in Mississippi|Wednesdays in Mississippi]]
-* [[White Wednesday]]
-* [[Whit Wednesday]]
-{{bottom}}
-
-====Translations====
-{{trans-top|day of the week}}
-* Abkhaz: {{t|ab|ахаш|tr=axaš|sc=Cyrl}}
-* Afrikaans: {{t+|af|Woensdag|xs=Afrikaans}}
-* Alabama: [[atótchìina]], [[nihta atótchìina]]
-* Albanian: {{t|sq|e mërkurë}}
-* Alutiiq: {{tø|ems|Pingayiin}}
-* Amharic: [[ረቡዕ]] (rob)
-* Amuzgo: [[mikluè]]
-* Arabic: {{t|ar|الأربعاء|m|tr=al-ʾárbaʿāʾ|sc=Arab}}, {{t|ar|يوم الأربعاء|m|tr=yawm al-ʾárbaʿāʾ|sc=Arab}}
-*: [[Egyptian Arabic]]: {{tø|arz|الأربع|m|tr=larrbaʿ|sc=Arab}}
-* Armenian: {{t+|hy|չորեքշաբթի|tr=čorek'šabt'i}}
-*: Old Armenian: {{tø|xcl|չորեքշաբաթի|tr=čʿorekʿšabatʿi|sc=Armn}}
-* Azeri: {{t|az|çərşənbə}}
-* Bashkir: {{tø|ba|шаршамбы|tr=şarşambı|sc=Cyrl}}
-* Basque: [[asteazken]]
-* Belarusian: {{t-|be|серада|f|tr=seradá|xs=Belarusian}}
-* Bengali: {{t|bn|বুধবার|tr=budhbar|sc=Beng}}
-* Blackfoot: [[ííkaitaistssinao'p]]
-* Breton: [[Merc'her]] {{m}}, [[dimerc'her]] ''adverb''
-* Bulgarian: {{t+|bg|сряда|f|tr=srjadá}}
-* Burmese: {{t-|my|ဗုဒ္ဓဟူး|tr=botdăhu:|sc=Mymr|xs=Burmese}}
-* Catalan: {{t|ca|dimecres|m}}
-* Central Atlas Tamazight: [[ⴰⵀⴰⴷ]] (ahad)
-* Chechen: {{tø|ce|кхаара|tr=qaara}}
-* Cherokee: [[ᏦᎢᏁ ᎢᎦ]] (tsoine iga)
-* Chichewa: {{tø|ny|lachitatu}}
-* Chinese:
-*: Mandarin: {{t|zh|星期三|tr=xīngqīsān|sc=Hani}}, {{t|zh|禮拜三|sc=Hani}}, {{t|zh|礼拜三|tr=lǐbàisān|sc=Hani}}, {{t|zh|周三|tr=zhōusān|sc=Hani}}
-* Chuvash: {{tø|cv|юнкун|tr=yunkun|sc=Cyrl}}
-* Corsican: [[màrcuri]]
-* Czech: {{t+|cs|středa|f}}
-* Dakota: {{tø|dak|Aŋpetuiyamni}}
-* Danish: {{t+|da|onsdag|c}}
-* Dutch: {{t+|nl|woensdag|m}}
-* Esperanto: {{t+|eo|merkredo|xs=Esperanto}}
-* Estonian: {{t+|et|kolmapäev}}
-* Faroese: {{t-|fo|mikudagur|m|xs=Faroese}}, {{t|fo|ónsdagur|m}}
-* Fijian: {{t|fj|Vukelulu}}
-* Finnish: {{t+|fi|keskiviikko}}
-* French: {{t+|fr|mercredi|m}}
-* Galician: {{t+|gl|mércores|m}}
-* Georgian: {{t-|ka|ოთხშაბათი|tr=ot'xšabat'i|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Mittwoch|m}}, {{qualifier|poetic}} {{t-|de|Wotanstag|m}}
-* Gilbertese: {{tø|gil|Katenibong}}
-* {{trreq|grc}:
-* Greek: {{t+|el|Τετάρτη|f|tr=Tetárti}}
-* Greenlandic: {{t-|kl|Pinqasunngorneq|xs=Greenlandic}}
-* Gujarati: [[બુધવાર]] (budhvār)
-* Haitian Creole: {{tø|ht|mèkredi}}
-* Hawaiian: {{tø|haw|Pōʻakolu}}
-* Hebrew: {{t|he|יום רביעי|m|tr=yom revi’í}}
-* Hindi: {{t+|hi|बुधवार|m|tr=budhvār|xs=Hindi}}
-* Hungarian: {{t+|hu|szerda}}
-* Icelandic: {{t+|is|miðvikudagur|m}}
-* Ido: {{t+|io|merkurdio}}
-* Indonesian: [[hari rabu]]
-* Interlingua: {{t-|ia|mercuridi}}
-* Irish: {{t+|ga|Céadaoin|f|xs=Irish}}
-* Italian: {{t+|it|mercoledì|m}}
-* Japanese: {{t|ja|水曜日|tr=すいようび, suiyōbi|sc=Jpan}}, {{t|ja|水曜|tr=すいよう, suiyō|sc=Jpan}}
-* Kannada: {{t|kn|ಬುಧವಾರ|tr=budhavār|sc=Knda}}
-* Kashubian: [[strzoda]] {{f}}
-* Kazakh: {{t+|kk|сәрсенбі|tr=särsenbi|sc=Cyrl|xs=Kazakh}}
-* Khmer: {{t|km|ថ្ងៃពុធ|tr=tngai bpŭt|sc=Khmr}}
-* Kinyarwanda: [[Kwagatatu]]
-* Kongo: {{tø|kg|Lumbu kia ntatu}}
-* Korean: {{t+|ko|수요일|tr=suyoil|sc=Kore}} ({{t|ko|水曜日|sc=Kore}})
-* Kurdish:
-*: Sorani: {{ku-Arab|[[چوارشه‌م]]}}, {{ku-Arab|[[چوارشه‌مه‌]]}}
-* Kyrgyz: {{t|ky|шаршемби|tr=şarşembi|sc=Cyrl}}
-* Lao: {{t+|lo|ວັນພຸດ|tr=wan-phut|sc=Laoo|xs=Lao}}
-* Latin: {{t|la|diēs Mercuriī|m|f}}, {{t+|la|dies Mercurii|m|f}}
-* Latvian: {{t+|lv|trešdiena|xs=Latvian}}
-* Lithuanian: {{t+|lt|trečiadienis|m|xs=Lithuanian}}
-* Livonian: [[kuolmõndpǟva]]
-* Low German: {{t|nds|Middeweek|m}}
-* Lower Sorbian: [[srjoda]] {{f}}
-{{trans-mid}}
-* Luganda: {{tø|lg|Lwakusatu}}
-* Luxembourgish: {{t|lb|Mëttwoch|m}}
-* Macedonian: {{t+|mk|среда|f|tr=sréda}}
-* Malay: {{t-|ms|rabu|xs=Malay}}
-* Maltese: {{t-|mt|l-Erbgħa|xs=Maltese}}
-* Maori: [[Wenerei]], [[Rātoru]], [[Rāapa]]
-* Mongolian: {{t|mn|лхагва|tr=lhagva|sc=Cyrl}}
-* Navajo: {{tø|nv|Tágíjį́ Ndaʼanish}}
-* Neapolitan: [[miercurì]]
-* Norwegian:
-*: Bokmål: {{t+|no|onsdag|m}}
-*: Nynorsk: {{t+|nn|onsdag|m}}
-* Occitan: {{t+|oc|dimècres|xs=Occitan}}
-* Ojibwe: [[aabitoose]]
-* Old English: {{t-|ang|wodnesdæg|m|alt=wōdnesdæġ|xs=Old English}}
-* Old Norse: {{t|non|óðinsdagr|m}}
-* Old Turkic: {{tø|otk|törtünç}}
-* Ossetian:
-*: Digor: {{tø|os|æртиккæг|tr=ærtikkæg|xs=Ossetian}}
-*: Iron: {{tø|os|æртыццæг|tr=ærtyccæg|xs=Ossetian}}
-* Papiamentu: {{tø|pap|diarason}}
-* Persian: {{t|fa|چهارشنبه|tr=čahâr-šanbe|sc=fa-Arab}}
-* Polish: {{t+|pl|środa|f}}
-* Portuguese: {{t+|pt|quarta-feira|f}}
-* Quechua: {{t|qu|mirkulis}}
-* Romani: {{tø|rom|tetradyi}}
-* Romanian: {{t+|ro|miercuri|f}}
-* Russian: {{t+|ru|среда|f|tr=sredá}}
-* Sami:
-*: Northern: {{tø|se|gaskavahkku}}
-* Samoan: {{t|sm|Aso Lulu}}
-* Scots: [[Wadensday]]
-* Scottish Gaelic: {{t|gd|Diciadain|m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|среда|f}}, {{t|sh|сриједа|f}}
-*: Roman: {{t|sh|sreda|f}}, {{t|sh|srijeda|f}}
-* Shona: {{t|sn|Chitatu }}
-* Sinhalese: {{t|si|බදාදා|tr=badādā|sc=Sinh}}
-* Skolt Sami: {{tø|sms|seärad}}
-* Slovak: {{t+|sk|streda|f}}
-* Slovene: {{t+|sl|sreda|f}}
-* Somali: [[Arbaca]]
-* Sotho: [[Laboraro]]
-* Spanish: {{t+|es|miércoles|m}}
-* Sundanese: [[rebo]]
-* Swahili: {{t|sw|jumatano|xs=Swahili}}
-* Swedish: {{t+|sv|onsdag|c}}
-* Tagalog: {{t|tl|Miyerkules}}, {{t|tl|miyerkules}}
-* Tahitian: {{tø|ty|Mahana toru}}
-* Tajik: {{t|tg|чоршанбе|tr=corşanbe|sc=Cyrl}}, {{t|tg|чаҳоршанбе|tr=čahoršanbe|sc=Cyrl}}
-* Tamil: {{t|ta|புதன்|tr=putaṉ|sc=Taml}}
-* Taos: [[míalkulisi]]
-* Tarantino: {{tø|roa-tar|mercrudìe}}
-* Tatar: {{t+|tt|чәршәмбе|tr=çärşämbe|sc=Cyrl|xs=Tatar}}
-* Telugu: {{t|te|బుధవారము|tr=budhavāramu|sc=Telu}}
-* Thai: {{t|th|วันพุธ|tr=wan phōōt}}
-* Tok Pisin: {{t|tpi|trinde}}
-* Tongan: {{t|to|Pulelulu}}
-* Tswana: {{t|tn|laboraro}}
-* Turkish: {{t+|tr|çarşamba}}
-* Turkmen: {{t|tk|çarşenbe}}, {{t|tk|hoşgün}}
-* Ukrainian: {{t+|uk|середа|f|tr=seredá|xs=Ukrainian}}
-* Upper Sorbian: {{t-|hsb|srjeda|f}}
-* Urdu: {{t|ur|بدھ|tr=budh|sc=ur-Arab}}
-* Uzbek: {{t|uz|chorshanba}}
-* Venetian: {{tø|vec|mèrcore|m}}
-* Vietnamese: {{t+|vi|thứ tư|xs=Vietnamese}}
-* Volapük: {{t|vo|vedel}}, {{qualifier|older term}} {{t|vo|folüdel}}, {{qualifier|older term}} {{t|vo|vesdel}}
-* Welsh: {{t+|cy|dydd Mercher|xs=Welsh}}
-* West Frisian: {{t|fy|woansdei}}
-* Wolof: [[Àllarba]]
-* Xhosa: {{t|xh|ulwesithathu}}
-* Yiddish: {{t|yi|מיטוואָך|m|tr=mitvokh}}
-* Zulu: {{t|zu|uLwesithathu}}
-{{trans-bottom}}
-
-{{trans-top|Translations to check}}
-* Tibetan: [[གཟའ་ལྷག་པ་]]
-{{trans-mid}}
-{{trans-bottom}}
-
-===Adverb===
+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}}
+<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>
+<li> {{audio|en-us-Wednesday.ogg|Audio (US)}}</li>
+<li> {{audio|En-uk-Wednesday.ogg|Audio (UK)}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{wikipedia|Week-day names}}{en-noun}
+<ol><li> The fourth day of the week in many religious traditions, and the third day of the week in systems using the ISO 8601 norm; it follows Tuesday and precedes Thursday.</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> Humpday {{qualifier|slang}}</li>
+</ul>
+
+<h4>Derived terms</h4>
+{top2}
+<ul><li> Ash Wednesday</li>
+<li> Black Wednesday</li>
+<li> calendar Wednesday</li>
+<li> Good Wednesday</li>
+<li> Holy Wednesday</li>
+<li> Sheffield Wednesday</li>
+<li> Spy Wednesday</li>
+</ul>
+{mid2}
+<ul><li> Wed, Wed.</li>
+<li> Wednesday crucifixion theory</li>
+<li> Wednesdays</li>
+<li> Wednesdays in Mississippi</li>
+<li> White Wednesday</li>
+<li> Whit Wednesday</li>
+</ul>
+{bottom}
+<h3>Adverb</h3>
 {{en-adv|-}}
+<ol><li> on Wednesday</li>
+</ol>
 
-# on Wednesday
-
-====Translations====
-{{trans-top|on Wednesday}}
-* Irish: {{t+|ga|Dé Céadaoin|xs=Irish}}
-* Latvian: {{t|lv|trešdien}}
-* Romanian: {{t|ro|miercuri}}, {{t|ro|miercurea}}
-{{trans-mid}}
-* Serbian: {{t|sr|средом|sc=Cyrl}}
-* Turkish: {{t|tr|çarşamba}}
-* Volapük: {{t|vo|vedelo}}, {{t|vo|folüdelo}}, {{t|vo|vesdelo}}
-{{trans-bottom}}
-
-===See also===
-* {{list|en|days of the week}}
-
-[[af:Wednesday]]
-[[ast:Wednesday]]
-[[az:Wednesday]]
-[[cs:Wednesday]]
-[[cy:Wednesday]]
-[[da:Wednesday]]
-[[de:Wednesday]]
-[[et:Wednesday]]
-[[el:Wednesday]]
-[[es:Wednesday]]
-[[eo:Wednesday]]
-[[eu:Wednesday]]
-[[fr:Wednesday]]
-[[fy:Wednesday]]
-[[ga:Wednesday]]
-[[gl:Wednesday]]
-[[ko:Wednesday]]
-[[hy:Wednesday]]
-[[hr:Wednesday]]
-[[io:Wednesday]]
-[[id:Wednesday]]
-[[it:Wednesday]]
-[[kl:Wednesday]]
-[[kn:Wednesday]]
-[[ka:Wednesday]]
-[[kk:Wednesday]]
-[[ku:Wednesday]]
-[[lo:Wednesday]]
-[[la:Wednesday]]
-[[lv:Wednesday]]
-[[lt:Wednesday]]
-[[hu:Wednesday]]
-[[mg:Wednesday]]
-[[ml:Wednesday]]
-[[mn:Wednesday]]
-[[my:Wednesday]]
-[[nl:Wednesday]]
-[[ja:Wednesday]]
-[[no:Wednesday]]
-[[nn:Wednesday]]
-[[oc:Wednesday]]
-[[km:Wednesday]]
-[[pl:Wednesday]]
-[[pt:Wednesday]]
-[[ro:Wednesday]]
-[[ru:Wednesday]]
-[[simple:Wednesday]]
-[[sr:Wednesday]]
-[[fi:Wednesday]]
-[[sv:Wednesday]]
-[[ta:Wednesday]]
-[[te:Wednesday]]
-[[tg:Wednesday]]
-[[tr:Wednesday]]
-[[uk:Wednesday]]
-[[vi:Wednesday]]
-[[vo:Wednesday]]
-[[zh:Wednesday]]
+<h3>See also</h3>
+<ul><li> {{list|en|days of the week}}</li>
+</ul>
+af:Wednesdayast:Wednesdayaz:Wednesdaycs:Wednesdaycy:Wednesdayda:Wednesdayde:Wednesdayet:Wednesdayel:Wednesdayes:Wednesdayeo:Wednesdayeu:Wednesdayfr:Wednesdayfy:Wednesdayga:Wednesdaygl:Wednesdayko:Wednesdayhy:Wednesdayhr:Wednesdayio:Wednesdayid:Wednesdayit:Wednesdaykl:Wednesdaykn:Wednesdayka:Wednesdaykk:Wednesdayku:Wednesdaylo:Wednesdayla:Wednesdaylv:Wednesdaylt:Wednesdayhu:Wednesdaymg:Wednesdayml:Wednesdaymn:Wednesdaymy:Wednesdaynl:Wednesdayja:Wednesdayno:Wednesdaynn:Wednesdayoc:Wednesdaykm:Wednesdaypl:Wednesdaypt:Wednesdayro:Wednesdayru:Wednesdaysimple:Wednesdaysr:Wednesdayfi:Wednesdaysv:Wednesdayta:Wednesdayte:Wednesdaytg:Wednesdaytr:Wednesdayuk:Wednesdayvi:Wednesdayvo:Wednesdayzh:Wednesday
 ===Wiktionary===
-Wiktionary:Public domain sources: 
-
-The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.
+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].
+Wiktionary:Entry layout explained:
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> A piece of furniture to sleep on.</li>
+</ol>
+
+<h3>References</h3>
+        
+<ul><li> <em>The Oxford Paperback Dictionary</em>       </li>
+</ul>
+</pre>
+<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:
 
-Some scanned fascicles of Oxford English Dictionary under the title ''A New English Dictionary on Historical Principles'' by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.
+<h3>Alternative forms</h3>
 
-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].
+<h3>Etymology</h3>
 
+<h3>Pronunciation</h3>
+<ul><li> Phonetic transcriptions</li>
+<li> Audio files in any relevant dialects</li>
+<li> Rhymes</li>
+<li> Homophones</li>
+<li> Hyphenation</li>
+</ul>
 
-Wiktionary:Entry layout explained: 
+<h3>Noun</h3>
+Declension
+<ol><li> Meaning 1</li>
+<ul><li> Quotations</li>
+</ul>
+<li> Meaning 2</li>
+<ul><li> Quotations</li>
+</ul>
+</ol>
+     etc.
+<h4>Usage notes</h4>
 
-===Noun===
-{{en-noun}}
+<h4>Synonyms</h4>
 
-# A piece of [[furniture]] to [[sleep]] on.
+<h4>Antonyms</h4>
 
-===References===        
-* ''The Oxford Paperback Dictionary''   
-</pre>
+<h4>Derived terms</h4>
 
-===Variations for languages other than English===
-Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.
+<h4>Related terms</h4>
 
-Some languages do have characteristics that require variation from the standard format.  For links to these variations see [[Wiktionary:Language considerations]].
+<h4>References</h4>
 
+<h4>External links</h4>
 
-Wiktionary:Entry layout explained: 
-===Alternative forms===
-===Etymology===
-===Pronunciation===
-* Phonetic transcriptions
-* Audio files in any relevant dialects
-* Rhymes
-* Homophones
-* Hyphenation
-===Noun===
-Declension
-# Meaning 1
-#* Quotations
-# Meaning 2
-#* Quotations
-     etc.
-====Usage notes====
-====Synonyms====
-====Antonyms====
-====Derived terms====
-====Related terms====
-====Translations====
-====References====
-====External links====
-===Verb===
+<h3>Verb</h3>
 Conjugation
-# Meaning 1
-#* Quotations
+<ol><li> Meaning 1</li>
+<ul><li> Quotations</li>
+</ul>
+</ol>
      etc.
-====Usage notes====
-====Synonyms====
-====Antonyms====
-====Derived terms====
-====Related terms====
-====Translations====
-====Descendants====
-====References====
-====External links====
-===Anagrams===
----- (Dividing line between languages)
-
-===wind===
-trade wind: 
-
-===Alternative forms===
-* [[trade-wind]]
-
-===Pronunciation===
-* {{IPA|/ˈtreɪdˑwɪnd/}}
-
-===Noun===
-{{en-noun|sg=[[trade]] [[wind]]}}
-
-# A steady wind that blows from east to west above and below the equator.
-#: ''They rode the '''trade winds''' going west.''
-
-====Translations====
-{{trans-top|steady wind}}
-* Finnish: {{t-|fi|pasaatituuli}}
-* French: [[alizé]] {{m}}, [[vent alizé]] {{m}}
-* Hungarian: {{t-|hu|passzátszél}}
-* Italian: {{t-|it|aliseo|m}}
-{{trans-mid}}
-* Norwegian: {{t|no|passatvind|m}}
-* Polish: {{t|pl|pasat|m}}
-* Romanian: {{t+|ro|alizeu|n}}
-* Spanish: {{t|es|vientos alisios|m|p}}
-{{trans-bottom}}
-
-====Synonyms====
-* [[westerly]]
-
-====Antonyms====
-* [[easterly]]
-
-[[Category:en:Wind]]
-
-[[io:trade wind]]
-[[ja:trade wind]]
-[[ro:trade wind]]
-[[fi:trade wind]]
-[[ta:trade wind]]
-[[zh:trade wind]]
-***word***
-word: 
-{{wikipedia|dab=word (disambiguation)|word}}
-
-===Etymology===
-From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|lang=ang|word||word, speech, sentence, statement, command, order, subject of talk, story, news, report, fame, promise, verb}}, 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=da|lang=no|lang=sv}}, {{etyl|is|-}} {{term|orð||word|lang=is}}, {{etyl|la|-}} {{term|verbum||word|lang=la}}, {{etyl|lt|-}} {{term|vardas||name|lang=lt}}, Albanian {{term|urtë||sage, wise, silent|lang=sq}}.
-
-===Pronunciation===
-* {{a|UK}} {{IPA|/wɜː(ɹ)d/}}
-* {{a|US}} {{enPR|wûrd}}, {{IPA|/wɝd/}}, {{X-SAMPA|/w3`d/}}
-* {{audio|en-us-word.ogg|Audio (US)}}
-* {{rhymes|ɜː(ɹ)d}}
-
-===Noun===
-{{en-noun}}
-
-# The fact or action of [[speaking]], as opposed to [[writing|writing]] or to [[action]]. {{defdate|from 9th c.}}
-#* '''1811''', Jane Austen, ''Sense and Sensibility'':
-#*: she believed them still so very much attached to each other, that they could not be too sedulously divided in '''word''' and deed on every occasion.
-#* '''2004''', Richard Williams, ''The Guardian'', 8 Sep 2004:
-#*: As they fell apart against Austria, England badly needed someone capable of leading by '''word''' and example.
-# {{context|now|_|rare|except in phrases}} Something which has been said; a [[comment]], [[utterance]]; [[speech]]. {{defdate|from 10th c.}}
-#* '''1611''', ''Bible'', Authorized Version, Matthew XXVI.75:
-#*: And Peter remembered the '''word''' of Jesus, which said unto him, Before the cock crow, thou shalt deny me thrice.
-#* '''1945''', Sebastian Haffner, ''The Observer'', 1 Apr 1945:
-#*: "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 '''word'''.
-# A [[distinct]]  [[unit ]] of language (sounds in speech or written letters) with a particular [[meaning]], composed of one or more [[morpheme]]s, and also of one or more [[phoneme]]s that [[determine]] its sound [[pattern]]. {{defdate|from 10th c.}}
-#* {{RQ:Shakespeare Hamlet}}, II.ii
-#*: Polonius: What do you read, my lord?
-#*: Hamlet: '''Words''', '''words''', '''words'''.
-# A distinct unit of language which is approved by some [[authority]].
-#* '''1896''', [[w:Israel Zangwill|Israel Zangwill]], ''Without Prejudice'', p21
-#*: “Ain’t! How often am I to tell you ain’t ain’t a '''word'''?”
-#* '''1999''', Linda Greenlaw, ''The Hungry Ocean'', Hyperion, p11
-#*: ''Fisherwoman'' isn’t even a '''word'''. It’s not in the dictionary.
-# [[news|News]]; [[tidings]]. {{defdate|from 10th c.}}
-#: ''Have you had any '''word''' from John yet?''
-# An [[order]]; a [[request]] or [[instruction]]. {{defdate|from 10th c.}}
-#: ''He sent '''word''' that we should strike camp before winter.''
-# A [[promise]]; an [[oath]] or [[guarantee]]. {{defdate|from 10th c.}}
-#: ''I give you my '''word''' that I will be there on time.''
-# {{theology|sometimes '''[[Word]]'''}} [[Christ]]. {{defdate|from 8th c.}}
-#* '''1526''', William Tyndale, trans. ''Bible'', John I:
-#*: And that '''worde''' was made flesshe, and dwelt amonge vs, and we sawe the glory off yt, as the glory off the only begotten sonne off the father, which '''worde''' was full of grace, and verite.
-# {{theology|sometimes '''[[Word]]'''}} Communication from [[god]]; the [[message]] of the Christian [[gospel]]; the [[bible|Bible]]. {{defdate|from 10th c.}}
-#: ''Her parents had lived in Botswana, spreading the '''word''' among the tribespeople.''
-# A brief [[discussion]] or [[conversation]]. {{defdate|from 15th c.}}
-#: ''Can I have a '''word''' with you?''
-# {{in the plural}} Angry [[debate]] or conversation; [[argument]]. {{defdate|from 15th c.}}
-#: ''There had been '''words''' between him and the secretary about the outcome of the meeting.''
-# Any [[sequence]] of [[letters]] or characters considered as a [[discrete]] [[entity]]. {{defdate|from 19th c.}}
-# {{telegraphy}} A unit of [[text]] equivalent to five [[character]]s and one [[space]]. {{defdate|from 19th c.}}
-# {{computing}} A fixed-size group of [[bit]]s handled as a unit by a machine. On many [[16-bit]] machines a word is 16 bits or two [[byte]]s. {{defdate|from 20th c.}}
-# {{computer science}} A [[finite]] [[string]] which is [[not]] a [[command]] or [[operator]].
-# {{group theory}} A [[group]] [[element]], expressed as a [[product]] of group elements.
-# Different symbols, written or spoken, arranged together in a unique sequence that approximates a thought in a person's mind.
-
-====Usage notes====
-* {{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]].
+<h4>Usage notes</h4>
 
-{{wikipedia|word (computing)}}
-* {{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]].
-
-====Synonyms====
-* {{sense|distinct unit of language}} [[vocable]]
-* {{sense|something promised}} [[promise]]
-* {{sense|God}} [[God]], [[logos|Logos]]
-* {{sense|Bible}} [[word of God]], [[Bible]]
-* See also [[Wikisaurus:word]]
-
-====Translations====
-{{trans-top|unit of language}}
-* Afrikaans: {{t|af|woord}}
-* Albanian: {{t|sq|fjalë|f}}, {{t|sq|llaf|m}}
-* Amuzgo: [[jñ'o]]
-* Arabic: {{t+|ar|كلمة|f|alt=كَلِمة|tr=kálima}}
-*: Egyptian Arabic: {{tø|arz|كلمة|f|tr=kilma|sc=Arab|xs=Egyptian Arabic}}
-* Aramaic:
-*: Syriac: [[ܡܠܬܐ]] (melthā, meltho) {{c}}
-*: Hebrew: [[מלתא]] (melthā, meltho) {{c}}
-* Archi: {{tø|aqc|чӀат}}
-* Armenian: {{t+|hy|բառ|tr=baṙ}}
-* Aromanian: [[zbor]]
-* Asturian: {{t|ast|pallabra|f}}
-* Azeri: {{t|az|söz}}, {{t|az|kəlmə}}, {{t|az|sözcük}}
-* Bashkir: {{tø|ba|һүҙ|tr=hüð|sc=Cyrl}}
-* Basque: [[hitz]], [[berba]]
-* Belarusian: {{t|be|слова|n|tr=slóva|xs=Belarusian}}
-* Bengali: {{t+|bn|শব্দ|tr=shôbdô|sc=Beng|xs=Bengali}}
-* Breton: [[ger]] {{m}}, gerioù {{p}}
-* Bulgarian: {{t+|bg|дума|f|tr=dúma}}
-* Burmese: {{t|my|စကားလုံး|tr=zăgăloun:|sc=Mymr}}
-* Catalan: {{t+|ca|paraula|f}}, {{t-|ca|mot|m}}
-* Chamicuro: {{tø|ccc|nachale}}
-* Chechen: {{tø|ce|дош}}
-* Chinese:
-*: Mandarin: {{t-|cmn|詞|tr=cí|sc=Hant}}, {{t-|cmn|词|tr=cí|sc=Hans}}, {{t-|cmn|單詞|tr=dāncí|sc=Hant}}, {{t-|cmn|单词|tr=dāncí|sc=Hans}}
-* Chuvash: {{tø|cv|сӑмах|tr=sămakh|sc=Cyrl}}
-* Czech: {{t+|cs|slovo|n}}
-* Danish: {{t+|da|ord|n}}
-* Dutch: {{t+|nl|woord|n}}
-* Erzya: [[вал]] (val)
-* Esperanto: {{t+|eo|vorto|xs=Esperanto}}
-* Estonian: {{t+|et|sõna}}
-* Faroese: {{t-|fo|orð|n|xs=Faroese}}
-* Finnish: {{t+|fi|sana}}
-* French: {{t+|fr|mot|m}}
-* Galician: {{t-|gl|palabra|f|xs=Galician}}, {{t-|gl|vocábulo|m|xs=Galician}}
-* Georgian: {{t-|ka|სიტყვა|tr=sit'qva|sc=Geor|xs=Georgian}}
-* German: {{t+|de|Wort|n}}
-* Greek: {{t+|el|λέξη|f|tr=léxi}}
-* Greenlandic: {{t-|kl|oqaaseq|xs=Greenlandic}}
-* Haitian Creole: {{tø|ht|mo}}
-* Hawaiian: [[hua#Hawaiian|hua]] [[ʻōlelo]]
-* Hebrew: {{t+|he|מלה|f|alt=מִלָּה|tr=mîllá}}
-* Hindi: {{t+|hi|शब्द|m|tr=śabd|xs=Hindi}}, {{t-|hi|बात|f|tr=bāt|xs=Hindi}}
-* Hungarian: {{t+|hu|szó}}
-* Icelandic: {{t+|is|orð|n}}
-* Ido: [[vorto]]
-* Ilocano: {{qualifier| literally}} {{tø|ilo|sao|n}}
-* Indonesian: {{t+|id|kata|xs=Indonesian}}
-* Interlingua: {{t+|ia|parola|xs=Interlingua}}, {{t-|ia|vocabulo|xs=Interlingua}}
-* Irish: {{t+|ga|focal|m|xs=Irish}}
-* Italian: {{t+|it|parola|f}}, {{t+|it|vocabolo|m}}, {{t+|it|termine|m}}
-* Japanese: {{t+|ja|言葉|tr=[[ことば]], kotoba}}, {{t+|ja|単語|tr=たんご, tango}}
-* Javanese: {{t|jv|ukara|xs=Javanese}}, {{t|jv|sabda|xs=Javanese}}
-* Kannada: {{t|kn|ಶಬ್ದ|tr=śabda|sc=Knda|xs=Kannada}}, {{t|kn|ಪದ|tr=pada|sc=Knda}}
-* Kazakh: {{t|kk|сөз|tr=söz|sc=Cyrl}}
-* Khmer: {{t-|km|ពាក្យ|tr=bpīək|sc=Khmr|xs=Khmer}}, {{t-|km|ពាក្យសំដី|tr=bpīək somdēi|sc=Khmr|xs=Khmer}}
-* Korean: {{t+|ko|말|tr=mal|sc=Hang}}, {{t+|ko|낱말|tr=natmal|sc=Hang}}, {{t+|ko|단어|hanja=單語|tr=dan-eo|sc=Hang}}
-* Kurdish:
-*: Sorani: {{ku-Arab|[[وشه‌]]}}
-* Kyrgyz: {{t|ky|сөз|tr=söz|sc=Cyrl}}
-* Ladino: {{tø|lad|palavra|f|xs=Ladino}}
-* Lao: {{t-|lo|ຄໍາ|tr=kham|sc=Laoo|xs=Lao}}
-* Latgalian: {{tø|ltg|vuords|m}}
-* Latin: {{t-|la|vocabulum|n}}, {{t+|la|verbum|n}}
-* Latvian: {{t+|lv|vārds|m|xs=Latvian}}
-{{trans-mid}}
-* Lingala: {{t|ln|nkómbó}}
-* Lithuanian: {{t+|lt|žodis|m|xs=Lithuanian}}
-* Lojban: {{t|jbo|valsi}}
-* Lower Sorbian: {{l|dsb|słowo}} {{n}}
-* Luxembourgish: {{t|lb|Wuert|n}}
-* Macedonian: {{t+|mk|збор|m|tr=zbór}}
-* Malay: {{t|ms|perkataan|xs=Malay}}
-* Malayalam: {{t|ml|വാക്ക്|tr=vaakku|sc=Mlym|xs=Malayalam}}, {{t|ml|പദം|tr=padam|sc=Mlym}}, {{t|ml|ശബ്ദം|tr=sabdam|sc=Mlym}}
-* Maltese: {{t-|mt|kelma|xs=Maltese}}
-* {{trreq|mi}}
-* Marathi: {{t+|mr|शब्द|tr=śabd|sc=Deva|xs=Marathi}}
-* Mari: [[мут]]
-* Mongolian: {{t|mn|үг|tr=üg|sc=Cyrl}}
-* Nahuatl: {{t|nah|tlâtòlli}}
-* Nauruan: {{t-|na|dorer|xs=Nauruan}}
-* Navajo: {{tø|nv|saad}}
-* {{trreq|ne}}
-* Northern Yukaghir: {{tø|ykg|аруу|tr=aruu|sc=Cyrl}}
-* Norwegian: {{t+|no|ord|n}}
-* Okinawan: {{tø|ryu|くとぅば|tr=kutuba}}
-* Old Norse: {{tø|non|orð|n|xs=Old Norse}}
-* {{trreq|or}}
-* Papiamentu: {{tø|pap|palabra|f}}
-* Persian: {{t+|fa|واژه|tr=vâže|xs=Persian}}, {{t+|fa|کلمه|tr=kalame|xs=Persian}}
-* Polish: {{t+|pl|słowo|n}}
-* Portuguese: {{t+|pt|palavra|f}}, {{t+|pt|vocábulo|m}}
-* Punjabi: [[ਸ਼ਬਦ]] (šabad)
-* Romanian: {{t+|ro|cuvânt|n}}, {{t|ro|vorbă|f}}
-* Romansch: {{t|rm|pled|m}}, {{t|rm|plaid|m}}
-* Russian: {{t+|ru|слово|n|tr=slóvo}}
-* {{trreq|sm}}
-* Sanskrit: {{t-|sa|शब्द|m|tr=śábda|xs=Sanskrit}}, {{t|sa|पदम्|n|tr=padam|sc=Deva}}
-* Santali: {{tø|sat|ᱨᱳᱲ|tr=rorr|sc=Olck}}
-* Scots: [[wird]], [[wurd]]
-* Scottish Gaelic: [[facal]] {{m}}, [[briathar]] {{m}}
-* Serbo-Croatian:
-*: Cyrillic: {{t|sh|реч|f|sc=Cyrl}}, {{t|sh|ријеч|f|sc=Cyrl}}
-*: Roman: {{t|sh|reč|f}}, {{t|sh|riječ|f}}
-* Sicilian: {{t|scn|palora|f}}
-* Sinhalese: {{t|si|වචනය|tr=vacanaya|sc=Sinh|xs=Sinhalese}}
-* Skolt Sami: {{tø|sms|sää´nn}}
-* Slovak: {{t-|sk|slovo|n}}
-* Slovene: {{t+|sl|beseda|f}}
-* Sotho: {{t|st|lentswe|xs=Sotho}}
-* Spanish: {{t+|es|palabra|f}}, {{t+|es|vocablo|m}}
-* Swahili: {{t+|sw|neno|xs=Swahili}}
-* Swedish: {{t+|sv|ord|n}}
-* Tagalog: [[salita]]
-* Tahitian: [[parau]]
-* Tajik: {{t+|tg|калима|tr=kalima|sc=Cyrl|xs=Tajik}}
-* Tamil: {{t|ta|வார்த்தை|tr=vaarththai|xs=Tamil}}, {{t+|ta|சொல்|tr=col|xs=Tamil}}
-* Tatar: {{t|tt|сүз|tr=süz|sc=Cyrl}}
-* Telugu: {{t|te|పదము|tr=padamu}}
-* Thai: {{t+|th|คำ|tr=kam}}
-* {{trreq|to}}
-* Tswana: {{t-|tn|lefoko|xs=Tswana}}
-* Turkish: {{t+|tr|sözcük}}, {{t+|tr|kelime}}
-* Turkmen: {{t|tk|söz}}
-* Ukrainian: {{t+|uk|слово|n|tr=slóvo|xs=Ukrainian}}
-* Urdu: {{t-|ur|شبد|m|tr=śabd|xs=Urdu}}, {{t-|ur|بات|f|tr=bāt|xs=Urdu}}, {{t|ur|کلمہ|m|sc=ur-Arab}}
-* Uyghur: {{t|ug|سۆز|tr=söz|sc=ug-Arab}}
-* Uzbek: {{t|uz|soʻz}}
-* Vietnamese: {{t|vi|lời|xs=Vietnamese}}, {{t|vi|những lời|xs=Vietnamese}}, {{t|vi|nhời|xs=Vietnamese}}, {{t+|vi|từ|xs=Vietnamese}}, {{t+|vi|tiếng|xs=Vietnamese}}
-* Volapük: {{t|vo|vöd}}
-* Welsh: {{t+|cy|gair|xs=Welsh}}
-* West Frisian: {{t+|fy|wurd|n|xs=West Frisian}}
-* Yiddish: {{t-|yi|וואָרט|n|tr=vort|sc=Hebr|xs=Yiddish}}
-{{trans-bottom}}
-
-{{trans-top|something promised}}
-* Afrikaans: {{t|af|erewoord|xs=Afrikaans}}
-* Albanian: [[sharje]] {{f}}
-* Armenian: {{t-|hy|խոսք|tr=xosk'}}, {{t-|hy|խոստում|tr=xostum}}
-* Breton: [[ger]] {{m}}, gerioù {{p}}
-* Czech: {{t+|cs|slovo|n}}, {{t+|cs|slib|m}}
-* Dutch: {{t|nl|erewoord|n}}
-* Finnish: {{t+|fi|sana}}
-* French: {{t+|fr|parole|f}}
-* Galician: {{t-|gl|palabra|f|xs=Galician}}
-* German: {{t+|de|Ehrenwort|n}}
-* Greek: {{t+|el|λόγος|m|tr=lógos}}
-* Haitian Creole: {{tø|ht|pawòl}}
-* Hungarian: {{t+|hu|szó}}
-* Interlingua: [[parola]]
-* Italian: {{t+|it|parola|f}}
-{{trans-mid}}
-* Japanese: {{t|ja|言質|tr=genchi}}
-* Korean: {{t+|ko|말|tr=mal|sc=Hang}}
-* Lithuanian: {{t+|lt|žodis|m|xs=Lithuanian}}
-* Macedonian: {{t+|mk|збор|m|tr=zbór}}
-* Malayalam: [[വാക്ക്]] (vaakku)
-* Norwegian: {{t+|no|ord|n}}, {{t|no|lovnad|m}}
-* Persian: {{t+|fa|پیمان|tr=peymân|xs=Persian}}, {{t-|fa|قول|tr=qol|xs=Persian}}
-* Portuguese: {{t+|pt|palavra|f}}
-* Romanian: [[cuvânt]] [[de]] [[onoare]] {{n}}
-* Russian: {{t+|ru|слово|n|tr=slóvo}}
-* Slovak: {{t|sk|čestné slovo|n}}
-* Slovene: {{t+|sl|častna beseda|f}}, {{t+|sl|beseda|f}}
-* Spanish: {{t+|es|palabra|f}}
-* Swedish: {{t+|sv|ord|n}}
-* Telugu: {{t|te|మాట}} (māṭa)
-{{trans-bottom}}
-
-{{trans-top|news, tidings}}
-* Finnish: {{t+|fi|uutiset|p}}
-{{trans-mid}}
-* Telugu: {{t|te|వార్త|tr=varta|sc=Telu}}
-{{trans-bottom}}
-
-{{trans-top|discussion}}
-* Finnish: [[pari#Finnish|pari]] {{t|fi|sanaa}}
-{{trans-mid}}
-* Telugu: {{t|te|చర్చ|tr=carca|sc=Telu}}
-{{trans-bottom}}
-
-{{trans-top|telegraphy: unit of text}}
-* Finnish: {{t|fi|sana}}
-* Greek: {{t+|el|λέξη|f|tr=léxi}}
-{{trans-mid}}
-* Telugu: {{t|te|సంకేత పదము|tr=samketa padamu|sc=Telu}}
-{{trans-bottom}}
-
-{{trans-top|computer science: finite string which is not a command or operator}}
-* Finnish: {{t+|fi|sana}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|computing: fixed-size group of bits handled as a unit}}
-* Afrikaans: {{t+|af|woord|xs=Afrikaans}}
-* Finnish: {{t+|fi|sana}}
-* French: {{t+|fr|mot|m}}
-* Greek: {{t+|el|λέξη|f|tr=léxi}}
-* Interlingua: [[parola]]
-* Italian: {{t+|it|word|m}}
-* Japanese: {{t+|ja|言語|kana=げんご|tr=gengo}}
-* Macedonian: {{t+|mk|збор|m|tr=zbór}}
-{{trans-mid}}
-* Norwegian: {{t+|no|ord|n}}
-* Persian: {{t+|fa|واژه|tr=vâže|xs=Persian}}
-* Portuguese: {{t+|pt|palavra|f}}
-* Romanian: [[cuvânt]] {{n}}
-* Russian: {{t+|ru|слово|n|tr=slóvo}}
-* Slovak: {{t-|sk|slovo|n}}
-* Spanish: {{t+|es|palabra|f}}
-* Swedish: {{t+|sv|ord|n}}
-{{trans-bottom}}
-
-{{trans-top|group theory: kind of group element}}
-{{trans-mid}}
-{{trans-bottom}}
-
-{{trans-top|God}}
-* Finnish: {{t|fi|Sana}}
-* French: {{t+|fr|verbe|m}}
-{{trans-mid}}
-* Tajik: {{t|tg|Калом|tr=Kalom|sc=Cyrl}}
-* Telugu: {{t|te|దేవుడు|tr=devudu|sc=Telu}}
-{{trans-bottom}}
-
-{{trans-top|the word of God}}
-* Armenian: {{t+|hy|բան|tr=ban}}
-* Czech: {{t|cs|slovo boží}}
-* Finnish: {{t+|fi|sana}}
-* French: {{t+|fr|parole|f}}
-* German: {{t+|de|Wort|n}}
-* Greek: {{t+|el|λόγος|m|tr=lógos}}
-* Indonesian: {{t|id|firman}}
-* Interlingua: {{t+|ia|parola|xs=Interlingua}}, {{t-|ia|verbo|xs=Interlingua}}
-* Italian: {{t+|it|parola|f}}, {{t+|it|verbo|m}}
-* Japanese: {{t+|ja|福音|kana=ふくいん|tr=fukuin}}
-{{trans-mid}}
-* Korean: {{t+|ko|말씀|tr=malsseum|sc=Hang}}
-* Luxembourgish: {{t|lb|Wuert|n}}
-* Macedonian: {{t|mk|божја реч|f|tr=bóžja reč}}
-* Norwegian: {{t+|no|ord|n}}
-* Persian: {{t+|fa|گفتار|tr=goftâr|xs=Persian}}
-* Polish: {{t|pl|słowo boże}}
-* Portuguese: {{t+|pt|verbo}}
-* Romanian: {{t+|ro|cuvânt|n}}
-* Slovak: {{t|sk|slovo božie}}, {{t|sk|božie slovo}}
-* Telugu: {{t|te|వాణి}} (vāṇi)
-{{trans-bottom}}
-
-===Verb===
-{{en-verb}}
-
-# {{transitive}} To [[say]] or [[write]] (something) using particular words.
-#: ''I’m not sure how to '''word''' this letter to the council.''
-
-====Synonyms====
-* {{sense|say or write using particular words}} [[express]], [[phrase]], [[put into words]], [[state]]
-
-====Translations====
-{{trans-top|say or write using particular words}}
-* Dutch: {{t-|nl|verwoorden}}, {{t|nl|onder woorden brengen}}
-* Greek: {{t+|el|διατυπώνω|tr=diatypóno}}, {{t+|el|συντάσσω|tr=syntásso}}
-* Macedonian: {{t|mk|изразува|tr=izrázuva}}, {{t|mk|формулира|tr=formulíra}}
-{{trans-mid}}
-* Russian: {{t|ru|формулировать|tr=formulírovat’}}
-* Spanish: {{t-|es|redactar}}
-{{trans-bottom}}
-
-{{checktrans-top}}
-{{trans-mid}}
-* {{ttbc|pt}}: {{t|pt|redigir}}
-{{trans-bottom}}
-
-===Interjection===
-{{en-interj}}
-
-# {{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.
-#* "Yo, that movie was epic!" / "'''Word'''?" ("You speak the truth?") / "'''Word'''." ("I speak the truth.")
-# {{slang|emphatic|stereotypically|AAVE}} An abbreviated form of {{term|word up}}; a statement of the acknowledgment of fact with a hint of nonchalant approval.
-#* '''2004''', Shannon Holmes, ''Never Go Home Again: A Novel'', page 218
-#*: "{{...}} Know what I'm sayin'?" / "'''Word'''!" the other man strongly agreed. "Let's do this — "
-#* '''2007''', Gabe Rotter, ''Duck Duck Wally: A Novel'', page 105
-#*: "{{...}} Not bad at all, man. Worth da wait, dawg. '''Word'''." / "You liked it?" I asked dumbly, stoned still, and feeling victorious. / "Yeah, man," said Oral B. "'''Word''' up. {{...}}"
-#* '''2007''', Relentless Aaron ''The Last Kingpin'', page 34
-#*: "{{...}} I mean, I don't blame you... '''Word'''! {{...}}"
-
-===Derived terms===
-{{rel-top3|Terms derived from the noun or verb ''word''}}
-* [[buzzword]]
-* [[catchword]]
-* [[codeword]]
-* [[content word]]
-* [[crossword]]
-* [[dirty word]]
-* [[dword]]
-* [[empty word]]
-* [[f-word]]
-* [[famous last words]]
-* [[fighting word]] / [[fighting words]]
-* [[foreword]]
-* ||frankenword]]
-* [[function word]]
-* [[hard word]]
-* [[have words]]
-* [[headword]]
-{{rel-mid3}}
-* [[in so many words]]
-* [[keyword]]
-* [[last word]] / [[last words]]
-* [[mince words]]
-* [[n-word]]
-* [[nonce word]]
-* [[oword]]
-* [[password]]
-* [[portmanteau word]]
-* [[qword]]
-* [[reword]]
-* [[stopword]]
-* [[swear word]]
-* [[watchword]]
-* [[word-building]]
-* [[word for word]]
-{{rel-mid3}}
-* [[word game]]
-* [[wordish]]
-* [[wordless]]
-* [[word order]]
-* [[word of god]]
-* [[word of mouth]]
-* [[word processor]]
-* [[wordsmith]]
-* [[word square]]
-* [[word to the wise]]
-* [[word up]]
-* [[word wrap]]
-* [[word-wheeling]]
-* [[wordplay]]
-* [[wordpool]]
-* [[wordy]]
-{{rel-bottom}}
-
-===Quotations===
-* {{seeCites}}
-
-===See also===
-* [[allomorph]]
-* [[compound word]]
-* [[grapheme]]
-* [[idiom]]
-* [[lexeme]]
-* [[listeme]]
-* [[morpheme]]
-* [[orthographic]]
-* [[phrase]]
-* [[set phrase]]
-* [[syllable]]
-* [[term]]
-
-===Statistics===
-* {{rank|does|Gutenberg|best|245|word|light|felt|since}}
-
-===Anagrams===
-* [[drow#English|drow]]
-
-[[Category:1000 English basic words]]
-[[Category:English autological terms]]
-[[Category:en:Communication]]
-[[Category:en:Semantics]]
+<h4>Synonyms</h4>
 
-----
+<h4>Antonyms</h4>
 
+<h4>Derived terms</h4>
 
-word: 
+<h4>Related terms</h4>
 
-===Alternative forms===
-* [[ƿord]]
+<h4>Descendants</h4>
 
-===Etymology===
-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|sc=polytonic|εἴρω|tr=eirō||I say}} and Old Slavonic {{term||rotiti sę|to swear}} (Russian {{term|sc=Cyrl|ротиться|tr=rotit’cja||to vow}}).
+<h4>References</h4>
 
-===Pronunciation===
-* {{IPA|lang=ang|/word/}}
+<h4>External links</h4>
 
-===Noun===
+<h3>Anagrams</h3>
+---- (Dividing line between languages)
+===wind===
+trade wind:
+
+<h3>Alternative forms</h3>
+<ul><li> trade-wind</li>
+</ul>
+
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈtreɪdˑwɪnd/}}</li>
+</ul>
+
+<h3>Noun</h3>
+{{en-noun|sg=trade wind}}
+<ol><li> A steady wind that blows from east to west above and below the equator.</li>
+<ul><li> <em>They rode the <b>trade winds</b> going west.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> westerly</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> easterly</li>
+</ul>
+Category:en:Windio:trade windja:trade windro:trade windfi:trade windta:trade windzh:trade wind
+***word***
+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}}.
+<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> {{audio|en-us-word.ogg|Audio (US)}}</li>
+<li> {{rhymes|ɜː(ɹ)d}}</li>
+</ul>
+
+<h3>Noun</h3>
+{en-noun}
+<ol><li> The fact or action of speaking, as opposed to writing or to action. {{defdate|from 9th c.}}</li>
+<ul><li> <b>1811</b>, Jane Austen, <em>Sense and Sensibility</em>:</li>
+<ul><li> she believed them still so very much attached to each other, that they could not be too sedulously divided in <b>word</b> and deed on every occasion.</li>
+</ul>
+<li> <b>2004</b>, Richard Williams, <em>The Guardian</em>, 8 Sep 2004:</li>
+<ul><li> As they fell apart against Austria, England badly needed someone capable of leading by <b>word</b> and example.</li>
+</ul>
+</ul>
+<li> {{context|now|_|rare|except in phrases}} Something which has been said; a comment, utterance; speech. {{defdate|from 10th c.}}</li>
+<ul><li> <b>1611</b>, <em>Bible</em>, Authorized Version, Matthew XXVI.75:</li>
+<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>
+</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>
+<ul><li> {RQ:Shakespeare Hamlet}, II.ii</li>
+<ul><li> Polonius: What do you read, my lord?</li>
+<li> Hamlet: <b>Words</b>, <b>words</b>, <b>words</b>.</li>
+</ul>
+</ul>
+<li> A distinct unit of language which is approved by some authority.</li>
+<ul><li> <b>1896</b>, Israel Zangwill, <em>Without Prejudice</em>, p21</li>
+<ul><li> “Ain’t! How often am I to tell you ain’t ain’t a <b>word</b>?”</li>
+</ul>
+<li> <b>1999</b>, Linda Greenlaw, <em>The Hungry Ocean</em>, Hyperion, p11</li>
+<ul><li> <em>Fisherwoman</em> isn’t even a <b>word</b>. It’s not in the dictionary.</li>
+</ul>
+</ul>
+<li> News; tidings. {{defdate|from 10th c.}}</li>
+<ul><li> <em>Have you had any <b>word</b> from John yet?</em></li>
+</ul>
+<li> An order; a request or instruction. {{defdate|from 10th c.}}</li>
+<ul><li> <em>He sent <b>word</b> that we should strike camp before winter.</em></li>
+</ul>
+<li> A promise; an oath or guarantee. {{defdate|from 10th c.}}</li>
+<ul><li> <em>I give you my <b>word</b> that I will be there on time.</em></li>
+</ul>
+<li> {{theology|sometimes <b>Word</b>}} Christ. {{defdate|from 8th c.}}</li>
+<ul><li> <b>1526</b>, William Tyndale, trans. <em>Bible</em>, John I:</li>
+<ul><li> And that <b>worde</b> was made flesshe, and dwelt amonge vs, and we sawe the glory off yt, as the glory off the only begotten sonne off the father, which <b>worde</b> was full of grace, and verite.</li>
+</ul>
+</ul>
+<li> {{theology|sometimes <b>Word</b>}} Communication from god; the message of the Christian gospel; the Bible. {{defdate|from 10th c.}}</li>
+<ul><li> <em>Her parents had lived in Botswana, spreading the <b>word</b> among the tribespeople.</em></li>
+</ul>
+<li> A brief discussion or conversation. {{defdate|from 15th c.}}</li>
+<ul><li> <em>Can I have a <b>word</b> with you?</em></li>
+</ul>
+<li> {in the plural} Angry debate or conversation; argument. {{defdate|from 15th c.}}</li>
+<ul><li> <em>There had been <b>words</b> between him and the secretary about the outcome of the meeting.</em></li>
+</ul>
+<li> Any sequence of letters or characters considered as a discrete entity. {{defdate|from 19th c.}}</li>
+<li> {telegraphy} A unit of text equivalent to five characters and one space. {{defdate|from 19th c.}}</li>
+<li> {computing} A fixed-size group of bits handled as a unit by a machine. On many 16-bit machines a word is 16 bits or two bytes. {{defdate|from 20th c.}}</li>
+<li> {computer science} A finite string which is not a command or operator.</li>
+<li> {group theory} A group element, expressed as a product of group elements.</li>
+<li> Different symbols, written or spoken, arranged together in a unique sequence that approximates a thought in a person's mind.</li>
+</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>
+{{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>
+</ul>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|distinct unit of language}} vocable</li>
+<li> {{sense|something promised}} promise</li>
+<li> {{sense|God}} God, Logos</li>
+<li> {{sense|Bible}} word of God, Bible</li>
+<li> See also Wikisaurus:word</li>
+</ul>
+
+<h3>Verb</h3>
+{en-verb}
+<ol><li> {transitive} To say or write (something) using particular words.</li>
+<ul><li> <em>I’m not sure how to <b>word</b> this letter to the council.</em></li>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|say or write using particular words}} express, phrase, put into words, state</li>
+</ul>
+
+<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>
+</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> <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> <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>
+</ul>
+</ol>
+
+<h3>Derived terms</h3>
+{{rel-top3|Terms derived from the noun or verb <em>word</em>}}
+<ul><li> buzzword</li>
+<li> catchword</li>
+<li> codeword</li>
+<li> content word</li>
+<li> crossword</li>
+<li> dirty word</li>
+<li> dword</li>
+<li> empty word</li>
+<li> f-word</li>
+<li> famous last words</li>
+<li> fighting word / fighting words</li>
+<li> foreword</li>
+<li> ||frankenword]]</li>
+<li> function word</li>
+<li> hard word</li>
+<li> have words</li>
+<li> headword</li>
+</ul>
+{rel-mid3}
+<ul><li> in so many words</li>
+<li> keyword</li>
+<li> last word / last words</li>
+<li> mince words</li>
+<li> n-word</li>
+<li> nonce word</li>
+<li> oword</li>
+<li> password</li>
+<li> portmanteau word</li>
+<li> qword</li>
+<li> reword</li>
+<li> stopword</li>
+<li> swear word</li>
+<li> watchword</li>
+<li> word-building</li>
+<li> word for word</li>
+</ul>
+{rel-mid3}
+<ul><li> word game</li>
+<li> wordish</li>
+<li> wordless</li>
+<li> word order</li>
+<li> word of god</li>
+<li> word of mouth</li>
+<li> word processor</li>
+<li> wordsmith</li>
+<li> word square</li>
+<li> word to the wise</li>
+<li> word up</li>
+<li> word wrap</li>
+<li> word-wheeling</li>
+<li> wordplay</li>
+<li> wordpool</li>
+<li> wordy</li>
+</ul>
+{rel-bottom}
+<h3>Quotations</h3>
+<ul><li> {seeCites}</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> allomorph</li>
+<li> compound word</li>
+<li> grapheme</li>
+<li> idiom</li>
+<li> lexeme</li>
+<li> listeme</li>
+<li> morpheme</li>
+<li> orthographic</li>
+<li> phrase</li>
+<li> set phrase</li>
+<li> syllable</li>
+<li> term</li>
+</ul>
+
+<h3>Statistics</h3>
+<ul><li> {{rank|does|Gutenberg|best|245|word|light|felt|since}}</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> drow</li>
+</ul>
+Category:1000 English basic wordsCategory:English autological termsCategory:en:CommunicationCategory:en:Semantics----
+word:
+
+<h3>Alternative forms</h3>
+<ul><li> ƿord</li>
+</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}}).
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/word/|lang=ang}}</li>
+</ul>
+
+<h3>Noun</h3>
 {{ang-noun|g=n|pl=word}}
-
-# [[#English|word]]
-# [[speech]], [[utterance]], [[statement]]
-# {{context|grammar}} [[verb]]
-# [[news]], [[information]], [[rumour]]
-# [[command]], [[request]]
-
-[[Category:ang:Grammar]]
-
-----
-
-
+<ol><li> word</li>
+<li> speech, utterance, statement</li>
+<li> {{context|grammar}} verb</li>
+<li> news, information, rumour</li>
+<li> command, request</li>
+</ol>
+Category:ang:Grammar----
 
 Index: EN EN->EN
 
index ff76440857dc1074280b4ae5590998a043e3d489..4440e2f10e6df6f38aa096c180969602f7ff17e1 100644 (file)
@@ -3,2250 +3,1653 @@ EntrySource: wiktionary.WholeSection.IT.quickdic 100
 
 Index: IT IT->EN
 ***a***
-a-: 
+a-:
 {{wikipedia|a (prefisso)|lang=it}}
-
-===Etymology 1===
+<h3>Etymology 1</h3>
 From {{etyl|la|it}} {{term|ad|ad-|lang=la}}.
-
-====Prefix====
+<h4>Prefix</h4>
 {{head|it|prefix}}
+<ol><li> {{l|en|ad-}} (indication direction)</li>
+</ol>
 
-# {{l|en|ad-}} (indication direction)
-
-====Usage notes====
-The Italian prefix ''a-'' often reduplicates the following consonant ([[:w:en:Syntactic gemination|syntactic gemination]], [[w:it:Raddoppiamento fonosintattico|raddoppiamento fonosintattico]]).
-The actual forms usually will be {{term|ab-|lang=it}} (in {{term|abbracciare|lang=it}}), {{term|ad-|lang=it}} (in {{term|addestrare|lang=it}}), {{term|al-|lang=it}} (in {{term|allargare|lang=it}}) etc.
-
-===Etymology 2===
+<h4>Usage notes</h4>
+The Italian prefix <em>a-</em> often reduplicates the following consonant (syntactic gemination, raddoppiamento fonosintattico).The actual forms usually will be {{term|ab-|lang=it}} (in {{term|abbracciare|lang=it}}), {{term|ad-|lang=it}} (in {{term|addestrare|lang=it}}), {{term|al-|lang=it}} (in {{term|allargare|lang=it}}) etc.
+<h3>Etymology 2</h3>
 Borrowed from {{etyl|grc|it}} {{term|ἀ-|tr=a-|lang=grc}}.
-
-====Prefix====
+<h4>Prefix</h4>
 {{head|it|prefix}}
+<ol><li> a- (indicating lack or loss)</li>
+</ol>
 
-# [[#English|a-]] (indicating lack or loss)
-
-=====Synonyms=====
-* [[an-]]
-
+<h5>Synonyms</h5>
+<ul><li> an-</li>
+</ul>
 ----
-
-
 ***A***
-A: 
+A:
 {{wikipedia|lang=it}}
-
-===Pronunciation===
-* {{qualifier|phoneme; name of letter}} {{IPA|/a/|lang=it}}
-*: {{homophones|a|ha|lang=it}}
-
-===Letter===
-{{head|it|letter|g=m|g2=f|g3=inv|lower case|a}}
-
-# {{Latn-def|it|letter|1|a}}
-
-===See also===
-* {{list|it|Latin script letters}}
-* {{pedialite|Italian alphabet}}
-
-[[Category:Italian nouns]]
-
-----
-
-
+<h3>Pronunciation</h3>
+<ul><li> {{qualifier|phoneme; name of letter}} {{IPA|/a/|lang=it}}</li>
+<ul><li> {{homophones|a|ha|lang=it}}</li>
+</ul>
+</ul>
+
+<h3>Letter</h3>
+{{head|it|letter|lower case|a|g=m|g2=f|g3=inv}}
+<ol><li> {{Latn-def|it|letter|1|a}}</li>
+</ol>
+
+<h3>See also</h3>
+<ul><li> {{list|it|Latin script letters}}</li>
+<li> {{pedialite|Italian alphabet}}</li>
+</ul>
+Category:Italian nouns----
 ***abalienate***
-abalienate: 
-
-===Verb===
-'''abalienate'''
-
-# {{conjugation of|abalienare||2|p|pres|ind|lang=it}}
-# {{conjugation of|abalienare||2|p|imp|lang=it}}
-# {{form of|[[feminine|Feminine]] plural|abalienato}}
-
-[[Category:Italian past participle forms]]
-[[Category:Italian verb forms]]
-
-----
-
-
+abalienate:
+
+<h3>Verb</h3>
+<b>abalienate</b>
+<ol><li> {{conjugation of|abalienare|2|p|pres|ind|lang=it}}</li>
+<li> {{conjugation of|abalienare|2|p|imp|lang=it}}</li>
+<li> {{form of|Feminine plural|abalienato}}</li>
+</ol>
+Category:Italian past participle formsCategory:Italian verb forms----
 ***abate***
-abate: 
+abate:
 
-===Etymology===
-From {{etyl|la|it}} {{term|abbas|abbās, abbātis|lang=la}}, from {{etyl|grc|it}} {{term|ἀββᾶς|tr=abbas|lang=grc|sc=polytonic}}, from {{etyl|arc|it}} {{term|אבא||father|lang=arc|tr=’abbā|sc=Hebr}}.
+<h3>Etymology</h3>
+From {{etyl|la|it}} {{term|abbas|abbās, abbātis|lang=la}}, from {{etyl|grc|it}} {{term|ἀββᾶς|tr=abbas|lang=grc|sc=polytonic}}, from {{etyl|arc|it}} {{term|אבא|father|lang=arc|tr=’abbā|sc=Hebr}}.
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/a'bate/|lang=it}}</li>
+<li> {{audio|It-abate.ogg|audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/a'bate/|lang=it}}
-* {{audio|It-abate.ogg|audio}}
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|abat|m|e|i}}
+<ol><li> abbot</li>
+</ol>
 
-# [[abbot]]
-
-====Related terms====
-* [[abbazia]]
-* [[badia]]
-* [[badessa]]
-
-===Anagrams===
-* [[beata#Italian|beata]]
+<h4>Related terms</h4>
+<ul><li> abbazia</li>
+<li> badia</li>
+<li> badessa</li>
+</ul>
 
+<h3>Anagrams</h3>
+<ul><li> beata</li>
+</ul>
 ----
-
-
 ***abbreviate***
-abbreviate: 
-
-===Verb===
-'''abbreviate'''
-
-# [[second-person plural]] [[present tense]] of [[abbreviare]]
-# second-person plural [[imperative]] of abbreviare
-
-===Anagrams===
-
-* [[abbeverati#Italian|abbeverati]]
-
-[[Category:Italian verb forms]]
-
-----
-
-
+abbreviate:
+
+<h3>Verb</h3>
+<b>abbreviate</b>
+<ol><li> second-person plural present tense of abbreviare</li>
+<li> second-person plural imperative of abbreviare</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> abbeverati</li>
+</ul>
+Category:Italian verb forms----
 ***abdicate***
-abdicate: 
-
-===Verb form===
-'''abdicate'''
-
-# [[second-person plural]] [[present tense]] of [[abdicare]]
-# second-person plural [[imperative]] of abdicare
-
-[[Category:Italian verb forms]]
-
-----
-
-
+abdicate:
+
+<h3>Verb form</h3>
+<b>abdicate</b>
+<ol><li> second-person plural present tense of abdicare</li>
+<li> second-person plural imperative of abdicare</li>
+</ol>
+Category:Italian verb forms----
 ***abduce***
-abduce: 
-
-===Verb===
-'''abduce'''
-
-# {{conjugation of|abdurre||3|s|pres|ind|lang=it}}
-
-[[Category:Italian verb forms]]
-
-----
-
+abduce:
 
+<h3>Verb</h3>
+<b>abduce</b>
+<ol><li> {{conjugation of|abdurre|3|s|pres|ind|lang=it}}</li>
+</ol>
+Category:Italian verb forms----
 ***aberrate***
-aberrate: 
-
-===Verb===
-'''aberrate'''
-
-# {{conjugation of|aberrare||2|p|pres|ind|lang=it}}
-# {{conjugation of|aberrare||2|p|imp|lang=it}}
-# {{form of|[[feminine|Feminine]] plural|aberrato}}
-
-[[Category:Italian past participle forms]]
-[[Category:Italian verb forms]]
-
-----
-
-
+aberrate:
+
+<h3>Verb</h3>
+<b>aberrate</b>
+<ol><li> {{conjugation of|aberrare|2|p|pres|ind|lang=it}}</li>
+<li> {{conjugation of|aberrare|2|p|imp|lang=it}}</li>
+<li> {{form of|Feminine plural|aberrato}}</li>
+</ol>
+Category:Italian past participle formsCategory:Italian verb forms----
 ***ablative***
-ablative: 
-
-===Adjective===
-'''ablative''' {{f}}
-
-# Feminine plural form of [[ablativo]]
-
-[[Category:Italian adjective forms]]
-
-----
-
+ablative:
 
+<h3>Adjective</h3>
+<b>ablative</b> {f}
+<ol><li> Feminine plural form of ablativo</li>
+</ol>
+Category:Italian adjective forms----
 ***abominate***
-abominate: 
-
-===Verb===
-'''abominate'''
-
-# {{conjugation of|abominare||2|p|pres|ind|lang=it}}
-# {{conjugation of|abominare||2|p|imp|lang=it}}
-# {{form of|[[feminine|Feminine]] plural|abominato}}
-
-[[Category:Italian past participle forms]]
-[[Category:Italian verb forms]]
-
-----
-
-
+abominate:
+
+<h3>Verb</h3>
+<b>abominate</b>
+<ol><li> {{conjugation of|abominare|2|p|pres|ind|lang=it}}</li>
+<li> {{conjugation of|abominare|2|p|imp|lang=it}}</li>
+<li> {{form of|Feminine plural|abominato}}</li>
+</ol>
+Category:Italian past participle formsCategory:Italian verb forms----
 ***abortive***
-abortive: 
+abortive:
 
-===Adjective===
+<h3>Adjective</h3>
 {{head|it|adjective form}} {{f|p}}
+<ol><li> {{feminine plural of|abortivo|lang=it}}</li>
+</ol>
 
-# {{feminine plural of|abortivo|lang=it}}
-
-===Anagrams===
-* [[breviato#Italian|breviato]]
-
+<h3>Anagrams</h3>
+<ul><li> breviato</li>
+</ul>
 ----
-
-
 ***abrade***
-abrade: 
-
-===Verb===
-'''abrade'''
-
-# {{conjugation of|abradere||3|s|pres|ind|lang=it}}
-
-===Anagrams===
-* [[badare#Italian|badare]]
-* [[baderà#Italian|baderà]]
-
-[[Category:Italian verb forms]]
-
-----
-
-
+abrade:
+
+<h3>Verb</h3>
+<b>abrade</b>
+<ol><li> {{conjugation of|abradere|3|s|pres|ind|lang=it}}</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> badare</li>
+<li> baderà</li>
+</ul>
+Category:Italian verb forms----
 ***abrase***
-abrase: 
-
-===Verb===
-'''abrase'''
-
-# {{conjugation of|abradere||3|s|[[past historic]]|lang=it}}
-
-'''abrase''' {{f}}
-
-# [[plural|Plural]] of [[abraso]]
-
-===Anagrams===
-* [[basare#Italian|basare]]
-* [[baserà#Italian|baserà]]
-
-[[Category:Italian past participle forms]]
-[[Category:Italian verb forms]]
-
-----
-
-
+abrase:
+
+<h3>Verb</h3>
+<b>abrase</b>
+<ol><li> {{conjugation of|abradere|3|s|past historic|lang=it}}</li>
+</ol>
+<b>abrase</b> {f}
+<ol><li> Plural of abraso</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> basare</li>
+<li> baserà</li>
+</ul>
+Category:Italian past participle formsCategory:Italian verb forms----
 ***abrasive***
-abrasive: 
-
-===Adjective===
-'''abrasive''' {{f}}
-
-# Feminine plural form of [[abrasivo]]
-
-===Anagrams===
-* [[bavaresi#Italian|bavaresi]]
-* [[sbaverai#Italian|sbaverai]]
-
-[[Category:Italian adjective forms]]
-
-[[am:abrasive]]
-[[ar:abrasive]]
-[[de:abrasive]]
-[[et:abrasive]]
-[[el:abrasive]]
-[[fa:abrasive]]
-[[fr:abrasive]]
-[[ko:abrasive]]
-[[hi:abrasive]]
-[[io:abrasive]]
-[[id:abrasive]]
-[[it:abrasive]]
-[[kn:abrasive]]
-[[hu:abrasive]]
-[[my:abrasive]]
-[[pl:abrasive]]
-[[pt:abrasive]]
-[[ru:abrasive]]
-[[fi:abrasive]]
-[[ta:abrasive]]
-[[tt:abrasive]]
-[[th:abrasive]]
-[[tr:abrasive]]
-[[vi:abrasive]]
-[[zh:abrasive]]
+abrasive:
+
+<h3>Adjective</h3>
+<b>abrasive</b> {f}
+<ol><li> Feminine plural form of abrasivo</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> bavaresi</li>
+<li> sbaverai</li>
+</ul>
+Category:Italian adjective formsam:abrasivear:abrasivede:abrasiveet:abrasiveel:abrasivefa:abrasivefr:abrasiveko:abrasivehi:abrasiveio:abrasiveid:abrasiveit:abrasivekn:abrasivehu:abrasivemy:abrasivepl:abrasivept:abrasiveru:abrasivefi:abrasiveta:abrasivett:abrasiveth:abrasivetr:abrasivevi:abrasivezh:abrasive
 ***abrogate***
-abrogate: 
-
-===Verb===
-'''abrogate'''
-
-# {{conjugation of|abrogare||2|p|pres|ind|lang=it}}
-# {{conjugation of|abrogare||2|p|imp|lang=it}}
-# {{form of|[[feminine|Feminine]] plural|abrogato}}
-
-[[Category:Italian past participle forms]]
-[[Category:Italian verb forms]]
-
-----
-
-
+abrogate:
+
+<h3>Verb</h3>
+<b>abrogate</b>
+<ol><li> {{conjugation of|abrogare|2|p|pres|ind|lang=it}}</li>
+<li> {{conjugation of|abrogare|2|p|imp|lang=it}}</li>
+<li> {{form of|Feminine plural|abrogato}}</li>
+</ol>
+Category:Italian past participle formsCategory:Italian verb forms----
 ***abrogative***
-abrogative: 
+abrogative:
 
-===Adjective===
-'''abrogative''' {{f}}
-
-# Feminine plural form of [[abrogativo]]
-
-[[Category:Italian adjective forms]]
-
-[[el:abrogative]]
-[[pl:abrogative]]
-[[ru:abrogative]]
-[[ta:abrogative]]
-[[vi:abrogative]]
+<h3>Adjective</h3>
+<b>abrogative</b> {f}
+<ol><li> Feminine plural form of abrogativo</li>
+</ol>
+Category:Italian adjective formsel:abrogativepl:abrogativeru:abrogativeta:abrogativevi:abrogative
 ***abusive***
-abusive: 
-
-===Adjective===
-'''abusive''' {{f}}
-
-# Feminine plural form of [[abusivo]]
-
-[[Category:Italian adjective forms]]
-
-----
-
+abusive:
 
+<h3>Adjective</h3>
+<b>abusive</b> {f}
+<ol><li> Feminine plural form of abusivo</li>
+</ol>
+Category:Italian adjective forms----
 ***acacia***
-acacia: 
+acacia:
 
-===Noun===
+<h3>Noun</h3>
 {{it-noun|acaci|f|a|e}}
-
-# [[#English|acacia]] (tree)
-
+<ol><li> acacia (tree)</li>
+</ol>
 ----
-
-
 ***accidie***
-accidie: 
-
-===Noun===
-'''accidie''' {{f}}
+accidie:
 
-# {{plural of|accidia|lang=it}}
-
-[[fr:accidie]]
+<h3>Noun</h3>
+<b>accidie</b> {f}
+<ol><li> {{plural of|accidia|lang=it}}</li>
+</ol>
+fr:accidie
 ***acclimate***
-acclimate: 
-
-===Verb===
-'''acclimate'''
-
-# {{conjugation of|acclimare||2|p|pres|ind|lang=it}}
-# {{conjugation of|acclimare||2|p|imp|lang=it}}
-# {{form of|[[feminine|Feminine]] plural|[[acclimato]]}}
-
-===Anagrams===
-* [[malaticce#Italian|malaticce]]
-
-[[Category:Italian past participle forms]]
-[[Category:Italian verb forms]]
-
-[[am:acclimate]]
-[[ar:acclimate]]
-[[ca:acclimate]]
-[[et:acclimate]]
-[[el:acclimate]]
-[[fa:acclimate]]
-[[fr:acclimate]]
-[[ko:acclimate]]
-[[io:acclimate]]
-[[id:acclimate]]
-[[it:acclimate]]
-[[my:acclimate]]
-[[ps:acclimate]]
-[[pl:acclimate]]
-[[pt:acclimate]]
-[[ru:acclimate]]
-[[vi:acclimate]]
-[[zh:acclimate]]
+acclimate:
+
+<h3>Verb</h3>
+<b>acclimate</b>
+<ol><li> {{conjugation of|acclimare|2|p|pres|ind|lang=it}}</li>
+<li> {{conjugation of|acclimare|2|p|imp|lang=it}}</li>
+<li> {{form of|Feminine plural|acclimato}}</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> malaticce</li>
+</ul>
+Category:Italian past participle formsCategory:Italian verb formsam:acclimatear:acclimateca:acclimateet:acclimateel:acclimatefa:acclimatefr:acclimateko:acclimateio:acclimateid:acclimateit:acclimatemy:acclimateps:acclimatepl:acclimatept:acclimateru:acclimatevi:acclimatezh:acclimate
 ***acclive***
-acclive: 
+acclive:
 
-===Adjective===
+<h3>Adjective</h3>
 {{it-adj|accliv|e|i}}
+<ol><li> steep</li>
+</ol>
 
-# [[steep]]
-
-====Derived terms====
-* {{l|it|acclività}}
-
-===Anagrams===
-* [[leccavi#Italian|leccavi]]
-* [[velacci#Italian|velacci]]
+<h4>Derived terms</h4>
+<ul><li> {{l|it|acclività}}</li>
+</ul>
 
+<h3>Anagrams</h3>
+<ul><li> leccavi</li>
+<li> velacci</li>
+</ul>
 ----
-
-
 ***accresce***
-accresce: 
-
-===Verb===
-'''accresce'''
-
-# {{conjugation of|accrescere||3|s|pres|ind|lang=it}}
-
-[[Category:Italian verb forms]]
-
-----
-
+accresce:
 
+<h3>Verb</h3>
+<b>accresce</b>
+<ol><li> {{conjugation of|accrescere|3|s|pres|ind|lang=it}}</li>
+</ol>
+Category:Italian verb forms----
 ***accurate***
-accurate: 
+accurate:
 
-===Adjective===
+<h3>Adjective</h3>
 {{head|it|adjective form|g=f|g2=p}}
+<ol><li> {{feminine plural of|accurato}}</li>
+</ol>
 
-# {{feminine plural of|accurato}}
-
-===Anagrams===
-* [[cacature#Italian|cacature]]
-
+<h3>Anagrams</h3>
+<ul><li> cacature</li>
+</ul>
 ----
-
-
 ***AD***
-AD: 
-
-===Initialism===
-'''AD'''
-
-# [[CEO]] ([[amministratore delegato]])
-
-===Anagrams===
-* [[da#Italian|da]], [[da'#Italian|da']], [[dà#Italian|dà]]
-
-[[Category:Italian initialisms]]
-
-----
+AD:
 
+<h3>Initialism</h3>
+<b>AD</b>
+<ol><li> CEO (amministratore delegato)</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> da, da', dà</li>
+</ul>
+Category:Italian initialisms----
 ***Afghanistan***
-Afghanistan: 
+Afghanistan:
 {{wikipedia|lang=it}}
-
-===Pronunciation===
-* {{audio|It-Afghanistan.ogg|audio}}
-
-===Proper noun===
-'''Afghanistan''' {{m}}
-
-# [[Afghanistan#English|Afghanistan]]
-
-====Alternative forms====
-* [[Afganistan]]
-
-====Derived terms====
-* [[afgano]], [[afghano]]
-
-[[Category:Italian proper nouns]]
-[[Category:it:Countries]]
-
-----
-
-
+<h3>Pronunciation</h3>
+<ul><li> {{audio|It-Afghanistan.ogg|audio}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+<b>Afghanistan</b> {m}
+<ol><li> Afghanistan</li>
+</ol>
+
+<h4>Alternative forms</h4>
+<ul><li> Afganistan</li>
+</ul>
+
+<h4>Derived terms</h4>
+<ul><li> afgano, afghano</li>
+</ul>
+Category:Italian proper nounsCategory:it:Countries----
 ***Albania***
-Albania: 
+Albania:
 {{wikipedia|lang=it}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|It-Albania.ogg|Audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{audio|It-Albania.ogg|Audio}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|g=f}}
+<ol><li> {{l|en|Albania}}</li>
+</ol>
 
-# {{l|en|Albania}}
-
-====Derived terms====
-* [[albanese]]
-
-[[Category:it:Countries]]
-
-----
-
-
+<h4>Derived terms</h4>
+<ul><li> albanese</li>
+</ul>
+Category:it:Countries----
 ***Algeria***
-Algeria: 
+Algeria:
 {{wikipedia|lang=it}}
+<h3>Pronunciation</h3>
+<ul><li> {{audio|It-Algeria.ogg|Audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{audio|It-Algeria.ogg|Audio}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|f}}
-
-# {{l|en|Algeria}}
-
-====Derived terms====
-* [[algerino]]
-
-===Anagrams===
-* [[regalai#Italian|regalai]]
-* [[regalia#Italian|regalia]]
-
-[[Category:it:Countries]]
-
-[[zh-min-nan:Algeria]]
-[[cs:Algeria]]
-[[cy:Algeria]]
-[[de:Algeria]]
-[[et:Algeria]]
-[[el:Algeria]]
-[[es:Algeria]]
-[[fa:Algeria]]
-[[fr:Algeria]]
-[[ko:Algeria]]
-[[hy:Algeria]]
-[[hi:Algeria]]
-[[hr:Algeria]]
-[[io:Algeria]]
-[[id:Algeria]]
-[[it:Algeria]]
-[[kn:Algeria]]
-[[sw:Algeria]]
-[[lt:Algeria]]
-[[hu:Algeria]]
-[[mg:Algeria]]
-[[mn:Algeria]]
-[[nl:Algeria]]
-[[no:Algeria]]
-[[nds:Algeria]]
-[[pl:Algeria]]
-[[pt:Algeria]]
-[[ru:Algeria]]
-[[sq:Algeria]]
-[[simple:Algeria]]
-[[fi:Algeria]]
-[[sv:Algeria]]
-[[ta:Algeria]]
-[[tr:Algeria]]
-[[uk:Algeria]]
-[[vi:Algeria]]
-[[zh:Algeria]]
+<ol><li> {{l|en|Algeria}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> algerino</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> regalai</li>
+<li> regalia</li>
+</ul>
+Category:it:Countrieszh-min-nan:Algeriacs:Algeriacy:Algeriade:Algeriaet:Algeriael:Algeriaes:Algeriafa:Algeriafr:Algeriako:Algeriahy:Algeriahi:Algeriahr:Algeriaio:Algeriaid:Algeriait:Algeriakn:Algeriasw:Algerialt:Algeriahu:Algeriamg:Algeriamn:Algerianl:Algeriano:Algeriands:Algeriapl:Algeriapt:Algeriaru:Algeriasq:Algeriasimple:Algeriafi:Algeriasv:Algeriata:Algeriatr:Algeriauk:Algeriavi:Algeriazh:Algeria
 ***andante***
-andante: 
+andante:
 
-===Verb===
+<h3>Verb</h3>
 {{head|it|present participle}}
+<ol><li> {{present participle of|andare|lang=it}}</li>
+</ol>
 
-# {{present participle of|andare|lang=it}}
-
-===Adjective===
+<h3>Adjective</h3>
 {{it-adj|andant|e|i}}
-
-# [[cheap]], [[second-rate]]
-# [[continuous]], [[unbroken]]
-
-===Anagrams===
-* [[dannate#Italian|dannate]]
-
-[[de:andante]]
-[[et:andante]]
-[[el:andante]]
-[[fr:andante]]
-[[gl:andante]]
-[[ko:andante]]
-[[id:andante]]
-[[it:andante]]
-[[ku:andante]]
-[[hu:andante]]
-[[ja:andante]]
-[[no:andante]]
-[[pl:andante]]
-[[ru:andante]]
-[[sq:andante]]
-[[fi:andante]]
-[[ta:andante]]
-[[tr:andante]]
-[[vi:andante]]
-[[zh:andante]]
+<ol><li> cheap, second-rate</li>
+<li> continuous, unbroken</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> dannate</li>
+</ul>
+de:andanteet:andanteel:andantefr:andantegl:andanteko:andanteid:andanteit:andanteku:andantehu:andanteja:andanteno:andantepl:andanteru:andantesq:andantefi:andanteta:andantetr:andantevi:andantezh:andante
 ***Andorra***
-Andorra: 
+Andorra:
 {{wikipedia|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|f}}
+<ol><li> {{l|en|Andorra}}</li>
+</ol>
 
-# {{l|en|Andorra}}
-
-====Derived terms====
-* [[andorrano]]
-
-[[Category:it:Countries]]
-
-----
-
-
+<h4>Derived terms</h4>
+<ul><li> andorrano</li>
+</ul>
+Category:it:Countries----
 ***Angola***
-Angola: 
+Angola:
 {{wikipedia|lang=it}}
-
-===Pronunciation===
-* {{audio|it-Angola.ogg|Audio}}
-
-===Proper noun===
-'''Angola''' {{f}}
-
-# {{l|en|Angola}}
-
-====Derived terms====
-* [[angolano]]
-
-[[Category:Italian proper nouns]]
-[[Category:it:Countries]]
-
-----
-
-
+<h3>Pronunciation</h3>
+<ul><li> {{audio|it-Angola.ogg|Audio}}</li>
+</ul>
+
+<h3>Proper noun</h3>
+<b>Angola</b> {f}
+<ol><li> {{l|en|Angola}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> angolano</li>
+</ul>
+Category:Italian proper nounsCategory:it:Countries----
 ***aquila***
-aquila: 
+aquila:
 
-===Etymology===
+<h3>Etymology</h3>
 From the {{etyl|la|it}} {{term|aquila|lang=la}}.
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|aquil|f|a|e}}
-
-# [[eagle]]
-
-====Derived terms====
-{{top2}}
-* [[aquila arpia]]
-* [[aquila del Bonelli]]
-* [[aquila gigante della Nuova Zelanda]]
-* [[aquila di Haast]]
-* [[aquila imperiale]]
-* [[aquila di mare]]
-* [[aquila di mare a coda bianca]]
-{{mid2}}
-* [[aquila di mare di Steller]]
-* [[aquila di mare della testa bianca]]
-* [[aquila pescatrice africana]]
-* [[aquila pescatrice del Madagascar]]
-* [[aquila reale]]
-* [[aquila spiegata]]
-* [[aquila urlatrice]]
-{{bottom}}
-
-[[Category:it:Birds]]
-----
-
-
+<ol><li> eagle</li>
+</ol>
+
+<h4>Derived terms</h4>
+{top2}
+<ul><li> aquila arpia</li>
+<li> aquila del Bonelli</li>
+<li> aquila gigante della Nuova Zelanda</li>
+<li> aquila di Haast</li>
+<li> aquila imperiale</li>
+<li> aquila di mare</li>
+<li> aquila di mare a coda bianca</li>
+</ul>
+{mid2}
+<ul><li> aquila di mare di Steller</li>
+<li> aquila di mare della testa bianca</li>
+<li> aquila pescatrice africana</li>
+<li> aquila pescatrice del Madagascar</li>
+<li> aquila reale</li>
+<li> aquila spiegata</li>
+<li> aquila urlatrice</li>
+</ul>
+{bottom}Category:it:Birds----
 ***are***
-are: 
-
-===Noun===
-'''are''' {{f}} {{p}}
-
-# {{plural of|ara|lang=it}}
+are:
 
-===Anagrams===
-* [[era#Italian|era]], [[Era#Italian|Era]]
-* [[rea#Italian|rea]]
+<h3>Noun</h3>
+<b>are</b> {f} {p}
+<ol><li> {{plural of|ara|lang=it}}</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> era, Era</li>
+<li> rea</li>
+</ul>
 ----
-
-
 ***Argentina***
-Argentina: 
+Argentina:
 
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|g=f}}
-
-# Argentina
-
-====Related terms====
-* [[argentino]]
-* [[argento]]
-
-===Anagrams===
-* [[arginante#Italian|arginante]]
-* [[inargenta#Italian|inargenta]]
-* [[ingranate#Italian|ingranate]]
-* [[rinnegata#Italian|rinnegata]]
-
-[[Category:it:Countries]]
-
-----
-
-
+<ol><li> Argentina</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> argentino</li>
+<li> argento</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> arginante</li>
+<li> inargenta</li>
+<li> ingranate</li>
+<li> rinnegata</li>
+</ul>
+Category:it:Countries----
 ***aria***
-aria: 
+aria:
 {{wikipedia|lang=it}}
-
-===Etymology===
-Metathesis from {{etyl|la|it}} {{term|aerem|lang=la}}, accusative of {{term|aer|āēr|lang=la}}, from {{etyl|grc|it}} {{term|ἀήρ||air|tr=aēr|sc=polytonic|lang=grc}}.
-
-===Pronunciation===
-* {{audio|It-l'aria.ogg|Audio}}
-* {{audio|It-aria.ogg|Audio}}
+<h3>Etymology</h3>
+Metathesis from {{etyl|la|it}} {{term|aerem|lang=la}}, accusative of {{term|aer|āēr|lang=la}}, from {{etyl|grc|it}} {{term|ἀήρ|air|tr=aēr|sc=polytonic|lang=grc}}.
+<h3>Pronunciation</h3>
+<ul><li> {{audio|It-l'aria.ogg|Audio}}</li>
+<li> {{audio|It-aria.ogg|Audio}}</li>
+</ul>
 ària, /ˈarja/, /<tt>"arja</tt>/
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|ari|f|a|e}}
-
-# [[air]]
-# [[look]], [[appearance]], [[countenance]]
-# {{context|plurale tantum|lang=it}} [[airs]]
-# air, [[wind]]
-# {{context|music|lang=it}}  [[aria#English|aria]], [[song]]
-
-====Related terms====
-* [[aere]]
-* [[aereo]]
-* [[aria-acqua]]
-* [[aria-aria]]
-* [[aria-terra]]
-* [[arieggiare]]
-* [[arioso]]
-
-===Anagrams===
-* [[arai#Italian|arai]]
-
+<ol><li> air</li>
+<li> look, appearance, countenance</li>
+<li> {{context|plurale tantum|lang=it}} airs</li>
+<li> air, wind</li>
+<li> {{context|music|lang=it}}  aria, song</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> aere</li>
+<li> aereo</li>
+<li> aria-acqua</li>
+<li> aria-aria</li>
+<li> aria-terra</li>
+<li> arieggiare</li>
+<li> arioso</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> arai</li>
+</ul>
 ----
-
-
 ***arietta***
-arietta: 
+arietta:
 
-===Noun===
+<h3>Noun</h3>
 {{it-noun|ariett|f|a|e}}
-
-# [[breeze]]
-# {{music|lang=it}} [[#English|arietta]]
-
-===Anagrams===
-* [[rateati#Italian|rateati]]
-* [[tariate#Italian|tariate]]
-* [[traiate#Italian|traiate]]
-
-[[de:arietta]]
-[[pl:arietta]]
-[[ru:arietta]]
-[[et:arietta]]
-[[fi:arietta]]
-[[vi:arietta]]
-[[tr:arietta]]
+<ol><li> breeze</li>
+<li> {{music|lang=it}} arietta</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> rateati</li>
+<li> tariate</li>
+<li> traiate</li>
+</ul>
+de:ariettapl:ariettaru:ariettaet:ariettafi:ariettavi:ariettatr:arietta
 ***Armenia***
-Armenia: 
+Armenia:
 {{wikipedia|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|g=f}}
-
-# {{l|en|Armenia}}
-
-====Derived terms====
-* [[armeno]]
-
-===Anagrams===
-* [[amareni#Italian|amareni]]
-* [[animare#Italian|animare]]
-* [[animerà#Italian|animerà]]
-* [[maniera#Italian|maniera]]
-* [[mariane#Italian|mariane]]
-
-[[Category:it:Countries]]
-[[Category:it:Exonyms]]
-
-----
-
-
+<ol><li> {{l|en|Armenia}}</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> armeno</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> amareni</li>
+<li> animare</li>
+<li> animerà</li>
+<li> maniera</li>
+<li> mariane</li>
+</ul>
+Category:it:CountriesCategory:it:Exonyms----
 ***Austria***
-Austria: 
+Austria:
 {{wikipedia|lang=it}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈaustrja/|lang=it}}, {{X-SAMPA|/"austrja/|lang=it}}</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/ˈaustrja/|lang=it}}, {{X-SAMPA|/"austrja/|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|g=f}}
-
-# {{l|en|Austria}}
-
-====Related terms====
-* [[austriaco]]
-
-===Anagrams===
-* [[riusata#Italian|riusata]]
-* [[saturai#Italian|saturai]]
-* [[Taurasi#Italian|Taurasi]]
-
-[[Category:it:Countries]]
-[[Category:it:Exonyms]]
-
-----
-
-
+<ol><li> {{l|en|Austria}}</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> austriaco</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> riusata</li>
+<li> saturai</li>
+<li> Taurasi</li>
+</ul>
+Category:it:CountriesCategory:it:Exonyms----
 ***avatar***
-avatar: 
-
-===Noun===
-{{wikipedia|lang=it}}
-{{head|it|noun|g=m}} {{inv}}
+avatar:
 
-# [[#English|avatar]] (all senses)
-
-===Anagrams===
-* [[tarava#Italian|tarava]], [[varata#Italian|varata]]
+<h3>Noun</h3>
+{{wikipedia|lang=it}}{{head|it|noun|g=m}} {inv}
+<ol><li> avatar (all senses)</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> tarava, varata</li>
+</ul>
 ----
-
-
 ***Bahrain***
-Bahrain: 
+Bahrain:
 {{wikipedia|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{head|it|proper noun|g=m}}
-
-# {{l|en|Bahrain}}
-
-[[Category:it:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Bahrain}}</li>
+</ol>
+Category:it:Countries----
 ***Bangladesh***
-Bangladesh: 
+Bangladesh:
 {{wikipedia|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|g=m}}
-
-# {{l|en|Bangladesh}}
-
-====See also====
-* [[bengalese]]
-* [[bengali]]
-
-[[Category:it:Countries]]
-
-----
-
-
+<ol><li> {{l|en|Bangladesh}}</li>
+</ol>
+
+<h4>See also</h4>
+<ul><li> bengalese</li>
+<li> bengali</li>
+</ul>
+Category:it:Countries----
 ***BCE***
-BCE: 
-
-===Etymology===
-{{initialism of|Banca Centrale Europea||European Central Bank|lang=it}}
-
-===Proper noun===
-{{it-proper noun}}
-
-# [[ECB]]
+BCE:
 
+<h3>Etymology</h3>
+{{initialism of|Banca Centrale Europea|European Central Bank|lang=it}}
+<h3>Proper noun</h3>
+{it-proper noun}
+<ol><li> ECB</li>
+</ol>
 ----
-
-
 ***big***
-big: 
-
-===Noun===
-{{head|it|noun|g=m}} {{inv}}
-
-# [[star]] (entertainment)
-# [[big shot]], [[big noise]]
+big:
 
+<h3>Noun</h3>
+{{head|it|noun|g=m}} {inv}
+<ol><li> star (entertainment)</li>
+<li> big shot, big noise</li>
+</ol>
 ----
-
-
 ***bone***
-bone: 
-
-===Adjective===
-'''bone''' {{f}}
-
-# {{form of|Feminine plural form|[[bono]]}}
-
-[[Category:Italian adjective forms]]
-
-----
-
+bone:
 
+<h3>Adjective</h3>
+<b>bone</b> {f}
+<ol><li> {{form of|Feminine plural form|bono}}</li>
+</ol>
+Category:Italian adjective forms----
 ***Bulgaria***
-Bulgaria: 
+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>
 
-===Pronunciation===
-* {{IPA|/bulɡaˈri.a/|lang=it}}, {{X-SAMPA|/bulga"ri.a/|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|g=f}}
+<ol><li> {{l|en|Bulgaria}}</li>
+</ol>
 
-# {{l|en|Bulgaria}}
-
-====Related terms====
-* [[bulgaro]]
-
-[[Category:it:Countries]]
-
-----
-
-
+<h4>Related terms</h4>
+<ul><li> bulgaro</li>
+</ul>
+Category:it:Countries----
 ***Burundi***
-Burundi: 
+Burundi:
 {{wikipedia|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|g=m}}
+<ol><li> {{l|en|Burundi}}</li>
+</ol>
 
-# {{l|en|Burundi}}
-
-====Derived terms====
-* [[burundese]]
-
-[[Category:it:Countries]]
-
-----
-
-
+<h4>Derived terms</h4>
+<ul><li> burundese</li>
+</ul>
+Category:it:Countries----
 ***can***
-can: 
+can:
 
-===Noun===
+<h3>Noun</h3>
 {{it-noun|ca|m|n|ni}}
-
-# {{context|poetic|_|and literary form of [[cane#Italian|cane]]|lang=it}} [[dog]]
-
+<ol><li> {{context|poetic|_|and literary form of cane|lang=it}} dog</li>
+</ol>
 ----
-
-
 ***centavo***
-centavo: 
+centavo:
 
-===Noun===
+<h3>Noun</h3>
 {{it-noun|centav|m|o|i}}
+<ol><li> centavo</li>
+</ol>
 
-# [[#English|centavo]]
-
-===Anagrams===
-* [[covante#Italian|covante]]
-* [[vocante#Italian|vocante]]
-
+<h3>Anagrams</h3>
+<ul><li> covante</li>
+<li> vocante</li>
+</ul>
 ----
-
 ***ci***
-ci: 
+ci:
 
-===Etymology===
-<small>For the pronoun</small><br>
-From {{etyl|la|it}} {{term|ecce||look|lang=la}} + {{term|hic||here|lang=la}}
+<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}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/tʃi/|lang=it}}, {{X-SAMPA|/tSi/}}</li>
+<li> {{homophones|C|lang=it}} {{qualifier|name of letter}}</li>
+</ul>
 
-<small>For the adverb</small><br>
-{{etyl|la|it}} {{term|ecce||look|lang=la}} + {{term|ibi||there|lang=la}}
-
-===Pronunciation===
-* {{IPA|/tʃi/|lang=it}}, {{X-SAMPA|/tSi/}}
-* {{homophones|C|lang=it}} {{qualifier|name of letter}}
-
-===Pronoun===
+<h3>Pronoun</h3>
 {{head|it|pronoun}}
-
-# [[us]].
-# {{reflexive|lang=it}} [[ourselves]]
-# impersonal reflexive pronoun
-#: '''''Ci''' vuole poco a farmi felice.''
-#:: It doesn't take much to make me happy.
-# on it, about it, of it
-
-====See also====
-* [[noi]]
-* [[si]]
-
-===Adverb===
-{{it-adv}}
-
-# [[here]], [[there]]
-
-====See also====
-* [[ivi]]
-* [[là]]
-* [[qua]]
-* [[qui]]
-
+<ol><li> us.</li>
+<li> {{reflexive|lang=it}} ourselves</li>
+<li> impersonal reflexive pronoun</li>
+<ul><li> <b><em>Ci</b> vuole poco a farmi felice.</em></li>
+<ul><li> It doesn't take much to make me happy.</li>
+</ul>
+</ul>
+<li> on it, about it, of it</li>
+</ol>
+
+<h4>See also</h4>
+<ul><li> noi</li>
+<li> si</li>
+</ul>
+
+<h3>Adverb</h3>
+{it-adv}
+<ol><li> here, there</li>
+</ol>
+
+<h4>See also</h4>
+<ul><li> ivi</li>
+<li> là</li>
+<li> qua</li>
+<li> qui</li>
+</ul>
 ----
-
-
 ***color***
-color: 
-
-===Noun===
-{{head|it|noun|g=m}} {{inv}}
-
-# {{apocopic form of|colore|lang=it}}
-
-===Anagrams===
-* [[cloro#Italian|cloro]]
-
-----
-
-
-***country***
-country: 
-
-===Etymology===
-From {{etyl|en|it}}
-
-===Noun===
-{{head|it|noun}} {{m|inv}}
-
-# {{music|lang=it}} [[country music]]
-
-[[af:country]]
-[[ang:country]]
-[[ar:country]]
-[[az:country]]
-[[zh-min-nan:country]]
-[[cs:country]]
-[[cy:country]]
-[[de:country]]
-[[et:country]]
-[[el:country]]
-[[es:country]]
-[[eo:country]]
-[[fa:country]]
-[[fr:country]]
-[[gl:country]]
-[[ko:country]]
-[[hy:country]]
-[[io:country]]
-[[id:country]]
-[[it:country]]
-[[kl:country]]
-[[kn:country]]
-[[ka:country]]
-[[kk:country]]
-[[sw:country]]
-[[ku:country]]
-[[lo:country]]
-[[lb:country]]
-[[lt:country]]
-[[li:country]]
-[[hu:country]]
-[[mg:country]]
-[[ml:country]]
-[[my:country]]
-[[nl:country]]
-[[ja:country]]
-[[pl:country]]
-[[pt:country]]
-[[ro:country]]
-[[ru:country]]
-[[simple:country]]
-[[fi:country]]
-[[sv:country]]
-[[ta:country]]
-[[te:country]]
-[[th:country]]
-[[tr:country]]
-[[uk:country]]
-[[vi:country]]
-[[zh:country]]
-***crude***
-crude: 
-
-===Adjective===
-'''crude''' ''f plural''
-
-# ''feminine plural of'' '''[[crudo#Italian|crudo]]'''
-
-===Anagrams===
-* [[curde#Italian|curde]]
-
-[[Category:Italian adjective forms]]
-
-----
-
-
-***date***
-date: 
-
-===Noun===
-'''date''' {{f}}
-
-# {{plural of|data|lang=it}}
-
-===Verb===
-'''date'''
-
-# [[second-person plural]] [[present tense]] of [[dare#Italian|dare]]
-# second-person plural [[imperative]] of dare
-# feminine plural of [[dato]], [[past participle]] of dare
-
-[[Category:Italian past participle forms]]
-[[Category:Italian verb forms]]
-
-----
-
-
-***de***
-de: 
-
-===Contraction===
-{{head|it|contraction}}
-
-# {{apocopic form of|del|lang=it}}
-#: ''Michael Radford è il regista '''de''' "Il postino".'' &mdash; "Michael Radford is the director of "Il Postino".
-
-====Usage notes====
-{{term|De|lang=it}} is used where {{term|del|lang=it}}, {{term|della|lang=it}}, etc, would ordinarily be used, but cannot be because the [[article]] is part of the title of a film, book, etc.
-
-====See also====
-* {{l|it|ne}}
-
-===Anagrams===
-* [[ed#Italian|ed]]
-
-----
-
-
-***decade***
-decade: 
-
-===Etymology===
-{{confix|deca|ade|lang=it}}
-
-===Noun===
-{{it-noun|decad|f|e|i}}
-
-# A [[#English|decade]], a period of ten [[day]]s
-
-====Related terms====
-* [[deca-]]
-* [[decennio]] (ten years)
-
-===Verb form===
-'''decade'''
-
-# ''third-person singular indicative present of [[decadere]]''
-
-===Anagrams===
-* [[deceda#Italian|deceda]]
+color:
 
-[[Category:Italian verb forms]]
-[[Category:it:Time]]
+<h3>Noun</h3>
+{{head|it|noun|g=m}} {inv}
+<ol><li> {{apocopic form of|colore|lang=it}}</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> cloro</li>
+</ul>
 ----
+***country***
+country:
 
+<h3>Etymology</h3>
+From {{etyl|en|it}}
+<h3>Noun</h3>
+{{head|it|noun}} {{m|inv}}
+<ol><li> {{music|lang=it}} country music</li>
+</ol>
+af:countryang:countryar:countryaz:countryzh-min-nan:countrycs:countrycy:countryde:countryet:countryel:countryes:countryeo:countryfa:countryfr:countrygl:countryko:countryhy:countryio:countryid:countryit:countrykl:countrykn:countryka:countrykk:countrysw:countryku:countrylo:countrylb:countrylt:countryli:countryhu:countrymg:countryml:countrymy:countrynl:countryja:countrypl:countrypt:countryro:countryru:countrysimple:countryfi:countrysv:countryta:countryte:countryth:countrytr:countryuk:countryvi:countryzh:country
+***crude***
+crude:
 
-***deficit***
-deficit: 
+<h3>Adjective</h3>
+<b>crude</b> <em>f plural</em>
+<ol><li> <em>feminine plural of</em> <b>crudo</b></li>
+</ol>
 
-===Etymology===
-{{etyl|en|it}}
+<h3>Anagrams</h3>
+<ul><li> curde</li>
+</ul>
+Category:Italian adjective forms----
+***date***
+date:
+
+<h3>Noun</h3>
+<b>date</b> {f}
+<ol><li> {{plural of|data|lang=it}}</li>
+</ol>
+
+<h3>Verb</h3>
+<b>date</b>
+<ol><li> second-person plural present tense of dare</li>
+<li> second-person plural imperative of dare</li>
+<li> feminine plural of dato, past participle of dare</li>
+</ol>
+Category:Italian past participle formsCategory:Italian verb forms----
+***de***
+de:
 
-===Noun===
-{{head|it|noun|g=m}} {{inv}}
+<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>
+</ol>
 
-# [[#English|deficit]] (financial, medical)
+<h4>Usage notes</h4>
+{{term|De|lang=it}} is used where {{term|del|lang=it}}, {{term|della|lang=it}}, etc, would ordinarily be used, but cannot be because the article is part of the title of a film, book, etc.
+<h4>See also</h4>
+<ul><li> {{l|it|ne}}</li>
+</ul>
 
+<h3>Anagrams</h3>
+<ul><li> ed</li>
+</ul>
 ----
+***decade***
+decade:
 
+<h3>Etymology</h3>
+{{confix|deca|ade|lang=it}}
+<h3>Noun</h3>
+{{it-noun|decad|f|e|i}}
+<ol><li> A decade, a period of ten days</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> deca-</li>
+<li> decennio (ten years)</li>
+</ul>
+
+<h3>Verb form</h3>
+<b>decade</b>
+<ol><li> <em>third-person singular indicative present of decadere</em></li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> deceda</li>
+</ul>
+Category:Italian verb formsCategory:it:Time----
+***deficit***
+deficit:
 
+<h3>Etymology</h3>
+{{etyl|en|it}}
+<h3>Noun</h3>
+{{head|it|noun|g=m}} {inv}
+<ol><li> deficit (financial, medical)</li>
+</ol>
+----
 ***Esperanto***
-Esperanto: 
+Esperanto:
 
-===Noun===
+<h3>Noun</h3>
 {{head|it|noun|g=m}}
+<ol><li> Esperanto</li>
+</ol>
 
-# [[#English|Esperanto]]
-
-===See also===
-* [[esperantista]]
-
-===Anagrams===
-* [[pensatore#Italian|pensatore]]
-* [[speronate#Italian|speronate]]
+<h3>See also</h3>
+<ul><li> esperantista</li>
+</ul>
 
+<h3>Anagrams</h3>
+<ul><li> pensatore</li>
+<li> speronate</li>
+</ul>
 ----
-
-
 ***Estonia***
-Estonia: 
+Estonia:
 {{wikipedia|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|f}}
-
-# {{l|en|Estonia}}
-
-====Related terms====
-* [[estone]]
-
-===Anagrams===
-* [[atesino#Italian|atesino]]
-* [[esitano#Italian|esitano]]
-* [[soniate#Italian|soniate]]
-
-[[Category:it:Countries]]
-[[Category:it:Exonyms]]
-
-----
-
-
+<ol><li> {{l|en|Estonia}}</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> estone</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> atesino</li>
+<li> esitano</li>
+<li> soniate</li>
+</ul>
+Category:it:CountriesCategory:it:Exonyms----
 ***euro***
-euro: 
+euro:
 {{wikipedia|lang=it}}
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|eur|m|o|o}}
-
-# [[#English|euro]] {{gloss|currency}}
-
-[[Category:it:Currency]]
-
-----
-
-
+<ol><li> euro {{gloss|currency}}</li>
+</ol>
+Category:it:Currency----
 ***f***
-f: 
+f:
 
-===Noun===
+<h3>Noun</h3>
 {{head|it|letter}} {{m|f|inv}}
-
-# See under [[F#Italian|F]]
-
+<ol><li> See under F</li>
+</ol>
 ----
-
-
 ***fa***
-fa: 
-
-===Pronunciation===
-* {{IPA|[ˈfa]|lang=it}}, {{X-SAMPA|/"fa/}}
-* {{hyphenation|fà}}
+fa:
 
-===Adverb===
-{{it-adv}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|[ˈfa]|lang=it}}, {{X-SAMPA|/"fa/}}</li>
+<li> {{hyphenation|fà}}</li>
+</ul>
 
-# [[ago]]
+<h3>Adverb</h3>
+{it-adv}
+<ol><li> ago</li>
+</ol>
 
-====Synonyms====
-* [[prima]]
+<h4>Synonyms</h4>
+<ul><li> prima</li>
+</ul>
 
-===Noun===
-{{wikipedia|Fa (nota)|lang=it}}
-{{head|it|noun}} {{m|inv}}
-
-# {{music|lang=it}} [[#English|fa]] (musical note)
-# [[F]] (musical note or key)
+<h3>Noun</h3>
+{{wikipedia|Fa (nota)|lang=it}}{{head|it|noun}} {{m|inv}}
+<ol><li> {{music|lang=it}} fa (musical note)</li>
+<li> F (musical note or key)</li>
+</ol>
 
-===Alternative forms===
-* (''imperative form'') {{l|it|fa'}}, {{l|it|fai}}
+<h3>Alternative forms</h3>
+<ul><li> (<em>imperative form</em>) {{l|it|fa'}}, {{l|it|fai}}</li>
+</ul>
 
-===Verb===
+<h3>Verb</h3>
 {{head|it|verb form}}
-
-# ''Third-person singular indicative present form of'' '''{{l|it|fare}}'''.
-# ''Second-person singular imperative form of'' '''{{l|it|fare}}'''.
-
+<ol><li> <em>Third-person singular indicative present form of</em> <b>{{l|it|fare}}</b>.</li>
+<li> <em>Second-person singular imperative form of</em> <b>{{l|it|fare}}</b>.</li>
+</ol>
 ----
-
-
 ***gratis***
-gratis: 
+gratis:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|la|it}} {{term|gratis|lang=la}}
-
-===Adverb===
+<h3>Adverb</h3>
 {{head|it|adverb}}
+<ol><li> gratis</li>
+</ol>
 
-# [[gratis#English|gratis]]
-
-====Synonyms====
-* [[gratuitamente]]
+<h4>Synonyms</h4>
+<ul><li> gratuitamente</li>
+</ul>
 
-===Adjective===
-{{head|it|adjective}} {{inv}}
+<h3>Adjective</h3>
+{{head|it|adjective}} {inv}
+<ol><li> free</li>
+</ol>
 
-# [[free]]
-
-====Synonyms====
-* [[gratuito]]
-
-===Anagrams===
-* [[stragi#Italian|stragi]]
+<h4>Synonyms</h4>
+<ul><li> gratuito</li>
+</ul>
 
+<h3>Anagrams</h3>
+<ul><li> stragi</li>
+</ul>
 ----
-
-
 ***guerra***
-guerra: 
+guerra:
 
-===Etymology===
-From {{etyl|roa-oit|it}} {{term|guerra|lang=it}}, from {{etyl|LL.|it}} {{recons|werra|lang=LL.}}, {{recons|guerra|lang=LL.}}, from {{etyl|frk|it}} {{recons|werra|werra|riot, disturbance, quarrel|lang=frk|sc=Latn}} from {{proto|Germanic|werrō|confusion, disarray|lang=it}}, from {{proto|Indo-European|wers-|to mix up, confuse, beat, thresh|lang=it}}. Related to {{etyl|goh|-}} {{term|werra||confusion, strife, quarrel|lang=goh}} ({{etyl|de|-}} {{term|verwirren||to confuse|lang=de}}), {{etyl|osx|-}} {{term|werran||to confuse, perplex|lang=osx}}, {{etyl|nl|-}} {{term|war||confusion, disarray|lang=nl}}, {{etyl|ang|-}} {{term|wyrsa|wyrsa, wiersa||worse|lang=ang}}. More at {{l|en|worse}}, {{l|en|wurst}}.
+<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>
+<li> {{audio|It-la guerra.ogg|Audio}}</li>
+<li> {{audio|It-guerra.ogg|Audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/ˈɡwɛr.ra/|lang=it}}, {{X-SAMPA|/"gwEr.ra/|lang=it}}
-* {{audio|It-la guerra.ogg|Audio}}
-* {{audio|It-guerra.ogg|Audio}}
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|guerr|f|a|e}}
-
-# [[war]], [[warfare]]
-
-====Related terms====
-* [[dichiarazione di guerra]]
-* [[guerra civile]]
-* [[guerra fredda]]
-* [[guerrafondaio]]
-* [[guerraiolo]]
-* [[guerraiuolo]]
-* [[guerra mondiale]]
-* [[guerreggiante]]
-* [[guerreggiare]]
-* [[guerreggiatore]]
-* [[guerrescamente]]
-* [[guerresco]]
-* [[guerricciola]]
-* [[guerriera]]
-* [[guerriero]]
-* [[guerriglia]]
-* [[guerrigliera]]
-* [[guerrigliero]]
-
-===Anagrams===
-* [[urgerà#Italian|urgerà]]
-
+<ol><li> war, warfare</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> dichiarazione di guerra</li>
+<li> guerra civile</li>
+<li> guerra fredda</li>
+<li> guerrafondaio</li>
+<li> guerraiolo</li>
+<li> guerraiuolo</li>
+<li> guerra mondiale</li>
+<li> guerreggiante</li>
+<li> guerreggiare</li>
+<li> guerreggiatore</li>
+<li> guerrescamente</li>
+<li> guerresco</li>
+<li> guerricciola</li>
+<li> guerriera</li>
+<li> guerriero</li>
+<li> guerriglia</li>
+<li> guerrigliera</li>
+<li> guerrigliero</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> urgerà</li>
+</ul>
 ----
-
-
 ***i***
-i: 
-
-===Etymology 1===
-Reduced form of {{term|gli|lang=it}}.<ref>{{reference-book | last = Patota | first = Giuseppe | title = Lineamenti di grammatica storica dell'italiano | year = 2002 | publisher = il Mulino | location = Bologna | language = Italian | id = ISBN 88-15-08638-2 | pages = p. 126 | chapter = }}</ref>
-
-====Article====
-{{Italian definite articles}}
-{{head|it|article|g=m|g2=p|singular|il}}
-
-# [[the]] (''see the usage notes'')
-
-=====Usage notes=====
-* '''''i''''' is used before masculine plural words beginning with a single consonant other than ''x'' or ''z'', or the plural noun {{term|dei|lang=it}}; '''''{{term|gli|lang=it}}''''' is used before masculine plural words beginning with a vowel, ''x'', ''z'', ''gn'', or multiple consonants including ''pn'', ''ps'', and ''s''+consonant, and before the plural noun {{term|dei|lang=it}}.
-
-====See also====
-* {{l|it|gli}}, {{l|it|la}}, {{l|it|le}}
-
-===Etymology 2===
-
-====Noun====
-'''i''' {{f}} ''or'' {{m}} {{inv}}
+i:
 
-# ''[[I]]'' or ''[[#English|i]]'', the letter ''I'' or ''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>
+<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>
+</ol>
 
-=====Derived terms=====
-* [[i lunga]]
+<h5>Usage notes</h5>
+<ul><li> <b><em>i</b></em> is used before masculine plural words beginning with a single consonant other than <em>x</em> or <em>z</em>, or the plural noun {{term|dei|lang=it}}; <b><em>{{term|gli|lang=it}}</b></em> is used before masculine plural words beginning with a vowel, <em>x</em>, <em>z</em>, <em>gn</em>, or multiple consonants including <em>pn</em>, <em>ps</em>, and <em>s</em>+consonant, and before the plural noun {{term|dei|lang=it}}.</li>
+</ul>
 
-===References===
-<references/>
+<h4>See also</h4>
+<ul><li> {{l|it|gli}}, {{l|it|la}}, {{l|it|le}}</li>
+</ul>
 
-[[Category:it:Latin letter names]]
+<h3>Etymology 2</h3>
 
-----
+<h4>Noun</h4>
+<b>i</b> {f} <em>or</em> {m} {inv}
+<ol><li> <em>I</em> or <em>i</em>, the letter <em>I</em> or <em>i</em></li>
+</ol>
 
+<h5>Derived terms</h5>
+<ul><li> i lunga</li>
+</ul>
 
+<h3>References</h3>
+<references/>Category:it:Latin letter names----
 ***in***
-in: 
+in:
 
-===Pronunciation===
-* {{IPA|[in]|lang=it}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|[in]|lang=it}}</li>
+</ul>
 
-===Preposition===
+<h3>Preposition</h3>
 {{head|it|preposition}}
-
-# [[in#English|in]]
-# [[to]]
-#: ''Vado nella panetteria''
-#: ''Vado dal panettiere''
-# [[into]]
-# [[by]]
-
-====Usage notes====
-''When followed by a definite article'', '''in''' ''is combined with the article to give the following combined forms'':
-<table border="1" align="center" cellpadding="5">
-<tr><th>In + article<th>Combined form</tr>
-<tr><td align="center">in + [[il#Italian|il]]<td align="center">[[nel]]</tr>
-<tr><td align="center">in + [[lo#Italian|lo]]<td align="center">[[nello]]</tr>
-<tr><td align="center">in + [[l'#Italian|l']]<td align="center">[[nell']]</tr>
-<tr><td align="center">in + [[i#Italian|i]]<td align="center">[[nei]]</tr>
-<tr><td align="center">in + [[gli]]<td align="center">[[negli]]</tr>
-<tr><td align="center">in + [[la#Italian|la]]<td align="center">[[nella]]</tr>
-<tr><td align="center">in + [[le#Italian|le]]<td align="center">[[nelle]]</tr>
-</table>
-
-===Anagrams===
-* [[ni#Italian|ni]]
-
+<ol><li> in</li>
+<li> to</li>
+<ul><li> <em>Vado nella panetteria</em></li>
+<li> <em>Vado dal panettiere</em></li>
+</ul>
+<li> into</li>
+<li> by</li>
+</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>
+<h3>Anagrams</h3>
+<ul><li> ni</li>
+</ul>
 ----
-
-
 ***Iraq***
-Iraq: 
+Iraq:
 {{wikipedia|lang=it}}
-
-===Proper noun===
+<h3>Proper noun</h3>
 {{it-proper noun|m}}
+<ol><li> {{l|en|Iraq}}</li>
+</ol>
 
-# {{l|en|Iraq}}
-
-====Derived terms====
-* [[iracheno]]
-
-[[Category:it:Countries]]
-
-----
-
-
+<h4>Derived terms</h4>
+<ul><li> iracheno</li>
+</ul>
+Category:it:Countries----
 ***langue***
-langue: 
-
-===Verb===
-'''langue'''
-
-# {{conjugation of|languire||3|s|pres|ind|lang=it}}
-
-===Anagrams===
-* [[lagune#Italian|lagune]]
-
-[[Category:Italian verb forms]]
-
-----
+langue:
 
+<h3>Verb</h3>
+<b>langue</b>
+<ol><li> {{conjugation of|languire|3|s|pres|ind|lang=it}}</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> lagune</li>
+</ul>
+Category:Italian verb forms----
 ***lente***
-lente: 
+lente:
 
-===Etymology 1===
+<h3>Etymology 1</h3>
 Inflected form of {{term|lento|lang=it}}.
-
-====Adjective====
-{{head|it|adjective form}} {{f}}{{p}}
-
-# (''feminine plural form of [[lento#Italian|lento]]'') [[slow]]
-
-===Etymology 2===
-From {{etyl|la|it}} {{term|lens|lēns|lentil|lang=la}}, ''lentis''.
-
-====Noun====
+<h4>Adjective</h4>
+{{head|it|adjective form}} {f}{p}
+<ol><li> (<em>feminine plural form of lento</em>) slow</li>
+</ol>
+
+<h3>Etymology 2</h3>
+From {{etyl|la|it}} {{term|lens|lēns|lentil|lang=la}}, <em>lentis</em>.
+<h4>Noun</h4>
 {{it-noun|lent|f|e|i}}
+<ol><li> lens</li>
+</ol>
 
-# [[lens]]
-
-=====Derived terms=====
-* [[lente a contatto]]
-* [[lente d'ingrandimento]]
-
+<h5>Derived terms</h5>
+<ul><li> lente a contatto</li>
+<li> lente d'ingrandimento</li>
+</ul>
 ----
-
-
 ***libero***
-libero: 
+libero:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|la|it}} {{term|liber|līber}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈlibero/|lang=it}}</li>
+<li> {{audio|It-libero.ogg|Audio}}</li>
+</ul>
 
-===Pronunciation===
-* {{IPA|/ˈlibero/|lang=it}}
-* {{audio|It-libero.ogg|Audio}}
-
-===Adjective===
+<h3>Adjective</h3>
 {{it-adj|liber}}
-
-# [[free]] (''not [[imprisoned]] or [[enslaved]]'')
-#: ''Un [[uomo]] '''libero'''.''
-#:: A '''free''' man.
-# [[clear]], [[unobstructed]] (''without [[blockage]]s'')
-#: ''Il [[passaggio]] era '''libero'''.''
-#:: The passage was '''clear'''.
-# free (''without [[obligation]]s'')
-#: ''[[tempo|Tempo]] '''libero'''.''
-#:: '''Free''' time./'''Leisure''' time.
-# free (''that does not have to be paid for'')
-#: ''[[ingresso|Ingresso]] '''libero'''.''
-#:: '''Free''' admission.
-# free (''as in "free software"'')
-#: ''[[software#Italian|Software]] '''libero'''.''
-#:: '''Free''' software.
-
-====Related terms====
-* [[liberamente]]
-* [[liberare]]
-* [[liberismo]]
-* [[liberista]]
-* [[libero professionista]]
-* [[libertà]]
-* [[via libera]]
-
-===Verb===
+<ol><li> free (<em>not imprisoned or enslaved</em>)</li>
+<ul><li> <em>Un uomo <b>libero</b>.</em></li>
+<ul><li> A <b>free</b> man.</li>
+</ul>
+</ul>
+<li> clear, unobstructed (<em>without blockages</em>)</li>
+<ul><li> <em>Il passaggio era <b>libero</b>.</em></li>
+<ul><li> The passage was <b>clear</b>.</li>
+</ul>
+</ul>
+<li> free (<em>without obligations</em>)</li>
+<ul><li> <em>Tempo <b>libero</b>.</em></li>
+<ul><li> <b>Free</b> time./<b>Leisure</b> time.</li>
+</ul>
+</ul>
+<li> free (<em>that does not have to be paid for</em>)</li>
+<ul><li> <em>Ingresso <b>libero</b>.</em></li>
+<ul><li> <b>Free</b> admission.</li>
+</ul>
+</ul>
+<li> free (<em>as in "free software"</em>)</li>
+<ul><li> <em>Software <b>libero</b>.</em></li>
+<ul><li> <b>Free</b> software.</li>
+</ul>
+</ul>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> liberamente</li>
+<li> liberare</li>
+<li> liberismo</li>
+<li> liberista</li>
+<li> libero professionista</li>
+<li> libertà</li>
+<li> via libera</li>
+</ul>
+
+<h3>Verb</h3>
 {{head|it|verb form}}
+<ol><li> first-person singular present tense of liberare</li>
+</ol>
 
-# [[first-person singular]] [[present tense]] of [[liberare]]
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|liber|m|o|i}}
-
-# {{football|lang=it}} [[sweeper]].
-
+<ol><li> {{football|lang=it}} sweeper.</li>
+</ol>
 ----
-
-
 ***libre***
-libre: 
-
-===Noun===
-'''libre''' {{f}}
-
-# {{plural of|libra|lang=it}}
+libre:
 
+<h3>Noun</h3>
+<b>libre</b> {f}
+<ol><li> {{plural of|libra|lang=it}}</li>
+</ol>
 ----
-
-
 ***medicine***
-medicine: 
-
-===Noun===
-'''medicine''' {{f}}
+medicine:
 
-# {{plural of|medicina|lang=it}}
-
-===Anagrams===
-* [[endemici#Italian|endemici]]
+<h3>Noun</h3>
+<b>medicine</b> {f}
+<ol><li> {{plural of|medicina|lang=it}}</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> endemici</li>
+</ul>
 ----
-
-
 ***minute***
-minute: 
+minute:
 
-===Adjective===
+<h3>Adjective</h3>
 {{head|it|adjective form|g=f|g2=p}}
+<ol><li> {{feminine plural of|minuto|lang=it}}</li>
+</ol>
 
-# {{feminine plural of|minuto|lang=it}}
-
-===Anagrams===
-* [[emunti#Italian|emunti]], [[munite#Italian|munite]]
-
+<h3>Anagrams</h3>
+<ul><li> emunti, munite</li>
+</ul>
 ----
-
-
 ***mobile***
-mobile: 
-
-===Etymology===
-From {{etyl|la|it}} ''[[mobilis]]''.
+mobile:
 
-===Adjective===
+<h3>Etymology</h3>
+From {{etyl|la|it}} <em>mobilis</em>.
+<h3>Adjective</h3>
 {{it-adj|mobil|e|i}}
+<ol><li> movable, mobile</li>
+<li> moving</li>
+</ol>
 
-# [[movable]], [[mobile#English|mobile]]
-# [[moving]]
+<h4>Antonyms</h4>
+<ul><li> immobile</li>
+</ul>
 
-====Antonyms====
-* [[immobile]]
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|mobil|m|e|i}}
-
-# {{context|singular|lang=it}} [[item]] of [[furniture]]
-# {{context|plural|lang=it}} [[furniture]]
-# [[mobile#English|mobile]] {{gloss|cellular phone}}
-
-====Synonyms====
-* {{sense|furniture}} [[mobilia]], [[mobilio]], [[arredamento]]
-* {{sense|cellular phone}} [[cellulare]], [[telefonino]]
-
-====Antonyms====
-* {{sense|cellular phone}} [[fisso]]
-
-===Related terms===
-* [[mobilia]] / [[mobilio]]
-* [[mobiliare]]
-* [[mobilificio]]
-* [[mobilità]]
-* [[mobilitare]]
-
-===Anagrams===
-* [[emboli#Italian|emboli]]
-
+<ol><li> {{context|singular|lang=it}} item of furniture</li>
+<li> {{context|plural|lang=it}} furniture</li>
+<li> mobile {{gloss|cellular phone}}</li>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|furniture}} mobilia, mobilio, arredamento</li>
+<li> {{sense|cellular phone}} cellulare, telefonino</li>
+</ul>
+
+<h4>Antonyms</h4>
+<ul><li> {{sense|cellular phone}} fisso</li>
+</ul>
+
+<h3>Related terms</h3>
+<ul><li> mobilia / mobilio</li>
+<li> mobiliare</li>
+<li> mobilificio</li>
+<li> mobilità</li>
+<li> mobilitare</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> emboli</li>
+</ul>
 ----
-
-
 ***monetario***
-monetario: 
+monetario:
 
-===Adjective===
+<h3>Adjective</h3>
 {{it-adj|monetar|io|ia|i|ie}}
+<ol><li> monetary</li>
+</ol>
 
-# [[monetary]]
-
-===Anagrams===
-* [[erotomani#Italian|erotomani]]
-
+<h3>Anagrams</h3>
+<ul><li> erotomani</li>
+</ul>
 ----
-
 ***nu***
-nu: 
-
-===Noun===
-{{head|it|noun|g=m|g2=f}} {{inv}}
-
-# The name of the letter [[N#Italian|N]]
+nu:
 
-===Anagrams===
-* [[un#Italian|un]], [[un'#Italian|un']]
+<h3>Noun</h3>
+{{head|it|noun|g=m|g2=f}} {inv}
+<ol><li> The name of the letter N</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> un, un'</li>
+</ul>
 ----
-
-
 ***o***
-o: 
+o:
 
-===Etymology 1===
+<h3>Etymology 1</h3>
 From {{etyl|la|it}} {{term|aut|lang=la}}.<ref>Angelo Prati, "Vocabolario Etimologico Italiano", Torino, 1951</ref>
+<h4>Alternative forms</h4>
+<ul><li> od {{qualifier|used optionally before words beginning with a vowel}}</li>
+</ul>
 
-====Alternative forms====
-* [[od]] {{qualifier|used optionally before words beginning with a vowel}}
-
-====Conjunction====
+<h4>Conjunction</h4>
 {{head|it|conjunction}}
+<ol><li> or</li>
+</ol>
 
-# [[or]]
-
-===Etymology 2===
+<h3>Etymology 2</h3>
 
-====Verb====
+<h4>Verb</h4>
 {{head|it|verb form}}
+<ol><li> {{misspelling of|ho|lang=it}}</li>
+</ol>
 
-# {{misspelling of|ho|lang=it}}
-
-===References===
-<references/>
-
-----
-
-
+<h3>References</h3>
+<references/>----
 ***OMC***
-OMC: 
-
-==={{initialism|Italian}}===
-'''OMC'''
+OMC:
 
-# [[Organizzazione Mondiale del Commercio]], [[WTO]] ([[World Trade Organisation]].)
-
-===Anagrams===
-* [[com'#Italian|com']]
+<h3>{{initialism|Italian}}</h3>
+<b>OMC</b>
+<ol><li> Organizzazione Mondiale del Commercio, WTO (World Trade Organisation.)</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> com'</li>
+</ul>
 ----
-
-
 ***osteo***
-osteo-: 
-
-===Prefix===
-'''osteo-'''
-
-# {{anatomy|lang=it}} [[#English|osteo-]]
-
-[[Category:Italian prefixes]]
+osteo-:
 
-[[et:osteo-]]
-[[fr:osteo-]]
-[[ja:osteo-]]
-[[pl:osteo-]]
+<h3>Prefix</h3>
+<b>osteo-</b>
+<ol><li> {{anatomy|lang=it}} osteo-</li>
+</ol>
+Category:Italian prefixeset:osteo-fr:osteo-ja:osteo-pl:osteo-
 ***parole***
-parole: 
+parole:
 
-===Pronunciation===
-* {{IPA|/paɾɔle/|lang=it}}, {{X-SAMPA|/pa4Ole/}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/paɾɔle/|lang=it}}, {{X-SAMPA|/pa4Ole/}}</li>
+</ul>
 
-===Noun===
+<h3>Noun</h3>
 {{head|it|noun|g=f|g2=p}}
-
-# {{plural of|parola|lang=it}}
-#: ''Ci vogliono fatti e non '''parole'''.''
-#:: ''Action is needed, not '''words'''.''
-# {{context|of a song}} [[lyrics]], [[word]]s
-#: ''Musica di Paolo, '''parole''' di Lorenzo''
-#:: ''Music by Paolo, '''lyrics''' by Lorenzo.''
-
-====Synonyms====
-* {{sense|lyrics}} [[testo]]
-
-===Anagrams===
-* [[palerò#Italian|palerò]], [[polare#Italian|polare]]
-
+<ol><li> {{plural of|parola|lang=it}}</li>
+<ul><li> <em>Ci vogliono fatti e non <b>parole</b>.</em></li>
+<ul><li> <em>Action is needed, not <b>words</b>.</em></li>
+</ul>
+</ul>
+<li> {{context|of a song}} lyrics, words</li>
+<ul><li> <em>Musica di Paolo, <b>parole</b> di Lorenzo</em></li>
+<ul><li> <em>Music by Paolo, <b>lyrics</b> by Lorenzo.</em></li>
+</ul>
+</ul>
+</ol>
+
+<h4>Synonyms</h4>
+<ul><li> {{sense|lyrics}} testo</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> palerò, polare</li>
+</ul>
 ----
-
-
 ***peso***
-peso: 
+peso:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|la|it}} {{term|pensum|lang=la}}.
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|pes|m|o|i}}
-
-# [[weight]]
-
-====Related terms====
-* [[pesalettere]]
-* [[pesante]]
-* [[pesare]]
-* [[pesata]]
-* [[pesiera]]
-* [[pesista]]
-* [[pesistica]]
-
-===Verb===
-'''peso'''
-
-# {{conjugation of|pesare||1|s|pres|ind|lang=it}}
-
-===Anagrams===
-* [[pose#Italian|pose]]
-
-[[Category:Italian verb forms]]
-
-----
-
-
+<ol><li> weight</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> pesalettere</li>
+<li> pesante</li>
+<li> pesare</li>
+<li> pesata</li>
+<li> pesiera</li>
+<li> pesista</li>
+<li> pesistica</li>
+</ul>
+
+<h3>Verb</h3>
+<b>peso</b>
+<ol><li> {{conjugation of|pesare|1|s|pres|ind|lang=it}}</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> pose</li>
+</ul>
+Category:Italian verb forms----
 ***pie***
-pie: 
-
-===Adjective===
-'''pie''' {{f}}
-
-# Feminine plural form of [[pio]]
-
-===Anagrams===
-* [[pei#Italian|pei]]
+pie:
 
-[[Category:Italian adjective forms]]
+<h3>Adjective</h3>
+<b>pie</b> {f}
+<ol><li> Feminine plural form of pio</li>
+</ol>
 
-----
+<h3>Anagrams</h3>
+<ul><li> pei</li>
+</ul>
+Category:Italian adjective forms----
+***premature***
+premature:
 
+<h3>Adjective</h3>
+<b>premature</b>
+<ol><li> Feminine plural form of prematuro</li>
+</ol>
 
-***premature***
-premature: 
-
-===Adjective===
-'''premature'''
-
-# Feminine plural form of [[prematuro]]
-
-===Anagrams===
-* [[premurate#Italian|premurate]]
-
-[[Category:Italian adjective forms]]
-
-[[et:premature]]
-[[es:premature]]
-[[fr:premature]]
-[[ko:premature]]
-[[io:premature]]
-[[id:premature]]
-[[it:premature]]
-[[kn:premature]]
-[[hu:premature]]
-[[mg:premature]]
-[[ml:premature]]
-[[my:premature]]
-[[nl:premature]]
-[[pl:premature]]
-[[fi:premature]]
-[[sv:premature]]
-[[ta:premature]]
-[[te:premature]]
-[[vi:premature]]
-[[zh:premature]]
+<h3>Anagrams</h3>
+<ul><li> premurate</li>
+</ul>
+Category:Italian adjective formset:prematurees:prematurefr:prematureko:prematureio:prematureid:prematureit:prematurekn:prematurehu:prematuremg:prematureml:prematuremy:prematurenl:prematurepl:prematurefi:prematuresv:prematureta:prematurete:prematurevi:prematurezh:premature
 ***pseudo***
-pseudo-: 
+pseudo-:
 
-===Prefix===
+<h3>Prefix</h3>
 {{head|it|prefix}}
-
-# [[#English|pseudo-]]
-
+<ol><li> pseudo-</li>
+</ol>
 ----
-
 ***qualitative***
-qualitative: 
-
-===Adjective===
-'''qualitative''' {{f}}
-
-# Feminine plural form of [[qualitativo]]
-
-[[Category:Italian adjective forms]]
-
-[[et:qualitative]]
-[[el:qualitative]]
-[[es:qualitative]]
-[[fa:qualitative]]
-[[fr:qualitative]]
-[[io:qualitative]]
-[[hu:qualitative]]
-[[my:qualitative]]
-[[ja:qualitative]]
-[[pl:qualitative]]
-[[pt:qualitative]]
-[[ru:qualitative]]
-[[simple:qualitative]]
-[[fi:qualitative]]
-[[ta:qualitative]]
-[[te:qualitative]]
-[[tr:qualitative]]
-[[vi:qualitative]]
-[[zh:qualitative]]
+qualitative:
+
+<h3>Adjective</h3>
+<b>qualitative</b> {f}
+<ol><li> Feminine plural form of qualitativo</li>
+</ol>
+Category:Italian adjective formset:qualitativeel:qualitativees:qualitativefa:qualitativefr:qualitativeio:qualitativehu:qualitativemy:qualitativeja:qualitativepl:qualitativept:qualitativeru:qualitativesimple:qualitativefi:qualitativeta:qualitativete:qualitativetr:qualitativevi:qualitativezh:qualitative
 ***quiz***
-quiz: 
-
-===Noun===
-{{head|it|noun|g=m}} {{inv}}
-
-# [[#English|quiz]]
-
-====Derived terms====
-* [[telequiz]]
-
-[[et:quiz]]
-[[el:quiz]]
-[[fa:quiz]]
-[[fr:quiz]]
-[[ko:quiz]]
-[[id:quiz]]
-[[it:quiz]]
-[[kn:quiz]]
-[[sw:quiz]]
-[[hu:quiz]]
-[[ml:quiz]]
-[[my:quiz]]
-[[nl:quiz]]
-[[ja:quiz]]
-[[pl:quiz]]
-[[pt:quiz]]
-[[ru:quiz]]
-[[simple:quiz]]
-[[fi:quiz]]
-[[sv:quiz]]
-[[ta:quiz]]
-[[te:quiz]]
-[[tr:quiz]]
-[[vi:quiz]]
-[[zh:quiz]]
-***radio***
-radio: 
-{{wikipedia|lang=it}}
+quiz:
 
-===Etymology===
-Borrowed from {{etyl|la|it}} ''[[radius]]''.
+<h3>Noun</h3>
+{{head|it|noun|g=m}} {inv}
+<ol><li> quiz</li>
+</ol>
 
-===Pronunciation===
-* {{enPR|ràdio}}, {{IPA|/ˈradjo/|lang=it}}, {{X-SAMPA|/"radjo/}}
+<h4>Derived terms</h4>
+<ul><li> telequiz</li>
+</ul>
+et:quizel:quizfa:quizfr:quizko:quizid:quizit:quizkn:quizsw:quizhu:quizml:quizmy:quiznl:quizja:quizpl:quizpt:quizru:quizsimple:quizfi:quizsv:quizta:quizte:quiztr:quizvi:quizzh:quiz
+***radio***
+radio:
+{{wikipedia|lang=it}}
+<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>
 
-===Noun===
+<h3>Noun</h3>
 {{it-noun|rad|m|io|i}}
+<ol><li> {{skeleton|lang=it}} radius</li>
+<li> radium</li>
+<li> Variant of raggio.</li>
+</ol>
 
-# {{skeleton|lang=it}} [[radius]]
-# [[radium]]
-# Variant of [[raggio]].
-
-====Synonyms====
-* {{sense|radius}} [[radiale]], [[osso radiale]]
+<h4>Synonyms</h4>
+<ul><li> {{sense|radius}} radiale, osso radiale</li>
+</ul>
 
-====Related terms====
-* [[radiale]]
+<h4>Related terms</h4>
+<ul><li> radiale</li>
+</ul>
 
-===Noun===
-{{head|it|noun|g=f}} {{inv}}
+<h3>Noun</h3>
+{{head|it|noun|g=f}} {inv}
+<ol><li> radio</li>
+</ol>
 
-# [[#English|radio]]
-
-===Verb===
+<h3>Verb</h3>
 {{head|it|verb form}}
-
-# {{conjugation of|radiare||1|s|pres|ind|lang=it}}
-
-===Anagrams===
-* [[adiro#Italian|adiro]], [[adirò#Italian|adirò]]
-* [[adori#Italian|adori]]
-* [[Adrio#Italian|Adrio]]
-* [[arido#Italian|arido]]
-* [[Dario#Italian|Dario]]
-* [[dorai#Italian|dorai]]
-* [[rioda#Italian|rioda]]
-* [[rodai#Italian|rodai]]
-
-[[Category:Italian nouns with irregular gender]]
-[[Category:it:Chemical elements]]
-
-----
-
-
+<ol><li> {{conjugation of|radiare|1|s|pres|ind|lang=it}}</li>
+</ol>
+
+<h3>Anagrams</h3>
+<ul><li> adiro, adirò</li>
+<li> adori</li>
+<li> Adrio</li>
+<li> arido</li>
+<li> Dario</li>
+<li> dorai</li>
+<li> rioda</li>
+<li> rodai</li>
+</ul>
+Category:Italian nouns with irregular genderCategory:it:Chemical elements----
 ***rape***
-rape: 
+rape:
 
-===Pronunciation===
-* {{IPA|/ˈrape/|[ˈraː.pe]|lang=it}}, {{X-SAMPA|/"rape/}}
-* {{hyphenation|rà|pe}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈrape/|[ˈraː.pe]|lang=it}}, {{X-SAMPA|/"rape/}}</li>
+<li> {{hyphenation|rà|pe}}</li>
+</ul>
 
-===Noun===
-'''rape''' {{f}}
-
-# {{plural of|rapa|lang=it}}
-
-===Anagrams===
-* [[apre#Italian|apre]], [[arpe#Italian|arpe]], [[pare#Italian|pare]], [[pera#Italian|pera]]
+<h3>Noun</h3>
+<b>rape</b> {f}
+<ol><li> {{plural of|rapa|lang=it}}</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> apre, arpe, pare, pera</li>
+</ul>
 ----
-
-
 ***relegate***
-relegate: 
-
-===Pronunciation===
-* {{IPA|/re.leˈɡa.te/|lang=it}}
-* {{hyphenation|re|le|gà|te}}
-
-===Verb===
-'''relegate'''
-
-# {{conjugation of|relegare||2|p|pres|ind|lang=it}}
-# {{conjugation of|relegare||2|p|imp|lang=it}}
-# {{form of|[[feminine|Feminine]] plural|relegato}}
-
-[[Category:Italian past participle forms]]
-[[Category:Italian verb forms]]
-
-----
-
-
+relegate:
+
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/re.leˈɡa.te/|lang=it}}</li>
+<li> {{hyphenation|re|le|gà|te}}</li>
+</ul>
+
+<h3>Verb</h3>
+<b>relegate</b>
+<ol><li> {{conjugation of|relegare|2|p|pres|ind|lang=it}}</li>
+<li> {{conjugation of|relegare|2|p|imp|lang=it}}</li>
+<li> {{form of|Feminine plural|relegato}}</li>
+</ol>
+Category:Italian past participle formsCategory:Italian verb forms----
 ***robot***
-robot: 
+robot:
 
-===Noun===
-{{head|it|noun|g=m}} {{inv}}
-
-# {{l|en|robot}}
-# {{computing|lang=it}} [[bot]]
-
-====Derived terms====
-* [[robot da cucina]]
+<h3>Noun</h3>
+{{head|it|noun|g=m}} {inv}
+<ol><li> {{l|en|robot}}</li>
+<li> {{computing|lang=it}} bot</li>
+</ol>
 
+<h4>Derived terms</h4>
+<ul><li> robot da cucina</li>
+</ul>
 ----
-
-
 ***sabato***
-sabato: 
+sabato:
 
-===Pronunciation===
-* {{IPA|/ˈsabato/|[ˈsaː.ba.t̪o]|lang=it}}, {{X-SAMPA|/"sabato/}}
-* {{audio|It-sabato.ogg|audio}}
-* {{hyphenation|sà|ba|to}}
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|/ˈsabato/|[ˈsaː.ba.t̪o]|lang=it}}, {{X-SAMPA|/"sabato/}}</li>
+<li> {{audio|It-sabato.ogg|audio}}</li>
+<li> {{hyphenation|sà|ba|to}}</li>
+</ul>
 
-===Etymology===
-From {{etyl|la|it}} ''[[sabbatum]]'', from {{etyl|grc|it}} {{term|σάββατον||tr=sabbaton|Sabbath|lang=grc|sc=Grek}}, from {{etyl|hbo|it}} {{term|שבת||tr=shabbat|Sabbath|sc=Hebr|lang=he}}; compare English {{term|Sabbath|lang=en}}.
-
-===Noun===
+<h3>Etymology</h3>
+From {{etyl|la|it}} <em>sabbatum</em>, from {{etyl|grc|it}} {{term|σάββατον|Sabbath|tr=sabbaton|lang=grc|sc=Grek}}, from {{etyl|hbo|it}} {{term|שבת|Sabbath|tr=shabbat|sc=Hebr|lang=he}}; compare English {{term|Sabbath|lang=en}}.
+<h3>Noun</h3>
 {{it-noun|sabat|m|o|i}}
+<ol><li> Saturday</li>
+</ol>
+
+<h3>See also</h3>
+<ul><li> {{list|it|days of the week}}</li>
+</ul>
 
-# [[Saturday]]
-
-===See also===
-* {{list|it|days of the week}}
-
-===Anagrams===
-* [[basato#Italian|basato]], [[sabota#Italian|sabota]]
-[[Category:it:Days of the week]]
-
-[[af:sabato]]
-[[ang:sabato]]
-[[ast:sabato]]
-[[az:sabato]]
-[[br:sabato]]
-[[cs:sabato]]
-[[cy:sabato]]
-[[da:sabato]]
-[[de:sabato]]
-[[et:sabato]]
-[[el:sabato]]
-[[es:sabato]]
-[[eo:sabato]]
-[[eu:sabato]]
-[[fr:sabato]]
-[[gl:sabato]]
-[[ko:sabato]]
-[[hy:sabato]]
-[[io:sabato]]
-[[id:sabato]]
-[[it:sabato]]
-[[lo:sabato]]
-[[lv:sabato]]
-[[lb:sabato]]
-[[lt:sabato]]
-[[hu:sabato]]
-[[mg:sabato]]
-[[nl:sabato]]
-[[ja:sabato]]
-[[no:sabato]]
-[[oc:sabato]]
-[[pl:sabato]]
-[[pt:sabato]]
-[[ro:sabato]]
-[[ru:sabato]]
-[[fi:sabato]]
-[[sv:sabato]]
-[[ta:sabato]]
-[[tr:sabato]]
-[[zh:sabato]]
+<h3>Anagrams</h3>
+<ul><li> basato, sabota</li>
+</ul>
+Category:it:Days of the weekaf:sabatoang:sabatoast:sabatoaz:sabatobr:sabatocs:sabatocy:sabatoda:sabatode:sabatoet:sabatoel:sabatoes:sabatoeo:sabatoeu:sabatofr:sabatogl:sabatoko:sabatohy:sabatoio:sabatoid:sabatoit:sabatolo:sabatolv:sabatolb:sabatolt:sabatohu:sabatomg:sabatonl:sabatoja:sabatono:sabatooc:sabatopl:sabatopt:sabatoro:sabatoru:sabatofi:sabatosv:sabatota:sabatotr:sabatozh:sabato
 ***seme***
-seme: 
+seme:
 {{wikipedia|lang=it}}
-
-===Pronunciation===
-* {{IPA|[ˈseme]|lang=it}}
-* {{enPR|séme}}, {{IPA|/ˈseme/|lang=it}}, {{X-SAMPA|/"seme/}}
-
-===Etymology===
-From {{etyl|la|it}} ''[[semen]]''.
-
-===Noun===
+<h3>Pronunciation</h3>
+<ul><li> {{IPA|[ˈseme]|lang=it}}</li>
+<li> {{enPR|séme}}, {{IPA|/ˈseme/|lang=it}}, {{X-SAMPA|/"seme/}}</li>
+</ul>
+
+<h3>Etymology</h3>
+From {{etyl|la|it}} <em>semen</em>.
+<h3>Noun</h3>
 {{it-noun|sem|m|e|i}}
-
-# [[seed]]
-# [[pip]]
-# [[bean]] (in some cases)
-
-====Related terms====
-* [[semaio]]
-* [[sementa]]
-* [[semente]]
-* [[semenza]]
-* [[semina]]
-* [[seminare]]
-
-===Anagrams===
-* [[mese#Italian|mese]]
-
+<ol><li> seed</li>
+<li> pip</li>
+<li> bean (in some cases)</li>
+</ol>
+
+<h4>Related terms</h4>
+<ul><li> semaio</li>
+<li> sementa</li>
+<li> semente</li>
+<li> semenza</li>
+<li> semina</li>
+<li> seminare</li>
+</ul>
+
+<h3>Anagrams</h3>
+<ul><li> mese</li>
+</ul>
 ----
-
-
 ***SpA***
-SpA: 
+SpA:
 
-===Noun===
+<h3>Noun</h3>
 {{head|it|noun}} {{f|inv}}
+<ol><li> {{abbreviation of|società per azioni|lang=it}} {{gloss|public limited company, PLC}}</li>
+</ol>
+
+<h4>Coordinate terms</h4>
+<ul><li> società per azioni</li>
+<li> LLC {{qualifier|English}}</li>
+<li> {{sense|Canada}} Ltd. {{qualifier|English}} , Lté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>
+<li> {{sense|USA}} Inc. {{qualifier|English}}</li>
+</ul>
 
-# {{abbreviation of|società per azioni|lang=it}} {{gloss|public limited company, PLC}}
-
-====Coordinate terms====
-; società per azioni
-* [[LLC]] {{qualifier|English}}
-* {{sense|Canada}} [[Ltd.]] {{qualifier|English}} , [[Ltée.]] {{qualifier|French}}
-* {{sense|Germany}} [[GmbH]] {{qualifier|German}}
-* {{sense|Netherlands}} [[N.V.]] {{qualifier|Dutch}}
-* {{sense|UK}} [[PLC]] {{qualifier|English}}
-* {{sense|USA}} [[Inc.]] {{qualifier|English}}
 ***star***
-star: 
+star:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|en|it}}
-
-===Noun===
-{{head|it|noun|g=f}} {{inv}}
-
-# [[#English|star]] {{gloss|celebrity}}
-
+<h3>Noun</h3>
+{{head|it|noun|g=f}} {inv}
+<ol><li> star {{gloss|celebrity}}</li>
+</ol>
 ----
-
-
 ***stock***
-stock: 
-
-===Etymology===
-From {{etyl|en|it}} [[#English|stock]].
+stock:
 
-===Noun===
+<h3>Etymology</h3>
+From {{etyl|en|it}} stock.
+<h3>Noun</h3>
 {{head|it|noun}}
-
-# [[#English|stock]], goods in supply, [[inventory]]
-
+<ol><li> stock, goods in supply, inventory</li>
+</ol>
 ----
-
-
 ***te***
-te: 
+te:
 
-===Etymology===
+<h3>Etymology</h3>
 From {{etyl|la|it}} {{term|te|tē|lang=la}}, from {{term|tu|tū|lang=la}}.
-
-===Pronoun===
+<h3>Pronoun</h3>
 {{head|it|pronoun}}
+<ol><li> (<em>emphasised objective of tu</em>) you</li>
+</ol>
 
-# (''emphasised objective of [[tu#Italian|tu]]'') [[you]]
-
-====See also====
-* [[ti#Italian|ti]]
-* [[tè]]
-
+<h4>See also</h4>
+<ul><li> ti</li>
+<li> tè</li>
+</ul>
 ----
-
-
 ***transfinite***
-transfinite: 
-
-===Adjective===
-'''transfinite''' {{f}}
+transfinite:
 
-# Feminine plural form of [[transfinito]]
-
-[[Category:Italian adjective forms]]
-
-[[fr:transfinite]]
-[[ko:transfinite]]
-[[io:transfinite]]
-[[pl:transfinite]]
-[[ru:transfinite]]
-[[vi:transfinite]]
+<h3>Adjective</h3>
+<b>transfinite</b> {f}
+<ol><li> Feminine plural form of transfinito</li>
+</ol>
+Category:Italian adjective formsfr:transfiniteko:transfiniteio:transfinitepl:transfiniteru:transfinitevi:transfinite
 ***transitive***
-transitive: 
-
-===Adjective===
-'''transitive''' {{p}}
-
-# {{feminine of|transitivo|lang=it}}
-
-===Anagrams===
-* {{l|it|intervista}}, {{l|it|intestarvi}}, {{l|it|intraviste}}, {{l|it|rinvestita}}, {{l|it|rinvitaste}}, {{l|it|strinatevi}}, {{l|it|vetrinista}}
-
-[[Category:Italian adjective forms]]
-
-----
+transitive:
 
+<h3>Adjective</h3>
+<b>transitive</b> {p}
+<ol><li> {{feminine of|transitivo|lang=it}}</li>
+</ol>
 
+<h3>Anagrams</h3>
+<ul><li> {{l|it|intervista}}, {{l|it|intestarvi}}, {{l|it|intraviste}}, {{l|it|rinvestita}}, {{l|it|rinvitaste}}, {{l|it|strinatevi}}, {{l|it|vetrinista}}</li>
+</ul>
+Category:Italian adjective forms----
 ***Tunisia***
-Tunisia: 
+Tunisia:
 {{wikipedia|lang=it}}
-
-===Proper noun===
-'''Tunisia''' {{f}}
-
-# [[#English|Tunisia]]
-
-====Derived terms====
-* [[tunisino]]
-
-[[Category:Italian proper nouns]]
-[[Category:it:Countries]]
-
-----
-
-
+<h3>Proper noun</h3>
+<b>Tunisia</b> {f}
+<ol><li> Tunisia</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> tunisino</li>
+</ul>
+Category:Italian proper nounsCategory:it:Countries----
 ***wireless***
-wireless: 
+wireless:
 
-===Etymology===
+<h3>Etymology</h3>
 {{etyl|en|it}}
-
-===Noun===
-{{head|it|noun|g=m}} {{inv}}
-
-# [[#English|wireless]] (transmission without wires)
-
-===Adjective===
-{{head|it|adjective}} {{inv}}
-
-# [[#English|wireless]] (computing)
-
-[[cs:wireless]]
-[[et:wireless]]
-[[el:wireless]]
-[[fa:wireless]]
-[[fr:wireless]]
-[[ko:wireless]]
-[[io:wireless]]
-[[id:wireless]]
-[[kn:wireless]]
-[[hu:wireless]]
-[[ml:wireless]]
-[[fj:wireless]]
-[[nl:wireless]]
-[[pl:wireless]]
-[[pt:wireless]]
-[[fi:wireless]]
-[[sv:wireless]]
-[[ta:wireless]]
-[[tr:wireless]]
-[[vi:wireless]]
-[[zh:wireless]]
+<h3>Noun</h3>
+{{head|it|noun|g=m}} {inv}
+<ol><li> wireless (transmission without wires)</li>
+</ol>
+
+<h3>Adjective</h3>
+{{head|it|adjective}} {inv}
+<ol><li> wireless (computing)</li>
+</ol>
+cs:wirelesset:wirelessel:wirelessfa:wirelessfr:wirelessko:wirelessio:wirelessid:wirelesskn:wirelesshu:wirelessml:wirelessfj:wirelessnl:wirelesspl:wirelesspt:wirelessfi:wirelesssv:wirelessta:wirelesstr:wirelessvi:wirelesszh:wireless
 ***y***
-y: 
+y:
 
-===Noun===
+<h3>Noun</h3>
 {{head|it|letter}} {{m|f|inv}}
-
-# See under [[Y#Italian|Y]]
-
+<ol><li> See under Y</li>
+</ol>
 ----
-
-
 ***zero***
-zero: 
-{{cardinalbox|it||0|1||uno|ord=zeresimo}}
-
-===Pronunciation===
-* {{IPA|/ˈdzɛro/|[ˈd̪͡z̪ɛː.ro]|lang=it}}, {{X-SAMPA|/"dzEro/}}
-* {{hyphenation|zè|ro}}
-
-===Adjective===
+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>
+
+<h3>Adjective</h3>
 {{head|it|adjective}} {{m|f|inv}}
+<ol><li> zero</li>
+</ol>
 
-# [[#English|zero]]
-
-===Noun===
+<h3>Noun</h3>
 {{it-noun|zer|m|o|i}}
-
-# [[#English|zero]]
-# [[nil]] (football)
-
-====Derived terms====
-* [[a zero]]
-* [[zero assoluto]]
-* [[zero spaccato]]
-* [[zero zero sette]]
-* l'[[ora zero]]
-
-===See also===
-* [[Appendix:Italian numbers]]
-
-[[Category:Italian cardinal numbers]]
-
-----
-
-
+<ol><li> zero</li>
+<li> nil (football)</li>
+</ol>
+
+<h4>Derived terms</h4>
+<ul><li> a zero</li>
+<li> zero assoluto</li>
+<li> zero spaccato</li>
+<li> zero zero sette</li>
+<li> l'ora zero</li>
+</ul>
+
+<h3>See also</h3>
+<ul><li> Appendix:Italian numbers</li>
+</ul>
+Category:Italian cardinal numbers----
 
 Index: EN EN->IT