]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
Added WholeSection entries and parser.
authorthadh <thadh@thadh-macbookpro>
Sat, 21 Jul 2012 17:41:21 +0000 (10:41 -0700)
committerthadh <thadh@thadh-macbookpro>
Sat, 21 Jul 2012 17:41:21 +0000 (10:41 -0700)
Switched to real xerces parser because Sun fork was crashing on
enwiktionary data.

13 files changed:
.classpath
data/downloadInputs.sh
jars/xerces-2_11_0/xercesImpl.jar [new file with mode: 0644]
src/com/hughes/android/dictionary/engine/DictionaryBuilder.java
src/com/hughes/android/dictionary/engine/DictionaryBuilderMain.java
src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java
src/com/hughes/android/dictionary/engine/IndexBuilder.java
src/com/hughes/android/dictionary/engine/WiktionarySplitter.java
src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java
testdata/goldens/wiktionary.WholeSection.DE.quickdic.text [new file with mode: 0644]
testdata/goldens/wiktionary.WholeSection.EN.quickdic.text [new file with mode: 0644]
testdata/goldens/wiktionary.WholeSection.IT.quickdic.text [new file with mode: 0644]
todo.txt

index 409e8963efc0fac2feaf201564733bb499dc8912..529b43268ba5f079f247e13609c2ca9dca4f12e9 100755 (executable)
@@ -4,5 +4,6 @@
        <classpathentry combineaccessrules="false" kind="src" path="/Dictionary"/>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
        <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
+       <classpathentry kind="lib" path="jars/xerces-2_11_0/xercesImpl.jar"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>
index e5a5400126709f9d7c0b9f9a43018202a5e2cdf0..c14d4604b57591c4675fbffe980285bea90a496f 100755 (executable)
@@ -8,13 +8,11 @@ echo "Note that unzipping is slow."
 
 L=en
 echo "Downloading from: http://dumps.wikimedia.org/${L}wiktionary/"
-WIKI=${L}wiktionary-20120505-pages-articles.xml
-curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120505/${WIKI}.bz2
+WIKI=${L}wiktionary-20120714-pages-articles.xml
+curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120714/${WIKI}.bz2
 bunzip2 ${WIKI}.bz2
 mv ${WIKI} inputs/${L}wiktionary-pages-articles.xml
 
-exit
-
 echo "Downloading from: http://ftp.tu-chemnitz.de/pub/Local/urz/ding/de-en-devel/"
 CHEMNITZ=de-en.txt
 curl --remote-name http://ftp.tu-chemnitz.de/pub/Local/urz/ding/de-en-devel/${CHEMNITZ}.gz
@@ -23,29 +21,29 @@ mv ${CHEMNITZ} inputs/
 
 L=fr
 echo "Downloading from: http://dumps.wikimedia.org/${L}wiktionary/"
-WIKI=${L}wiktionary-20120106-pages-articles.xml
-curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120106/${WIKI}.bz2
+WIKI=${L}wiktionary-20120719-pages-articles.xml
+curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120719/${WIKI}.bz2
 bunzip2 ${WIKI}.bz2
 mv ${WIKI} inputs/${L}wiktionary-pages-articles.xml
 
 L=it
 echo "Downloading from: http://dumps.wikimedia.org/${L}wiktionary/"
-WIKI=${L}wiktionary-20120110-pages-articles.xml
-curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120110/${WIKI}.bz2
+WIKI=${L}wiktionary-20120720-pages-articles.xml
+curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120720/${WIKI}.bz2
 bunzip2 ${WIKI}.bz2
 mv ${WIKI} inputs/${L}wiktionary-pages-articles.xml
 
 L=de
 echo "Downloading from: http://dumps.wikimedia.org/${L}wiktionary/"
-WIKI=${L}wiktionary-20120111-pages-articles.xml
-curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120111/${WIKI}.bz2
+WIKI=${L}wiktionary-20120714-pages-articles.xml
+curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120714/${WIKI}.bz2
 bunzip2 ${WIKI}.bz2
 mv ${WIKI} inputs/${L}wiktionary-pages-articles.xml
 
 L=es
 echo "Downloading from: http://dumps.wikimedia.org/${L}wiktionary/"
-WIKI=${L}wiktionary-20120108-pages-articles.xml
-curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120108/${WIKI}.bz2
+WIKI=${L}wiktionary-20120718-pages-articles.xml
+curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20120718/${WIKI}.bz2
 bunzip2 ${WIKI}.bz2
 mv ${WIKI} inputs/${L}wiktionary-pages-articles.xml
 
diff --git a/jars/xerces-2_11_0/xercesImpl.jar b/jars/xerces-2_11_0/xercesImpl.jar
new file mode 100644 (file)
index 0000000..0aaa990
Binary files /dev/null and b/jars/xerces-2_11_0/xercesImpl.jar differ
index 45a6cee5de0a31ab763c54b451d6ea365a174446..8d7f4842cfe4d2629be88485d2bc7ae9205109ff 100644 (file)
@@ -35,6 +35,7 @@ import com.hughes.android.dictionary.parser.Parser;
 import com.hughes.android.dictionary.parser.wiktionary.EnForeignParser;
 import com.hughes.android.dictionary.parser.wiktionary.EnToTranslationParser;
 import com.hughes.android.dictionary.parser.wiktionary.EnTranslationToTranslationParser;
+import com.hughes.android.dictionary.parser.wiktionary.WholeSectionToHtmlParser;
 import com.hughes.util.Args;
 import com.hughes.util.FileUtil;
 
@@ -175,6 +176,9 @@ public class DictionaryBuilder {
           final Pattern codePattern1 = Pattern.compile(code1, Pattern.CASE_INSENSITIVE);
           final Pattern codePattern2 = Pattern.compile(code2, Pattern.CASE_INSENSITIVE);
           new EnTranslationToTranslationParser(dictionaryBuilder.indexBuilders, new Pattern[] {codePattern1, codePattern2}).parse(file, entrySource, pageLimit);
+        } else if (WholeSectionToHtmlParser.NAME.equals(inputFormat)) {
+          final int titleIndex = Integer.parseInt(keyValueArgs.remove(prefix + "TitleIndex")) - 1;
+          new WholeSectionToHtmlParser(dictionaryBuilder.indexBuilders.get(titleIndex)).parse(file, entrySource, pageLimit);
         } else {
           fatalError("Invalid or missing input format: " + inputFormat);
         }
index 0faf144a37e474b755c569f02804ebf51d94999d..db5c757fe83a391848174eba0047e9d44a97c43c 100644 (file)
@@ -32,7 +32,7 @@ public class DictionaryBuilderMain extends TestCase {
   static final String STOPLISTS = "data/inputs/stoplists/";
   static final String OUTPUTS = "data/outputs/";  
     
-  public static <E> void main(final String[] args) throws Exception {
+  public static void main(final String[] args) throws Exception {
     
     // Builds all the dictionaries it can, outputs list to a text file.
     
index ffd1d7eb696da93358df329353a3e1ac04150ed2..59de98fa13b071db22e386385ab6b616691cb145 100644 (file)
@@ -21,6 +21,7 @@ import java.io.PrintStream;
 import java.io.RandomAccessFile;
 
 import com.hughes.android.dictionary.parser.wiktionary.EnTranslationToTranslationParser;
+import com.hughes.android.dictionary.parser.wiktionary.WholeSectionToHtmlParser;
 import com.hughes.util.FileUtil;
 
 import junit.framework.TestCase;
@@ -64,6 +65,40 @@ public class DictionaryBuilderTest extends TestCase {
     checkGolden(name, result); 
   }
 
+  public void testWiktionary_WholeSection_DE() throws Exception {
+    wiktionaryTestWithWholeSectionToHtml("wiktionary.WholeSection.DE.quickdic", "DE");
+  }
+
+  public void testWiktionary_WholeSection_EN() throws Exception {
+    wiktionaryTestWithWholeSectionToHtml("wiktionary.WholeSection.EN.quickdic", "EN");
+  }
+
+  public void testWiktionary_WholeSection_IT() throws Exception {
+    wiktionaryTestWithWholeSectionToHtml("wiktionary.WholeSection.IT.quickdic", "IT");
+  }
+
+  public void wiktionaryTestWithWholeSectionToHtml(final String name, final String langCode) throws Exception {
+    final File result = new File(TEST_OUTPUTS + name);
+    System.out.println("Writing to: " + result);
+    DictionaryBuilder.main(new String[] {
+        "--dictOut=" + result.getAbsolutePath(),
+        "--lang1=" + langCode,
+        "--lang2=" + "EN",
+        "--lang1Stoplist=" + STOPLISTS + "empty.txt",
+        "--lang2Stoplist=" + STOPLISTS + "empty.txt",
+        "--dictInfo=SomeWikiDataWholeSection",
+
+        "--input4=" + WIKISPLIT + langCode + ".data",
+        "--input4Name=" + name,
+        "--input4Format=" + WholeSectionToHtmlParser.NAME,
+        "--input4TitleIndex=" + "1",
+        "--input4PageLimit=100",
+
+        "--print=" + result.getPath() + ".text",
+    });
+    checkGolden(name, result); 
+  }
+
   
   public void testWiktionary_IT_EN() throws Exception {
     wiktionaryTestWithLangToEn("wiktionary.it_en.quickdic", "IT", "it.txt",
index 0424d0bb22aee9a9350c4307302d1d032a5f50d3..a8d225a6505f8d6aa519e053baae3789b9449c8f 100644 (file)
@@ -77,7 +77,7 @@ public class IndexBuilder {
             assert indexedEntry.index() >= 0;
           }
           if (tokenIndexedEntries.add(indexedEntry)) {
-            rows.add(new PairEntry.Row(indexedEntry.index(), rows.size(), index));
+            rows.add(indexedEntry.entry.CreateRow(indexedEntry.index(), rows.size(), index));
             ++indexedEntry.entry.entrySource.numEntries;
             ++numRows;
             
index 4dd58a5b4b902b87394d99732697996981a68851..34cf2d7436d36ffc99b315f232d81cb283ac1ff5 100644 (file)
@@ -28,8 +28,8 @@ import java.util.regex.Pattern;
 
 import javax.xml.parsers.ParserConfigurationException;
 import javax.xml.parsers.SAXParser;
-import javax.xml.parsers.SAXParserFactory;
 
+import org.apache.xerces.jaxp.SAXParserFactoryImpl;
 import org.xml.sax.Attributes;
 import org.xml.sax.SAXException;
 
@@ -48,7 +48,7 @@ public class WiktionarySplitter extends org.xml.sax.helpers.DefaultHandler {
   StringBuilder textBuilder;
   StringBuilder currentBuilder = null;
 
-  public static void main(final String[] args) throws SAXException, IOException, ParserConfigurationException {
+  public static void main(final String[] args) throws Exception {
     final WiktionarySplitter wiktionarySplitter = new WiktionarySplitter();
     wiktionarySplitter.go();
   }
@@ -67,8 +67,8 @@ public class WiktionarySplitter extends org.xml.sax.helpers.DefaultHandler {
     }
   }
 
-  private void go() throws ParserConfigurationException, SAXException, IOException {
-    final SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
+  private void go() throws Exception {
+    final SAXParser parser = SAXParserFactoryImpl.newInstance().newSAXParser();
 
     // Configure things.
     for (final Map.Entry<String, List<Selector>> pathToSelectorsEntry : pathToSelectors.entrySet()) {
@@ -80,7 +80,12 @@ public class WiktionarySplitter extends org.xml.sax.helpers.DefaultHandler {
       }
   
       // Do it.
-      parser.parse(new File(pathToSelectorsEntry.getKey()), this);
+      try {
+        parser.parse(new File(pathToSelectorsEntry.getKey()), this);
+      } catch (Exception e) {
+        System.err.println("Exception during parse, lastPageTitle=" + lastPageTitle + ", titleBuilder=" + titleBuilder.toString());
+        throw e;
+      }
       
       // Shutdown.
       for (final Selector selector : currentSelectors) {
@@ -90,9 +95,11 @@ public class WiktionarySplitter extends org.xml.sax.helpers.DefaultHandler {
     }
   }
 
+  String lastPageTitle = null;
   int pageCount = 0;
   private void endPage() {
     final String title = titleBuilder.toString();
+    lastPageTitle = title;
     if (++pageCount % 1000 == 0) {
       System.out.println("endPage: " + title + ", count=" + pageCount);
     }
@@ -210,7 +217,7 @@ public class WiktionarySplitter extends org.xml.sax.helpers.DefaultHandler {
 
     public void parse(final File file) throws ParserConfigurationException,
         SAXException, IOException {
-      final SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
+      final SAXParser parser = SAXParserFactoryImpl.newInstance().newSAXParser();
       parser.parse(file, this);
     }
 
index dcf6f494132e7b98ef929f6e3bc223923fe482a8..b51f24ed497ac7abd832fb7ece1ae126c7eade3d 100644 (file)
@@ -1,21 +1,29 @@
 package com.hughes.android.dictionary.parser.wiktionary;
 
 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;
 
 public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
   
-  final IndexBuilder thisIndexBuilder;
-  final IndexBuilder foreignIndexBuilder;
-  final Pattern langPattern;
-  final Pattern langCodePattern;
+  public static final String NAME = "WholeSectionToHtmlParser";
+  
+  final IndexBuilder titleIndexBuilder;
 
+  
+  public  WholeSectionToHtmlParser(final IndexBuilder titleIndexBuilder) {
+    this.titleIndexBuilder = titleIndexBuilder;
+  }
 
   @Override
   void parseSection(String heading, String text) {
-    
+    HtmlEntry htmlEntry = new HtmlEntry(entrySource, title, text);
+    IndexedEntry indexedEntry = new IndexedEntry(htmlEntry);
+    indexedEntry.isValid = true;
+    titleIndexBuilder.addEntryWithString(indexedEntry, title, EntryTypeName.WIKTIONARY_TITLE_MULTI_DETAIL);
   }
 
   @Override
diff --git a/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text b/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text
new file mode 100644 (file)
index 0000000..54aba14
--- /dev/null
@@ -0,0 +1,8520 @@
+dictInfo=SomeWikiDataWholeSection
+EntrySource: wiktionary.WholeSection.DE.quickdic 114
+
+Index: DE DE->EN
+***A***
+A: 
+
+===Pronunciation===
+* {{IPA|/ʔaː/|lang=de}}
+* {{audio|De-A.OGG|Audio}}
+
+===Letter===
+{{de-letter|upper=A|lower=a}}
+
+# {{Latn-def|de|letter|1}}
+
+----
+
+
+***ab***
+ab-: 
+
+===Pronunciation===
+* {{IPA|/ʔap/|lang=de}}
+
+===Prefix===
+{{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]]
+* [[abkürzen]]
+* [[ablehnen]]
+* [[ableiten]]
+* [[ablesen]]
+{{der-mid}}
+* [[abnehmen]]
+* [[abschalten]]
+* [[abschlagen]]
+* [[abschließen]]
+* [[abschneiden]]
+* [[absetzen]]
+* [[abstammen]]
+* [[absteigen]]
+* [[abstehen]]
+* [[abstellen]]
+* [[abwarten]]
+* [[abwechseln]]
+* [[abweichen]]
+* [[abwerfen]]
+* [[abzielen]]
+{{der-bottom}}
+
+====See also====
+* [[ab]]
+
+----
+
+
+ab: 
+
+===Etymology===
+From {{etyl|goh|de}} {{term|ab|lang=goh}}, from {{proto|Germanic|ab|lang=de}}.
+
+===Pronunciation===
+* {{IPA|/ap/|lang=de}}
+
+===Preposition===
+{{head|de|preposition}}
+
+# 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===
+From {{proto|Germanic|ab|lang=goh}}.
+
+===Preposition===
+{{goh-prep}}
+
+# [[of]]
+
+----
+
+
+***aberrant***
+aberrant: 
+
+===Pronunciation===
+* {{audio|De-aberrant.ogg|Audio}}
+
+===Adjective===
+{{de-adj|aberranter|aberrantesten}}
+
+# [[#English|aberrant]]
+
+----
+
+
+***abnormal***
+abnormal: 
+
+===Pronunciation===
+* {{audio|De-abnormal.ogg|Audio}}
+
+===Adjective===
+{{de-adj|comparative=abnormaler|superlative=abnormalsten}}
+
+# [[#English|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]]
+[[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]]
+***abstinent***
+abstinent: 
+
+===Adjective===
+{{de-adj|comparative=abstinenter|superlative=abstinentesten}}
+
+# [[abstinent#English|abstinent]]
+
+====Related terms====
+* [[Abstinenz]]
+* [[Abstinenzler]]
+
+----
+
+
+***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]]
+
+----
+
+
+***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]]
+
+----
+
+
+***Andorra***
+Andorra: 
+{{wikipedia|lang=de}}
+
+===Pronunciation===
+* {{audio|De-Andorra.ogg|Audio}}
+
+===Proper noun===
+{{head|de|proper noun|g=n}}
+
+# [[#English|Andorra]]
+
+====Derived terms====
+* [[Andorraner]] / [[Andorranerin]] / [[andorranisch]]
+
+[[Category:de:Countries]]
+
+----
+
+
+***Angola***
+Angola: 
+
+===Pronunciation===
+* {{audio|De-Angola.ogg|Audio}}
+
+===Proper noun===
+{{head|de|proper noun}}
+
+# {{l|en|Angola}}
+
+[[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.
+
+===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}}
+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]]
+|}
+
+
+***April***
+April: 
+
+===Pronunciation===
+* {{audio|De-April.ogg|audio}}
+
+===Noun===
+{{head|de|noun|g=m}}
+
+# {{l|en|April}}
+
+[[Category:2000 German basic words]]
+[[Category:de:Months]]
+
+----
+
+
+***Bahamas***
+Bahamas: 
+
+===Proper noun===
+{{de-proper noun}} {{p}}
+
+# {{l|en|Bahamas}}
+
+[[Category:de:Countries]]
+
+----
+
+
+***Bahrain***
+Bahrain: 
+
+===Proper noun===
+{{head|de|proper noun}}
+
+# [[#English|Bahrain]]
+
+====Related terms====
+* {{l|de|Bahrainer}}
+* {{l|de|Bahrainerin}}
+
+[[Category:de:Countries]]
+
+----
+
+
+***Bangladesh***
+Bangladesh: 
+
+===Proper noun===
+{{head|de|proper noun}} ''no gender''
+
+# {{alternative spelling of|Bangladesch|lang=de}}
+
+[[Category:de:Countries]]
+
+----
+
+
+***Belize***
+Belize: 
+{{wikipedia|lang=de}}
+
+===Proper noun===
+{{head|de|proper noun|g=n}}
+
+# {{l|en|Belize}}
+
+====Derived terms====
+* {{l|de|Belizer}}
+* {{l|de|Belizerin}}
+* {{l|de|belizisch}}
+
+[[Category:de:Countries]]
+
+----
+
+
+***Bhutan***
+Bhutan: 
+{{wikipedia|lang=de}}
+
+===Pronunciation===
+* {{IPA|/buˈtaːn/|lang=de}}
+* {{homophones|Butan|lang=de}}
+
+===Proper noun===
+{{head|de|proper noun}}
+
+# {{l|en|Bhutan}}
+
+====Derived terms====
+* {{l|de|bhutanisch}}
+* {{l|de|Bhutaner}}
+* {{l|de|Bhutanerin}}
+
+[[Category:de:Countries]]
+
+----
+
+
+***blood***
+blood: 
+
+===Noun===
+{{nds-noun|n}}
+
+# {{form of|uncapitalized form|Blood|lang=nds|nodot=1}} : {{alternative spelling of|Bloot|lang=nds|nocap=1}}
+
+----
+
+
+***bot***
+bot: 
+
+===Verb===
+{{head|de|verb form}}
+
+# {{form of|First-person singular [[preterite]]|bieten|lang=de}}
+# {{form of|Third-person singular [[preterite]]|bieten|lang=de}}
+
+----
+
+
+***Burundi***
+Burundi: 
+{{wikipedia|lang=de}}
+
+===Proper noun===
+{{head|de|proper noun|g=n}}
+
+# [[#English|Burundi]]
+
+[[Category:de:Countries]]
+
+----
+
+
+***Chile***
+Chile: 
+
+===Proper noun===
+{{head|de|proper noun|g=n}}
+
+# [[#English|Chile]]
+
+[[Category:de:Countries]]
+
+----
+
+
+***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===
+{{head|de|proper noun|g=n}}
+
+# [[#English|China]] (''the country'')
+
+[[Category:de:Countries]]
+
+----
+
+
+***dat***
+dat: 
+
+===Etymology===
+
+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===
+{{head|nds|article|g=n}}
+
+# {{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===
+{{head|nds|conjunction}}
+
+# [[that]]
+#* ''Sęd ik, dat ik Kauken hęw?'' (Did I say [lit. ''Said I''], that I have cake?)
+
+===Pronoun===
+{{head|nds|pronoun}}
+
+# {{demonstrative|lang=nds}} [[that]]
+#* ''Kik Di dat an!'' (Look at that!)
+
+===Pronoun===
+{{head|nds|pronoun|g=n}}
+
+# {{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]]
+
+----
+
+
+***de***
+de: 
+
+===Etymology===
+
+From {{etyl|osx|nds}}.
+
+===Pronunciation===
+
+* {{IPA|/dɛɪ̯/|lang=nds}}
+
+===Article===
+{{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.
+
+----
+
+
+***Dezember***
+Dezember: 
+
+===Pronunciation===
+* {{IPA|lang=de|[deˈtsɛmbɐ]}}, {{X-SAMPA|[de"tsEmb6]}}
+* {{hyphenation|De-zem-ber}}
+* {{audio|De-Dezember.ogg|audio}}
+
+===Noun===
+{{head|de|noun}}
+
+# [[December]]
+
+[[Category:de:Months]]
+
+----
+
+
+***dick***
+dick: 
+
+===Etymology===
+From {{etyl|goh|de}} {{term|dicchi|lang=goh}} akin to {{etyl|osx|-}} {{term|thikki|lang=osx}}
+
+===Pronunciation===
+* {{IPA|/dɪk/|lang=de}}
+* {{audio|De-dick.ogg|audio}}
+
+===Adjective===
+{{de-adj|dicker|dicksten}}
+
+# [[thick]]
+# [[fat]]
+
+====Declension====
+{{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]]
+***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===
+{{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====
+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}}
+
+----
+
+
+***dies***
+dies: 
+
+===Etymology===
+A shortening of ''[[dieses]]''
+
+===Pronoun===
+'''dies'''
+
+# [[this]]
+
+[[Category:German pronouns]]
+
+----
+
+
+***digital***
+digital: 
+
+===Adjective===
+{{de-adj|-}}
+
+# {{computing|lang=de}} [[#English|digital]]
+# {{medicine|lang=de}} [[#English|digital]]
+
+----
+
+
+***Ecuador***
+Ecuador: 
+{{wikipedia|lang=de}}
+
+===Proper noun===
+'''Ecuador''' {{n}}
+
+# [[#English|Ecuador]]
+
+====Derived terms====
+* [[Ecuadorianer]]
+* [[Ecuadorianerin]]
+* [[ecuadorianisch]]
+
+[[Category:German proper nouns]]
+[[Category: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}}
+
+# {{context|in some dialects|lang=nds}} {{context|in some dialects|lang=nds}} {{alternative spelling of|en|lang=nds|nodot=1}} : [[one]] (1)
+
+----
+
+
+***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===
+{{head|nds|article|indefinite article|g=m}}
+# {{context|in some dialects|lang=nds}} [[a]], [[an]]
+
+===Article===
+{{head|nds|article|indefinite article|g=n}}
+# {{context|in some dialects|lang=nds}} [[a]], [[an]]
+
+===Cardinal number===
+{{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}}
+
+----
+
+
+***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===
+'''Gambia''' {{n}}
+
+# [[#English|Gambia]]
+
+====Derived terms====
+* [[Gambier]]
+* [[Gambierin]]
+* [[gambisch]]
+* [[Senegambia]]
+
+[[Category:German proper nouns]]
+[[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]] {{italbrac|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}}
+
+# [[#English|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: 
+
+===Proper noun===
+{{head|de|proper noun|g=m}} (''[[genitive]]'' '''Irans''')
+
+# [[#English|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}}
+
+# [[#English|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}}
+
+# [[#English|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}}
+
+===Proper noun===
+{{de-proper noun|g=n}}
+
+# {{l|en|Liberia}}
+
+====Derived terms====
+* {{l|de|Liberianer}}
+* {{l|de|Liberianerin}}
+* {{l|de|liberianisch}}
+
+[[Category:de:Countries]]
+
+----
+
+
+***Liechtenstein***
+Liechtenstein: 
+{{wikipedia|lang=de}}
+
+===Pronunciation===
+* {{IPA|/ˈlɪçtn̩ˌʃtaɪ̯n/|lang=de}}
+* {{audio|De-Liechtenstein.ogg|Audio}}
+
+===Proper noun===
+{{de-proper noun|g=n}}
+
+# Country in Europe. Official name: [[Fürstentum Liechtenstein]].
+
+====Derived terms====
+* {{l|de|Liechtensteiner}}
+* {{l|de|Liechtensteinerin}}
+* {{l|de|liechtensteinisch}}
+
+[[Category:de:Countries]]
+
+----
+
+
+===lists===
+Appendix:Swadesh lists: 
+The words from Swadesh's original 100-word list are designated by an asterisk (*). In the composite list on this page, there are actually 207 words, since seven of the words in the 100-word list (''breast'', ''fingernail'', ''full'', ''horn'', ''knee'', ''moon'', ''round'') were not in the original 200-word list. 
+
+{|  align=center class="wikitable sortable"
+|  i=No | No
+!  c=en | [[English]]
+!  c=fr | [[French]]
+!  c=de | [[German]]
+!  c=it | [[Italian]]
+!  c=es | [[Spanish]]
+!  c=nl | [[Dutch]]
+!  c=sw | [[Swedish]]
+!  c=la | [[Latin]]
+|- 
+|  i=No | 1
+|  c=en | [[I]] *
+|  c=fr | [[je]]
+|  c=de | [[ich]]
+|  c=it | [[io]]
+|  c=es | [[yo]]
+|  c=nl | [[ik]]
+|  c=sw | [[jag]]
+|  c=la | [[ego]]
+|- 
+|  i=No | 2
+|  c=en | [[you]] ''sing.'', [[thou]]
+|  c=fr | [[tu]], [[vous]] (formal)
+|  c=de | [[du]], [[Sie]] (formal)
+|  c=it | [[tu]], [[Lei]] (formal)
+|  c=es | [[tú]], [[usted]] (formal)
+|  c=nl | [[jij]], [[je]], [[U]] (formal)
+|  c=sw | [[du]]
+|  c=la | [[tu]]
+|- 
+|  i=No | 3
+|  c=en | [[he]]
+|  c=fr | [[il]]
+|  c=de | [[er]]
+|  c=it | [[lui]], [[egli]]
+|  c=es | [[él]]
+|  c=nl | [[hij]]
+|  c=sw | [[han]]
+|  c=la | [[is]], [[ea]]
+|- 
+|  i=No | 4
+|  c=en | [[we]] *
+|  c=fr | [[nous]]
+|  c=de | [[wir]]
+|  c=it | [[noi]]
+|  c=es | [[nosotros]]
+|  c=nl | [[wij]], [[we]]
+|  c=sw | [[vi]]
+|  c=la | [[nos]]
+|- 
+|  i=No | 5
+|  c=en | [[you]] ''pl.''
+|  c=fr | [[vous]]
+|  c=de | [[ihr]], [[Sie]] (formal)
+|  c=it | [[voi]]
+|  c=es | [[vosotros]], [[ustedes]] (formal)
+|  c=nl | [[jullie]]
+|  c=sw | [[ni]]
+|  c=la | [[vos]]
+|- 
+|  i=No | 6
+|  c=en | [[they]]
+|  c=fr | [[ils]], [[elles]]
+|  c=de | [[sie]]
+|  c=it | [[loro]], [[essi]]
+|  c=es | [[ellos]], [[ellas]]
+|  c=nl | [[zij]], [[ze]]
+|  c=sw | [[de]]
+|  c=la | [[ii]], [[eae]]
+|- 
+|  i=No | 7
+|  c=en | [[this]] *
+|  c=fr | [[ceci]]
+|  c=de | [[dieses]]
+|  c=it | [[questo]]
+|  c=es | [[este]]
+|  c=nl | [[deze]], [[dit]]
+|  c=sw | [[det här]]
+|  c=la | [[hic]], [[is]]
+|- 
+|  i=No | 8
+|  c=en | [[that]] *
+|  c=fr | [[cela]]
+|  c=de | [[jenes]], [[das]]
+|  c=it | [[quello]]
+|  c=es | [[ese]], [[aquel]]
+|  c=nl | [[die]], [[dat]]
+|  c=sw | [[det där]]
+|  c=la | [[ille]]
+|- 
+|  i=No | 9
+|  c=en | [[here]]
+|  c=fr | [[ici]]
+|  c=de | [[hier]]
+|  c=it | [[qui]], [[qua]]
+|  c=es | [[aquí]], [[acá]]
+|  c=nl | [[hier]]
+|  c=sw | [[här]]
+|  c=la | [[hic]]
+|- 
+|  i=No | 10
+|  c=en | [[there]]
+|  c=fr | [[là]]
+|  c=de | [[dort]]
+|  c=it | [[là]]
+|  c=es | [[ahí]], [[allí]], [[allá]]
+|  c=nl | [[daar]]
+|  c=sw | [[där]]
+|  c=la | [[ibi]]
+|- 
+|  i=No | 11
+|  c=en | [[who]] *
+|  c=fr | [[qui]]
+|  c=de | [[wer]]
+|  c=it | [[chi]]
+|  c=es | [[quien]]
+|  c=nl | [[wie]]
+|  c=sw | [[vem]]
+|  c=la | [[quis]]
+|- 
+|  i=No | 12
+|  c=en | [[what]] *
+|  c=fr | [[quoi]]
+|  c=de | [[was]]
+|  c=it | [[che]]
+|  c=es | [[que]]
+|  c=nl | [[wat]]
+|  c=sw | [[vad]]
+|  c=la | [[quid]]
+|- 
+|  i=No | 13
+|  c=en | [[where]]
+|  c=fr | [[où]]
+|  c=de | [[wo]]
+|  c=it | [[dove]]
+|  c=es | [[donde]]
+|  c=nl | [[waar]]
+|  c=sw | [[var]]
+|  c=la | [[ubi]]
+|- 
+|  i=No | 14
+|  c=en | [[when]]
+|  c=fr | [[quand]]
+|  c=de | [[wann]]
+|  c=it | [[quando]]
+|  c=es | [[cuando]]
+|  c=nl | [[wanneer]]
+|  c=sw | [[när]]
+|  c=la | [[quando]]
+|- 
+|  i=No | 15
+|  c=en | [[how]]
+|  c=fr | [[comment]]
+|  c=de | [[wie]]
+|  c=it | [[come]]
+|  c=es | [[como]]
+|  c=nl | [[hoe]]
+|  c=sw | [[hur]]
+|  c=la | [[quam]], [[quomodo]]
+|- 
+|  i=No | 16
+|  c=en | [[not]] *
+|  c=fr | [[ne]]...[[pas]]
+|  c=de | [[nicht]]
+|  c=it | [[non]]
+|  c=es | [[no]]
+|  c=nl | [[niet]]
+|  c=sw | [[inte]], [[ej]]
+|  c=la | [[non]]
+|- 
+|  i=No | 17
+|  c=en | [[all]] *
+|  c=fr | [[tout]]
+|  c=de | [[alle]]
+|  c=it | [[tutto]]
+|  c=es | [[todo]]
+|  c=nl | [[al]], [[alle]]
+|  c=sw | [[alla]]
+|  c=la | [[omnis]]
+|- 
+|  i=No | 18
+|  c=en | [[many]] *
+|  c=fr | [[plusieurs]]
+|  c=de | [[viele]]
+|  c=it | [[molti]]
+|  c=es | [[muchos]]
+|  c=nl | [[veel]]
+|  c=sw | [[många]]
+|  c=la | [[multi]]
+|- 
+|  i=No | 19
+|  c=en | [[some]]
+|  c=fr | [[quelques]]
+|  c=de | [[einige]]
+|  c=it | [[alcuni]]
+|  c=es | [[algunos]], [[unos]]
+|  c=nl | [[enkele]], [[sommige]]
+|  c=sw | [[några]], [[vissa]]
+|  c=la | [[aliqui]], [[aliquot]]
+|- 
+|  i=No | 20
+|  c=en | [[few]]
+|  c=fr | [[peu]]
+|  c=de | [[wenige]]
+|  c=it | [[pochi]]
+|  c=es | [[poco]]
+|  c=nl | [[weinig]]
+|  c=sw | [[få]]
+|  c=la | [[pauci]]
+|- 
+|  i=No | 21
+|  c=en | [[other]]
+|  c=fr | [[autre]]
+|  c=de | [[andere]]
+|  c=it | [[altro]]
+|  c=es | [[otro]]
+|  c=nl | [[ander]]
+|  c=sw | [[annan]]
+|  c=la | [[alter]], [[alius]]
+|- 
+|  i=No | 22
+|  c=en | [[one]] *
+|  c=fr | [[un]]
+|  c=de | [[eins]]
+|  c=it | [[uno]]
+|  c=es | [[uno]]
+|  c=nl | [[een]]
+|  c=sw | [[ett]]
+|  c=la | [[unus]]
+|- 
+|  i=No | 23
+|  c=en | [[two]] *
+|  c=fr | [[deux]]
+|  c=de | [[zwei]]
+|  c=it | [[due]]
+|  c=es | [[dos]]
+|  c=nl | [[twee]]
+|  c=sw | [[två]]
+|  c=la | [[duo]]
+|- 
+|  i=No | 24
+|  c=en | [[three]]
+|  c=fr | [[trois]]
+|  c=de | [[drei]]
+|  c=it | [[tre]]
+|  c=es | [[tres]]
+|  c=nl | [[drie]]
+|  c=sw | [[tre]]
+|  c=la | [[tres]]
+|- 
+|  i=No | 25
+|  c=en | [[four]]
+|  c=fr | [[quatre]]
+|  c=de | [[vier]]
+|  c=it | [[quattro]]
+|  c=es | [[cuatro]]
+|  c=nl | [[vier]]
+|  c=sw | [[fyra]]
+|  c=la | [[quattuor]]
+|- 
+|  i=No | 26
+|  c=en | [[five]]
+|  c=fr | [[cinq]]
+|  c=de | [[fünf]]
+|  c=it | [[cinque]]
+|  c=es | [[cinco]]
+|  c=nl | [[vijf]]
+|  c=sw | [[fem]]
+|  c=la | [[quinque]]
+|- 
+|  i=No | 27
+|  c=en | [[big]] *
+|  c=fr | [[grand]]
+|  c=de | [[groß]]
+|  c=it | [[grande]]
+|  c=es | [[grande]]
+|  c=nl | [[groot]]
+|  c=sw | [[stor]]
+|  c=la | [[magnus]], [[grandis]]
+|- 
+|  i=No | 28
+|  c=en | [[long]] *
+|  c=fr | [[long]]
+|  c=de | [[lang]]
+|  c=it | [[lungo]]
+|  c=es | [[largo]]
+|  c=nl | [[lang]]
+|  c=sw | [[lång]]
+|  c=la | [[longus]]
+|- 
+|  i=No | 29
+|  c=en | [[wide]]
+|  c=fr | [[large]]
+|  c=de | [[breit]], [[weit]]
+|  c=it | [[largo]]
+|  c=es | [[ancho]]
+|  c=nl | [[breed]], [[wijd]]
+|  c=sw | [[bred]], [[vid]]
+|  c=la | [[latus]]
+|- 
+|  i=No | 30
+|  c=en | [[thick]]
+|  c=fr | [[épais]]
+|  c=de | [[dick]]
+|  c=it | [[spesso]]
+|  c=es | [[grueso]]
+|  c=nl | [[dik]]
+|  c=sw | [[tjock]]
+|  c=la | [[creber]]
+|- 
+|  i=No | 31
+|  c=en | [[heavy]]
+|  c=fr | [[lourd]]
+|  c=de | [[schwer]]
+|  c=it | [[pesante]]
+|  c=es | [[pesado]]
+|  c=nl | [[zwaar]]
+|  c=sw | [[tung]]
+|  c=la | [[gravis]]
+|- 
+|  i=No | 32
+|  c=en | [[small]] *
+|  c=fr | [[petit]]
+|  c=de | [[klein]]
+|  c=it | [[piccolo]]
+|  c=es | [[pequeño]]
+|  c=nl | [[smal]]
+|  c=sw | [[liten]]
+|  c=la | [[parvus]]
+|- 
+|  i=No | 33
+|  c=en | [[short]]
+|  c=fr | [[court]]
+|  c=de | [[kurz]]
+|  c=it | [[corto]]
+|  c=es | [[corto]]
+|  c=nl | [[kort]]
+|  c=sw | [[kort]]
+|  c=la | [[brevis]]
+|- 
+|  i=No | 34
+|  c=en | [[narrow]]
+|  c=fr | [[étroit]]
+|  c=de | [[eng]]
+|  c=it | [[stretto]]
+|  c=es | [[estrecho]], [[angosto]]
+|  c=nl | [[klein]]
+|  c=sw | [[trång]]
+|  c=la | [[angustus]]
+|- 
+|  i=No | 35
+|  c=en | [[thin]]
+|  c=fr | [[mince]]
+|  c=de | [[dünn]]
+|  c=it | [[sottile]]
+|  c=es | [[delgado]], [[flaco]]
+|  c=nl | [[dun]]
+|  c=sw | [[tunn]]
+|  c=la | [[macer]]
+|- 
+|  i=No | 36
+|  c=en | [[woman]] *
+|  c=fr | [[femme]]
+|  c=de | [[Frau]]
+|  c=it | [[donna]]
+|  c=es | [[mujer]]
+|  c=nl | [[vrouw]]
+|  c=sw | [[kvinna]]
+|  c=la | [[femina]]
+|- 
+|  i=No | 37
+|  c=en | [[man]] (adult male)
+|  c=fr | [[homme]]
+|  c=de | [[Mann]]
+|  c=it | [[uomo]]
+|  c=es | [[hombre]]
+|  c=nl | [[man]]
+|  c=sw | [[man]]
+|  c=la | [[vir]]
+|- 
+|  i=No | 38
+|  c=en | [[man]] * (human being)
+|  c=fr | [[homme]]
+|  c=de | [[Mensch]]
+|  c=it | [[uomo]]
+|  c=es | [[hombre]]
+|  c=nl | [[mens]]
+|  c=sw | [[människa]]
+|  c=la | [[homo]]
+|- 
+|  i=No | 39
+|  c=en | [[kid]]
+|  c=fr | [[enfant]]
+|  c=de | [[Kind]]
+|  c=it | [[bambino]]
+|  c=es | [[niño]]
+|  c=nl | [[kind]]
+|  c=sw | [[barn]]
+|  c=la | [[puer]]
+|- 
+|  i=No | 40
+|  c=en | [[wife]]
+|  c=fr | [[femme]], [[épouse]]
+|  c=de | [[Frau]], [[Ehefrau]]
+|  c=it | [[moglie]]
+|  c=es | [[esposa]], [[mujer]]
+|  c=nl | [[vrouw]], [[echtgenote]]
+|  c=sw | [[hustru]], [[maka]], [[fru]]
+|  c=la | [[uxor]], [[mulier]]
+|- 
+|  i=No | 41
+|  c=en | [[husband]]
+|  c=fr | [[mari]], [[époux]]
+|  c=de | [[Mann]], [[Ehemann]]
+|  c=it | [[marito]]
+|  c=es | [[esposo]], [[marido]]
+|  c=nl | [[man]], [[echtgenoot]]
+|  c=sw | [[man]], [[make]]
+|  c=la | [[maritus]]
+|- 
+|  i=No | 42
+|  c=en | [[mother]]
+|  c=fr | [[mère]]
+|  c=de | [[Mutter]]
+|  c=it | [[madre]]
+|  c=es | [[madre]]
+|  c=nl | [[moeder]]
+|  c=sw | [[mamma]], [[mor]]
+|  c=la | [[mater]]
+|- 
+|  i=No | 43
+|  c=en | [[father]]
+|  c=fr | [[père]]
+|  c=de | [[Vater]]
+|  c=it | [[padre]]
+|  c=es | [[padre]]
+|  c=nl | [[vader]]
+|  c=sw | [[pappa]], [[far]]
+|  c=la | [[pater]]
+|- 
+|  i=No | 44
+|  c=en | [[animal]]
+|  c=fr | [[animal]]
+|  c=de | [[Tier]]
+|  c=it | [[animale]]
+|  c=es | [[animal]]
+|  c=nl | [[dier]]
+|  c=sw | [[djur]]
+|  c=la | [[animal]]
+|- 
+|  i=No | 45
+|  c=en | [[fish]] *
+|  c=fr | [[poisson]]
+|  c=de | [[Fisch]]
+|  c=it | [[pesce]]
+|  c=es | [[pez]], [[pescado]]
+|  c=nl | [[vis]]
+|  c=sw | [[fisk]]
+|  c=la | [[piscis]]
+|- 
+|  i=No | 46
+|  c=en | [[bird]] *
+|  c=fr | [[oiseau]]
+|  c=de | [[Vogel]]
+|  c=it | [[uccello]]
+|  c=es | [[ave]], [[pájaro]]
+|  c=nl | [[vogel]]
+|  c=sw | [[fågel]]
+|  c=la | [[avis]]
+|- 
+|  i=No | 47
+|  c=en | [[hound]] *
+|  c=fr | [[chien]]
+|  c=de | [[Hund]]
+|  c=it | [[cane]]
+|  c=es | [[perro]]
+|  c=nl | [[hond]]
+|  c=sw | [[hund]]
+|  c=la | [[canis]]
+|- 
+|  i=No | 48
+|  c=en | [[louse]] *
+|  c=fr | [[pou]]
+|  c=de | [[Laus]]
+|  c=it | [[pidocchio]]
+|  c=es | [[piojo]]
+|  c=nl | [[luis]]
+|  c=sw | [[lus]]
+|  c=la | [[pedis]]
+|- 
+|  i=No | 49
+|  c=en | [[snake]]
+|  c=fr | [[serpent]]
+|  c=de | [[Schlange]]
+|  c=it | [[serpente]]
+|  c=es | [[serpiente]], [[culebra]]
+|  c=nl | [[slang]]
+|  c=sw | [[orm]]
+|  c=la | [[serpens]]
+|- 
+|  i=No | 50
+|  c=en | [[worm]]
+|  c=fr | [[ver]]
+|  c=de | [[Wurm]]
+|  c=it | [[verme]]
+|  c=es | [[gusano]]
+|  c=nl | [[worm]]
+|  c=sw | [[mask]]
+|  c=la | [[vermis]]
+|- 
+|  i=No | 51
+|  c=en | [[beam]] *
+|  c=fr | [[arbre]]
+|  c=de | [[Baum]]
+|  c=it | [[albero]]
+|  c=es | [[árbol]]
+|  c=nl | [[boom]]
+|  c=sw | [[träd]]
+|  c=la | [[arbor]]
+|- 
+|  i=No | 52
+|  c=en | [[forest]]
+|  c=fr | [[forêt]]
+|  c=de | [[Wald]]
+|  c=it | [[foresta]]
+|  c=es | [[bosque]]
+|  c=nl | [[woud]]
+|  c=sw | [[skog]]
+|  c=la | [[silva]]
+|- 
+|  i=No | 53
+|  c=en | [[stick]]
+|  c=fr | [[bâton]]
+|  c=de | [[Stock]]
+|  c=it | [[bastone]]
+|  c=es | [[palo]]
+|  c=nl | [[stok]]
+|  c=sw | [[pinne]]
+|  c=la | [[fustis]]
+|- 
+|  i=No | 54
+|  c=en | [[fruit]]
+|  c=fr | [[fruit]]
+|  c=de | [[Frucht]]
+|  c=it | [[frutta]]
+|  c=es | [[fruta]]
+|  c=nl | [[fruit]], [[vrucht]]
+|  c=sw | [[frukt]]
+|  c=la | [[fructus]]
+|- 
+|  i=No | 55
+|  c=en | [[seed]] *
+|  c=fr | [[graine]]
+|  c=de | [[Samen]]
+|  c=it | [[seme]]
+|  c=es | [[semilla]]
+|  c=nl | [[zaad]]
+|  c=sw | [[frö]]
+|  c=la | [[semen]]
+|- 
+|  i=No | 56
+|  c=en | [[leaf]] *
+|  c=fr | [[feuille]]
+|  c=de | [[Blatt]]
+|  c=it | [[foglia]]
+|  c=es | [[hoja]]
+|  c=nl | [[blad]]
+|  c=sw | [[löv]], [[blad]]
+|  c=la | [[folium]]
+|- 
+|  i=No | 57
+|  c=en | [[root]] *
+|  c=fr | [[racine]]
+|  c=de | [[Wurzel]]
+|  c=it | [[radice]]
+|  c=es | [[raíz]]
+|  c=nl | [[root]]
+|  c=sw | [[rot]]
+|  c=la | [[radix]]
+|- 
+|  i=No | 58
+|  c=en | [[bark]] * (from tree)
+|  c=fr | [[écorce]]
+|  c=de | [[Rinde]]
+|  c=it | [[corteccia]]
+|  c=es | [[corteza]]
+|  c=nl | [[bark]]
+|  c=sw | [[bark]]
+|  c=la | [[cortex]]
+|- 
+|  i=No | 59
+|  c=en | [[flower]]
+|  c=fr | [[fleur]]
+|  c=de | [[Blume]]
+|  c=it | [[fiore]]
+|  c=es | [[flor]]
+|  c=nl | [[bloem]]
+|  c=sw | [[blomma]]
+|  c=la | [[flos]]
+|- 
+|  i=No | 60
+|  c=en | [[grass]]
+|  c=fr | [[herbe]]
+|  c=de | [[Gras]]
+|  c=it | [[erba]]
+|  c=es | [[hierba]], [[pasto]]
+|  c=nl | [[gras]]
+|  c=sw | [[gräs]]
+|  c=la | [[herba]]
+|- 
+|  i=No | 61
+|  c=en | [[rope]]
+|  c=fr | [[corde]]
+|  c=de | [[Seil]]
+|  c=it | [[corda]]
+|  c=es | [[cuerda]]
+|  c=nl | [[reep]], [[koord]]
+|  c=sw | [[rep]]
+|  c=la | [[funis]]
+|- 
+|  i=No | 62
+|  c=en | [[skin]] *
+|  c=fr | [[peau]]
+|  c=de | [[Haut]]
+|  c=it | [[pelle]]
+|  c=es | [[piel]]
+|  c=nl | [[huid]]
+|  c=sw | [[hud]]
+|  c=la | [[cutis]]
+|- 
+|  i=No | 63
+|  c=en | [[meat]]
+|  c=fr | [[viande]]
+|  c=de | [[Fleisch]]
+|  c=it | [[carne]]
+|  c=es | [[carne]]
+|  c=nl | [[vlees]]
+|  c=sw | [[kött]]
+|  c=la | [[caro]]
+|- 
+|  i=No | 64
+|  c=en | [[blood]] *
+|  c=fr | [[sang]]
+|  c=de | [[Blut]]
+|  c=it | [[sangue]]
+|  c=es | [[sangre]]
+|  c=nl | [[bloed]]
+|  c=sw | [[blod]]
+|  c=la | [[sanguis]]
+|- 
+|  i=No | 65
+|  c=en | [[bone]] *
+|  c=fr | [[os]]
+|  c=de | [[Knochen]]
+|  c=it | [[osso]]
+|  c=es | [[hueso]]
+|  c=nl | [[been]], [[bot]]
+|  c=sw | [[ben]]
+|  c=la | [[os]]
+|- 
+|  i=No | 66
+|  c=en | [[fat]] * (n.)
+|  c=fr | [[graisse]]
+|  c=de | [[Fett]]
+|  c=it | [[grasso]]
+|  c=es | [[grasa]]
+|  c=nl | [[vet]]
+|  c=sw | [[fett]]
+|  c=la | [[adeps]]
+|- 
+|  i=No | 67
+|  c=en | [[egg]] *
+|  c=fr | [[œuf]]
+|  c=de | [[Ei]]
+|  c=it | [[uovo]]
+|  c=es | [[huevo]]
+|  c=nl | [[ei]]
+|  c=sw | [[ägg]]
+|  c=la | [[ovum]]
+|- 
+|  i=No | 68
+|  c=en | [[horn]] *
+|  c=fr | [[corne]]
+|  c=de | [[Horn]]
+|  c=it | [[corno]]
+|  c=es | [[cuerno]]
+|  c=nl | [[horn]]
+|  c=sw | [[horn]]
+|  c=la | [[cornu]]
+|- 
+|  i=No | 69
+|  c=en | [[tail]] *
+|  c=fr | [[queue]]
+|  c=de | [[Schwanz]]
+|  c=it | [[coda]]
+|  c=es | [[cola]]
+|  c=nl | [[staart]]
+|  c=sw | [[svans]]
+|  c=la | [[cauda]]
+|- 
+|  i=No | 70
+|  c=en | [[feather]] *
+|  c=fr | [[plume]]
+|  c=de | [[Feder]]
+|  c=it | [[piuma]]
+|  c=es | [[pluma]]
+|  c=nl | [[veder]]
+|  c=sw | [[fjäder]]
+|  c=la | [[penna]]
+|- 
+|  i=No | 71
+|  c=en | [[hair]] *
+|  c=fr | [[cheveu]]
+|  c=de | [[Haar]]
+|  c=it | [[capelli]]
+|  c=es | [[cabello]], [[pelo]]
+|  c=nl | [[haar]]
+|  c=sw | [[hår]]
+|  c=la | [[capillus]], [[coma]], [[crinis]]
+|- 
+|  i=No | 72
+|  c=en | [[head]] *
+|  c=fr | [[tête]]
+|  c=de | [[Kopf]], [[Haupt]]
+|  c=it | [[testa]]
+|  c=es | [[cabeza]]
+|  c=nl | [[hoofd]], [[kop]]
+|  c=sw | [[huvud]]
+|  c=la | [[caput]]
+|- 
+|  i=No | 73
+|  c=en | [[ear]] *
+|  c=fr | [[oreille]]
+|  c=de | [[Ohr]]
+|  c=it | [[orecchio]]
+|  c=es | [[oreja]]
+|  c=nl | [[aar]]
+|  c=sw | [[öra]]
+|  c=la | [[auris]]
+|- 
+|  i=No | 74
+|  c=en | [[eye]] *
+|  c=fr | [[œil]]
+|  c=de | [[Auge]]
+|  c=it | [[occhio]]
+|  c=es | [[ojo]]
+|  c=nl | [[oog]]
+|  c=sw | [[öga]]
+|  c=la | [[oculus]]
+|- 
+|  i=No | 75
+|  c=en | [[nose]] *
+|  c=fr | [[nez]]
+|  c=de | [[Nase]]
+|  c=it | [[naso]]
+|  c=es | [[nariz]]
+|  c=nl | [[neus]]
+|  c=sw | [[näsa]]
+|  c=la | [[nasus]]
+|- 
+|  i=No | 76
+|  c=en | [[mouth]] *
+|  c=fr | [[bouche]]
+|  c=de | [[Mund]]
+|  c=it | [[bocca]]
+|  c=es | [[boca]]
+|  c=nl | [[mond]]
+|  c=sw | [[mun]]
+|  c=la | [[os]]
+|- 
+|  i=No | 77
+|  c=en | [[tooth]] *
+|  c=fr | [[dent]]
+|  c=de | [[Zahn]]
+|  c=it | [[dente]]
+|  c=es | [[diente]]
+|  c=nl | [[tand]]
+|  c=sw | [[tand]]
+|  c=la | [[dens]]
+|- 
+|  i=No | 78
+|  c=en | [[tongue]] *
+|  c=fr | [[langue]]
+|  c=de | [[Zunge]]
+|  c=it | [[lingua]]
+|  c=es | [[lengua]]
+|  c=nl | [[tong]]
+|  c=sw | [[tunga]]
+|  c=la | [[lingua]]
+|- 
+|  i=No | 79
+|  c=en | [[fingernail]]
+|  c=fr | [[ongle]]
+|  c=de | [[Fingernagel]]
+|  c=it | [[unghia]]
+|  c=es | [[uña]]
+|  c=nl | [[vingernagel]]
+|  c=sw | [[nagel]]
+|  c=la | [[unguis]]
+|- 
+|  i=No | 80
+|  c=en | [[foot]] *
+|  c=fr | [[pied]]
+|  c=de | [[Fuß]]
+|  c=it | [[piede]]
+|  c=es | [[pie]]
+|  c=nl | [[voet]]
+|  c=sw | [[fot]]
+|  c=la | [[pes]]
+|- 
+|  i=No | 81
+|  c=en | [[leg]]
+|  c=fr | [[jambe]]
+|  c=de | [[Bein]]
+|  c=it | [[gamba]]
+|  c=es | [[pierna]]
+|  c=nl | [[been]]
+|  c=sw | [[ben]]
+|  c=la | [[crus]]
+|- 
+|  i=No | 82
+|  c=en | [[knee]] *
+|  c=fr | [[genou]]
+|  c=de | [[Knie]]
+|  c=it | [[ginocchio]]
+|  c=es | [[rodilla]]
+|  c=nl | [[knie]]
+|  c=sw | [[knä]]
+|  c=la | [[genu]]
+|- 
+|  i=No | 83
+|  c=en | [[hand]] *
+|  c=fr | [[main]]
+|  c=de | [[Hand]]
+|  c=it | [[mano]]
+|  c=es | [[mano]]
+|  c=nl | [[hand]]
+|  c=sw | [[hand]]
+|  c=la | [[manus]]
+|- 
+|  i=No | 84
+|  c=en | [[wing]]
+|  c=fr | [[aile]]
+|  c=de | [[Flügel]]
+|  c=it | [[ala]]
+|  c=es | [[ala]]
+|  c=nl | [[vleugel]]
+|  c=sw | [[vinge]]
+|  c=la | [[ala]]
+|- 
+|  i=No | 85
+|  c=en | [[belly]] *
+|  c=fr | [[ventre]]
+|  c=de | [[Bauch]]
+|  c=it | [[pancia]]
+|  c=es | [[barriga]], [[vientre]], [[panza]]
+|  c=nl | [[buik]]
+|  c=sw | [[mage]]
+|  c=la | [[venter]]
+|- 
+|  i=No | 86
+|  c=en | [[guts]]
+|  c=fr | [[entrailles]]
+|  c=de | [[Eingeweide]], [[Innereien]]
+|  c=it | [[intestino]]
+|  c=es | [[entrañas]], [[tripas]]
+|  c=nl | [[ingewanden]]
+|  c=sw | [[inälvor]]
+|  c=la | [[intestina]]
+|- 
+|  i=No | 87
+|  c=en | [[neck]] *
+|  c=fr | [[cou]]
+|  c=de | [[Hals]]
+|  c=it | [[collo]]
+|  c=es | [[cuello]]
+|  c=nl | [[nek]]
+|  c=sw | [[hals]], [[nacke]]
+|  c=la | [[collum]], [[cervix]]
+|- 
+|  i=No | 88
+|  c=en | [[back]]
+|  c=fr | [[dos]]
+|  c=de | [[Rücken]]
+|  c=it | [[schiena]]
+|  c=es | [[espalda]]
+|  c=nl | [[rug]]
+|  c=sw | [[rygg]]
+|  c=la | [[tergum]]
+|- 
+|  i=No | 89
+|  c=en | [[breast]] *
+|  c=fr | [[sein]], [[poitrine]]
+|  c=de | [[Brust]]
+|  c=it | [[petto]]
+|  c=es | [[pecho]], [[seno]]
+|  c=nl | [[borst]]
+|  c=sw | [[bröst]]
+|  c=la | [[pectus]], [[mamma]]
+|- 
+|  i=No | 90
+|  c=en | [[heart]] *
+|  c=fr | [[cœur]]
+|  c=de | [[Herz]]
+|  c=it | [[cuore]]
+|  c=es | [[corazón]]
+|  c=nl | [[hart]]
+|  c=sw | [[hjärta]]
+|  c=la | [[cor]]
+|- 
+|  i=No | 91
+|  c=en | [[liver]] *
+|  c=fr | [[foie]]
+|  c=de | [[Leber]]
+|  c=it | [[fegato]]
+|  c=es | [[hígado]]
+|  c=nl | [[lever]]
+|  c=sw | [[lever]]
+|  c=la | [[iecur]]
+|- 
+|  i=No | 92
+|  c=en | [[drink]] *
+|  c=fr | [[boire]]
+|  c=de | [[trinken]]
+|  c=it | [[bere]]
+|  c=es | [[beber]], [[tomar]]
+|  c=nl | [[drinken]]
+|  c=sw | [[dricka]]
+|  c=la | [[bibere]]
+|- 
+|  i=No | 93
+|  c=en | [[eat]] *
+|  c=fr | [[manger]]
+|  c=de | [[essen]]
+|  c=it | [[mangiare]]
+|  c=es | [[comer]]
+|  c=nl | [[eten]]
+|  c=sw | [[äta]]
+|  c=la | [[edere]]
+|- 
+|  i=No | 94
+|  c=en | [[bite]] *
+|  c=fr | [[mordre]]
+|  c=de | [[beißen]]
+|  c=it | [[mordere]]
+|  c=es | [[morder]]
+|  c=nl | [[bijten]]
+|  c=sw | [[bita]]
+|  c=la | [[mordere]]
+|- 
+|  i=No | 95
+|  c=en | [[suck]]
+|  c=fr | [[sucer]]
+|  c=de | [[saugen]]
+|  c=it | [[succhiare]]
+|  c=es | [[chupar]]
+|  c=nl | [[zuigen]]
+|  c=sw | [[suga]]
+|  c=la | [[sugere]]
+|- 
+|  i=No | 96
+|  c=en | [[spit]]
+|  c=fr | [[cracher]]
+|  c=de | [[spucken]]
+|  c=it | [[sputare]]
+|  c=es | [[escupir]]
+|  c=nl | [[spugen]]
+|  c=sw | [[spotta]]
+|  c=la | [[sputare]]
+|- 
+|  i=No | 97
+|  c=en | [[vomit]]
+|  c=fr | [[vomir]]
+|  c=de | [[erbrechen]]
+|  c=it | [[vomitare]]
+|  c=es | [[vomitar]]
+|  c=nl | [[braken]], [[overgeven]]
+|  c=sw | [[kräkas]], [[spy]]
+|  c=la | [[vomere]]
+|- 
+|  i=No | 98
+|  c=en | [[blow]]
+|  c=fr | [[souffler]]
+|  c=de | [[blasen]]
+|  c=it | [[soffiare]]
+|  c=es | [[soplar]]
+|  c=nl | [[blazen]]
+|  c=sw | [[blåsa]]
+|  c=la | [[flare]]
+|- 
+|  i=No | 99
+|  c=en | [[breathe]]
+|  c=fr | [[respirer]]
+|  c=de | [[atmen]]
+|  c=it | [[respirare]]
+|  c=es | [[respirar]]
+|  c=nl | [[ademen]]
+|  c=sw | [[andas]]
+|  c=la | [[spirare]]
+|- 
+|  i=No | 100
+|  c=en | [[laugh]]
+|  c=fr | [[rire]]
+|  c=de | [[lachen]]
+|  c=it | [[ridere]]
+|  c=es | [[reír]]
+|  c=nl | [[lachen]]
+|  c=sw | [[skratta]]
+|  c=la | [[ridere]]
+|- 
+|  i=No | 101
+|  c=en | [[see]] *
+|  c=fr | [[voir]]
+|  c=de | [[sehen]]
+|  c=it | [[vedere]]
+|  c=es | [[ver]]
+|  c=nl | [[zien]]
+|  c=sw | [[se]]
+|  c=la | [[videre]]
+|- 
+|  i=No | 102
+|  c=en | [[hear]] *
+|  c=fr | [[entendre]]
+|  c=de | [[hören]]
+|  c=it | [[udire]], [[sentire]]
+|  c=es | [[oír]]
+|  c=nl | [[horen]]
+|  c=sw | [[höra]]
+|  c=la | [[audire]]
+|- 
+|  i=No | 103
+|  c=en | [[know]] * (a fact)
+|  c=fr | [[savoir]]
+|  c=de | [[wissen]]
+|  c=it | [[sapere]]
+|  c=es | [[saber]]
+|  c=nl | [[kennen]]
+|  c=sw | [[veta]]
+|  c=la | [[scire]]
+|- 
+|  i=No | 104
+|  c=en | [[think]]
+|  c=fr | [[penser]]
+|  c=de | [[denken]]
+|  c=it | [[pensare]]
+|  c=es | [[pensar]]
+|  c=nl | [[denken]]
+|  c=sw | [[tänka]]
+|  c=la | [[putare]]
+|- 
+|  i=No | 105
+|  c=en | [[smell]]
+|  c=fr | [[sentir]]
+|  c=de | [[riechen]]
+|  c=it | [[odorare]], [[annusare]]
+|  c=es | [[oler]]
+|  c=nl | [[smelten]]
+|  c=sw | [[lukta]]
+|  c=la | [[olere]]
+|- 
+|  i=No | 106
+|  c=en | [[fear]]
+|  c=fr | [[craindre]], [[avoir]] [[peur]]
+|  c=de | [[fürchten]]
+|  c=it | [[temere]]
+|  c=es | [[temer]]
+|  c=nl | [[vrezen]], [[angst]]
+|  c=sw | [[frukta]], [[rädas]]
+|  c=la | [[timere]]
+|- 
+|  i=No | 107
+|  c=en | [[sleep]] *
+|  c=fr | [[dormir]]
+|  c=de | [[schlafen]]
+|  c=it | [[dormire]]
+|  c=es | [[dormir]]
+|  c=nl | [[slapen]]
+|  c=sw | [[sova]]
+|  c=la | [[dormire]]
+|- 
+|  i=No | 108
+|  c=en | [[live]]
+|  c=fr | [[vivre]]
+|  c=de | [[leben]]
+|  c=it | [[vivere]]
+|  c=es | [[vivir]]
+|  c=nl | [[leven]]
+|  c=sw | [[leva]]
+|  c=la | [[vivere]]
+|- 
+|  i=No | 109
+|  c=en | [[die]] *
+|  c=fr | [[mourir]]
+|  c=de | [[sterben]]
+|  c=it | [[morire]]
+|  c=es | [[morir]]
+|  c=nl | [[doden]]
+|  c=sw | [[dö]]
+|  c=la | [[mori]]
+|- 
+|  i=No | 110
+|  c=en | [[kill]] *
+|  c=fr | [[tuer]]
+|  c=de | [[töten]]
+|  c=it | [[uccidere]]
+|  c=es | [[matar]]
+|  c=nl | [[doden]]
+|  c=sw | [[döda]]
+|  c=la | [[necare]]
+|- 
+|  i=No | 111
+|  c=en | [[fight]]
+|  c=fr | [[se]] [[battre]]
+|  c=de | [[kämpfen]]
+|  c=it | [[combattere]]
+|  c=es | [[pelear]]
+|  c=nl | [[vechten]]
+|  c=sw | [[strida]]
+|  c=la | [[pugnare]]
+|- 
+|  i=No | 112
+|  c=en | [[hunt]]
+|  c=fr | [[chasser]]
+|  c=de | [[jagen]]
+|  c=it | [[cacciare]]
+|  c=es | [[cazar]]
+|  c=nl | [[jagen]]
+|  c=sw | [[jaga]]
+|  c=la | [[venari]]
+|- 
+|  i=No | 113
+|  c=en | [[hit]]
+|  c=fr | [[frapper]]
+|  c=de | [[schlagen]]
+|  c=it | [[colpire]]
+|  c=es | [[golpear]]
+|  c=nl | [[slaan]]
+|  c=sw | [[slå]]
+|  c=la | [[pellere]]
+|- 
+|  i=No | 114
+|  c=en | [[cut]]
+|  c=fr | [[couper]]
+|  c=de | [[schneiden]]
+|  c=it | [[tagliare]]
+|  c=es | [[cortar]]
+|  c=nl | [[snijden]]
+|  c=sw | [[skära]]
+|  c=la | [[secare]]
+|- 
+|  i=No | 115
+|  c=en | [[split]]
+|  c=fr | [[fendre]]
+|  c=de | [[spalten]]
+|  c=it | [[dividere]], [[separare]]
+|  c=es | [[partir]]
+|  c=nl | [[splijten]]
+|  c=sw | [[dela]], [[klyva]]
+|  c=la | [[scindere]], [[partiri]]
+|- 
+|  i=No | 116
+|  c=en | [[stab]]
+|  c=fr | [[poignarder]]
+|  c=de | [[stechen]]
+|  c=it | [[pugnalare]]
+|  c=es | [[apuñalar]]
+|  c=nl | [[steken]]
+|  c=sw | [[sticka]]
+|  c=la | [[traicere]]
+|- 
+|  i=No | 117
+|  c=en | [[scratch]]
+|  c=fr | [[gratter]]
+|  c=de | [[kratzen]]
+|  c=it | [[graffiare]]
+|  c=es | [[arañar]], [[rascar]]
+|  c=nl | [[krabben]]
+|  c=sw | [[klia]]
+|  c=la | [[radere]]
+|- 
+|  i=No | 118
+|  c=en | [[dig]]
+|  c=fr | [[creuser]]
+|  c=de | [[graben]]
+|  c=it | [[scavare]]
+|  c=es | [[cavar]]
+|  c=nl | [[delven]]
+|  c=sw | [[gräva]]
+|  c=la | [[fodere]]
+|- 
+|  i=No | 119
+|  c=en | [[swim]] *
+|  c=fr | [[nager]]
+|  c=de | [[schwimmen]]
+|  c=it | [[nuotare]]
+|  c=es | [[nadar]]
+|  c=nl | [[zwemmen]]
+|  c=sw | [[simma]]
+|  c=la | [[natare]]
+|- 
+|  i=No | 120
+|  c=en | [[fly]] * (v.)
+|  c=fr | [[voler]]
+|  c=de | [[fliegen]]
+|  c=it | [[volare]]
+|  c=es | [[volar]]
+|  c=nl | [[vliegen]]
+|  c=sw | [[flyga]]
+|  c=la | [[volare]]
+|- 
+|  i=No | 121
+|  c=en | [[walk]] *
+|  c=fr | [[marcher]]
+|  c=de | [[gehen]]
+|  c=it | [[camminare]]
+|  c=es | [[caminar]]
+|  c=nl | [[lopen]], [[wandelen]]
+|  c=sw | [[gå]]
+|  c=la | [[gradi]]
+|- 
+|  i=No | 122
+|  c=en | [[come]] *
+|  c=fr | [[venir]]
+|  c=de | [[kommen]]
+|  c=it | [[venire]]
+|  c=es | [[venir]]
+|  c=nl | [[komen]]
+|  c=sw | [[komma]]
+|  c=la | [[venire]]
+|- 
+|  i=No | 123
+|  c=en | [[lie]] *
+|  c=fr | [[s]]'[[étendre]]
+|  c=de | [[liegen]]
+|  c=it | [[distendersi]]
+|  c=es | [[echarse]], [[acostarse]], [[tenderse]]
+|  c=nl | [[liegen]]
+|  c=sw | [[ligga]]
+|  c=la | [[iacere]]
+|- 
+|  i=No | 124
+|  c=en | [[sit]] *
+|  c=fr | [[s'asseoir]]
+|  c=de | [[setzen]]
+|  c=it | [[sedere]]
+|  c=es | [[sentarse]]
+|  c=nl | [[zitten]]
+|  c=sw | [[sitta]]
+|  c=la | [[sedere]]
+|- 
+|  i=No | 125
+|  c=en | [[stand]] *
+|  c=fr | [[se lever]]
+|  c=de | [[stehen]]
+|  c=it | [[stare]] [[in]] [[piedi]]
+|  c=es | [[estar de pie]]
+|  c=nl | [[staan]]
+|  c=sw | [[stå]]
+|  c=la | [[stare]]
+|- 
+|  i=No | 126
+|  c=en | [[turn]]
+|  c=fr | [[tourner]]
+|  c=de | [[drehen]]
+|  c=it | [[girare]]
+|  c=es | [[voltear]]
+|  c=nl | [[draaien]]
+|  c=sw | [[svänga]]
+|  c=la | [[vertere]]
+|- 
+|  i=No | 127
+|  c=en | [[fall]]
+|  c=fr | [[tomber]]
+|  c=de | [[fallen]]
+|  c=it | [[cadere]]
+|  c=es | [[caer]]
+|  c=nl | [[vallen]]
+|  c=sw | [[falla]]
+|  c=la | [[cadere]]
+|- 
+|  i=No | 128
+|  c=en | [[give]] *
+|  c=fr | [[donner]]
+|  c=de | [[geben]]
+|  c=it | [[dare]]
+|  c=es | [[dar]]
+|  c=nl | [[geven]]
+|  c=sw | [[ge]]
+|  c=la | [[dare]]
+|- 
+|  i=No | 129
+|  c=en | [[hold]]
+|  c=fr | [[tenir]]
+|  c=de | [[halten]]
+|  c=it | [[tenere]]
+|  c=es | [[sostener]]
+|  c=nl | [[houden]]
+|  c=sw | [[hålla]]
+|  c=la | [[tenere]]
+|- 
+|  i=No | 130
+|  c=en | [[squeeze]]
+|  c=fr | [[serrer]]
+|  c=de | [[quetschen]]
+|  c=it | [[spremere]]
+|  c=es | [[apretar]]
+|  c=nl | [[knijpen]]
+|  c=sw | [[klämma]]
+|  c=la | [[premere]]
+|- 
+|  i=No | 131
+|  c=en | [[rub]]
+|  c=fr | [[frotter]]
+|  c=de | [[reiben]]
+|  c=it | [[strofinare]]
+|  c=es | [[frotar]], [[restregar]]
+|  c=nl | [[wrijven]]
+|  c=sw | [[gnida]]
+|  c=la | [[fricare]]
+|- 
+|  i=No | 132
+|  c=en | [[wash]]
+|  c=fr | [[laver]]
+|  c=de | [[waschen]]
+|  c=it | [[lavare]]
+|  c=es | [[lavar]]
+|  c=nl | [[wassen]]
+|  c=sw | [[tvätta]]
+|  c=la | [[lavare]]
+|- 
+|  i=No | 133
+|  c=en | [[wipe]]
+|  c=fr | [[essuyer]]
+|  c=de | [[wischen]]
+|  c=it | [[asciugare]]
+|  c=es | [[limpiar]]
+|  c=nl | [[vegen]]
+|  c=sw | [[rensa]]
+|  c=la | [[tergere]]
+|- 
+|  i=No | 134
+|  c=en | [[pull]]
+|  c=fr | [[tirer]]
+|  c=de | [[ziehen]]
+|  c=it | [[tirare]]
+|  c=es | [[tirar]]
+|  c=nl | [[trekken]]
+|  c=sw | [[dra]]
+|  c=la | [[trahere]]
+|- 
+|  i=No | 135
+|  c=en | [[push]]
+|  c=fr | [[pousser]]
+|  c=de | [[drücken]]
+|  c=it | [[spingere]]
+|  c=es | [[empujar]]
+|  c=nl | [[duwen]]
+|  c=sw | [[trycka]]
+|  c=la | [[pellere]], [[urgere]]
+|- 
+|  i=No | 136
+|  c=en | [[throw]]
+|  c=fr | [[jeter]]
+|  c=de | [[werfen]]
+|  c=it | [[tirare]]
+|  c=es | [[tirar]]
+|  c=nl | [[werpen]], [[gooien]]
+|  c=sw | [[kasta]]
+|  c=la | [[iacere]]
+|- 
+|  i=No | 137
+|  c=en | [[tie]]
+|  c=fr | [[lier]]
+|  c=de | [[binden]]
+|  c=it | [[legare]]
+|  c=es | [[atar]]
+|  c=nl | [[binden]]
+|  c=sw | [[knyta]], [[binda]]
+|  c=la | [[stringere]], [[ligare]]
+|- 
+|  i=No | 138
+|  c=en | [[sew]]
+|  c=fr | [[coudre]]
+|  c=de | [[nähen]]
+|  c=it | [[cucire]]
+|  c=es | [[coser]]
+|  c=nl | [[naaien]]
+|  c=sw | [[sy]]
+|  c=la | [[suere]]
+|- 
+|  i=No | 139
+|  c=en | [[count]]
+|  c=fr | [[compter]]
+|  c=de | [[zählen]]
+|  c=it | [[contare]]
+|  c=es | [[contar]]
+|  c=nl | [[tellen]]
+|  c=sw | [[räkna]]
+|  c=la | [[numerare]]
+|- 
+|  i=No | 140
+|  c=en | [[say]] *
+|  c=fr | [[dire]]
+|  c=de | [[sagen]]
+|  c=it | [[dire]]
+|  c=es | [[decir]]
+|  c=nl | [[zeggen]]
+|  c=sw | [[säga]]
+|  c=la | [[dicere]]
+|- 
+|  i=No | 141
+|  c=en | [[sing]]
+|  c=fr | [[chanter]]
+|  c=de | [[singen]]
+|  c=it | [[cantare]]
+|  c=es | [[cantar]]
+|  c=nl | [[zingen]]
+|  c=sw | [[sjunga]]
+|  c=la | [[canere]]
+|- 
+|  i=No | 142
+|  c=en | [[play]]
+|  c=fr | [[jouer]]
+|  c=de | [[spielen]]
+|  c=it | [[giocare]]
+|  c=es | [[jugar]]
+|  c=nl | [[spelen]]
+|  c=sw | [[leka]], [[spela]]
+|  c=la | [[ludere]]
+|- 
+|  i=No | 143
+|  c=en | [[float]]
+|  c=fr | [[flotter]]
+|  c=de | [[schweben]]
+|  c=it | [[galleggiare]]
+|  c=es | [[flotar]]
+|  c=nl | [[zweven]]
+|  c=sw | [[flyta]]
+|  c=la | [[fluctuare]]
+|- 
+|  i=No | 144
+|  c=en | [[flow]]
+|  c=fr | [[couler]]
+|  c=de | [[fließen]]
+|  c=it | [[fluire]]
+|  c=es | [[fluir]]
+|  c=nl | [[vloeien]]
+|  c=sw | [[rinna]]
+|  c=la | [[fluere]]
+|- 
+|  i=No | 145
+|  c=en | [[freeze]]
+|  c=fr | [[geler]]
+|  c=de | [[frieren]]
+|  c=it | [[gelare]]
+|  c=es | [[helar]]
+|  c=nl | [[vriezen]]
+|  c=sw | [[frysa]]
+|  c=la | [[gelare]]
+|- 
+|  i=No | 146
+|  c=en | [[swell]]
+|  c=fr | [[gonfler]]
+|  c=de | [[schwellen]]
+|  c=it | [[gonfiare]]
+|  c=es | [[hincharse]]
+|  c=nl | [[zwellen]]
+|  c=sw | [[svälla]]
+|  c=la | [[inflare]]
+|- 
+|  i=No | 147
+|  c=en | [[sun]] *
+|  c=fr | [[soleil]]
+|  c=de | [[Sonne]]
+|  c=it | [[sole]]
+|  c=es | [[sol]]
+|  c=nl | [[zon]]
+|  c=sw | [[sol]]
+|  c=la | [[sol]]
+|- 
+|  i=No | 148
+|  c=en | [[moon]] *
+|  c=fr | [[lune]]
+|  c=de | [[Mond]]
+|  c=it | [[luna]]
+|  c=es | [[luna]]
+|  c=nl | [[maan]]
+|  c=sw | [[måne]]
+|  c=la | [[luna]]
+|- 
+|  i=No | 149
+|  c=en | [[star]] *
+|  c=fr | [[étoile]]
+|  c=de | [[Stern]]
+|  c=it | [[stella]]
+|  c=es | [[estrella]]
+|  c=nl | [[ster]]
+|  c=sw | [[stjärna]]
+|  c=la | [[stella]]
+|- 
+|  i=No | 150
+|  c=en | [[water]] *
+|  c=fr | [[eau]]
+|  c=de | [[Wasser]]
+|  c=it | [[acqua]]
+|  c=es | [[agua]]
+|  c=nl | [[water]]
+|  c=sw | [[vatten]]
+|  c=la | [[aqua]]
+|- 
+|  i=No | 151
+|  c=en | [[rain]] *
+|  c=fr | [[pluie]]
+|  c=de | [[Regen]]
+|  c=it | [[pioggia]]
+|  c=es | [[lluvia]]
+|  c=nl | [[regen]]
+|  c=sw | [[regn]]
+|  c=la | [[pluvia]]
+|- 
+|  i=No | 152
+|  c=en | [[river]]
+|  c=fr | [[rivière]]
+|  c=de | [[Fluß]]
+|  c=it | [[fiume]]
+|  c=es | [[río]]
+|  c=nl | [[rivier]]
+|  c=sw | [[flod]]
+|  c=la | [[fluvius]]
+|- 
+|  i=No | 153
+|  c=en | [[lake]]
+|  c=fr | [[lac]]
+|  c=de | [[See]]
+|  c=it | [[lago]]
+|  c=es | [[lago]]
+|  c=nl | [[lak]]
+|  c=sw | [[sjö]]
+|  c=la | [[lacus]]
+|- 
+|  i=No | 154
+|  c=en | [[sea]]
+|  c=fr | [[mer]]
+|  c=de | [[Meer]], [[See]]
+|  c=it | [[mare]]
+|  c=es | [[mar]]
+|  c=nl | [[zee]]
+|  c=sw | [[hav]]
+|  c=la | [[mare]]
+|- 
+|  i=No | 155
+|  c=en | [[salt]]
+|  c=fr | [[sel]]
+|  c=de | [[Salz]]
+|  c=it | [[sale]]
+|  c=es | [[sal]]
+|  c=nl | [[zout]]
+|  c=sw | [[salt]]
+|  c=la | [[sal]]
+|- 
+|  i=No | 156
+|  c=en | [[stone]] *
+|  c=fr | [[pierre]]
+|  c=de | [[Stein]]
+|  c=it | [[pietra]]
+|  c=es | [[piedra]]
+|  c=nl | [[steen]]
+|  c=sw | [[sten]]
+|  c=la | [[lapis]], [[petra]]
+|- 
+|  i=No | 157
+|  c=en | [[sand]] *
+|  c=fr | [[sable]]
+|  c=de | [[Sand]]
+|  c=it | [[sabbia]]
+|  c=es | [[arena]]
+|  c=nl | [[zand]]
+|  c=sw | [[sand]]
+|  c=la | [[arena]]
+|- 
+|  i=No | 158
+|  c=en | [[dust]]
+|  c=fr | [[poussière]]
+|  c=de | [[Staub]]
+|  c=it | [[polvere]]
+|  c=es | [[polvo]]
+|  c=nl | [[stof]]
+|  c=sw | [[damm]]
+|  c=la | [[pulvis]]
+|- 
+|  i=No | 159
+|  c=en | [[earth]] *
+|  c=fr | [[terre]]
+|  c=de | [[Erde]]
+|  c=it | [[terra]]
+|  c=es | [[tierra]]
+|  c=nl | [[aarde]]
+|  c=sw | [[jord]]
+|  c=la | [[terra]]
+|- 
+|  i=No | 160
+|  c=en | [[cloud]] *
+|  c=fr | [[nuage]]
+|  c=de | [[Wolke]]
+|  c=it | [[nuvola]]
+|  c=es | [[nube]]
+|  c=nl | [[wolk]]
+|  c=sw | [[moln]]
+|  c=la | [[nimbus]], [[nubes]]
+|- 
+|  i=No | 161
+|  c=en | [[fog]]
+|  c=fr | [[brouillard]]
+|  c=de | [[Nebel]]
+|  c=it | [[nebbia]]
+|  c=es | [[niebla]]
+|  c=nl | [[mist]], [[nevel]]
+|  c=sw | [[dimma]]
+|  c=la | [[caligo]], [[nebula]]
+|- 
+|  i=No | 162
+|  c=en | [[sky]]
+|  c=fr | [[ciel]]
+|  c=de | [[Himmel]]
+|  c=it | [[cielo]]
+|  c=es | [[cielo]]
+|  c=nl | [[lucht]]
+|  c=sw | [[himmel]]
+|  c=la | [[caelum]]
+|- 
+|  i=No | 163
+|  c=en | [[wind]]
+|  c=fr | [[vent]]
+|  c=de | [[Wind]]
+|  c=it | [[vento]]
+|  c=es | [[viento]]
+|  c=nl | [[wind]]
+|  c=sw | [[vind]]
+|  c=la | [[ventus]]
+|- 
+|  i=No | 164
+|  c=en | [[snow]]
+|  c=fr | [[neige]]
+|  c=de | [[Schnee]]
+|  c=it | [[neve]]
+|  c=es | [[nieve]]
+|  c=nl | [[sneeuw]]
+|  c=sw | [[snö]]
+|  c=la | [[nix]]
+|- 
+|  i=No | 165
+|  c=en | [[ice]]
+|  c=fr | [[glace]]
+|  c=de | [[Eis]]
+|  c=it | [[ghiaccio]]
+|  c=es | [[hielo]]
+|  c=nl | [[ijs]]
+|  c=sw | [[is]]
+|  c=la | [[glacies]]
+|- 
+|  i=No | 166
+|  c=en | [[smoke]] *
+|  c=fr | [[fumée]]
+|  c=de | [[Rauch]]
+|  c=it | [[fumo]]
+|  c=es | [[humo]]
+|  c=nl | [[rook]]
+|  c=sw | [[rök]]
+|  c=la | [[fumus]]
+|- 
+|  i=No | 167
+|  c=en | [[fire]] *
+|  c=fr | [[feu]]
+|  c=de | [[Feuer]]
+|  c=it | [[fuoco]]
+|  c=es | [[fuego]]
+|  c=nl | [[vuur]]
+|  c=sw | [[eld]]
+|  c=la | [[ignis]]
+|- 
+|  i=No | 168
+|  c=en | [[ashes]] *
+|  c=fr | [[cendres]]
+|  c=de | [[Asche]]
+|  c=it | [[ceneri]]
+|  c=es | [[cenizas]]
+|  c=nl | [[as]]
+|  c=sw | [[aska]]
+|  c=la | [[cineres]]
+|- 
+|  i=No | 169
+|  c=en | [[burn]] *
+|  c=fr | [[brûler]]
+|  c=de | [[brennen]]
+|  c=it | [[bruciare]]
+|  c=es | [[quemar]]
+|  c=nl | [[branden]]
+|  c=sw | [[brinna]]
+|  c=la | [[ardere]]
+|- 
+|  i=No | 170
+|  c=en | [[road]] *
+|  c=fr | [[route]]
+|  c=de | [[Straße]]
+|  c=it | [[strada]]
+|  c=es | [[camino]]
+|  c=nl | [[weg]]
+|  c=sw | [[väg]]
+|  c=la | [[via]]
+|- 
+|  i=No | 171
+|  c=en | [[mountain]] *
+|  c=fr | [[montagne]]
+|  c=de | [[Berg]]
+|  c=it | [[montagna]]
+|  c=es | [[montaña]]
+|  c=nl | [[berg]]
+|  c=sw | [[berg]]
+|  c=la | [[mons]]
+|- 
+|  i=No | 172
+|  c=en | [[red]] *
+|  c=fr | [[rouge]]
+|  c=de | [[rot]]
+|  c=it | [[rosso]]
+|  c=es | [[rojo]]
+|  c=nl | [[rode]]
+|  c=sw | [[röd]]
+|  c=la | [[ruber]]
+|- 
+|  i=No | 173
+|  c=en | [[green]] *
+|  c=fr | [[vert]]
+|  c=de | [[grün]]
+|  c=it | [[verde]]
+|  c=es | [[verde]]
+|  c=nl | [[groen]]
+|  c=sw | [[grön]]
+|  c=la | [[viridis]]
+|- 
+|  i=No | 174
+|  c=en | [[yellow]] *
+|  c=fr | [[jaune]]
+|  c=de | [[gelb]]
+|  c=it | [[giallo]]
+|  c=es | [[amarillo]]
+|  c=nl | [[geel]]
+|  c=sw | [[gul]]
+|  c=la | [[flavus]]
+|- 
+|  i=No | 175
+|  c=en | [[white]] *
+|  c=fr | [[blanc]]
+|  c=de | [[weiß]]
+|  c=it | [[bianco]]
+|  c=es | [[blanco]]
+|  c=nl | [[witte]]
+|  c=sw | [[vit]]
+|  c=la | [[albus]], [[candidus]]
+|- 
+|  i=No | 176
+|  c=en | [[black]] *
+|  c=fr | [[noir]]
+|  c=de | [[schwarz]]
+|  c=it | [[nero]]
+|  c=es | [[negro]]
+|  c=nl | [[zwart]]
+|  c=sw | [[svart]]
+|  c=la | [[niger]], [[ater]], [[fuscus]]
+|- 
+|  i=No | 177
+|  c=en | [[night]] *
+|  c=fr | [[nuit]]
+|  c=de | [[Nacht]]
+|  c=it | [[notte]]
+|  c=es | [[noche]]
+|  c=nl | [[nacht]]
+|  c=sw | [[natt]]
+|  c=la | [[nox]]
+|- 
+|  i=No | 178
+|  c=en | [[day]]
+|  c=fr | [[jour]]
+|  c=de | [[Tag]]
+|  c=it | [[giorno]]
+|  c=es | [[día]]
+|  c=nl | [[dag]]
+|  c=sw | [[dag]]
+|  c=la | [[dies]]
+|- 
+|  i=No | 179
+|  c=en | [[year]]
+|  c=fr | [[an]], [[année]]
+|  c=de | [[Jahr]]
+|  c=it | [[anno]]
+|  c=es | [[año]]
+|  c=nl | [[jaar]]
+|  c=sw | [[år]]
+|  c=la | [[annus]]
+|- 
+|  i=No | 180
+|  c=en | [[warm]] *
+|  c=fr | [[chaud]]
+|  c=de | [[warm]]
+|  c=it | [[caldo]]
+|  c=es | [[cálido]], [[tibio]]
+|  c=nl | [[warm]]
+|  c=sw | [[varm]]
+|  c=la | [[calidus]]
+|- 
+|  i=No | 181
+|  c=en | [[cold]] *
+|  c=fr | [[froid]]
+|  c=de | [[kalt]]
+|  c=it | [[freddo]]
+|  c=es | [[frío]]
+|  c=nl | [[koud]]
+|  c=sw | [[kall]]
+|  c=la | [[frigidus]]
+|- 
+|  i=No | 182
+|  c=en | [[full]] *
+|  c=fr | [[plein]]
+|  c=de | [[volle]]
+|  c=it | [[pieno]]
+|  c=es | [[lleno]]
+|  c=nl | [[volle]]
+|  c=sw | [[full]]
+|  c=la | [[plenus]]
+|- 
+|  i=No | 183
+|  c=en | [[new]] *
+|  c=fr | [[nouveau]]
+|  c=de | [[neu]]
+|  c=it | [[nuovo]]
+|  c=es | [[nuevo]]
+|  c=nl | [[nieuw]]
+|  c=sw | [[ny]]
+|  c=la | [[novus]]
+|- 
+|  i=No | 184
+|  c=en | [[old]]
+|  c=fr | [[vieux]]
+|  c=de | [[alt]]
+|  c=it | [[vecchio]]
+|  c=es | [[viejo]]
+|  c=nl | [[oud]]
+|  c=sw | [[gammal]]
+|  c=la | [[vetus]]
+|- 
+|  i=No | 185
+|  c=en | [[good]] *
+|  c=fr | [[bon]]
+|  c=de | [[gut]]
+|  c=it | [[buono]]
+|  c=es | [[bueno]]
+|  c=nl | [[goed]]
+|  c=sw | [[bra]]
+|  c=la | [[bonus]]
+|- 
+|  i=No | 186
+|  c=en | [[bad]]
+|  c=fr | [[mauvais]]
+|  c=de | [[schlecht]]
+|  c=it | [[cattivo]]
+|  c=es | [[malo]]<br>
+|  c=nl | [[slecht]]
+|  c=sw | [[dålig]]
+|  c=la | [[malus]]
+|- 
+|  i=No | 187
+|  c=en | [[rotten]]
+|  c=fr | [[pourri]]
+|  c=de | [[verrottet]]
+|  c=it | [[marcio]]
+|  c=es | [[podrido]]
+|  c=nl | [[rotten]]
+|  c=sw | [[rutten]]
+|  c=la | [[puter]], [[putridus]]
+|- 
+|  i=No | 188
+|  c=en | [[dirty]]
+|  c=fr | [[sale]]
+|  c=de | [[schmutzig]]
+|  c=it | [[sporco]]
+|  c=es | [[sucio]]
+|  c=nl | [[vies]]
+|  c=sw | [[smutsig]]
+|  c=la | [[sordidus]]
+|- 
+|  i=No | 189
+|  c=en | [[straight]]
+|  c=fr | [[droit]]
+|  c=de | [[gerade]]
+|  c=it | [[diritto]]
+|  c=es | [[recto]]
+|  c=nl | [[recht]]
+|  c=sw | [[rak]]
+|  c=la | [[rectus]]
+|- 
+|  i=No | 190
+|  c=en | [[round]] *
+|  c=fr | [[rond]]
+|  c=de | [[rund]]
+|  c=it | [[rotondo]]
+|  c=es | [[redondo]]
+|  c=nl | [[rond]]
+|  c=sw | [[rund]]
+|  c=la | [[rotundus]]
+|- 
+|  i=No | 191
+|  c=en | [[sharp]]
+|  c=fr | [[tranchant]], [[pointu]], [[aigu]]
+|  c=de | [[scharf]]
+|  c=it | [[aguzzo]], [[affilato]]
+|  c=es | [[afilado]]
+|  c=nl | [[scherp]]
+|  c=sw | [[vass]]
+|  c=la | [[acer]]
+|- 
+|  i=No | 192
+|  c=en | [[dull]]
+|  c=fr | [[émoussé]]
+|  c=de | [[stumpf]]
+|  c=it | [[noioso]]
+|  c=es | [[desafilado]]
+|  c=nl | [[stomp]], [[bot]]
+|  c=sw | [[slö]]
+|  c=la | [[hebes]]
+|- 
+|  i=No | 193
+|  c=en | [[smooth]]
+|  c=fr | [[lisse]]
+|  c=de | [[glatt]]
+|  c=it | [[liscio]]
+|  c=es | [[suave]], [[liso]]
+|  c=nl | [[glad]]
+|  c=sw | [[len]], [[slät]]
+|  c=la | [[levis]]
+|- 
+|  i=No | 194
+|  c=en | [[wet]]
+|  c=fr | [[mouillé]]
+|  c=de | [[nass]], [[feucht]]
+|  c=it | [[bagnato]]
+|  c=es | [[mojado]]
+|  c=nl | [[nat]]
+|  c=sw | [[våt]], [[blöt]]
+|  c=la | [[umidus]]
+|- 
+|  i=No | 195
+|  c=en | [[dry]] *
+|  c=fr | [[sec]]
+|  c=de | [[trocken]]
+|  c=it | [[asciutto]], [[secco]]
+|  c=es | [[seco]]
+|  c=nl | [[droog]]
+|  c=sw | [[torr]]
+|  c=la | [[siccus]]
+|- 
+|  i=No | 196
+|  c=en | [[correct]]
+|  c=fr | [[juste]], [[correct]]
+|  c=de | [[richtig]]
+|  c=it | [[corretto]]
+|  c=es | [[correcto]]
+|  c=nl | [[richting]], [[correct]]
+|  c=sw | [[rätt]], [[riktig]]
+|  c=la | [[rectus]]
+|- 
+|  i=No | 197
+|  c=en | [[near]]
+|  c=fr | [[proche]]
+|  c=de | [[nah]],<br>[[nahe]]
+|  c=it | [[vicino]]
+|  c=es | [[cerca]]
+|  c=nl | [[naar]]
+|  c=sw | [[nära]]
+|  c=la | [[propinquus]]
+|- 
+|  i=No | 198
+|  c=en | [[far]]
+|  c=fr | [[loin]]
+|  c=de | [[weit]], [[fern]]
+|  c=it | [[lontano]]
+|  c=es | [[lejos]]
+|  c=nl | [[ver]]
+|  c=sw | [[långt bort]], [[fjärran]]
+|  c=la | [[longinquus]]
+|- 
+|  i=No | 199
+|  c=en | [[right]]
+|  c=fr | [[à]] [[droite]]
+|  c=de | [[rechts]]
+|  c=it | [[destra]]
+|  c=es | [[derecha]]
+|  c=nl | [[rechts]]
+|  c=sw | [[höger]]
+|  c=la | [[dexter]]
+|- 
+|  i=No | 200
+|  c=en | [[left]]
+|  c=fr | [[à]] [[gauche]]
+|  c=de | [[links]]
+|  c=it | [[sinistra]]
+|  c=es | [[izquierda]]
+|  c=nl | [[links]]
+|  c=sw | [[vänster]]
+|  c=la | [[sinister]]
+|- 
+|  i=No | 201
+|  c=en | [[at]]
+|  c=fr | [[à]]
+|  c=de | [[bei]], [[an]]
+|  c=it | [[a]]
+|  c=es | [[a]], [[en]], [[ante]]
+|  c=nl | [[aan]], [[te]], [[bij]]
+|  c=sw | [[hos]], [[vid]]
+|  c=la | [[ad]]
+|- 
+|  i=No | 202
+|  c=en | [[in]]
+|  c=fr | [[dans]]
+|  c=de | [[in]]
+|  c=it | [[in]]
+|  c=es | [[en]]
+|  c=nl | [[in]]
+|  c=sw | [[i]]
+|  c=la | [[in]]
+|- 
+|  i=No | 203
+|  c=en | [[with]]
+|  c=fr | [[avec]]
+|  c=de | [[mit]]
+|  c=it | [[con]]
+|  c=es | [[con]]
+|  c=nl | [[met]]
+|  c=sw | [[med]]
+|  c=la | [[cum]]
+|- 
+|  i=No | 204
+|  c=en | [[and]]
+|  c=fr | [[et]]
+|  c=de | [[und]]
+|  c=it | [[e]]
+|  c=es | [[y]]
+|  c=nl | [[en]]
+|  c=sw | [[och]]
+|  c=la | [[et]]
+|- 
+|  i=No | 205
+|  c=en | [[if]]
+|  c=fr | [[si]]
+|  c=de | [[wenn]], [[falls]], [[ob]]
+|  c=it | [[se]]
+|  c=es | [[si]]
+|  c=nl | [[als]], [[indien]]
+|  c=sw | [[om]]
+|  c=la | [[si]]
+|- 
+|  i=No | 206
+|  c=en | [[because]]
+|  c=fr | [[parce que]]
+|  c=de | [[weil]]
+|  c=it | [[perché]]
+|  c=es | [[porque]]
+|  c=nl | [[omdat]]
+|  c=sw | [[eftersom]], [[ty]]
+|  c=la | [[quia]], [[quoniam]]
+|- 
+|  i=No | 207
+|  c=en | [[name]] *
+|  c=fr | [[nom]]
+|  c=de | [[Name]]
+|  c=it | [[nome]]
+|  c=es | [[nombre]]
+|  c=nl | [[naam]]
+|  c=sw | [[namn]]
+|  c=la | [[nomen]]
+|}
+
+
+***Malaysia***
+Malaysia: 
+{{wikipedia|lang=de}}
+
+===Proper noun===
+{{head|de|proper noun|g=n}}
+
+# [[#English|Malaysia]]
+
+[[Category:de:Countries]]
+
+----
+
+
+***Mali***
+Mali: 
+{{wikipedia|lang=de}}
+
+===Pronunciation===
+* {{audio|De-Mali.ogg|Audio}}
+
+===Proper noun===
+'''Mali''' {{n}}
+
+# [[#English|Mali]]
+
+====Derived terms====
+* [[Malier]]
+* [[Malierin]]
+* [[malisch]]
+
+[[Category:German proper nouns]]
+[[Category:de:Countries]]
+
+----
+
+
+***man***
+man: 
+
+===Etymology===
+From the same source as ''[[Mann]]'' ("adult male").<ref>Theo Stemmler: ''Wie das Eisbein ins Lexikon kam,'' page 15, ISBN 978-3-411-72291-4.</ref>
+
+===Pronunciation===
+* {{IPA|[man]|lang=de}}
+* {{audio|De-at-man.ogg|audio (Austria)}}
+* {{homophones|Mann|lang=de}}
+
+===Pronoun===
+{{head|de|indefinite pronoun}}
+
+# {{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?
+#*:: If a person is pregnant, can he feel it?
+
+====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.
+
+====References====
+<references/>
+
+----
+
+
+man: 
+
+===Conjunction===
+{{head|nds|conjunction}}
+
+# {{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]]
+
+----
+
+
+man: 
+
+===Etymology===
+From {{proto|Germanic|mann-|lang=goh}}.
+
+===Noun===
+{{goh-noun|g=m}}
+
+# [[#English|man]]
+
+----
+
+
+***Monaco***
+Monaco: 
+
+===Proper noun===
+{{head|de|proper noun}}
+
+# {{l|en|Monaco}}
+
+[[Category:de:Countries]]
+
+----
+
+
+***most***
+most: 
+
+===Etymology===
+From {{etyl|la|goh}} {{term|mustum|lang=la}}.
+
+===Noun===
+{{goh-noun|g=m}}
+
+# [[must]]
+
+----
+
+
+***nine***
+nine: 
+
+===Alternative forms===
+* [[nin]]
+
+===Pronunciation===
+* {{IPA|/ˈninə/|lang=gsw}}
+
+===Cardinal number===
+{{head|gsw|cardinal number}}
+
+# {{context|Alsatian|lang=gsw}} [[nine]]
+
+----
+
+
+***November***
+November: 
+
+===Pronunciation===
+* {{IPA|/noˈvɛmbɐ/|lang=de}}
+* {{audio|De-November.ogg|audio}}
+
+===Noun===
+{{head|de|noun|g=m}}
+
+# {{l|en|November}}
+
+[[Category:de:Months]]
+
+----
+
+
+***nu***
+nu: 
+
+===Interjection===
+{{head|de|interjection}}
+
+# [[well#Interjection|well]], well now
+
+====Synonyms====
+* [[na#German|na]]
+
+----
+
+
+***o***
+o: 
+
+===Particle===
+{{head|de|particle}}
+
+# [[O]]
+
+----
+
+
+o: 
+
+===Etymology===
+From {{proto|Germanic|awjō|lang=gml}}. Cognate with {{etyl|non|-}} {{term|ey|lang=non}} ({{etyl|sv|-}} {{term|ö|lang=sv}}, {{etyl|no|-}} {{term|øy|lang=no}}).
+
+===Pronunciation===
+
+* {{IPA|/øː/|lang=gml}}
+
+===Noun===
+{{head|gml|noun}}
+
+# [[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.
+
+----
+
+
+***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]]
+
+----
+
+
+***orange***
+orange: 
+
+===Etymology===
+From the noun {{term|Orange|lang=fr}}
+
+===Pronunciation===
+* {{audio|De-orange.ogg|Audio}}
+
+===Adjective===
+{{de-adj|-}}
+
+# [[#English|orange-coloured]]
+
+[[Category:de:Colors]]
+
+----
+
+
+***planet***
+planet: 
+
+===Verb===
+{{head|de}}
+
+# {{de-verb form of|planen|2|p|k1}}
+
+----
+
+
+***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]]
+===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.
+
+===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}}
+===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)
+
+===room===
+Wiktionary:Tea room: 
+Wiktionary:Tea room: 
+
+German has a few ways of making nouns from verbs..</br>
+1.1 Das Verzieren ist eine hohe Kunst. – "(The) adorning is a high art."</br>
+1.2 Die Verzierung ist eine hohe Kunst – same as above </br>
+2. Die Verzierung an der Jacke passt. – "The adornment at the jacket fits."</br>
+3.1 Die Verzierung war eine mühselige Arbeit. – "(The) adornment was a tiring task." </br>
+3.2 Das Verzieren war eine mühselige Arbeit. –  same as above  </br>
+I think that are all the uses. Am I using the right terminology if I call 1+3.2 gerunds and 2 a deverbal noun? (3.1 should be interpretable as both.)[[User:Korn|ᚲᛟᚱᚾ]] ([[User talk:Korn|talk]]) 12:31, 10 March 2012 (UTC)
+
+
+Wiktionary:Tea room: 
+
+I have read several elder (~1900) Grammars mentioning the existence of true (=pronounced) geminates, and none gives a description, assuming the reader is familiar with long consonants. But there are two systems, with for example a  /p:/ being either /p.p/ (as in modern Polish) or ambisyllabic  /p̚p/, as it is - I assume - in modern day Swedish. Does anybody know about West-Germanic languages? (Any language, at any point of history, really.)[[User:Korn|Korn]] ([[User talk:Korn|talk]]) 14:41, 9 April 2012 (UTC)
+: Proto-Germanic had true geminates, and presumably so did all the 'old' Germanic languages as well. Many Germanic languages (if not all) experienced lengthening of vowels in open syllables, which was conditioned by consonant length as well, since a following geminate closed a syllable and therefore kept the vowel short. The dating of the lengthening can be used as evidence that geminates were retained until that time. So they were retained in Dutch until sometime during the Middle Dutch period (1200-1500), after the lengthening. {{User:CodeCat/signature}} 21:44, 9 April 2012 (UTC)
+::But what was the pronunciation (of the stops, specifically)? Two separate full-consonants with release or a single release with a longer held closing beforehand?[[User:Korn|Korn]] ([[User talk:Korn|talk]]) 14:39, 10 April 2012 (UTC)
+::: I would say that they were single long consonants. Germanic also had an alternation between voiced stops and fricatives, and apparently they were fricatives when single and plosives when geminated. So -ada- was [ɑðɑ] but -adda- was [ɑdːɑ]. {{User:CodeCat/signature}} 17:01, 10 April 2012 (UTC)
+::::The same is true for GML/NDS. So the Swedish system it is. Thanks.[[Special:Contributions/193.174.122.76|193.174.122.76]] 11:39, 11 April 2012 (UTC)
+:::::Polish does not have [[w:Gemination|geminates]]; double consonants are something completely different and only occur at morpheme boundaries. Check Finnish or Hungarian for typical geminates. That said, the Proto-Germanic system does seem to have been like Swedish or Italian because I do not remember any cases of long vowel + long consonant the way they can be combined in Finnish, for example. --[[User:Florian Blaschke|Florian Blaschke]] ([[User talk:Florian Blaschke|talk]]) 16:27, 20 April 2012 (UTC)
+:::::: That is mostly because of a sound change in early Proto-Germanic. According to that change, geminates were de-geminated when following a long syllable (one with a long vowel or diphthong). Before that time, an 'overlong' syllable like -ōss- or -aiss- could have existed, but it was simplified to -ōs- and -ais-. This happened in the word {{termx|haisiz|lang=gem-pro}} for example. {{User:CodeCat/signature}} 16:50, 20 April 2012 (UTC)
+:::::::Ah, good point; Latin has an analogous shortening. Are you familiar with [[w:Kluge's law]], by the way? It would also have operated after long vowels, in principle. The shortening would have followed Kluge's law, then. --[[User:Florian Blaschke|Florian Blaschke]] ([[User talk:Florian Blaschke|talk]]) 17:24, 20 April 2012 (UTC)
+
+
+***September***
+September: 
+
+===Pronunciation===
+* {{IPA|/zɛpˈtɛmbɐ/|lang=de}}
+* {{audio|September.ogg|September}}
+* {{audio|De-September.ogg|Audio}}
+
+===Noun===
+{{head|de|noun|g=m}}
+
+# {{l|en|September}}
+
+[[Category:de:Months]]
+
+----
+
+
+***SMS***
+SMS: 
+
+==={{initialism|German}}===
+{{head|de|initialism}}
+
+# {{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]]
+***spring***
+spring: 
+
+===Pronunciation===
+* {{IPA|/ʃpʀɪŋ/|lang=de}}
+
+===Verb===
+'''spring'''
+
+# {{de-verb form of|springen|i|s}}
+# {{colloquial}} {{de-verb form of|springen|1|s|g}}
+
+----
+
+
+===Swadesh===
+Appendix:Swadesh lists: 
+The words from Swadesh's original 100-word list are designated by an asterisk (*). In the composite list on this page, there are actually 207 words, since seven of the words in the 100-word list (''breast'', ''fingernail'', ''full'', ''horn'', ''knee'', ''moon'', ''round'') were not in the original 200-word list. 
+
+{|  align=center class="wikitable sortable"
+|  i=No | No
+!  c=en | [[English]]
+!  c=fr | [[French]]
+!  c=de | [[German]]
+!  c=it | [[Italian]]
+!  c=es | [[Spanish]]
+!  c=nl | [[Dutch]]
+!  c=sw | [[Swedish]]
+!  c=la | [[Latin]]
+|- 
+|  i=No | 1
+|  c=en | [[I]] *
+|  c=fr | [[je]]
+|  c=de | [[ich]]
+|  c=it | [[io]]
+|  c=es | [[yo]]
+|  c=nl | [[ik]]
+|  c=sw | [[jag]]
+|  c=la | [[ego]]
+|- 
+|  i=No | 2
+|  c=en | [[you]] ''sing.'', [[thou]]
+|  c=fr | [[tu]], [[vous]] (formal)
+|  c=de | [[du]], [[Sie]] (formal)
+|  c=it | [[tu]], [[Lei]] (formal)
+|  c=es | [[tú]], [[usted]] (formal)
+|  c=nl | [[jij]], [[je]], [[U]] (formal)
+|  c=sw | [[du]]
+|  c=la | [[tu]]
+|- 
+|  i=No | 3
+|  c=en | [[he]]
+|  c=fr | [[il]]
+|  c=de | [[er]]
+|  c=it | [[lui]], [[egli]]
+|  c=es | [[él]]
+|  c=nl | [[hij]]
+|  c=sw | [[han]]
+|  c=la | [[is]], [[ea]]
+|- 
+|  i=No | 4
+|  c=en | [[we]] *
+|  c=fr | [[nous]]
+|  c=de | [[wir]]
+|  c=it | [[noi]]
+|  c=es | [[nosotros]]
+|  c=nl | [[wij]], [[we]]
+|  c=sw | [[vi]]
+|  c=la | [[nos]]
+|- 
+|  i=No | 5
+|  c=en | [[you]] ''pl.''
+|  c=fr | [[vous]]
+|  c=de | [[ihr]], [[Sie]] (formal)
+|  c=it | [[voi]]
+|  c=es | [[vosotros]], [[ustedes]] (formal)
+|  c=nl | [[jullie]]
+|  c=sw | [[ni]]
+|  c=la | [[vos]]
+|- 
+|  i=No | 6
+|  c=en | [[they]]
+|  c=fr | [[ils]], [[elles]]
+|  c=de | [[sie]]
+|  c=it | [[loro]], [[essi]]
+|  c=es | [[ellos]], [[ellas]]
+|  c=nl | [[zij]], [[ze]]
+|  c=sw | [[de]]
+|  c=la | [[ii]], [[eae]]
+|- 
+|  i=No | 7
+|  c=en | [[this]] *
+|  c=fr | [[ceci]]
+|  c=de | [[dieses]]
+|  c=it | [[questo]]
+|  c=es | [[este]]
+|  c=nl | [[deze]], [[dit]]
+|  c=sw | [[det här]]
+|  c=la | [[hic]], [[is]]
+|- 
+|  i=No | 8
+|  c=en | [[that]] *
+|  c=fr | [[cela]]
+|  c=de | [[jenes]], [[das]]
+|  c=it | [[quello]]
+|  c=es | [[ese]], [[aquel]]
+|  c=nl | [[die]], [[dat]]
+|  c=sw | [[det där]]
+|  c=la | [[ille]]
+|- 
+|  i=No | 9
+|  c=en | [[here]]
+|  c=fr | [[ici]]
+|  c=de | [[hier]]
+|  c=it | [[qui]], [[qua]]
+|  c=es | [[aquí]], [[acá]]
+|  c=nl | [[hier]]
+|  c=sw | [[här]]
+|  c=la | [[hic]]
+|- 
+|  i=No | 10
+|  c=en | [[there]]
+|  c=fr | [[là]]
+|  c=de | [[dort]]
+|  c=it | [[là]]
+|  c=es | [[ahí]], [[allí]], [[allá]]
+|  c=nl | [[daar]]
+|  c=sw | [[där]]
+|  c=la | [[ibi]]
+|- 
+|  i=No | 11
+|  c=en | [[who]] *
+|  c=fr | [[qui]]
+|  c=de | [[wer]]
+|  c=it | [[chi]]
+|  c=es | [[quien]]
+|  c=nl | [[wie]]
+|  c=sw | [[vem]]
+|  c=la | [[quis]]
+|- 
+|  i=No | 12
+|  c=en | [[what]] *
+|  c=fr | [[quoi]]
+|  c=de | [[was]]
+|  c=it | [[che]]
+|  c=es | [[que]]
+|  c=nl | [[wat]]
+|  c=sw | [[vad]]
+|  c=la | [[quid]]
+|- 
+|  i=No | 13
+|  c=en | [[where]]
+|  c=fr | [[où]]
+|  c=de | [[wo]]
+|  c=it | [[dove]]
+|  c=es | [[donde]]
+|  c=nl | [[waar]]
+|  c=sw | [[var]]
+|  c=la | [[ubi]]
+|- 
+|  i=No | 14
+|  c=en | [[when]]
+|  c=fr | [[quand]]
+|  c=de | [[wann]]
+|  c=it | [[quando]]
+|  c=es | [[cuando]]
+|  c=nl | [[wanneer]]
+|  c=sw | [[när]]
+|  c=la | [[quando]]
+|- 
+|  i=No | 15
+|  c=en | [[how]]
+|  c=fr | [[comment]]
+|  c=de | [[wie]]
+|  c=it | [[come]]
+|  c=es | [[como]]
+|  c=nl | [[hoe]]
+|  c=sw | [[hur]]
+|  c=la | [[quam]], [[quomodo]]
+|- 
+|  i=No | 16
+|  c=en | [[not]] *
+|  c=fr | [[ne]]...[[pas]]
+|  c=de | [[nicht]]
+|  c=it | [[non]]
+|  c=es | [[no]]
+|  c=nl | [[niet]]
+|  c=sw | [[inte]], [[ej]]
+|  c=la | [[non]]
+|- 
+|  i=No | 17
+|  c=en | [[all]] *
+|  c=fr | [[tout]]
+|  c=de | [[alle]]
+|  c=it | [[tutto]]
+|  c=es | [[todo]]
+|  c=nl | [[al]], [[alle]]
+|  c=sw | [[alla]]
+|  c=la | [[omnis]]
+|- 
+|  i=No | 18
+|  c=en | [[many]] *
+|  c=fr | [[plusieurs]]
+|  c=de | [[viele]]
+|  c=it | [[molti]]
+|  c=es | [[muchos]]
+|  c=nl | [[veel]]
+|  c=sw | [[många]]
+|  c=la | [[multi]]
+|- 
+|  i=No | 19
+|  c=en | [[some]]
+|  c=fr | [[quelques]]
+|  c=de | [[einige]]
+|  c=it | [[alcuni]]
+|  c=es | [[algunos]], [[unos]]
+|  c=nl | [[enkele]], [[sommige]]
+|  c=sw | [[några]], [[vissa]]
+|  c=la | [[aliqui]], [[aliquot]]
+|- 
+|  i=No | 20
+|  c=en | [[few]]
+|  c=fr | [[peu]]
+|  c=de | [[wenige]]
+|  c=it | [[pochi]]
+|  c=es | [[poco]]
+|  c=nl | [[weinig]]
+|  c=sw | [[få]]
+|  c=la | [[pauci]]
+|- 
+|  i=No | 21
+|  c=en | [[other]]
+|  c=fr | [[autre]]
+|  c=de | [[andere]]
+|  c=it | [[altro]]
+|  c=es | [[otro]]
+|  c=nl | [[ander]]
+|  c=sw | [[annan]]
+|  c=la | [[alter]], [[alius]]
+|- 
+|  i=No | 22
+|  c=en | [[one]] *
+|  c=fr | [[un]]
+|  c=de | [[eins]]
+|  c=it | [[uno]]
+|  c=es | [[uno]]
+|  c=nl | [[een]]
+|  c=sw | [[ett]]
+|  c=la | [[unus]]
+|- 
+|  i=No | 23
+|  c=en | [[two]] *
+|  c=fr | [[deux]]
+|  c=de | [[zwei]]
+|  c=it | [[due]]
+|  c=es | [[dos]]
+|  c=nl | [[twee]]
+|  c=sw | [[två]]
+|  c=la | [[duo]]
+|- 
+|  i=No | 24
+|  c=en | [[three]]
+|  c=fr | [[trois]]
+|  c=de | [[drei]]
+|  c=it | [[tre]]
+|  c=es | [[tres]]
+|  c=nl | [[drie]]
+|  c=sw | [[tre]]
+|  c=la | [[tres]]
+|- 
+|  i=No | 25
+|  c=en | [[four]]
+|  c=fr | [[quatre]]
+|  c=de | [[vier]]
+|  c=it | [[quattro]]
+|  c=es | [[cuatro]]
+|  c=nl | [[vier]]
+|  c=sw | [[fyra]]
+|  c=la | [[quattuor]]
+|- 
+|  i=No | 26
+|  c=en | [[five]]
+|  c=fr | [[cinq]]
+|  c=de | [[fünf]]
+|  c=it | [[cinque]]
+|  c=es | [[cinco]]
+|  c=nl | [[vijf]]
+|  c=sw | [[fem]]
+|  c=la | [[quinque]]
+|- 
+|  i=No | 27
+|  c=en | [[big]] *
+|  c=fr | [[grand]]
+|  c=de | [[groß]]
+|  c=it | [[grande]]
+|  c=es | [[grande]]
+|  c=nl | [[groot]]
+|  c=sw | [[stor]]
+|  c=la | [[magnus]], [[grandis]]
+|- 
+|  i=No | 28
+|  c=en | [[long]] *
+|  c=fr | [[long]]
+|  c=de | [[lang]]
+|  c=it | [[lungo]]
+|  c=es | [[largo]]
+|  c=nl | [[lang]]
+|  c=sw | [[lång]]
+|  c=la | [[longus]]
+|- 
+|  i=No | 29
+|  c=en | [[wide]]
+|  c=fr | [[large]]
+|  c=de | [[breit]], [[weit]]
+|  c=it | [[largo]]
+|  c=es | [[ancho]]
+|  c=nl | [[breed]], [[wijd]]
+|  c=sw | [[bred]], [[vid]]
+|  c=la | [[latus]]
+|- 
+|  i=No | 30
+|  c=en | [[thick]]
+|  c=fr | [[épais]]
+|  c=de | [[dick]]
+|  c=it | [[spesso]]
+|  c=es | [[grueso]]
+|  c=nl | [[dik]]
+|  c=sw | [[tjock]]
+|  c=la | [[creber]]
+|- 
+|  i=No | 31
+|  c=en | [[heavy]]
+|  c=fr | [[lourd]]
+|  c=de | [[schwer]]
+|  c=it | [[pesante]]
+|  c=es | [[pesado]]
+|  c=nl | [[zwaar]]
+|  c=sw | [[tung]]
+|  c=la | [[gravis]]
+|- 
+|  i=No | 32
+|  c=en | [[small]] *
+|  c=fr | [[petit]]
+|  c=de | [[klein]]
+|  c=it | [[piccolo]]
+|  c=es | [[pequeño]]
+|  c=nl | [[smal]]
+|  c=sw | [[liten]]
+|  c=la | [[parvus]]
+|- 
+|  i=No | 33
+|  c=en | [[short]]
+|  c=fr | [[court]]
+|  c=de | [[kurz]]
+|  c=it | [[corto]]
+|  c=es | [[corto]]
+|  c=nl | [[kort]]
+|  c=sw | [[kort]]
+|  c=la | [[brevis]]
+|- 
+|  i=No | 34
+|  c=en | [[narrow]]
+|  c=fr | [[étroit]]
+|  c=de | [[eng]]
+|  c=it | [[stretto]]
+|  c=es | [[estrecho]], [[angosto]]
+|  c=nl | [[klein]]
+|  c=sw | [[trång]]
+|  c=la | [[angustus]]
+|- 
+|  i=No | 35
+|  c=en | [[thin]]
+|  c=fr | [[mince]]
+|  c=de | [[dünn]]
+|  c=it | [[sottile]]
+|  c=es | [[delgado]], [[flaco]]
+|  c=nl | [[dun]]
+|  c=sw | [[tunn]]
+|  c=la | [[macer]]
+|- 
+|  i=No | 36
+|  c=en | [[woman]] *
+|  c=fr | [[femme]]
+|  c=de | [[Frau]]
+|  c=it | [[donna]]
+|  c=es | [[mujer]]
+|  c=nl | [[vrouw]]
+|  c=sw | [[kvinna]]
+|  c=la | [[femina]]
+|- 
+|  i=No | 37
+|  c=en | [[man]] (adult male)
+|  c=fr | [[homme]]
+|  c=de | [[Mann]]
+|  c=it | [[uomo]]
+|  c=es | [[hombre]]
+|  c=nl | [[man]]
+|  c=sw | [[man]]
+|  c=la | [[vir]]
+|- 
+|  i=No | 38
+|  c=en | [[man]] * (human being)
+|  c=fr | [[homme]]
+|  c=de | [[Mensch]]
+|  c=it | [[uomo]]
+|  c=es | [[hombre]]
+|  c=nl | [[mens]]
+|  c=sw | [[människa]]
+|  c=la | [[homo]]
+|- 
+|  i=No | 39
+|  c=en | [[kid]]
+|  c=fr | [[enfant]]
+|  c=de | [[Kind]]
+|  c=it | [[bambino]]
+|  c=es | [[niño]]
+|  c=nl | [[kind]]
+|  c=sw | [[barn]]
+|  c=la | [[puer]]
+|- 
+|  i=No | 40
+|  c=en | [[wife]]
+|  c=fr | [[femme]], [[épouse]]
+|  c=de | [[Frau]], [[Ehefrau]]
+|  c=it | [[moglie]]
+|  c=es | [[esposa]], [[mujer]]
+|  c=nl | [[vrouw]], [[echtgenote]]
+|  c=sw | [[hustru]], [[maka]], [[fru]]
+|  c=la | [[uxor]], [[mulier]]
+|- 
+|  i=No | 41
+|  c=en | [[husband]]
+|  c=fr | [[mari]], [[époux]]
+|  c=de | [[Mann]], [[Ehemann]]
+|  c=it | [[marito]]
+|  c=es | [[esposo]], [[marido]]
+|  c=nl | [[man]], [[echtgenoot]]
+|  c=sw | [[man]], [[make]]
+|  c=la | [[maritus]]
+|- 
+|  i=No | 42
+|  c=en | [[mother]]
+|  c=fr | [[mère]]
+|  c=de | [[Mutter]]
+|  c=it | [[madre]]
+|  c=es | [[madre]]
+|  c=nl | [[moeder]]
+|  c=sw | [[mamma]], [[mor]]
+|  c=la | [[mater]]
+|- 
+|  i=No | 43
+|  c=en | [[father]]
+|  c=fr | [[père]]
+|  c=de | [[Vater]]
+|  c=it | [[padre]]
+|  c=es | [[padre]]
+|  c=nl | [[vader]]
+|  c=sw | [[pappa]], [[far]]
+|  c=la | [[pater]]
+|- 
+|  i=No | 44
+|  c=en | [[animal]]
+|  c=fr | [[animal]]
+|  c=de | [[Tier]]
+|  c=it | [[animale]]
+|  c=es | [[animal]]
+|  c=nl | [[dier]]
+|  c=sw | [[djur]]
+|  c=la | [[animal]]
+|- 
+|  i=No | 45
+|  c=en | [[fish]] *
+|  c=fr | [[poisson]]
+|  c=de | [[Fisch]]
+|  c=it | [[pesce]]
+|  c=es | [[pez]], [[pescado]]
+|  c=nl | [[vis]]
+|  c=sw | [[fisk]]
+|  c=la | [[piscis]]
+|- 
+|  i=No | 46
+|  c=en | [[bird]] *
+|  c=fr | [[oiseau]]
+|  c=de | [[Vogel]]
+|  c=it | [[uccello]]
+|  c=es | [[ave]], [[pájaro]]
+|  c=nl | [[vogel]]
+|  c=sw | [[fågel]]
+|  c=la | [[avis]]
+|- 
+|  i=No | 47
+|  c=en | [[hound]] *
+|  c=fr | [[chien]]
+|  c=de | [[Hund]]
+|  c=it | [[cane]]
+|  c=es | [[perro]]
+|  c=nl | [[hond]]
+|  c=sw | [[hund]]
+|  c=la | [[canis]]
+|- 
+|  i=No | 48
+|  c=en | [[louse]] *
+|  c=fr | [[pou]]
+|  c=de | [[Laus]]
+|  c=it | [[pidocchio]]
+|  c=es | [[piojo]]
+|  c=nl | [[luis]]
+|  c=sw | [[lus]]
+|  c=la | [[pedis]]
+|- 
+|  i=No | 49
+|  c=en | [[snake]]
+|  c=fr | [[serpent]]
+|  c=de | [[Schlange]]
+|  c=it | [[serpente]]
+|  c=es | [[serpiente]], [[culebra]]
+|  c=nl | [[slang]]
+|  c=sw | [[orm]]
+|  c=la | [[serpens]]
+|- 
+|  i=No | 50
+|  c=en | [[worm]]
+|  c=fr | [[ver]]
+|  c=de | [[Wurm]]
+|  c=it | [[verme]]
+|  c=es | [[gusano]]
+|  c=nl | [[worm]]
+|  c=sw | [[mask]]
+|  c=la | [[vermis]]
+|- 
+|  i=No | 51
+|  c=en | [[beam]] *
+|  c=fr | [[arbre]]
+|  c=de | [[Baum]]
+|  c=it | [[albero]]
+|  c=es | [[árbol]]
+|  c=nl | [[boom]]
+|  c=sw | [[träd]]
+|  c=la | [[arbor]]
+|- 
+|  i=No | 52
+|  c=en | [[forest]]
+|  c=fr | [[forêt]]
+|  c=de | [[Wald]]
+|  c=it | [[foresta]]
+|  c=es | [[bosque]]
+|  c=nl | [[woud]]
+|  c=sw | [[skog]]
+|  c=la | [[silva]]
+|- 
+|  i=No | 53
+|  c=en | [[stick]]
+|  c=fr | [[bâton]]
+|  c=de | [[Stock]]
+|  c=it | [[bastone]]
+|  c=es | [[palo]]
+|  c=nl | [[stok]]
+|  c=sw | [[pinne]]
+|  c=la | [[fustis]]
+|- 
+|  i=No | 54
+|  c=en | [[fruit]]
+|  c=fr | [[fruit]]
+|  c=de | [[Frucht]]
+|  c=it | [[frutta]]
+|  c=es | [[fruta]]
+|  c=nl | [[fruit]], [[vrucht]]
+|  c=sw | [[frukt]]
+|  c=la | [[fructus]]
+|- 
+|  i=No | 55
+|  c=en | [[seed]] *
+|  c=fr | [[graine]]
+|  c=de | [[Samen]]
+|  c=it | [[seme]]
+|  c=es | [[semilla]]
+|  c=nl | [[zaad]]
+|  c=sw | [[frö]]
+|  c=la | [[semen]]
+|- 
+|  i=No | 56
+|  c=en | [[leaf]] *
+|  c=fr | [[feuille]]
+|  c=de | [[Blatt]]
+|  c=it | [[foglia]]
+|  c=es | [[hoja]]
+|  c=nl | [[blad]]
+|  c=sw | [[löv]], [[blad]]
+|  c=la | [[folium]]
+|- 
+|  i=No | 57
+|  c=en | [[root]] *
+|  c=fr | [[racine]]
+|  c=de | [[Wurzel]]
+|  c=it | [[radice]]
+|  c=es | [[raíz]]
+|  c=nl | [[root]]
+|  c=sw | [[rot]]
+|  c=la | [[radix]]
+|- 
+|  i=No | 58
+|  c=en | [[bark]] * (from tree)
+|  c=fr | [[écorce]]
+|  c=de | [[Rinde]]
+|  c=it | [[corteccia]]
+|  c=es | [[corteza]]
+|  c=nl | [[bark]]
+|  c=sw | [[bark]]
+|  c=la | [[cortex]]
+|- 
+|  i=No | 59
+|  c=en | [[flower]]
+|  c=fr | [[fleur]]
+|  c=de | [[Blume]]
+|  c=it | [[fiore]]
+|  c=es | [[flor]]
+|  c=nl | [[bloem]]
+|  c=sw | [[blomma]]
+|  c=la | [[flos]]
+|- 
+|  i=No | 60
+|  c=en | [[grass]]
+|  c=fr | [[herbe]]
+|  c=de | [[Gras]]
+|  c=it | [[erba]]
+|  c=es | [[hierba]], [[pasto]]
+|  c=nl | [[gras]]
+|  c=sw | [[gräs]]
+|  c=la | [[herba]]
+|- 
+|  i=No | 61
+|  c=en | [[rope]]
+|  c=fr | [[corde]]
+|  c=de | [[Seil]]
+|  c=it | [[corda]]
+|  c=es | [[cuerda]]
+|  c=nl | [[reep]], [[koord]]
+|  c=sw | [[rep]]
+|  c=la | [[funis]]
+|- 
+|  i=No | 62
+|  c=en | [[skin]] *
+|  c=fr | [[peau]]
+|  c=de | [[Haut]]
+|  c=it | [[pelle]]
+|  c=es | [[piel]]
+|  c=nl | [[huid]]
+|  c=sw | [[hud]]
+|  c=la | [[cutis]]
+|- 
+|  i=No | 63
+|  c=en | [[meat]]
+|  c=fr | [[viande]]
+|  c=de | [[Fleisch]]
+|  c=it | [[carne]]
+|  c=es | [[carne]]
+|  c=nl | [[vlees]]
+|  c=sw | [[kött]]
+|  c=la | [[caro]]
+|- 
+|  i=No | 64
+|  c=en | [[blood]] *
+|  c=fr | [[sang]]
+|  c=de | [[Blut]]
+|  c=it | [[sangue]]
+|  c=es | [[sangre]]
+|  c=nl | [[bloed]]
+|  c=sw | [[blod]]
+|  c=la | [[sanguis]]
+|- 
+|  i=No | 65
+|  c=en | [[bone]] *
+|  c=fr | [[os]]
+|  c=de | [[Knochen]]
+|  c=it | [[osso]]
+|  c=es | [[hueso]]
+|  c=nl | [[been]], [[bot]]
+|  c=sw | [[ben]]
+|  c=la | [[os]]
+|- 
+|  i=No | 66
+|  c=en | [[fat]] * (n.)
+|  c=fr | [[graisse]]
+|  c=de | [[Fett]]
+|  c=it | [[grasso]]
+|  c=es | [[grasa]]
+|  c=nl | [[vet]]
+|  c=sw | [[fett]]
+|  c=la | [[adeps]]
+|- 
+|  i=No | 67
+|  c=en | [[egg]] *
+|  c=fr | [[œuf]]
+|  c=de | [[Ei]]
+|  c=it | [[uovo]]
+|  c=es | [[huevo]]
+|  c=nl | [[ei]]
+|  c=sw | [[ägg]]
+|  c=la | [[ovum]]
+|- 
+|  i=No | 68
+|  c=en | [[horn]] *
+|  c=fr | [[corne]]
+|  c=de | [[Horn]]
+|  c=it | [[corno]]
+|  c=es | [[cuerno]]
+|  c=nl | [[horn]]
+|  c=sw | [[horn]]
+|  c=la | [[cornu]]
+|- 
+|  i=No | 69
+|  c=en | [[tail]] *
+|  c=fr | [[queue]]
+|  c=de | [[Schwanz]]
+|  c=it | [[coda]]
+|  c=es | [[cola]]
+|  c=nl | [[staart]]
+|  c=sw | [[svans]]
+|  c=la | [[cauda]]
+|- 
+|  i=No | 70
+|  c=en | [[feather]] *
+|  c=fr | [[plume]]
+|  c=de | [[Feder]]
+|  c=it | [[piuma]]
+|  c=es | [[pluma]]
+|  c=nl | [[veder]]
+|  c=sw | [[fjäder]]
+|  c=la | [[penna]]
+|- 
+|  i=No | 71
+|  c=en | [[hair]] *
+|  c=fr | [[cheveu]]
+|  c=de | [[Haar]]
+|  c=it | [[capelli]]
+|  c=es | [[cabello]], [[pelo]]
+|  c=nl | [[haar]]
+|  c=sw | [[hår]]
+|  c=la | [[capillus]], [[coma]], [[crinis]]
+|- 
+|  i=No | 72
+|  c=en | [[head]] *
+|  c=fr | [[tête]]
+|  c=de | [[Kopf]], [[Haupt]]
+|  c=it | [[testa]]
+|  c=es | [[cabeza]]
+|  c=nl | [[hoofd]], [[kop]]
+|  c=sw | [[huvud]]
+|  c=la | [[caput]]
+|- 
+|  i=No | 73
+|  c=en | [[ear]] *
+|  c=fr | [[oreille]]
+|  c=de | [[Ohr]]
+|  c=it | [[orecchio]]
+|  c=es | [[oreja]]
+|  c=nl | [[aar]]
+|  c=sw | [[öra]]
+|  c=la | [[auris]]
+|- 
+|  i=No | 74
+|  c=en | [[eye]] *
+|  c=fr | [[œil]]
+|  c=de | [[Auge]]
+|  c=it | [[occhio]]
+|  c=es | [[ojo]]
+|  c=nl | [[oog]]
+|  c=sw | [[öga]]
+|  c=la | [[oculus]]
+|- 
+|  i=No | 75
+|  c=en | [[nose]] *
+|  c=fr | [[nez]]
+|  c=de | [[Nase]]
+|  c=it | [[naso]]
+|  c=es | [[nariz]]
+|  c=nl | [[neus]]
+|  c=sw | [[näsa]]
+|  c=la | [[nasus]]
+|- 
+|  i=No | 76
+|  c=en | [[mouth]] *
+|  c=fr | [[bouche]]
+|  c=de | [[Mund]]
+|  c=it | [[bocca]]
+|  c=es | [[boca]]
+|  c=nl | [[mond]]
+|  c=sw | [[mun]]
+|  c=la | [[os]]
+|- 
+|  i=No | 77
+|  c=en | [[tooth]] *
+|  c=fr | [[dent]]
+|  c=de | [[Zahn]]
+|  c=it | [[dente]]
+|  c=es | [[diente]]
+|  c=nl | [[tand]]
+|  c=sw | [[tand]]
+|  c=la | [[dens]]
+|- 
+|  i=No | 78
+|  c=en | [[tongue]] *
+|  c=fr | [[langue]]
+|  c=de | [[Zunge]]
+|  c=it | [[lingua]]
+|  c=es | [[lengua]]
+|  c=nl | [[tong]]
+|  c=sw | [[tunga]]
+|  c=la | [[lingua]]
+|- 
+|  i=No | 79
+|  c=en | [[fingernail]]
+|  c=fr | [[ongle]]
+|  c=de | [[Fingernagel]]
+|  c=it | [[unghia]]
+|  c=es | [[uña]]
+|  c=nl | [[vingernagel]]
+|  c=sw | [[nagel]]
+|  c=la | [[unguis]]
+|- 
+|  i=No | 80
+|  c=en | [[foot]] *
+|  c=fr | [[pied]]
+|  c=de | [[Fuß]]
+|  c=it | [[piede]]
+|  c=es | [[pie]]
+|  c=nl | [[voet]]
+|  c=sw | [[fot]]
+|  c=la | [[pes]]
+|- 
+|  i=No | 81
+|  c=en | [[leg]]
+|  c=fr | [[jambe]]
+|  c=de | [[Bein]]
+|  c=it | [[gamba]]
+|  c=es | [[pierna]]
+|  c=nl | [[been]]
+|  c=sw | [[ben]]
+|  c=la | [[crus]]
+|- 
+|  i=No | 82
+|  c=en | [[knee]] *
+|  c=fr | [[genou]]
+|  c=de | [[Knie]]
+|  c=it | [[ginocchio]]
+|  c=es | [[rodilla]]
+|  c=nl | [[knie]]
+|  c=sw | [[knä]]
+|  c=la | [[genu]]
+|- 
+|  i=No | 83
+|  c=en | [[hand]] *
+|  c=fr | [[main]]
+|  c=de | [[Hand]]
+|  c=it | [[mano]]
+|  c=es | [[mano]]
+|  c=nl | [[hand]]
+|  c=sw | [[hand]]
+|  c=la | [[manus]]
+|- 
+|  i=No | 84
+|  c=en | [[wing]]
+|  c=fr | [[aile]]
+|  c=de | [[Flügel]]
+|  c=it | [[ala]]
+|  c=es | [[ala]]
+|  c=nl | [[vleugel]]
+|  c=sw | [[vinge]]
+|  c=la | [[ala]]
+|- 
+|  i=No | 85
+|  c=en | [[belly]] *
+|  c=fr | [[ventre]]
+|  c=de | [[Bauch]]
+|  c=it | [[pancia]]
+|  c=es | [[barriga]], [[vientre]], [[panza]]
+|  c=nl | [[buik]]
+|  c=sw | [[mage]]
+|  c=la | [[venter]]
+|- 
+|  i=No | 86
+|  c=en | [[guts]]
+|  c=fr | [[entrailles]]
+|  c=de | [[Eingeweide]], [[Innereien]]
+|  c=it | [[intestino]]
+|  c=es | [[entrañas]], [[tripas]]
+|  c=nl | [[ingewanden]]
+|  c=sw | [[inälvor]]
+|  c=la | [[intestina]]
+|- 
+|  i=No | 87
+|  c=en | [[neck]] *
+|  c=fr | [[cou]]
+|  c=de | [[Hals]]
+|  c=it | [[collo]]
+|  c=es | [[cuello]]
+|  c=nl | [[nek]]
+|  c=sw | [[hals]], [[nacke]]
+|  c=la | [[collum]], [[cervix]]
+|- 
+|  i=No | 88
+|  c=en | [[back]]
+|  c=fr | [[dos]]
+|  c=de | [[Rücken]]
+|  c=it | [[schiena]]
+|  c=es | [[espalda]]
+|  c=nl | [[rug]]
+|  c=sw | [[rygg]]
+|  c=la | [[tergum]]
+|- 
+|  i=No | 89
+|  c=en | [[breast]] *
+|  c=fr | [[sein]], [[poitrine]]
+|  c=de | [[Brust]]
+|  c=it | [[petto]]
+|  c=es | [[pecho]], [[seno]]
+|  c=nl | [[borst]]
+|  c=sw | [[bröst]]
+|  c=la | [[pectus]], [[mamma]]
+|- 
+|  i=No | 90
+|  c=en | [[heart]] *
+|  c=fr | [[cœur]]
+|  c=de | [[Herz]]
+|  c=it | [[cuore]]
+|  c=es | [[corazón]]
+|  c=nl | [[hart]]
+|  c=sw | [[hjärta]]
+|  c=la | [[cor]]
+|- 
+|  i=No | 91
+|  c=en | [[liver]] *
+|  c=fr | [[foie]]
+|  c=de | [[Leber]]
+|  c=it | [[fegato]]
+|  c=es | [[hígado]]
+|  c=nl | [[lever]]
+|  c=sw | [[lever]]
+|  c=la | [[iecur]]
+|- 
+|  i=No | 92
+|  c=en | [[drink]] *
+|  c=fr | [[boire]]
+|  c=de | [[trinken]]
+|  c=it | [[bere]]
+|  c=es | [[beber]], [[tomar]]
+|  c=nl | [[drinken]]
+|  c=sw | [[dricka]]
+|  c=la | [[bibere]]
+|- 
+|  i=No | 93
+|  c=en | [[eat]] *
+|  c=fr | [[manger]]
+|  c=de | [[essen]]
+|  c=it | [[mangiare]]
+|  c=es | [[comer]]
+|  c=nl | [[eten]]
+|  c=sw | [[äta]]
+|  c=la | [[edere]]
+|- 
+|  i=No | 94
+|  c=en | [[bite]] *
+|  c=fr | [[mordre]]
+|  c=de | [[beißen]]
+|  c=it | [[mordere]]
+|  c=es | [[morder]]
+|  c=nl | [[bijten]]
+|  c=sw | [[bita]]
+|  c=la | [[mordere]]
+|- 
+|  i=No | 95
+|  c=en | [[suck]]
+|  c=fr | [[sucer]]
+|  c=de | [[saugen]]
+|  c=it | [[succhiare]]
+|  c=es | [[chupar]]
+|  c=nl | [[zuigen]]
+|  c=sw | [[suga]]
+|  c=la | [[sugere]]
+|- 
+|  i=No | 96
+|  c=en | [[spit]]
+|  c=fr | [[cracher]]
+|  c=de | [[spucken]]
+|  c=it | [[sputare]]
+|  c=es | [[escupir]]
+|  c=nl | [[spugen]]
+|  c=sw | [[spotta]]
+|  c=la | [[sputare]]
+|- 
+|  i=No | 97
+|  c=en | [[vomit]]
+|  c=fr | [[vomir]]
+|  c=de | [[erbrechen]]
+|  c=it | [[vomitare]]
+|  c=es | [[vomitar]]
+|  c=nl | [[braken]], [[overgeven]]
+|  c=sw | [[kräkas]], [[spy]]
+|  c=la | [[vomere]]
+|- 
+|  i=No | 98
+|  c=en | [[blow]]
+|  c=fr | [[souffler]]
+|  c=de | [[blasen]]
+|  c=it | [[soffiare]]
+|  c=es | [[soplar]]
+|  c=nl | [[blazen]]
+|  c=sw | [[blåsa]]
+|  c=la | [[flare]]
+|- 
+|  i=No | 99
+|  c=en | [[breathe]]
+|  c=fr | [[respirer]]
+|  c=de | [[atmen]]
+|  c=it | [[respirare]]
+|  c=es | [[respirar]]
+|  c=nl | [[ademen]]
+|  c=sw | [[andas]]
+|  c=la | [[spirare]]
+|- 
+|  i=No | 100
+|  c=en | [[laugh]]
+|  c=fr | [[rire]]
+|  c=de | [[lachen]]
+|  c=it | [[ridere]]
+|  c=es | [[reír]]
+|  c=nl | [[lachen]]
+|  c=sw | [[skratta]]
+|  c=la | [[ridere]]
+|- 
+|  i=No | 101
+|  c=en | [[see]] *
+|  c=fr | [[voir]]
+|  c=de | [[sehen]]
+|  c=it | [[vedere]]
+|  c=es | [[ver]]
+|  c=nl | [[zien]]
+|  c=sw | [[se]]
+|  c=la | [[videre]]
+|- 
+|  i=No | 102
+|  c=en | [[hear]] *
+|  c=fr | [[entendre]]
+|  c=de | [[hören]]
+|  c=it | [[udire]], [[sentire]]
+|  c=es | [[oír]]
+|  c=nl | [[horen]]
+|  c=sw | [[höra]]
+|  c=la | [[audire]]
+|- 
+|  i=No | 103
+|  c=en | [[know]] * (a fact)
+|  c=fr | [[savoir]]
+|  c=de | [[wissen]]
+|  c=it | [[sapere]]
+|  c=es | [[saber]]
+|  c=nl | [[kennen]]
+|  c=sw | [[veta]]
+|  c=la | [[scire]]
+|- 
+|  i=No | 104
+|  c=en | [[think]]
+|  c=fr | [[penser]]
+|  c=de | [[denken]]
+|  c=it | [[pensare]]
+|  c=es | [[pensar]]
+|  c=nl | [[denken]]
+|  c=sw | [[tänka]]
+|  c=la | [[putare]]
+|- 
+|  i=No | 105
+|  c=en | [[smell]]
+|  c=fr | [[sentir]]
+|  c=de | [[riechen]]
+|  c=it | [[odorare]], [[annusare]]
+|  c=es | [[oler]]
+|  c=nl | [[smelten]]
+|  c=sw | [[lukta]]
+|  c=la | [[olere]]
+|- 
+|  i=No | 106
+|  c=en | [[fear]]
+|  c=fr | [[craindre]], [[avoir]] [[peur]]
+|  c=de | [[fürchten]]
+|  c=it | [[temere]]
+|  c=es | [[temer]]
+|  c=nl | [[vrezen]], [[angst]]
+|  c=sw | [[frukta]], [[rädas]]
+|  c=la | [[timere]]
+|- 
+|  i=No | 107
+|  c=en | [[sleep]] *
+|  c=fr | [[dormir]]
+|  c=de | [[schlafen]]
+|  c=it | [[dormire]]
+|  c=es | [[dormir]]
+|  c=nl | [[slapen]]
+|  c=sw | [[sova]]
+|  c=la | [[dormire]]
+|- 
+|  i=No | 108
+|  c=en | [[live]]
+|  c=fr | [[vivre]]
+|  c=de | [[leben]]
+|  c=it | [[vivere]]
+|  c=es | [[vivir]]
+|  c=nl | [[leven]]
+|  c=sw | [[leva]]
+|  c=la | [[vivere]]
+|- 
+|  i=No | 109
+|  c=en | [[die]] *
+|  c=fr | [[mourir]]
+|  c=de | [[sterben]]
+|  c=it | [[morire]]
+|  c=es | [[morir]]
+|  c=nl | [[doden]]
+|  c=sw | [[dö]]
+|  c=la | [[mori]]
+|- 
+|  i=No | 110
+|  c=en | [[kill]] *
+|  c=fr | [[tuer]]
+|  c=de | [[töten]]
+|  c=it | [[uccidere]]
+|  c=es | [[matar]]
+|  c=nl | [[doden]]
+|  c=sw | [[döda]]
+|  c=la | [[necare]]
+|- 
+|  i=No | 111
+|  c=en | [[fight]]
+|  c=fr | [[se]] [[battre]]
+|  c=de | [[kämpfen]]
+|  c=it | [[combattere]]
+|  c=es | [[pelear]]
+|  c=nl | [[vechten]]
+|  c=sw | [[strida]]
+|  c=la | [[pugnare]]
+|- 
+|  i=No | 112
+|  c=en | [[hunt]]
+|  c=fr | [[chasser]]
+|  c=de | [[jagen]]
+|  c=it | [[cacciare]]
+|  c=es | [[cazar]]
+|  c=nl | [[jagen]]
+|  c=sw | [[jaga]]
+|  c=la | [[venari]]
+|- 
+|  i=No | 113
+|  c=en | [[hit]]
+|  c=fr | [[frapper]]
+|  c=de | [[schlagen]]
+|  c=it | [[colpire]]
+|  c=es | [[golpear]]
+|  c=nl | [[slaan]]
+|  c=sw | [[slå]]
+|  c=la | [[pellere]]
+|- 
+|  i=No | 114
+|  c=en | [[cut]]
+|  c=fr | [[couper]]
+|  c=de | [[schneiden]]
+|  c=it | [[tagliare]]
+|  c=es | [[cortar]]
+|  c=nl | [[snijden]]
+|  c=sw | [[skära]]
+|  c=la | [[secare]]
+|- 
+|  i=No | 115
+|  c=en | [[split]]
+|  c=fr | [[fendre]]
+|  c=de | [[spalten]]
+|  c=it | [[dividere]], [[separare]]
+|  c=es | [[partir]]
+|  c=nl | [[splijten]]
+|  c=sw | [[dela]], [[klyva]]
+|  c=la | [[scindere]], [[partiri]]
+|- 
+|  i=No | 116
+|  c=en | [[stab]]
+|  c=fr | [[poignarder]]
+|  c=de | [[stechen]]
+|  c=it | [[pugnalare]]
+|  c=es | [[apuñalar]]
+|  c=nl | [[steken]]
+|  c=sw | [[sticka]]
+|  c=la | [[traicere]]
+|- 
+|  i=No | 117
+|  c=en | [[scratch]]
+|  c=fr | [[gratter]]
+|  c=de | [[kratzen]]
+|  c=it | [[graffiare]]
+|  c=es | [[arañar]], [[rascar]]
+|  c=nl | [[krabben]]
+|  c=sw | [[klia]]
+|  c=la | [[radere]]
+|- 
+|  i=No | 118
+|  c=en | [[dig]]
+|  c=fr | [[creuser]]
+|  c=de | [[graben]]
+|  c=it | [[scavare]]
+|  c=es | [[cavar]]
+|  c=nl | [[delven]]
+|  c=sw | [[gräva]]
+|  c=la | [[fodere]]
+|- 
+|  i=No | 119
+|  c=en | [[swim]] *
+|  c=fr | [[nager]]
+|  c=de | [[schwimmen]]
+|  c=it | [[nuotare]]
+|  c=es | [[nadar]]
+|  c=nl | [[zwemmen]]
+|  c=sw | [[simma]]
+|  c=la | [[natare]]
+|- 
+|  i=No | 120
+|  c=en | [[fly]] * (v.)
+|  c=fr | [[voler]]
+|  c=de | [[fliegen]]
+|  c=it | [[volare]]
+|  c=es | [[volar]]
+|  c=nl | [[vliegen]]
+|  c=sw | [[flyga]]
+|  c=la | [[volare]]
+|- 
+|  i=No | 121
+|  c=en | [[walk]] *
+|  c=fr | [[marcher]]
+|  c=de | [[gehen]]
+|  c=it | [[camminare]]
+|  c=es | [[caminar]]
+|  c=nl | [[lopen]], [[wandelen]]
+|  c=sw | [[gå]]
+|  c=la | [[gradi]]
+|- 
+|  i=No | 122
+|  c=en | [[come]] *
+|  c=fr | [[venir]]
+|  c=de | [[kommen]]
+|  c=it | [[venire]]
+|  c=es | [[venir]]
+|  c=nl | [[komen]]
+|  c=sw | [[komma]]
+|  c=la | [[venire]]
+|- 
+|  i=No | 123
+|  c=en | [[lie]] *
+|  c=fr | [[s]]'[[étendre]]
+|  c=de | [[liegen]]
+|  c=it | [[distendersi]]
+|  c=es | [[echarse]], [[acostarse]], [[tenderse]]
+|  c=nl | [[liegen]]
+|  c=sw | [[ligga]]
+|  c=la | [[iacere]]
+|- 
+|  i=No | 124
+|  c=en | [[sit]] *
+|  c=fr | [[s'asseoir]]
+|  c=de | [[setzen]]
+|  c=it | [[sedere]]
+|  c=es | [[sentarse]]
+|  c=nl | [[zitten]]
+|  c=sw | [[sitta]]
+|  c=la | [[sedere]]
+|- 
+|  i=No | 125
+|  c=en | [[stand]] *
+|  c=fr | [[se lever]]
+|  c=de | [[stehen]]
+|  c=it | [[stare]] [[in]] [[piedi]]
+|  c=es | [[estar de pie]]
+|  c=nl | [[staan]]
+|  c=sw | [[stå]]
+|  c=la | [[stare]]
+|- 
+|  i=No | 126
+|  c=en | [[turn]]
+|  c=fr | [[tourner]]
+|  c=de | [[drehen]]
+|  c=it | [[girare]]
+|  c=es | [[voltear]]
+|  c=nl | [[draaien]]
+|  c=sw | [[svänga]]
+|  c=la | [[vertere]]
+|- 
+|  i=No | 127
+|  c=en | [[fall]]
+|  c=fr | [[tomber]]
+|  c=de | [[fallen]]
+|  c=it | [[cadere]]
+|  c=es | [[caer]]
+|  c=nl | [[vallen]]
+|  c=sw | [[falla]]
+|  c=la | [[cadere]]
+|- 
+|  i=No | 128
+|  c=en | [[give]] *
+|  c=fr | [[donner]]
+|  c=de | [[geben]]
+|  c=it | [[dare]]
+|  c=es | [[dar]]
+|  c=nl | [[geven]]
+|  c=sw | [[ge]]
+|  c=la | [[dare]]
+|- 
+|  i=No | 129
+|  c=en | [[hold]]
+|  c=fr | [[tenir]]
+|  c=de | [[halten]]
+|  c=it | [[tenere]]
+|  c=es | [[sostener]]
+|  c=nl | [[houden]]
+|  c=sw | [[hålla]]
+|  c=la | [[tenere]]
+|- 
+|  i=No | 130
+|  c=en | [[squeeze]]
+|  c=fr | [[serrer]]
+|  c=de | [[quetschen]]
+|  c=it | [[spremere]]
+|  c=es | [[apretar]]
+|  c=nl | [[knijpen]]
+|  c=sw | [[klämma]]
+|  c=la | [[premere]]
+|- 
+|  i=No | 131
+|  c=en | [[rub]]
+|  c=fr | [[frotter]]
+|  c=de | [[reiben]]
+|  c=it | [[strofinare]]
+|  c=es | [[frotar]], [[restregar]]
+|  c=nl | [[wrijven]]
+|  c=sw | [[gnida]]
+|  c=la | [[fricare]]
+|- 
+|  i=No | 132
+|  c=en | [[wash]]
+|  c=fr | [[laver]]
+|  c=de | [[waschen]]
+|  c=it | [[lavare]]
+|  c=es | [[lavar]]
+|  c=nl | [[wassen]]
+|  c=sw | [[tvätta]]
+|  c=la | [[lavare]]
+|- 
+|  i=No | 133
+|  c=en | [[wipe]]
+|  c=fr | [[essuyer]]
+|  c=de | [[wischen]]
+|  c=it | [[asciugare]]
+|  c=es | [[limpiar]]
+|  c=nl | [[vegen]]
+|  c=sw | [[rensa]]
+|  c=la | [[tergere]]
+|- 
+|  i=No | 134
+|  c=en | [[pull]]
+|  c=fr | [[tirer]]
+|  c=de | [[ziehen]]
+|  c=it | [[tirare]]
+|  c=es | [[tirar]]
+|  c=nl | [[trekken]]
+|  c=sw | [[dra]]
+|  c=la | [[trahere]]
+|- 
+|  i=No | 135
+|  c=en | [[push]]
+|  c=fr | [[pousser]]
+|  c=de | [[drücken]]
+|  c=it | [[spingere]]
+|  c=es | [[empujar]]
+|  c=nl | [[duwen]]
+|  c=sw | [[trycka]]
+|  c=la | [[pellere]], [[urgere]]
+|- 
+|  i=No | 136
+|  c=en | [[throw]]
+|  c=fr | [[jeter]]
+|  c=de | [[werfen]]
+|  c=it | [[tirare]]
+|  c=es | [[tirar]]
+|  c=nl | [[werpen]], [[gooien]]
+|  c=sw | [[kasta]]
+|  c=la | [[iacere]]
+|- 
+|  i=No | 137
+|  c=en | [[tie]]
+|  c=fr | [[lier]]
+|  c=de | [[binden]]
+|  c=it | [[legare]]
+|  c=es | [[atar]]
+|  c=nl | [[binden]]
+|  c=sw | [[knyta]], [[binda]]
+|  c=la | [[stringere]], [[ligare]]
+|- 
+|  i=No | 138
+|  c=en | [[sew]]
+|  c=fr | [[coudre]]
+|  c=de | [[nähen]]
+|  c=it | [[cucire]]
+|  c=es | [[coser]]
+|  c=nl | [[naaien]]
+|  c=sw | [[sy]]
+|  c=la | [[suere]]
+|- 
+|  i=No | 139
+|  c=en | [[count]]
+|  c=fr | [[compter]]
+|  c=de | [[zählen]]
+|  c=it | [[contare]]
+|  c=es | [[contar]]
+|  c=nl | [[tellen]]
+|  c=sw | [[räkna]]
+|  c=la | [[numerare]]
+|- 
+|  i=No | 140
+|  c=en | [[say]] *
+|  c=fr | [[dire]]
+|  c=de | [[sagen]]
+|  c=it | [[dire]]
+|  c=es | [[decir]]
+|  c=nl | [[zeggen]]
+|  c=sw | [[säga]]
+|  c=la | [[dicere]]
+|- 
+|  i=No | 141
+|  c=en | [[sing]]
+|  c=fr | [[chanter]]
+|  c=de | [[singen]]
+|  c=it | [[cantare]]
+|  c=es | [[cantar]]
+|  c=nl | [[zingen]]
+|  c=sw | [[sjunga]]
+|  c=la | [[canere]]
+|- 
+|  i=No | 142
+|  c=en | [[play]]
+|  c=fr | [[jouer]]
+|  c=de | [[spielen]]
+|  c=it | [[giocare]]
+|  c=es | [[jugar]]
+|  c=nl | [[spelen]]
+|  c=sw | [[leka]], [[spela]]
+|  c=la | [[ludere]]
+|- 
+|  i=No | 143
+|  c=en | [[float]]
+|  c=fr | [[flotter]]
+|  c=de | [[schweben]]
+|  c=it | [[galleggiare]]
+|  c=es | [[flotar]]
+|  c=nl | [[zweven]]
+|  c=sw | [[flyta]]
+|  c=la | [[fluctuare]]
+|- 
+|  i=No | 144
+|  c=en | [[flow]]
+|  c=fr | [[couler]]
+|  c=de | [[fließen]]
+|  c=it | [[fluire]]
+|  c=es | [[fluir]]
+|  c=nl | [[vloeien]]
+|  c=sw | [[rinna]]
+|  c=la | [[fluere]]
+|- 
+|  i=No | 145
+|  c=en | [[freeze]]
+|  c=fr | [[geler]]
+|  c=de | [[frieren]]
+|  c=it | [[gelare]]
+|  c=es | [[helar]]
+|  c=nl | [[vriezen]]
+|  c=sw | [[frysa]]
+|  c=la | [[gelare]]
+|- 
+|  i=No | 146
+|  c=en | [[swell]]
+|  c=fr | [[gonfler]]
+|  c=de | [[schwellen]]
+|  c=it | [[gonfiare]]
+|  c=es | [[hincharse]]
+|  c=nl | [[zwellen]]
+|  c=sw | [[svälla]]
+|  c=la | [[inflare]]
+|- 
+|  i=No | 147
+|  c=en | [[sun]] *
+|  c=fr | [[soleil]]
+|  c=de | [[Sonne]]
+|  c=it | [[sole]]
+|  c=es | [[sol]]
+|  c=nl | [[zon]]
+|  c=sw | [[sol]]
+|  c=la | [[sol]]
+|- 
+|  i=No | 148
+|  c=en | [[moon]] *
+|  c=fr | [[lune]]
+|  c=de | [[Mond]]
+|  c=it | [[luna]]
+|  c=es | [[luna]]
+|  c=nl | [[maan]]
+|  c=sw | [[måne]]
+|  c=la | [[luna]]
+|- 
+|  i=No | 149
+|  c=en | [[star]] *
+|  c=fr | [[étoile]]
+|  c=de | [[Stern]]
+|  c=it | [[stella]]
+|  c=es | [[estrella]]
+|  c=nl | [[ster]]
+|  c=sw | [[stjärna]]
+|  c=la | [[stella]]
+|- 
+|  i=No | 150
+|  c=en | [[water]] *
+|  c=fr | [[eau]]
+|  c=de | [[Wasser]]
+|  c=it | [[acqua]]
+|  c=es | [[agua]]
+|  c=nl | [[water]]
+|  c=sw | [[vatten]]
+|  c=la | [[aqua]]
+|- 
+|  i=No | 151
+|  c=en | [[rain]] *
+|  c=fr | [[pluie]]
+|  c=de | [[Regen]]
+|  c=it | [[pioggia]]
+|  c=es | [[lluvia]]
+|  c=nl | [[regen]]
+|  c=sw | [[regn]]
+|  c=la | [[pluvia]]
+|- 
+|  i=No | 152
+|  c=en | [[river]]
+|  c=fr | [[rivière]]
+|  c=de | [[Fluß]]
+|  c=it | [[fiume]]
+|  c=es | [[río]]
+|  c=nl | [[rivier]]
+|  c=sw | [[flod]]
+|  c=la | [[fluvius]]
+|- 
+|  i=No | 153
+|  c=en | [[lake]]
+|  c=fr | [[lac]]
+|  c=de | [[See]]
+|  c=it | [[lago]]
+|  c=es | [[lago]]
+|  c=nl | [[lak]]
+|  c=sw | [[sjö]]
+|  c=la | [[lacus]]
+|- 
+|  i=No | 154
+|  c=en | [[sea]]
+|  c=fr | [[mer]]
+|  c=de | [[Meer]], [[See]]
+|  c=it | [[mare]]
+|  c=es | [[mar]]
+|  c=nl | [[zee]]
+|  c=sw | [[hav]]
+|  c=la | [[mare]]
+|- 
+|  i=No | 155
+|  c=en | [[salt]]
+|  c=fr | [[sel]]
+|  c=de | [[Salz]]
+|  c=it | [[sale]]
+|  c=es | [[sal]]
+|  c=nl | [[zout]]
+|  c=sw | [[salt]]
+|  c=la | [[sal]]
+|- 
+|  i=No | 156
+|  c=en | [[stone]] *
+|  c=fr | [[pierre]]
+|  c=de | [[Stein]]
+|  c=it | [[pietra]]
+|  c=es | [[piedra]]
+|  c=nl | [[steen]]
+|  c=sw | [[sten]]
+|  c=la | [[lapis]], [[petra]]
+|- 
+|  i=No | 157
+|  c=en | [[sand]] *
+|  c=fr | [[sable]]
+|  c=de | [[Sand]]
+|  c=it | [[sabbia]]
+|  c=es | [[arena]]
+|  c=nl | [[zand]]
+|  c=sw | [[sand]]
+|  c=la | [[arena]]
+|- 
+|  i=No | 158
+|  c=en | [[dust]]
+|  c=fr | [[poussière]]
+|  c=de | [[Staub]]
+|  c=it | [[polvere]]
+|  c=es | [[polvo]]
+|  c=nl | [[stof]]
+|  c=sw | [[damm]]
+|  c=la | [[pulvis]]
+|- 
+|  i=No | 159
+|  c=en | [[earth]] *
+|  c=fr | [[terre]]
+|  c=de | [[Erde]]
+|  c=it | [[terra]]
+|  c=es | [[tierra]]
+|  c=nl | [[aarde]]
+|  c=sw | [[jord]]
+|  c=la | [[terra]]
+|- 
+|  i=No | 160
+|  c=en | [[cloud]] *
+|  c=fr | [[nuage]]
+|  c=de | [[Wolke]]
+|  c=it | [[nuvola]]
+|  c=es | [[nube]]
+|  c=nl | [[wolk]]
+|  c=sw | [[moln]]
+|  c=la | [[nimbus]], [[nubes]]
+|- 
+|  i=No | 161
+|  c=en | [[fog]]
+|  c=fr | [[brouillard]]
+|  c=de | [[Nebel]]
+|  c=it | [[nebbia]]
+|  c=es | [[niebla]]
+|  c=nl | [[mist]], [[nevel]]
+|  c=sw | [[dimma]]
+|  c=la | [[caligo]], [[nebula]]
+|- 
+|  i=No | 162
+|  c=en | [[sky]]
+|  c=fr | [[ciel]]
+|  c=de | [[Himmel]]
+|  c=it | [[cielo]]
+|  c=es | [[cielo]]
+|  c=nl | [[lucht]]
+|  c=sw | [[himmel]]
+|  c=la | [[caelum]]
+|- 
+|  i=No | 163
+|  c=en | [[wind]]
+|  c=fr | [[vent]]
+|  c=de | [[Wind]]
+|  c=it | [[vento]]
+|  c=es | [[viento]]
+|  c=nl | [[wind]]
+|  c=sw | [[vind]]
+|  c=la | [[ventus]]
+|- 
+|  i=No | 164
+|  c=en | [[snow]]
+|  c=fr | [[neige]]
+|  c=de | [[Schnee]]
+|  c=it | [[neve]]
+|  c=es | [[nieve]]
+|  c=nl | [[sneeuw]]
+|  c=sw | [[snö]]
+|  c=la | [[nix]]
+|- 
+|  i=No | 165
+|  c=en | [[ice]]
+|  c=fr | [[glace]]
+|  c=de | [[Eis]]
+|  c=it | [[ghiaccio]]
+|  c=es | [[hielo]]
+|  c=nl | [[ijs]]
+|  c=sw | [[is]]
+|  c=la | [[glacies]]
+|- 
+|  i=No | 166
+|  c=en | [[smoke]] *
+|  c=fr | [[fumée]]
+|  c=de | [[Rauch]]
+|  c=it | [[fumo]]
+|  c=es | [[humo]]
+|  c=nl | [[rook]]
+|  c=sw | [[rök]]
+|  c=la | [[fumus]]
+|- 
+|  i=No | 167
+|  c=en | [[fire]] *
+|  c=fr | [[feu]]
+|  c=de | [[Feuer]]
+|  c=it | [[fuoco]]
+|  c=es | [[fuego]]
+|  c=nl | [[vuur]]
+|  c=sw | [[eld]]
+|  c=la | [[ignis]]
+|- 
+|  i=No | 168
+|  c=en | [[ashes]] *
+|  c=fr | [[cendres]]
+|  c=de | [[Asche]]
+|  c=it | [[ceneri]]
+|  c=es | [[cenizas]]
+|  c=nl | [[as]]
+|  c=sw | [[aska]]
+|  c=la | [[cineres]]
+|- 
+|  i=No | 169
+|  c=en | [[burn]] *
+|  c=fr | [[brûler]]
+|  c=de | [[brennen]]
+|  c=it | [[bruciare]]
+|  c=es | [[quemar]]
+|  c=nl | [[branden]]
+|  c=sw | [[brinna]]
+|  c=la | [[ardere]]
+|- 
+|  i=No | 170
+|  c=en | [[road]] *
+|  c=fr | [[route]]
+|  c=de | [[Straße]]
+|  c=it | [[strada]]
+|  c=es | [[camino]]
+|  c=nl | [[weg]]
+|  c=sw | [[väg]]
+|  c=la | [[via]]
+|- 
+|  i=No | 171
+|  c=en | [[mountain]] *
+|  c=fr | [[montagne]]
+|  c=de | [[Berg]]
+|  c=it | [[montagna]]
+|  c=es | [[montaña]]
+|  c=nl | [[berg]]
+|  c=sw | [[berg]]
+|  c=la | [[mons]]
+|- 
+|  i=No | 172
+|  c=en | [[red]] *
+|  c=fr | [[rouge]]
+|  c=de | [[rot]]
+|  c=it | [[rosso]]
+|  c=es | [[rojo]]
+|  c=nl | [[rode]]
+|  c=sw | [[röd]]
+|  c=la | [[ruber]]
+|- 
+|  i=No | 173
+|  c=en | [[green]] *
+|  c=fr | [[vert]]
+|  c=de | [[grün]]
+|  c=it | [[verde]]
+|  c=es | [[verde]]
+|  c=nl | [[groen]]
+|  c=sw | [[grön]]
+|  c=la | [[viridis]]
+|- 
+|  i=No | 174
+|  c=en | [[yellow]] *
+|  c=fr | [[jaune]]
+|  c=de | [[gelb]]
+|  c=it | [[giallo]]
+|  c=es | [[amarillo]]
+|  c=nl | [[geel]]
+|  c=sw | [[gul]]
+|  c=la | [[flavus]]
+|- 
+|  i=No | 175
+|  c=en | [[white]] *
+|  c=fr | [[blanc]]
+|  c=de | [[weiß]]
+|  c=it | [[bianco]]
+|  c=es | [[blanco]]
+|  c=nl | [[witte]]
+|  c=sw | [[vit]]
+|  c=la | [[albus]], [[candidus]]
+|- 
+|  i=No | 176
+|  c=en | [[black]] *
+|  c=fr | [[noir]]
+|  c=de | [[schwarz]]
+|  c=it | [[nero]]
+|  c=es | [[negro]]
+|  c=nl | [[zwart]]
+|  c=sw | [[svart]]
+|  c=la | [[niger]], [[ater]], [[fuscus]]
+|- 
+|  i=No | 177
+|  c=en | [[night]] *
+|  c=fr | [[nuit]]
+|  c=de | [[Nacht]]
+|  c=it | [[notte]]
+|  c=es | [[noche]]
+|  c=nl | [[nacht]]
+|  c=sw | [[natt]]
+|  c=la | [[nox]]
+|- 
+|  i=No | 178
+|  c=en | [[day]]
+|  c=fr | [[jour]]
+|  c=de | [[Tag]]
+|  c=it | [[giorno]]
+|  c=es | [[día]]
+|  c=nl | [[dag]]
+|  c=sw | [[dag]]
+|  c=la | [[dies]]
+|- 
+|  i=No | 179
+|  c=en | [[year]]
+|  c=fr | [[an]], [[année]]
+|  c=de | [[Jahr]]
+|  c=it | [[anno]]
+|  c=es | [[año]]
+|  c=nl | [[jaar]]
+|  c=sw | [[år]]
+|  c=la | [[annus]]
+|- 
+|  i=No | 180
+|  c=en | [[warm]] *
+|  c=fr | [[chaud]]
+|  c=de | [[warm]]
+|  c=it | [[caldo]]
+|  c=es | [[cálido]], [[tibio]]
+|  c=nl | [[warm]]
+|  c=sw | [[varm]]
+|  c=la | [[calidus]]
+|- 
+|  i=No | 181
+|  c=en | [[cold]] *
+|  c=fr | [[froid]]
+|  c=de | [[kalt]]
+|  c=it | [[freddo]]
+|  c=es | [[frío]]
+|  c=nl | [[koud]]
+|  c=sw | [[kall]]
+|  c=la | [[frigidus]]
+|- 
+|  i=No | 182
+|  c=en | [[full]] *
+|  c=fr | [[plein]]
+|  c=de | [[volle]]
+|  c=it | [[pieno]]
+|  c=es | [[lleno]]
+|  c=nl | [[volle]]
+|  c=sw | [[full]]
+|  c=la | [[plenus]]
+|- 
+|  i=No | 183
+|  c=en | [[new]] *
+|  c=fr | [[nouveau]]
+|  c=de | [[neu]]
+|  c=it | [[nuovo]]
+|  c=es | [[nuevo]]
+|  c=nl | [[nieuw]]
+|  c=sw | [[ny]]
+|  c=la | [[novus]]
+|- 
+|  i=No | 184
+|  c=en | [[old]]
+|  c=fr | [[vieux]]
+|  c=de | [[alt]]
+|  c=it | [[vecchio]]
+|  c=es | [[viejo]]
+|  c=nl | [[oud]]
+|  c=sw | [[gammal]]
+|  c=la | [[vetus]]
+|- 
+|  i=No | 185
+|  c=en | [[good]] *
+|  c=fr | [[bon]]
+|  c=de | [[gut]]
+|  c=it | [[buono]]
+|  c=es | [[bueno]]
+|  c=nl | [[goed]]
+|  c=sw | [[bra]]
+|  c=la | [[bonus]]
+|- 
+|  i=No | 186
+|  c=en | [[bad]]
+|  c=fr | [[mauvais]]
+|  c=de | [[schlecht]]
+|  c=it | [[cattivo]]
+|  c=es | [[malo]]<br>
+|  c=nl | [[slecht]]
+|  c=sw | [[dålig]]
+|  c=la | [[malus]]
+|- 
+|  i=No | 187
+|  c=en | [[rotten]]
+|  c=fr | [[pourri]]
+|  c=de | [[verrottet]]
+|  c=it | [[marcio]]
+|  c=es | [[podrido]]
+|  c=nl | [[rotten]]
+|  c=sw | [[rutten]]
+|  c=la | [[puter]], [[putridus]]
+|- 
+|  i=No | 188
+|  c=en | [[dirty]]
+|  c=fr | [[sale]]
+|  c=de | [[schmutzig]]
+|  c=it | [[sporco]]
+|  c=es | [[sucio]]
+|  c=nl | [[vies]]
+|  c=sw | [[smutsig]]
+|  c=la | [[sordidus]]
+|- 
+|  i=No | 189
+|  c=en | [[straight]]
+|  c=fr | [[droit]]
+|  c=de | [[gerade]]
+|  c=it | [[diritto]]
+|  c=es | [[recto]]
+|  c=nl | [[recht]]
+|  c=sw | [[rak]]
+|  c=la | [[rectus]]
+|- 
+|  i=No | 190
+|  c=en | [[round]] *
+|  c=fr | [[rond]]
+|  c=de | [[rund]]
+|  c=it | [[rotondo]]
+|  c=es | [[redondo]]
+|  c=nl | [[rond]]
+|  c=sw | [[rund]]
+|  c=la | [[rotundus]]
+|- 
+|  i=No | 191
+|  c=en | [[sharp]]
+|  c=fr | [[tranchant]], [[pointu]], [[aigu]]
+|  c=de | [[scharf]]
+|  c=it | [[aguzzo]], [[affilato]]
+|  c=es | [[afilado]]
+|  c=nl | [[scherp]]
+|  c=sw | [[vass]]
+|  c=la | [[acer]]
+|- 
+|  i=No | 192
+|  c=en | [[dull]]
+|  c=fr | [[émoussé]]
+|  c=de | [[stumpf]]
+|  c=it | [[noioso]]
+|  c=es | [[desafilado]]
+|  c=nl | [[stomp]], [[bot]]
+|  c=sw | [[slö]]
+|  c=la | [[hebes]]
+|- 
+|  i=No | 193
+|  c=en | [[smooth]]
+|  c=fr | [[lisse]]
+|  c=de | [[glatt]]
+|  c=it | [[liscio]]
+|  c=es | [[suave]], [[liso]]
+|  c=nl | [[glad]]
+|  c=sw | [[len]], [[slät]]
+|  c=la | [[levis]]
+|- 
+|  i=No | 194
+|  c=en | [[wet]]
+|  c=fr | [[mouillé]]
+|  c=de | [[nass]], [[feucht]]
+|  c=it | [[bagnato]]
+|  c=es | [[mojado]]
+|  c=nl | [[nat]]
+|  c=sw | [[våt]], [[blöt]]
+|  c=la | [[umidus]]
+|- 
+|  i=No | 195
+|  c=en | [[dry]] *
+|  c=fr | [[sec]]
+|  c=de | [[trocken]]
+|  c=it | [[asciutto]], [[secco]]
+|  c=es | [[seco]]
+|  c=nl | [[droog]]
+|  c=sw | [[torr]]
+|  c=la | [[siccus]]
+|- 
+|  i=No | 196
+|  c=en | [[correct]]
+|  c=fr | [[juste]], [[correct]]
+|  c=de | [[richtig]]
+|  c=it | [[corretto]]
+|  c=es | [[correcto]]
+|  c=nl | [[richting]], [[correct]]
+|  c=sw | [[rätt]], [[riktig]]
+|  c=la | [[rectus]]
+|- 
+|  i=No | 197
+|  c=en | [[near]]
+|  c=fr | [[proche]]
+|  c=de | [[nah]],<br>[[nahe]]
+|  c=it | [[vicino]]
+|  c=es | [[cerca]]
+|  c=nl | [[naar]]
+|  c=sw | [[nära]]
+|  c=la | [[propinquus]]
+|- 
+|  i=No | 198
+|  c=en | [[far]]
+|  c=fr | [[loin]]
+|  c=de | [[weit]], [[fern]]
+|  c=it | [[lontano]]
+|  c=es | [[lejos]]
+|  c=nl | [[ver]]
+|  c=sw | [[långt bort]], [[fjärran]]
+|  c=la | [[longinquus]]
+|- 
+|  i=No | 199
+|  c=en | [[right]]
+|  c=fr | [[à]] [[droite]]
+|  c=de | [[rechts]]
+|  c=it | [[destra]]
+|  c=es | [[derecha]]
+|  c=nl | [[rechts]]
+|  c=sw | [[höger]]
+|  c=la | [[dexter]]
+|- 
+|  i=No | 200
+|  c=en | [[left]]
+|  c=fr | [[à]] [[gauche]]
+|  c=de | [[links]]
+|  c=it | [[sinistra]]
+|  c=es | [[izquierda]]
+|  c=nl | [[links]]
+|  c=sw | [[vänster]]
+|  c=la | [[sinister]]
+|- 
+|  i=No | 201
+|  c=en | [[at]]
+|  c=fr | [[à]]
+|  c=de | [[bei]], [[an]]
+|  c=it | [[a]]
+|  c=es | [[a]], [[en]], [[ante]]
+|  c=nl | [[aan]], [[te]], [[bij]]
+|  c=sw | [[hos]], [[vid]]
+|  c=la | [[ad]]
+|- 
+|  i=No | 202
+|  c=en | [[in]]
+|  c=fr | [[dans]]
+|  c=de | [[in]]
+|  c=it | [[in]]
+|  c=es | [[en]]
+|  c=nl | [[in]]
+|  c=sw | [[i]]
+|  c=la | [[in]]
+|- 
+|  i=No | 203
+|  c=en | [[with]]
+|  c=fr | [[avec]]
+|  c=de | [[mit]]
+|  c=it | [[con]]
+|  c=es | [[con]]
+|  c=nl | [[met]]
+|  c=sw | [[med]]
+|  c=la | [[cum]]
+|- 
+|  i=No | 204
+|  c=en | [[and]]
+|  c=fr | [[et]]
+|  c=de | [[und]]
+|  c=it | [[e]]
+|  c=es | [[y]]
+|  c=nl | [[en]]
+|  c=sw | [[och]]
+|  c=la | [[et]]
+|- 
+|  i=No | 205
+|  c=en | [[if]]
+|  c=fr | [[si]]
+|  c=de | [[wenn]], [[falls]], [[ob]]
+|  c=it | [[se]]
+|  c=es | [[si]]
+|  c=nl | [[als]], [[indien]]
+|  c=sw | [[om]]
+|  c=la | [[si]]
+|- 
+|  i=No | 206
+|  c=en | [[because]]
+|  c=fr | [[parce que]]
+|  c=de | [[weil]]
+|  c=it | [[perché]]
+|  c=es | [[porque]]
+|  c=nl | [[omdat]]
+|  c=sw | [[eftersom]], [[ty]]
+|  c=la | [[quia]], [[quoniam]]
+|- 
+|  i=No | 207
+|  c=en | [[name]] *
+|  c=fr | [[nom]]
+|  c=de | [[Name]]
+|  c=it | [[nome]]
+|  c=es | [[nombre]]
+|  c=nl | [[naam]]
+|  c=sw | [[namn]]
+|  c=la | [[nomen]]
+|}
+
+
+***synonym***
+synonym: 
+
+===Adjective===
+{{de-adj|-}}
+
+# [[synonymous]]
+
+----
+
+
+===Tea===
+Wiktionary:Tea room: 
+Wiktionary:Tea room: 
+
+German has a few ways of making nouns from verbs..</br>
+1.1 Das Verzieren ist eine hohe Kunst. – "(The) adorning is a high art."</br>
+1.2 Die Verzierung ist eine hohe Kunst – same as above </br>
+2. Die Verzierung an der Jacke passt. – "The adornment at the jacket fits."</br>
+3.1 Die Verzierung war eine mühselige Arbeit. – "(The) adornment was a tiring task." </br>
+3.2 Das Verzieren war eine mühselige Arbeit. –  same as above  </br>
+I think that are all the uses. Am I using the right terminology if I call 1+3.2 gerunds and 2 a deverbal noun? (3.1 should be interpretable as both.)[[User:Korn|ᚲᛟᚱᚾ]] ([[User talk:Korn|talk]]) 12:31, 10 March 2012 (UTC)
+
+
+Wiktionary:Tea room: 
+
+I have read several elder (~1900) Grammars mentioning the existence of true (=pronounced) geminates, and none gives a description, assuming the reader is familiar with long consonants. But there are two systems, with for example a  /p:/ being either /p.p/ (as in modern Polish) or ambisyllabic  /p̚p/, as it is - I assume - in modern day Swedish. Does anybody know about West-Germanic languages? (Any language, at any point of history, really.)[[User:Korn|Korn]] ([[User talk:Korn|talk]]) 14:41, 9 April 2012 (UTC)
+: Proto-Germanic had true geminates, and presumably so did all the 'old' Germanic languages as well. Many Germanic languages (if not all) experienced lengthening of vowels in open syllables, which was conditioned by consonant length as well, since a following geminate closed a syllable and therefore kept the vowel short. The dating of the lengthening can be used as evidence that geminates were retained until that time. So they were retained in Dutch until sometime during the Middle Dutch period (1200-1500), after the lengthening. {{User:CodeCat/signature}} 21:44, 9 April 2012 (UTC)
+::But what was the pronunciation (of the stops, specifically)? Two separate full-consonants with release or a single release with a longer held closing beforehand?[[User:Korn|Korn]] ([[User talk:Korn|talk]]) 14:39, 10 April 2012 (UTC)
+::: I would say that they were single long consonants. Germanic also had an alternation between voiced stops and fricatives, and apparently they were fricatives when single and plosives when geminated. So -ada- was [ɑðɑ] but -adda- was [ɑdːɑ]. {{User:CodeCat/signature}} 17:01, 10 April 2012 (UTC)
+::::The same is true for GML/NDS. So the Swedish system it is. Thanks.[[Special:Contributions/193.174.122.76|193.174.122.76]] 11:39, 11 April 2012 (UTC)
+:::::Polish does not have [[w:Gemination|geminates]]; double consonants are something completely different and only occur at morpheme boundaries. Check Finnish or Hungarian for typical geminates. That said, the Proto-Germanic system does seem to have been like Swedish or Italian because I do not remember any cases of long vowel + long consonant the way they can be combined in Finnish, for example. --[[User:Florian Blaschke|Florian Blaschke]] ([[User talk:Florian Blaschke|talk]]) 16:27, 20 April 2012 (UTC)
+:::::: That is mostly because of a sound change in early Proto-Germanic. According to that change, geminates were de-geminated when following a long syllable (one with a long vowel or diphthong). Before that time, an 'overlong' syllable like -ōss- or -aiss- could have existed, but it was simplified to -ōs- and -ais-. This happened in the word {{termx|haisiz|lang=gem-pro}} for example. {{User:CodeCat/signature}} 16:50, 20 April 2012 (UTC)
+:::::::Ah, good point; Latin has an analogous shortening. Are you familiar with [[w:Kluge's law]], by the way? It would also have operated after long vowels, in principle. The shortening would have followed Kluge's law, then. --[[User:Florian Blaschke|Florian Blaschke]] ([[User talk:Florian Blaschke|talk]]) 17:24, 20 April 2012 (UTC)
+
+
+===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)
+
+***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]]
+***Uhr***
+Uhr: 
+
+===Pronunciation===
+* {{IPA|/ʔuːɐ̯/|lang=de}}
+* {{audio|De-Uhr.ogg|audio (Germany)}}
+* {{audio|De-at-Uhr.ogg|audio (Austria)}}
+* {{homophones|ur-|Ur}}
+
+===Noun===
+{{de-noun|g=f|plural=Uhren}}
+
+# [[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====
+{{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]]
+***um***
+um: 
+
+===Etymology===
+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
+
+----
+
+
+***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]]
+***urban***
+urban: 
+
+===Adjective===
+{{de-adj|comparative=urbaner|superlative=urbansten}}
+
+# [[urban#English|urban]]
+
+====Synonyms====
+* [[städtisch]]
+
+----
+
+
+***wage***
+wage: 
+
+===Verb===
+{{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]]
+***war***
+war: 
+
+===Pronunciation===
+* {{IPA|/vaːɐ̯/|lang=de}}
+* {{audio|De-war.ogg|audio}}
+* {{homophones|wahr|lang=de}}
+
+===Verb===
+'''war'''
+
+# {{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===
+{{head|nds|adjective}}
+
+# {{context|in some dialects|lang=nds}} [[true]]
+
+----
+
+
+war: 
+
+===Adjective===
+'''wār'''
+
+# [[true]]
+
+[[Category:Old High German adjectives]]
+
+----
+
+
+===Wiktionary===
+Wiktionary:Resources for translators: 
+* [http://dict.leo.org/ Leo] - German <-> English plus 5 other languages, hosted by Technical University Munich (German interface)
+* [http://www.woerterbuch-uebersetzung.de/ Wörterbuch Übersetzung] - German <-> English (German interface)
+
+Wiktionary:Tea room: 
+Wiktionary:Tea room: 
+
+German has a few ways of making nouns from verbs..</br>
+1.1 Das Verzieren ist eine hohe Kunst. – "(The) adorning is a high art."</br>
+1.2 Die Verzierung ist eine hohe Kunst – same as above </br>
+2. Die Verzierung an der Jacke passt. – "The adornment at the jacket fits."</br>
+3.1 Die Verzierung war eine mühselige Arbeit. – "(The) adornment was a tiring task." </br>
+3.2 Das Verzieren war eine mühselige Arbeit. –  same as above  </br>
+I think that are all the uses. Am I using the right terminology if I call 1+3.2 gerunds and 2 a deverbal noun? (3.1 should be interpretable as both.)[[User:Korn|ᚲᛟᚱᚾ]] ([[User talk:Korn|talk]]) 12:31, 10 March 2012 (UTC)
+
+
+Wiktionary:Tea room: 
+
+I have read several elder (~1900) Grammars mentioning the existence of true (=pronounced) geminates, and none gives a description, assuming the reader is familiar with long consonants. But there are two systems, with for example a  /p:/ being either /p.p/ (as in modern Polish) or ambisyllabic  /p̚p/, as it is - I assume - in modern day Swedish. Does anybody know about West-Germanic languages? (Any language, at any point of history, really.)[[User:Korn|Korn]] ([[User talk:Korn|talk]]) 14:41, 9 April 2012 (UTC)
+: Proto-Germanic had true geminates, and presumably so did all the 'old' Germanic languages as well. Many Germanic languages (if not all) experienced lengthening of vowels in open syllables, which was conditioned by consonant length as well, since a following geminate closed a syllable and therefore kept the vowel short. The dating of the lengthening can be used as evidence that geminates were retained until that time. So they were retained in Dutch until sometime during the Middle Dutch period (1200-1500), after the lengthening. {{User:CodeCat/signature}} 21:44, 9 April 2012 (UTC)
+::But what was the pronunciation (of the stops, specifically)? Two separate full-consonants with release or a single release with a longer held closing beforehand?[[User:Korn|Korn]] ([[User talk:Korn|talk]]) 14:39, 10 April 2012 (UTC)
+::: I would say that they were single long consonants. Germanic also had an alternation between voiced stops and fricatives, and apparently they were fricatives when single and plosives when geminated. So -ada- was [ɑðɑ] but -adda- was [ɑdːɑ]. {{User:CodeCat/signature}} 17:01, 10 April 2012 (UTC)
+::::The same is true for GML/NDS. So the Swedish system it is. Thanks.[[Special:Contributions/193.174.122.76|193.174.122.76]] 11:39, 11 April 2012 (UTC)
+:::::Polish does not have [[w:Gemination|geminates]]; double consonants are something completely different and only occur at morpheme boundaries. Check Finnish or Hungarian for typical geminates. That said, the Proto-Germanic system does seem to have been like Swedish or Italian because I do not remember any cases of long vowel + long consonant the way they can be combined in Finnish, for example. --[[User:Florian Blaschke|Florian Blaschke]] ([[User talk:Florian Blaschke|talk]]) 16:27, 20 April 2012 (UTC)
+:::::: That is mostly because of a sound change in early Proto-Germanic. According to that change, geminates were de-geminated when following a long syllable (one with a long vowel or diphthong). Before that time, an 'overlong' syllable like -ōss- or -aiss- could have existed, but it was simplified to -ōs- and -ais-. This happened in the word {{termx|haisiz|lang=gem-pro}} for example. {{User:CodeCat/signature}} 16:50, 20 April 2012 (UTC)
+:::::::Ah, good point; Latin has an analogous shortening. Are you familiar with [[w:Kluge's law]], by the way? It would also have operated after long vowels, in principle. The shortening would have followed Kluge's law, then. --[[User:Florian Blaschke|Florian Blaschke]] ([[User talk:Florian Blaschke|talk]]) 17:24, 20 April 2012 (UTC)
+
+
+***wolf***
+wolf: 
+
+===Noun===
+'''wolf''' {{m}}
+
+# [[#English|wolf]]
+
+[[Category:Middle High German nouns]]
+[[Category:gmh:Mammals]]
+
+----
+
+
+***zwei***
+zwei: 
+
+===Number===
+{{head|gsw|number}}
+
+# {{cardinal|lang=gsw}} [[two]]
+
+----
+
+
+zwei: 
+{{cardinalbox|de|1|2|3|eins|drei|ord=zweite}}
+
+===Etymology===
+From {{etyl|goh|de}} {{term|zwene|zwēne|lang=goh}}.
+
+===Pronunciation===
+* {{IPA|/tsvaɪ̯/|lang=de}}
+* {{audio|De-zwei.ogg|audio}}
+
+===Numeral===
+{{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]]
+
+Index: EN EN->DE
+
diff --git a/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text b/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text
new file mode 100644 (file)
index 0000000..c8618de
--- /dev/null
@@ -0,0 +1,20156 @@
+dictInfo=SomeWikiDataWholeSection
+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====
+{{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====
+{{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=====
+{{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]].
+
+=====Synonyms=====
+* {{sense|physics|angstrom}} [[Å]]
+
+=====Derived terms=====
+* {{sense|weaponry|atom}} [[A-bomb]]
+
+====Statistics====
+* {{rank|little|now|then|79|A|should|can|made}}
+
+----
+
+
+***adjectival***
+adjectival: 
+
+===Etymology===
+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}}
+* Catalan: {{t+|ca|adjectiu}}
+* Croatian: {{t-|hr|pridjevski|alt=prídjevskī}}
+* Czech: {{t|cs|adjektivní}}
+* Dutch: {{t-|nl|bijvoeglijk}}
+* Finnish: [[adjektiivi]]-, [[adjektiivinen]]
+* French: {{t+|fr|adjectival}}
+* German: {{t|de|adjektivisch}}, {{t|de|Adjektiv}}-
+* Interlingua: [[adjective]], [[adjectival]]
+{{trans-mid}}
+* Manx: {{t|gv|marennymagh}}
+* Novial: [[adjektivi]], [[adjektival]]
+* Portuguese: [[adjetivo]] {{qualifier|Brazil}},
+* Romanian: {{t-|ro|adjectival}}
+* 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 [[#adjectival|adjectival]] phrase or clause.
+
+===References===
+<references/>
+
+----
+
+
+***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.
+
+===Pronunciation===
+* {{audio|En-us-adjective.ogg|Audio (US)}}
+
+===Adjective===
+{{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}}
+{{trans-mid}}
+* Japanese: {{t|ja|非独立性|alt=非独立性の}}, {{t|ja|依存性|alt=依存性の}}
+{{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|نعت|tr=na3t}}, {{t-|ar|صفة|f|tr=Sí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|прыметнік|tr=prymetnik|xs=Belarusian}}
+* Bengali: {{t|bn|বিশেষণ|tr=bisheshawn|sc=Beng|xs=Bengali}}
+* {{trreq|bpy}}
+* Breton: {{t|br|anv-gwan|xs=Breton}}
+* Bulgarian: [[прилагателно име]] (prilagátelno íme) {{n}}
+* Burmese: {{t|my|နာမဝိသေသန|tr=nama witheithana|sc=Mymr|xs=Burmese}}
+* {{trreq|bua}}
+* Catalan: {{t+|ca|adjectiu|m}}
+* {{trreq|ceb}}
+* Chechen: {{tø|ce|билгалдош}}
+* Chinese:
+*: Cantonese: {{tø|yue|形容詞|sc=Hani|xs=Cantonese}}
+*: {{trreq|gan}}
+*: {{trreq|hak}}
+*: Mandarin: {{zh-ts|[[形容詞]]|[[形容词]]}} (xíngróngcí)
+*: {{trreq|cdo}}
+*: Min Nan: [[hêng-iông-sû]]
+* Chuvash: {{tø|cv|паллă ячĕ|sc=Cyrl|xs=Chuvash}}
+* Cornish: {{t|kw|hanow gwan|m}}
+* {{trreq|co}}
+* Crimean Tatar: {{tø|crh|sıfat}}
+* Croatian: {{t+|hr|pridjev|m}}
+* 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: [[ზედსართავი სახელი]] (zedsart‘avi saxeli)
+* German: {{t+|de|Adjektiv|n}}, {{t+|de|Eigenschaftswort|n}}
+* Greek: {{t+|el|επίθετο|n|tr=epítheto}}
+* Hebrew: {{t-|he|שם תואר}}
+* 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}}
+{{trans-mid}}
+* {{trreq|jv}}
+* Kashubian: [[przëdownik]] {{m}}
+* Kazakh: {{t|kk|сын есім|sc=Cyrl|xs=Kazakh}}
+* Khmer: {{t|km|គុណនាម|tr=kunnaneam|sc=Khmr}}
+* Korean: [[형용사]] (形容詞, hyeong-yongsa)
+* {{trreq|ku}}
+* 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|നാമവിശേഷണം|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|ବିଶେଷଣ|sc=Orya}}
+* Persian: {{fa-Arab|[[صفت]]}} (sefat)
+* 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}}
+* 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|сифат|sc=Cyrl}}
+* Telugu: [[విశేషణము]] (viSEshaNamu)
+* Thai: {{t|th|คำคุณศัพท์|tr=kam koon sàp}}
+* Turkish: {{t+|tr|sıfat}}, {{t|tr|ön ad}}
+* Ukrainian: {{t+|uk|прикметник|m|xs=Ukrainian}}
+* Upper Sorbian: [[adjektiw]] {{m}}
+* Urdu: {{t-|ur|بشیشن|m|tr=bišešan|xs=Urdu}}, {{t-|ur|صفت|f|tr=sifat|xs=Urdu}}
+* 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]]
+
+----
+
+
+***alphabetical***
+alphabetical: 
+
+===Etymology===
+{{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===
+{{en-adj|-}}
+
+# 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|inf=[[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]] {{italbrac|coarse slang}}, [[pour]], [[stream]], [[teem]]
+
+====Translations====
+{{trans-top|to rain very heavily}}
+* Arabic: {{t|ar|إنها تمطر بغزارة|tr='innahaa tumTir bi-ghazaara|sc=Arab}}
+* [[Catalan]]: [[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: [[pijpenstelen regenen]], 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|βρέχει με το τουλούμι}}
+* Icelandic: {{t|is|vera mígandi rigning}}, {{t|is|rigna eldi og brennisteini}}
+{{trans-mid}}
+* [[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]]
+***antidisestablishmentarianism***
+antidisestablishmentarianism: 
+{{wikipedia}}
+===Etymology===
+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===
+{{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]]
+***antonym***
+antonym: 
+
+===Etymology===
+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}}
+* 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}}
+{{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}}
+* 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}}
+
+----
+
+
+===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ʃ}}
+| <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ʒ}}
+| <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'''ot]], [[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.-->
+
+
+===apples===
+apples and pears: 
+
+===Noun===
+{{en-noun|sg=[[apples]] and [[pears]]|-}}
+
+# {{Cockney rhyming slang}} [[stairs]]
+***April***
+April: 
+{{wikipedia}}
+
+===Etymology===
+{{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 Greek ''[[Αφροδίτη]]'' (Afrodíte), Venus
+
+===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 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: {{Cyrl|[[мшаҧы]]}} {{IPAchar|(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: {{Arab|[[ابريل|أبْرِيل]]}} (’abrīl) {{m}}, {{Arab|[[نيسان|نِيسَانٌ]]}} (nisān) {{m}}
+* Aragonese: [[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: [[apiril]]
+* Belarusian: {{t+|be|красавік|tr=krasavik|xs=Belarusian}}
+* Bengali: {{t-|bn|এপ্রিল|sc=Beng|xs=Bengali}}
+* Bislama: {{t|bi|epril}}
+* Bosnian: {{t-|bs|april|m}}
+* Breton: {{t+|br|Ebrel|xs=Breton}}, miz Ebrel
+* Bulgarian: {{t+|bg|април|tr=apríl}}
+* Burmese: {{t|my|ဧပြီ|sc=Mymr|tr=ebyi}}
+* Catalan: [[abril]] {{m}}
+* Cherokee: {{t|chr|ᎧᏬᏂ|tr=Kawoni|sc=Cher}}
+* Chinese: [[四月]] (sìyuè)
+* Cornish: [[Ebrel]], [[mys]] Ebrel
+* Crimean Tatar: [[aprel]]
+* Croatian: {{t+|hr|travanj|m}}, {{t+|hr|april|m}}
+* 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: [[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: [[avrîl]]
+* Galician: [[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: [[אפריל|אַפְּרִיל]] (apríl) {{m}}
+* Hindi: [[अप्रैल]] (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: [[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=しがつ, shigatsú}}, {{t+|ja|卯月|tr=うづき, uzuki}}
+* Javanese: [[april]]
+* Kabuverdianu:
+*: [[Badiu]]/[[ALUPEC]] or [[ALUPEK]]: [[abril]]
+*: [[São Vicente]]: [[ébril]]
+* Kannada: [[ಎಪ್ರಿಲ್]]
+* Kazakh: {{t|kk|сәуір|tr=säwir|sc=Cyrl}}
+* Khmer: {{Khmr|[[មេសា]]}} (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: [[April#Limburgish|April]]
+* Lithuanian: {{t+|lt|balandis|m|xs=Lithuanian}}
+* Livonian: [[april]], [[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: [[äperira]]
+* Marathi: [[एप्रिल]] (epril)
+* Montagnais: {{tø|moe|shiship-pishimᵘ}}
+* Navajo: {{tø|nv|Tʼą́ą́chil}}
+* Neapolitan: [[abbrile]]
+* Norwegian: {{t+|no|april}}
+* Novial: [[aprile]]
+* Occitan: {{t|oc|abril|m}}
+* Ojibwe: [[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: {{fa-Arab|[[آوریل]]}} (âvrîl)
+* Polish: {{t+|pl|kwiecień|m}}
+* Portuguese: {{t+|pt|abril|m}}
+* Romanian: {{t+|ro|aprilie}}, {{qualifier|pop}} {{t+|ro|prier}}
+* Romansch: {{t|rm|avrel|m}}
+* Russian: {{t+|ru|апрель|m|tr=aprél’}}
+* Sami: [[cuoŋománnu]]
+* Samoan: {{t|sm|aperila}}
+* Sanskrit: [[आंग्लवर्षस्य चतुर्थमास]] (āṅglavarṣasya caturthamāsaḥ)
+* Scots: {{tø|sco|Aprile|xs=Scots}}
+* Scottish Gaelic: {{t-|gd|Giblean|m|xs=Scottish Gaelic}}
+* Serbian:
+*: Cyrillic: {{t+|sr|април|m|sc=Cyrl}}
+*: Roman: [[april#Serbian|april]] {{m}}, [[travanj]] {{m}}
+* Sicilian: [[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: {{Thai|[[เมษายน]]}} (meh sáá yohn)
+* Tok Pisin: [[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: {{ug-Arab|[[ئاپريل]]}} (april)
+* Vietnamese: {{t|vi|tháng tư}} [月四, 月4]
+* Volapük: {{t|vo|prilul}}
+* Võro: [[mahlakuu]]
+* Walloon: [[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]]
+
+----
+
+
+***august***
+august: 
+
+===Pronunciation===
+* {{a|RP}} {{IPA|/ɔːˈɡʌst/}}
+* {{a|US}} {{IPA|/ɔːˈɡʌst/|/ɑːˈɡʌst/}}
+* {{audio|en-us-august.ogg|Audio (US)}}
+
+===Etymology 1===
+From {{etyl|la}} {{term|augustus||majestic, venerable|lang=la}}.
+
+====Adjective====
+{{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]]
+
+----
+
+
+***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}}
+
+===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|buk||baked|lang=de}}. More at {{l|en|bake}}.
+
+====Verb====
+{{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|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: {{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}}
+* Macedonian: {{t-|mk|книга|f|tr=kníga}}
+{{trans-mid}}
+* 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}}
+{{trans-mid}}
+* Greek: {{t+|el|στοίχημα|n}}
+* 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}}
+{{trans-mid}}
+* Italian: {{t-|it|blocchetto|m}}
+* 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}}
+* Macedonian: {{t-|mk|книга|f|tr=kníga}}, {{t-|mk|том|m|tr=tom}}
+{{trans-mid}}
+* 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}}
+* 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}}
+{{trans-mid}}
+* Greek: ([[λογιστικά]]) [[βιβλία]] {{n|p}}
+* 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|ψηφιακό βιβλίο}}
+{{trans-mid}}
+* Indonesian: {{t|id|buku elektronik}}
+* 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=====
+{{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}}
+* 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}}
+* Polish: {{t|pl|ukarać}}
+{{trans-mid}}
+* 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}}
+{{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|σημειώνω}}
+{{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)
+* {{ttbc|ms}}: {{t+|ms|buku|xs=Malay}}
+{{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===
+{{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]]
+[[uk:book]]
+[[vi:book]]
+[[zh: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}}
+* 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}}
+* 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}}
+* Navajo: {{tø|nv|dibéłchíʼí}},  {{tø|nv|yishtłʼizh}}
+* Norwegian: {{t+|no|brun}}
+* Ossetian: {{tø|os|морæ|tr=moræ}}
+* 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===
+{{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===
+{{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]]
+===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]]
+***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}}, both from {{proto|Germanic|kattuz|cat|lang=en}}, 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 Dutch {{term|kat|lang=nl}}, German {{term|Katze|lang=de}}, Swedish {{term|katt|lang=sv}}.
+
+====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 Felidae}} [[felid]], [[feline]]
+* {{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}}
+* 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}}
+* 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>mi-w-E13</hiero>
+* Erzya: [[псака]] (psaka), [[катка]] (katka), [[писай]] (pisay)
+* Eshtehardi: {{tø|esh|گوربیه|tr=gurbiya|sc=fa-Arab}}
+* Esperanto: {{qualifier|male or female}} {{t+|eo|kato}}, {{qualifier|male}} {{t-|eo|virkato}}, {{qualifier|female}}, {{t+|eo|katino}}
+* 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}}
+*: [[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: {{t+|de|Katze|f}} , {{qualifier|male}} {{t+|de|Kater|m}}, {{qualifier|female}} {{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: [[kato]]
+* 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}}
+* Kalmyk: {{tø|xal|мис|tr=mis|sc=Cyrl}}
+* Kannada: ಬೆಕ್ಕು
+* 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: {{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}}
+* 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=mayu}}
+* 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]]
+* 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: [[kate]] {{m|f}}, [[kato]] {{m}}, [[kata]] {{f}}
+* 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|♂♀, diminutive}} {{t|vo|katil}}
+* 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: [[קאַץ]] (kats) {{f}}, [[קעץ]] (kets) {{p}}, [[קאָטער]] (koter) {{m}}, [[קאָטערס]] (koters) {{p}}
+* Yindjibarndi: [[buthi]]
+* Zulu: {{t+|zu|ikati|xs=Zulu}}
+{{trans-bottom}}
+
+{{trans-top|member of ''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|xs=Esperanto}}
+* 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}}
+* German: {{t+|de|Katze|f}}
+* 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: [[kate]] {{m|f}}, [[kato]] {{m}}, [[kata]] {{f}}
+* 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-see|catfish|[[catfish]]}}
+
+{{trans-see|spiteful woman|bitch}}
+
+{{trans-top|jazz enthusiast}}
+{{trans-mid}}
+{{trans-bottom}}
+
+{{trans-top|guy, fellow}}
+* Danish: {{t-|da|fyr}}
+{{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}}
+* {{ttbc|la}}: [[giat]], [[cattus]]
+* {{ttbc|apl}}: [[gídí]]
+* {{ttbc|lt}}: [[katė]]
+* {{ttbc|mk}}: [[мачка]]
+* {{ttbc|ms}}: {{t+|ms|kucing|xs=Malay}}
+{{trans-mid}}
+* {{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====
+{{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}}
+{{trans-mid}}
+* Finnish: {{qualifier|slang}} [[yrjötä]]
+* French: {{t+|fr|dégobiller}}, {{t+|fr|débecter}}, {{t+|fr|débequeter}}
+* Polish: {{t+|pl|wymiotować}}
+{{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====
+{{en-verb|cat|t|ed}}
+
+# {{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===
+Possibly a shortened form of {{term|catastrophic}}.
+
+====Adjective====
+{{en-adj|-}}
+
+# {{Ireland|informal}} [[terrible]], [[disastrous]].
+#: ''The weather was '''cat''', so they returned home early.''
+
+=====Usage notes=====
+This usage is common in speech but rarely appears in writing.
+
+===References===
+<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]]
+
+----
+
+
+===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|inf=[[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]] {{italbrac|coarse slang}}, [[pour]], [[stream]], [[teem]]
+
+====Translations====
+{{trans-top|to rain very heavily}}
+* Arabic: {{t|ar|إنها تمطر بغزارة|tr='innahaa tumTir bi-ghazaara|sc=Arab}}
+* [[Catalan]]: [[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: [[pijpenstelen regenen]], 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|βρέχει με το τουλούμι}}
+* Icelandic: {{t|is|vera mígandi rigning}}, {{t|is|rigna eldi og brennisteini}}
+{{trans-mid}}
+* [[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]]
+***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]]
+***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===
+{{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]]
+* [[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}}
+{{trans-mid}}
+* Portuguese: {{t|pt|construir}}, {{t|pt|desenvolver}}
+* 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]]
+***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=====
+{{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}}
+* Armenian: {{t+|hy|ագռավ|tr=agṙav}}
+* 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}}
+* Latvian: {{t-|lv|vārna|f|xs=Latvian}}
+{{trans-mid}}
+* 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===
+{{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}}.
+
+====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}}
+* German: {{t+|de|krähen}}
+* Greek: {{t|el|λαλώ|tr=laló}}, {{t+|el|κράζω|tr=krázo}}
+* Hungarian: {{t|hu|kukorékol}}
+* Icelandic: {{t-|is|gala}}
+{{trans-mid}}
+* 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}}, {{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}}
+*: Hebrew: [[יומא]] (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}}
+* 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}}
+* 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}}
+* 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}}
+* Khmer: {{t|km|ថ្ងៃ|tr=tngai|sc=Khmr}}
+{{trans-mid}}
+* Korean: {{t|ko|일주야|tr=iljuya|sc=Kore}} ({{t|ko|一晝夜|sc=Kore}})
+* Kurdish: {{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 French: {{tø|fro|jor}}
+* Old Frisian: [[di]]
+* Old Provençal: {{tø|pro|jorn}}
+* 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}}
+* 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}}
+*: Hebrew: [[יומא]] (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}}
+* 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}}
+* 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}}
+* Hungarian: {{t+|hu|nap}}
+* Ilocano: [[aldaw]]
+* Irish: {{t+|ga|lá|m|xs=Irish}}
+{{trans-mid}}
+* 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}}
+* 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: {{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}}
+*: Hebrew: [[איממא]] (’ī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}}
+* 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]]
+
+----
+
+
+day: 
+<!--this Middle English entry was created using Template:new enm entry-->
+
+===Etymology===
+{{etyl|ang|enm}} {{term|dæg|dæġ|lang=ang}}
+
+===Noun===
+{{enm-noun}}
+
+# [[#English|day]]
+
+====Descendants====
+* English: [[#English|day]]
+
+----
+
+
+***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====
+{{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?"
+# 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.''
+# {{rfdef|lang=en}}
+#* {{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.}}
+
+=====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=====
+{{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===
+{{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====
+{{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]]
+***December***
+December: 
+
+===Alternative forms===
+* [[Decembre]] {{qualifier|obsolete}}
+
+===Etymology===
+{{etyl|enm}} ''[[decembre#Middle English|decembre]]'', from {{etyl|fro}} ''[[decembre#Old French|decembre]]'', 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===
+{{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 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: {{Cyrl|[[ҧхынҷкәын]]}} {{IPAchar|(ṗĥə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: {{Arab|[[ديسمبر|دِيسمْبِر]]}} (disímbir, disámbir) {{m}}, {{Arab|[[كانون الاول|کانونُ الأوّلُ]]}} (kanūnu l-’áwwal) {{m}}
+* Aragonese: [[abiento]] {{m}}
+* Armenian: {{t+|hy|դեկտեմբեր|tr=dektember}}
+*: Old Armenian: {{tø|xcl|դեկտեմբեր|tr=dektember|sc=Armn}}
+* Asturian: [[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}}
+* Bosnian: {{t-|bs|decembar|m}}
+* 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: [[十二月]] (shí’èryuè)
+* Chuvash: {{tø|cv|раштав|sc=Cyrl|xs=Chuvash}} ([[raštav]])
+* Croatian: {{t+|hr|prosinac|m}}
+* 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: [[Dzome]], [[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: [[disembar]] {{m}}
+* Galician: [[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: [[דצמבר|דֶּצֶמְבֶּר]] (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: {{Khmr|[[ធ្នូ]]}} (tnū)
+* Kongo: {{tø|kg|desembele}}
+* Korean: {{t+|ko|십이월|tr=sibiwol|sc=Kore}}
+* Latin: {{t+|la|december}}
+* Latvian: {{t+|lv|decembris|m|xs=Latvian}}
+* Limburgish: December {{m}}
+* Lingala: {{t|ln|dɛsɛ́mbɛ}}
+* Lithuanian: {{t+|lt|gruodis|m|xs=Lithuanian}}
+* Livonian: [[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: [[Disember]]
+* Maltese: {{t-|mt|Diċembru|xs=Maltese}}
+* Manchu: (jorgon biya)
+* Maori: [[tïhema]]
+* Marathi: [[डिसेंबर]] (d.ise.mbar)
+* Montagnais: {{tø|moe|pishimuss}}
+* Navajo: {{tø|nv|Níłchʼitsoh}}
+* Neapolitan: [[deciémbro]], [[dicèmbre]]
+* Northern Sotho: {{tø|nso|Manthole}}
+* Norwegian: {{t+|no|desember}}
+* Novial: [[desembre]]
+* Occitan: {{t|oc|decembre|m}}
+* Ojibwe: [[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}}
+* Serbian:
+*: Cyrillic: {{t-|sr|децембар|m|sc=Cyrl}}
+*: Roman: [[decembar#Serbian|decembar]] {{m}}, [[prosinac]] {{m}}
+* Sicilian: [[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: [[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: {{Thai|[[ธันวาคม]]}} (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: [[joulukuu]]
+* Welsh: {{t+|cy|Rhagfyr|m|xs=Welsh}}
+* West Frisian: [[desimber]], [[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}}
+
+----
+
+
+***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]]
+***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: {{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]]
+
+----
+
+
+***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===
+{{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=dhüdhlek|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===
+{{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]]
+***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===
+{{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|-}} {{term|-docce|-docce|lang=ang|muscle}} (compare {{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'. 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]]
+* [[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]]
+* [[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]]
+* 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}}
+* 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|♀}} {{t+|eo|hundino}}
+* 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|male or female, sex unspecified}} {{t+|de|Hund|m}}, {{qualifier|adult male of a canine species}} {{t+|de|Rüde|m}}, {{qualifier|female}} {{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}}
+* 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|male or female}} {{t+|io|hundo|xs=Ido}}, {{qualifier|male}} {{t+|io|hundulo|xs=Ido}}, {{qualifier|female}} {{t+|io|hundino|xs=Ido}}
+* Igbo: {{tø|ig|n'kita}}
+* Ilocano: {{tø|ilo|aso}}
+* Inari Sami: {{tø|smn|peenuv}}
+* Indonesian: {{t+|id|anjing|xs=Indonesian}}
+*: 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|anjiaŋ }}
+*: 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ø|kp|пон}}
+* 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}}
+{{trans-mid}}
+* Lak: {{tø|lbe|ккаччи}}
+* Lakota: [[šúŋka]]
+* 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}}
+* Lower Sorbian: {{tø|dsb|pjas|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}}
+* Malagasy: {{t|mg|alika}}
+* Malay: {{t+|ms|anjing}}, {{qualifier|rarely used}} {{t|ms|asu}}, {{qualifier|rarely used}} {{t|ms|kuyuk}}
+* 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}}
+* Middle Welsh: {{tø|wlm|ci|m}}
+* 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]]
+* 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|баӈ}}
+* 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}}
+* 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: [[కుక్క]], [[శునకము]]
+* 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}}
+* Upper Sorbian: {{tø|hsb|pos|m|xs=Upper Sorbian}}, {{tø|hsb|psyk|m|xs=Upper Sorbian}}
+* 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, young}} {{t|vo|dogül}}, {{qualifier|♂ offspring, young}} {{t|vo|hidogül}}, {{qualifier|♀ offspring, young}} {{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}}
+* 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 dog}}
+* 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}}
+* 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|anjing}}, {{t|ms|asu jantan}}, {{t|ms|asu}}, {{t|ms|kuyuk jantan}}, {{t|ms|kuyuk}}
+* 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}}
+* 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)
+* 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}}
+{{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}}
+* Luxembourgish: {{t|lb|Hond|m}}
+{{trans-mid}}
+* 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===
+{{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.''
+# {{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]]
+
+----
+
+
+===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|inf=[[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]] {{italbrac|coarse slang}}, [[pour]], [[stream]], [[teem]]
+
+====Translations====
+{{trans-top|to rain very heavily}}
+* Arabic: {{t|ar|إنها تمطر بغزارة|tr='innahaa tumTir bi-ghazaara|sc=Arab}}
+* [[Catalan]]: [[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: [[pijpenstelen regenen]], 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|βρέχει με το τουλούμι}}
+* Icelandic: {{t|is|vera mígandi rigning}}, {{t|is|rigna eldi og brennisteini}}
+{{trans-mid}}
+* [[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]]
+===domain===
+Wiktionary:Public domain sources: 
+
+The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.
+
+Some scanned fascicles of Oxford English Dictionary under the title ''A New English Dictionary on Historical Principles'' by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.
+
+The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240].
+
+
+***eagle***
+eagle: 
+[[Image:GoldenEagle-Nova.jpg|thumb|Golden eagle (bird).]]
+
+===Etymology===
+{{etyl|enm}} {{term|egle|lang=enm}}, from {{etyl|xno}} {{term|egle|lang=xno}}, from {{etyl|fro}} {{term|aigle|lang=fro}}, from {{etyl|la}} {{term|aquila|lang=la}}. Displaced native [[Middle English]] {{term|earn|ern, earn, arn|lang=enm}}, from {{etyl|ang|-}} {{term|earn|lang=ang}}. More at {{term|erne|lang=en}}.
+
+===Pronunciation===
+* {{IPA|/ˈiːɡəl/}}
+* {{audio|en-us-eagle.ogg|Audio (US)}}
+* {{rhymes|iːɡəl}}
+
+===Noun===
+{{en-noun}}
+
+# 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]].
+
+====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}}
+* Adyghe: [[бгъэжъ]] {{IPAchar|(bʁɑʑ)}}, [[мэкъухэшъобгъэжъ]] {{IPAchar|(mɑqʷxɑɕʷɑbʁɑʑ)}}
+* Afrikaans: {{t-|af|arend|xs=Afrikaans}}
+* Albanian: [[shqiponja]], [[shkabë]]
+* Amharic: {{tø|am|ንስር|tr=nəsər|sc=Ethi}}
+* Arabic: {{t|ar|نسر|tr=nasr}}, {{t|ar|عقاب|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: [[qartal]]
+* Bashkir: {{tø|ba|бөркөт|tr=bôrkôt|sc=Cyrl}}
+* Basque: [[arrano]]
+* Belarusian: {{t-|be|арол|m|tr=aroł|xs=Belarusian}}
+* Bemba: [[lubambe]]
+* Bengali: {{t|bn|ঈগল|sc=Beng|xs=Bengali}}, {{t|bn|ইগল|sc=Beng|xs=Bengali}}
+* Bezhta: [[цуⁿгьа]] (cuⁿha)
+* Breton: [[erer]]
+* Bulgarian: {{t+|bg|орел|m|tr=orel}}
+* Buryat: {{tø|bua|мӱркӱт}}
+* 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: {{zh-ts|老鷹|老鹰}} ([[lǎo]][[yīng]])
+*: 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: [[Adler]] {{m}}, [[Aar]] {{m}} {{qualifier|poetic}}
+* 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|गरुड|tr=garuḍ}}, {{t|hi|चील|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: [[鷲]] ([[わし]], washi)
+* Jèrriais: {{tø|roa-jer|aigl'ye|m}}
+* Kannada: [[ಗರುಡ]] (garuḍa)
+* Kazakh: {{t|kk| бүркіт|tr=bürkit|sc=Cyrl|xs=Kazakh}}
+* Khvarshi: [[цеⁿ]] (ceⁿ)
+* Korean: {{t+|ko|독수리|tr=doksuri|sc=Hang}}
+* Kurdish: {{ku-Arab|[[هه‌ڵۆ]]}}
+* Kutenai: {{tø|kut|kyaq̓nukat}}
+* Ladin: [[eguia]] {{f}}
+* Latin: {{t+|la|aquila|f}}
+* Latvian: {{t+|lv|ērglis|xs=Latvian}}
+* Lithuanian: {{t+|lt|aras|m|xs=Lithuanian}}, {{t+|lt|erelis|m|xs=Lithuanian}}
+* Lower Sorbian: {{tø|dsb|jerjoł|m|xs=Lower Sorbian}}
+{{trans-mid}}
+* Macedonian: {{t-|mk|орел|m|tr=orel}}
+* 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}}
+* 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}}
+* Sami: [[goaskin]]
+* Samoan: [[aeto]]
+* Sanskrit: {{t|sa|गरुड|tr=garuḍa|m}}
+* 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}}
+* 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: [[agila]], [[banoy]]
+* Tamil: {{t|ta|எருவை|tr=eruvai}}, {{t|ta|கங்கம்|tr=kaṅkam}}
+* Taos: [[cíwena]]
+* Telugu: {{t|te|గ్రద్ద|tr=gradda}}
+* Thai: {{t|th|อินทรี|tr=insee}}
+* Tibetan: [[གོ་བོ་]] (go.bo)
+* 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=orel|xs=Ukrainian}}
+* Upper Sorbian: {{tø|hsb|worjoł|m|xs=Upper Sorbian}}
+* Urdu: {{t|ur|عقاب|tr='uqāb|xs=Urdu}}, {{t|ur|چیل|tr=cīl|xs=Urdu}}, {{t|ur|گرڈ|tr=garuḍ|xs=Urdu}}
+* Uzbek: {{t|uz|burgut|xs=Uzbek}}
+* Vietnamese: [[chim đại bàng]]
+* Vilamovian: {{tø|wym|oduł}}
+* Volapük: {{qualifier|male or female}} {{t|vo|kvil}}, {{qualifier|male}} {{t|vo|hikvil}}, {{qualifier|female}} {{t|vo|jikvil}}, {{qualifier|offspring, young}} {{t|vo|kvilü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: [[אָדלער]] (odler) {{m}}
+* 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}}
+
+{{checktrans-top}}
+* {{ttbc|amu}}: [[kíchi]]
+* {{ttbc|nds}}: [[Aadler]] {{m}}, [[Arend]] {{m}}
+{{trans-mid}}
+* {{ttbc|nov}}: [[agle]]
+{{trans-bottom}}
+
+===Verb===
+{{en-verb|eagles|eagling|eagled|eagled}}
+
+# {{golf}} To [[score]] an eagle.
+
+===External links===
+* {{pedia|Eagle (disambiguation)}}
+
+===Anagrams===
+* [[aglee#English|aglee]]
+
+[[Category:en:Birds]]
+[[Category:en:Eagles|*]]
+[[Category:en:Golf]]
+
+----
+
+
+***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}}
+* 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|male or female}} {{t-|eo|elefanto|xs=Esperanto}}, {{qualifier|male}} {{t-|eo|virelefanto|xs=Esperanto}}, {{qualifier|female}} {{t-|eo|elefantino|xs=Esperanto}}
+* 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}}
+*: [[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}}, {{qualifier|female}} {{t-|de|Elefantin|f}}
+* 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}}
+*: 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}}
+* 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: {{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}}
+* Latvian: {{t-|lv|zilonis|m|xs=Latvian}}
+{{trans-mid}}
+* 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}}
+* 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}}
+* 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, baby}} {{t|vo|leefadül}}, {{qualifier|♂ offspring, baby}} {{t|vo|hileefadül}}, {{qualifier|♀ offspring, baby}} {{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}}
+{{trans-mid}}
+* Swahili: {{t|sw|kubwa|xs=Swahili}}
+{{trans-bottom}}
+
+===External links===
+* {{pedia}}
+* {{pedia|Elephant (disambiguation)}}
+
+[[Category:Paper sizes]]
+[[Category:en:Elephants|*]]
+
+----
+
+
+***encyclopaedia***
+encyclopaedia: 
+
+===Alternative forms===
+* [[encyclopædia]] (''UK'')
+* [[encyclopedia]] (''US, Canada'')
+
+===Pronunciation===
+* {{audio|en-us-encyclopaedia.ogg|Audio (US)}}
+*: {{rhymes|iːdiə}}
+
+===Noun===
+{{en-noun|pl=encyclopaedias|pl2=encyclopaediae}}
+
+# {{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]]
+[[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}}
+
+# A [[comprehensive]] [[reference work]] with articles on a range of [[subjects]].
+#: ''I only use the library for the '''encyclopedia''', 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}}
+{{trans-mid}}
+* Korean: {{t|ko|백과사전|tr=baekkwasajeon|sc=Kore}} ({{t|ko|百科事典|sc=Kore}})
+* 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}}
+* 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}}
+* 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}}
+* 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/>
+
+===[[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ʃ}}
+| <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ʒ}}
+| <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'''ot]], [[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.-->
+
+
+===Entry===
+Wiktionary:Entry layout explained: 
+
+===Noun===
+{{en-noun}}
+
+# A piece of [[furniture]] to [[sleep]] on.
+
+===References===        
+* ''The Oxford Paperback Dictionary''   
+</pre>
+
+===Variations for languages other than English===
+Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.
+
+Some languages do have characteristics that require variation from the standard format.  For links to these variations see [[Wiktionary:Language considerations]].
+
+
+Wiktionary:Entry layout explained: 
+===Alternative forms===
+===Etymology===
+===Pronunciation===
+* Phonetic transcriptions
+* Audio files in any relevant dialects
+* Rhymes
+* Homophones
+* Hyphenation
+===Noun===
+Declension
+# 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===
+---- (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}}
+{{trans-mid}}
+* Japanese: {{t|ja|語源学|tr=[[ごげんがく]], gogengaku}}
+* 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}}
+* 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: 
+
+===Noun===
+{{en-noun}}
+
+# A piece of [[furniture]] to [[sleep]] on.
+
+===References===        
+* ''The Oxford Paperback Dictionary''   
+</pre>
+
+===Variations for languages other than English===
+Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.
+
+Some languages do have characteristics that require variation from the standard format.  For links to these variations see [[Wiktionary:Language considerations]].
+
+
+Wiktionary:Entry layout explained: 
+===Alternative forms===
+===Etymology===
+===Pronunciation===
+* Phonetic transcriptions
+* Audio files in any relevant dialects
+* Rhymes
+* Homophones
+* Hyphenation
+===Noun===
+Declension
+# 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===
+---- (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: 
+
+Q: I see a bunch of articles that have no language specified, but they are clearly written for English terms.  That makes sense.  Should I remove ==English== wherever I see it then?
+
+A: No.  It is very much a required heading.
+
+The ==English== header is not assumed.  It cannot be, since we aim to include "all words."  Also, it reminds people that they can enter other languages.
+
+:Some more reasons why "==English==" is required:
+:# 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.
+
+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.
+
+
+===FDL===
+GNU FDL: 
+{{wikipedia}}
+
+==={{initialism}}===
+'''GNU FDL'''
+
+# [[GNU]] [[free|Free]] [[documentation|Documentation]] [[license|License]]
+
+[[pl:GNU FDL]]
+***February***
+February: 
+
+===Etymology===
+Re-[[Latinize]]d from {{etyl|enm}} ''[[feoverel]]'', from {{etyl|fro}} ''[[feverier]]'', from {{etyl|la}} {{term|februarius|februārius|lang=la}}, of the month of purification, from ''februa'', the Roman festival of purification, plural of ''[[februum]]''; perhaps from {{etyl|la}} ''[[febris]]'', fever, 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}}
+* Bosnian: {{t-|bs|februar|m}}
+* [[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: [[ᎧᎦᎵ]] (kagali)
+* Chinese: [[二月]] (èryuè)
+* [[Chuvash]]: {{tø|cv|нарăс|tr=naras|sc=Cyrl}}
+* [[Cornish]]: {{t-|kw|mis Whevrer|xs=Cornish}}
+* [[Corsican]]: {{t+|co|ferraghju|xs=Corsican}}
+* Croatian: {{t+|hr|veljača|f}}, {{t+|hr|februar|m|alt=fȅbruār}}
+* Czech: {{t+|cs|únor|m}}
+* [[Dakota]]: {{tø|dak|Wicatawi}}
+* 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=[[にがつ]], nigatsú}}, {{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]]: {{Khmr|[[កុម្ភៈ]]}} (gŭmpeyă)
+* Komi-Zyrian: {{tø|kv|урасьӧм тӧлысь|sc=Cyrl}}
+* Korean: {{t+|ko|이월|tr=iweol|sc=Kore}}
+* Kurdish: {{t+|ku|reşemî|sc=ku-Arab}}
+{{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]]: [[februar]], [[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]]: [[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|pop}} {{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}}
+* [[Scots]]: {{tø|sco|Februar}}
+* [[Scottish Gaelic]]: {{t-|gd|Gearran|xs=Scottish Gaelic}}
+* Serbian:
+*: Cyrillic: {{t+|sr|фебруар|m|sc=Cyrl}}, {{t-|sr|вељача|f|sc=Cyrl}}
+*: Roman: {{t-|sr|februar|m}}, {{t-|sr|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]]
+***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===
+{{en-noun|-}}
+
+# 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: 
+{{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 pretending to advertise '''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===
+{{en-adj|freer|freest}}
+
+# Not [[imprisoned]] or [[enslaved]].
+#: ''a '''free''' man''
+# Obtainable without any [[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!''
+# [[unconstrained|Unconstrained]].
+#: ''He was given '''free''' rein to do whatever he wanted'' <!--"rein", not "reign"-->
+# {{mathematics}} Unconstrained by [[relator]]s.
+#: ''The '''free''' group on three generators''
+# {{mathematics|logic}} Unconstrained by [[quantifier]]s.
+#: z'' is the '''free''' variable in "<math>\forall x\exists y:xy=z</math>".''
+# Unobstructed, without [[blockage]]s.
+#: ''The drain was '''free'''.''
+# Not in use
+#: ''Go sit on this chair, it's '''free'''.''
+# Without [[obligation]]s.
+#: '''''free''' time''
+# {{software}} With very few [[limitations]] on distribution or improvement.
+#: ''OpenOffice is [[free software|'''free''' software]].''
+# Without; not containing (what is specified).
+#: ''We had a wholesome, filling meal, '''free''' of meat''
+# {{programming}} Of [[identifier]]s, not [[bound]].
+# {{botany|mycology}} Not [[attached]]; [[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, [[unattached]] to another [[morpheme]].
+# {{software}} Intended for [[release]], as opposed to a [[checked]] version.
+
+====Synonyms====
+* {{sense|obtainable without payment}} [[free of charge]], [[gratis]]
+* {{sense|unconstrained}} [[unconstrained]], [[unfettered]], [[unhindered]]
+* {{sense|unobstructed}} [[clear]], [[unobstructed]]
+* {{sense|software: with very few limitations on distribution or improvement}} [[libre]]
+* {{sense|without}} [[without]]
+* {{sense|programming: not bound}} [[unbound]]
+
+====Antonyms====
+* {{sense|not imprisoned or enslaved}} [[bound]], [[enslaved]], [[imprisoned]]
+* {{sense|unconstrained}} [[constrained]], [[restricted]]
+* {{sense|logic: unconstrained by quantifiers}} [[bound]]
+* {{sense|unobstructed}} [[blocked]], [[obstructed]]
+* {{sense|of identifiers, not bound}} [[bound]]
+* {{sense|software: with very few limitations on distribution or improvement}} [[proprietary|proprietary software]]
+
+====Derived terms====
+{{rel-top3|Terms derived from ''free''}}
+* [[-free]]
+* [[free Abelian group]]<!--UK spelling-->, [[free abelian group]]<!--US spelling-->
+* [[free algebra]]
+* [[free as a bird]]
+* [[freeball]]
+* [[freebooter]]
+* [[free fall]]
+* [[free group]]
+* [[freelance]]
+* [[freeloader]]
+* [[free lunch]]
+{{rel-mid3}}
+* [[freely]]
+* [[free market]]
+* [[free marketeer]]
+* [[Freemason]]
+* [[free module]]
+* [[free object]]
+* [[free of charge]]
+* [[free rein]]<!--Note: this is the only correct spelling of this expression-->
+* [[free ride]]
+* [[free rider]]
+* [[free semigroup]]
+{{rel-mid3}}
+* [[free spirit]]
+* [[free-thinker]]
+* [[free time]]
+* [[free variable]]
+* [[free vote]]
+* [[freeware]]
+* [[freeway]]
+* [[freewheel]]
+* [[free will]]
+* [[unfree]]
+{{rel-bottom}}
+
+====Related terms====
+* [[freedom]]<!--from Old English-->
+* [[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ū}}
+{{trans-mid}}
+* Korean: {{t+|ko|자유|tr=jayu|sc=Hang}}
+* 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}}
+* 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}}
+* 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}}
+* 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}}
+{{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ş}}
+* 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}}
+* 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 pay.
+#: ''I got this bike '''free'''.''
+
+====Synonyms====
+* {{sense|informal, without needing to pay}} [[for free]], [[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===
+{{en-verb|free|d}}
+
+# {{transitive}} To make free; set at [[liberty]]; [[release]]; rid of that which confines, limits, embarrasses, or oppresses.
+
+====Hyponyms====
+* [[emancipate]]
+* [[liberate]]
+* [[manumit]]
+* [[release]]
+* [[unchain]]
+* [[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: {{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 [[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 -->
+# [[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===
+* [[fere]]
+* [[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]]
+===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]]
+
+====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]]
+***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."
+
+===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====
+{{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: {{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===
+{{en-adv|-}}
+
+# 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]]
+===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]]
+***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]]
+===GNU===
+GNU FDL: 
+{{wikipedia}}
+
+==={{initialism}}===
+'''GNU FDL'''
+
+# [[GNU]] [[free|Free]] [[documentation|Documentation]] [[license|License]]
+
+[[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}}
+* 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}}
+* German: mit einem Körnchen Salz
+{{trans-mid}}
+* 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]]
+***gratis***
+gratis: 
+
+===Etymology===
+From {{etyl|la}} ''[[#Latin|gratis]]''.
+
+===Pronunciation===
+* {{a|UK}} {{IPA|/ˈɡɹɑː.tɪs/}} {{X-SAMPA|/"grA:.tIs/}}
+
+===Adverb===
+{{en-adv|-}}
+
+# [[free]], without [[charge]]
+
+====Translations====
+{{trans-top|free, without charge}}
+* Czech: {{t|cs|zdarma}}, {{t|cs|bezplatně}}
+* Danish: {{t|da|gratis}}
+* Dutch: {{t|nl|gratis}}
+* Hebrew: {{t|he|חינם|tr=khinám|sc=Hebr}}
+* Romanian: {{t|ro|gratis}}
+* Russian: {{t+|ru|бесплатно|tr=besplátno}}, {{t+|ru|даром|tr=dárom}} (colloquial), {{t|ru|безвозмездно|tr=bezvozmézdno}}
+{{trans-mid}}
+* Scottish Gaelic: {{t-|gd|an asgaidh|xs=Scottish Gaelic}}
+* Spanish: {{t-|es|gratis}}
+* Swedish: {{t|sv|gratis}}
+* Turkish: {{t|tr|ücretsiz}}
+{{trans-bottom}}
+
+===Adjective===
+{{en-adj|-}}
+
+# [[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}}
+* German: [[gratis#German|gratis]], [[kostenlos]], [[frei]], [[kostenfrei]]
+* Hebrew: {{t-|he|חינם}}, {{t-|he|בחינם}}
+* Indonesian: {{t+|id|gratis|xs=Indonesian}}
+* Italian: {{t+|it|gratis}}
+{{trans-mid}}
+* 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]]
+
+----
+
+
+===guide===
+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]]
+***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|lang=ang}}, from {{proto|Germanic|haubudan|lang=en}} (compare Old Norse {{term|haufuþ|lang=non}}), from {{proto|Indo-European|káput|lang=en}} (compare {{etyl|la|-}} {{term|caput|lang=la}}, Sanskrit {{term|sc=Deva|कपुच्छल|lang=sa}} (''kabúc''chala) ‘nape hair, shorthairs’), variant of {{proto|Indo-European|title=|kapōlo}} ‘head, bowl’ (compare {{etyl|ang|-}} {{term|hafola|lang=ang}} ‘head’, Sanskrit {{term||kapālam}} ‘cup, bowl, skull’).
+
+===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|-}}
+
+# {{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}}
+* 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}}
+* 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}}
+* Low Saxon: [[kopp]]
+{{trans-mid}}
+* Lower Sorbian: {{tø|dsb|głowa|f|xs=Lower Sorbian}}
+* Luhya: {{tø|luy|kumurwe}}
+* Luo: {{tø|luo|wich|xs=Luo}}
+* Macedonian: {{t-|mk|глава|f|tr=gláva}}
+* 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}}
+* 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á}}
+* 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}}
+* 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}}
+* 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}}
+* Upper Sorbian: {{tø|hsb|hłowa|f|xs=Upper Sorbian}}
+* 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|[[سه‌رگه‌وره‌]]}}
+* Lithuanian: [[galva]] {{f}}; [[vadovas]] {{m}}, [[vadovė]] {{f}}
+{{trans-mid}}
+* 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|-}}
+
+# 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]]
+
+----
+
+
+===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.
+
+: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.
+
+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.
+
+
+***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}} ''[[Ieneuer]]'', from {{etyl|xno}} ''[[genever]]'', 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|հունվար}} (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}}
+* Bosnian: {{t-|bs|januar|m}}
+* 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: [[一月]] (yīyuè), [[元月]] (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: [[yanvar]]
+* Croatian: {{t+|hr|siječanj}}, {{t|hr|jȁnuār|m}}
+* 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=いちがつ, ichigátsu}}, {{t+|ja|睦月|tr=むつき, mutsuki}}
+* Javanese: [[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: {{Khmr|[[មករា]]}} (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|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: [[janvār]], [[ū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}}, [[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: [[जानेवारी]] (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: [[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}}
+* Serbian:
+*: Cyrillic: {{t+|sr|јануар|m|sc=Cyrl}}, {{t-|sr|сечањ|m|sc=Cyrl}}
+*: Roman: {{t-|sr|januar|m}}, {{t-|sr|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|July 1 Marches]]
+* [[w:July 7 bombings|July 7 bombings]]
+* [[July 20 Plot]]
+* [[w:July Column|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: {{Cyrl|[[ҧхынгәы]]}} {{IPAchar|(ṗĥə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: {{Arab|[[يوليو|يُولْيُو]]}} (yúlyu) {{m}}, {{Arab|[[تموز|تَمّوزٌ]]}} (tammūz) {{m}}
+* Aragonese: [[chulio]] {{m}}
+* Armenian: {{t+|hy|հուլիս|tr=hulis}}
+*: Old Armenian: {{tø|xcl|յուլիս|tr=yulis|sc=Armn|xs=Old Armenian}}
+* Asturian: [[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}}
+* Bosnian: {{t-|bs|juli|m}}, {{t-|bs|jul|m}}
+* Breton: [[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: [[七月]], [[7月]] (qīyuè)
+* Chuvash: {{tø|cv|утă|sc=Cyrl|xs=Chuvash}} ([[uta]])
+* Croatian: {{t+|hr|srpanj|m}}
+* 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: [[Siamlɔm]], [[Yuli]]
+* Faroese: {{t-|fo|juli|xs=Faroese}}
+* Finnish: {{t+|fi|heinäkuu}}
+* French: {{t+|fr|juillet|m}}
+* Friulian: [[lui#Fruilian|lui]]
+* Galician: [[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: [[יולי|יוּלִי]] (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: [[julio]]
+* Indonesian: {{t-|id|juli|xs=Indonesian}}
+* Interlingua: [[julio]]
+* Irish: {{t+|ga|Iúil|m|xs=Irish}}
+* Italian: {{t+|it|luglio|m}}
+* Japanese: {{t+|ja|七月|tr=shichí-gatsú}}, {{t+|ja|文月|tr=ふみづき, fumizuki, ふづき, fuzuki}}
+* Javanese: [[juli#Javanese|juli]]
+* Kazakh: {{t|kk|шілде|tr=şilde|sc=Cyrl}}
+* Khmer: {{Khmr|[[កក្កដា]]}} (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: [[Juli]]
+* Lingala: {{t|ln|yúli}}
+* Lithuanian: {{t+|lt|liepa|f|xs=Lithuanian}}
+* Livonian: [[jūlij]], [[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: [[hūrae]]
+* Marathi: [[जुलै]]
+* Montagnais: {{tø|moe|shetan-pishimᵘ}}
+* Navajo: {{tø|nv|Yaʼiishjáástsoh}}
+* Neapolitan: [[iuglio]], [[lùglio]]
+* Northern Sotho: {{tø|nso|Mosegamanye}}
+* Norwegian: {{t+|no|juli}}
+* Novial: [[julie]]
+* Occitan: [[julhet]] {{m}}
+* Ojibwe: [[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: {{fa-Arab|[[ژوئیه]]}} (žu’iye)
+* Polish: {{t+|pl|lipiec|m}}
+* Portuguese: {{t+|pt|julho|m}}
+* Romanian: {{t+|ro|iulie}}, {{qualifier|pop}} {{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}}
+* Serbian:
+*: Cyrillic: {{t+|sr|јул|m|sc=Cyrl}}
+*: Roman:  [[jul#Serbian|jul]] {{m}}, [[srpanj]]
+* Sicilian: [[giugnettu]]
+* 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: {{Thai|[[กรกฎาคม]]}} (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: {{ur-Arab|[[جولائ]]}}
+* Vietnamese: [[tháng bảy]], [[tháng 7]] [月七, 月7]
+* Võro: [[hainakuu]]
+* Walloon: [[djulete]]
+* Welsh: {{t+|cy|Gorffennaf|m|xs=Welsh}}
+* West Frisian: july, [[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|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: [[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: {{Arab|[[يونيو|يُونْيُو]]}} (yúnyu) {{m}}, {{Arab|[[حزيران|حَزيرانٌ]]}} (ħazirān) {{m}}
+* Aragonese: [[chunio]]
+* Armenian: {{t+|hy|հունիս|tr=hunis}}
+*: Old Armenian: {{t-|hy|յունիս|tr=yunis}}
+* Asturian: [[xunu]]
+* Azeri: {{t+|az|iyun|xs=Azeri}}
+* Basque: {{t+|eu|ekain|xs=Basque}}
+* Bengali: {{t-|bn|জুন|sc=Beng|xs=Bengali}}
+* Bislama: {{t|bi|jun}}
+* Bosnian: {{t-|bs|juni|m}}, {{t-|bs|jun|m}}
+* 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: [[六月]], [[6月]] (liùyuè)
+* Chuvash: [[śěrtme]], [[çĕртме]]
+* Cornish: mys [[Metheven]]
+* Croatian: {{t+|hr|lipanj}}
+* 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: [[Masa]], [[Yuni]]
+* Faroese: {{t-|fo|juni|xs=Faroese}}
+* Fijian: {{t|fj|June}}
+* Finnish: {{t+|fi|kesäkuu}}
+* French: {{t+|fr|juin|m}}
+* Friulian: [[zugn]] {{m}}
+* Galician: [[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: [[יוני|יוּנִי]] (yúni)
+* Hindi: [[जून]] (jūn)
+* Hungarian: {{t+|hu|június}}
+* Icelandic: {{t+|is|júní|m}}, {{t-|is|júnímánuður|m}}
+* Ido: [[junio]]
+* Indonesian: {{t-|id|juni|xs=Indonesian}}
+* Interlingua: [[junio]]
+* Interlingue: [[junio]]
+* Irish: {{t+|ga|Meitheamh|m|xs=Irish}}
+* Italian: {{t+|it|giugno|m}}
+* Japanese: {{t+|ja|六月|tr=ろくがつ, rokú-gatsú}}, {{t+|ja|水無月|tr=みなづき, minazuki}}
+* Javanese: [[juni]]
+* Kabuverdianu:
+** [[Badiu]] and [[ALUPEC]] or [[ALUPEK]]: [[junhu]]
+** [[São Vicente]]: [[junh']]
+* Kannada: [[ಜೂನ]]
+* Kashubian: [[czerwińc]]
+* Kazakh: {{t|kk|маусым|tr=mawsım|sc=Cyrl}}
+* Khmer: {{Khmr|[[មិថុនា]]}} (mitonā)
+* Kongo: {{tø|kg|yuni}}
+{{trans-mid}}
+* Korean: {{t+|ko|유월|tr=yuwol|sc=Kore}}, [[6월]] (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: [[juni]]
+* Lingala: {{t|ln|yúni}}
+* Lithuanian: {{t+|lt|birželis|m|xs=Lithuanian}}
+* Livonian: [[jūnij]], [[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: [[ജൂണ്‍]]
+* Maltese: {{t-|mt|Ġunju|xs=Maltese}}
+* Manchu: (ninggun biya)
+* Maori: [[hune]]
+* Marathi: [[जून]]
+* Montagnais: {{tø|moe|uapikun-pishimᵘ}}
+* Navajo: {{tø|nv|Yaʼiishjááshchilí}}
+* Neapolitan: [[giùgno]]
+* Northern Sami: [[geassemánnu]]
+* Northern Sotho: {{tø|nso|Phupu}}
+* Norwegian: {{t+|no|juni}}
+* Novial: [[june]]
+* Occitan: [[junh]] {{m}}
+* Ojibwe: [[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: {{fa-Arab|[[ژوئن]]}} (ž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}}
+* Serbian:
+*: Cyrillic: {{t+|sr|јун|m|sc=Cyrl}}
+*: Roman:  [[jun#Serbian|jun]] {{m}}, [[lipanj]]
+* Sicilian: [[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: {{Thai|[[มิถุนายน]]}} (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: [[yunul]]
+* Võro: [[piimäkuu]]
+* Walloon: [[djun]]
+* Welsh: {{t+|cy|Mehefin|m|xs=Welsh}}
+* West Frisian: [[juny]], [[simmermoanne]]
+* Wolof: {{t|wo|Suwe}}
+* Yiddish: {{t+|yi|יוני|m|tr=yuni|sc=Hebr|xs=Yiddish}}
+{{trans-bottom}}
+
+====See also====
+* {{list|en|Gregorian calendar months}}
+
+----
+
+
+===layout===
+Wiktionary:Entry layout explained: 
+
+===Noun===
+{{en-noun}}
+
+# A piece of [[furniture]] to [[sleep]] on.
+
+===References===        
+* ''The Oxford Paperback Dictionary''   
+</pre>
+
+===Variations for languages other than English===
+Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.
+
+Some languages do have characteristics that require variation from the standard format.  For links to these variations see [[Wiktionary:Language considerations]].
+
+
+Wiktionary:Entry layout explained: 
+===Alternative forms===
+===Etymology===
+===Pronunciation===
+* Phonetic transcriptions
+* Audio files in any relevant dialects
+* Rhymes
+* Homophones
+* Hyphenation
+===Noun===
+Declension
+# 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===
+---- (Dividing line between languages)
+
+***lexicography***
+lexicography: 
+{{wikipedia}}
+
+===Etymology===
+{{confix|lexico|graphy}}
+
+===Noun===
+{{en-noun|-}}
+
+# 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: 
+{{wikipedia|dab=livre}}
+===Etymology===
+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''', 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?
+
+===Anagrams===
+* [[liver#English|liver]], [[rivel#English|rivel]], [[viler#English|viler]]
+
+----
+
+
+***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}} *{{term||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====
+{{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}}
+* 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}}
+* Italian: {{t+|it|marcia|f}}
+{{trans-mid}}
+* 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}}
+* 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}}
+* 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}}
+* Italian: {{t+|it|marcia|f}}
+{{trans-mid}}
+* 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}}
+* [[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}}
+* Norwegian: {{t+|no|gang|m}}, {{t-|no|forløp|m}}
+{{trans-mid}}
+* 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====
+{{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}}
+* 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}}
+* [[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}}
+* Norwegian: {{t-|no|rykke frem}}
+{{trans-mid}}
+* 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}} *{{term||marka}}, from {{proto|Germanic|markō|lang=en}}, from {{proto|Indo-European|mereg-|edge, boundary|lang=en}}.
+
+====Noun====
+{{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====
+{{en-verb|marches|marching|marched}}
+
+# {{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]]
+
+----
+
+
+***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|inf=-|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=====
+{{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]]
+{{trans-mid}}
+* Italian: {{t+|it|potere}}
+* 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ť}}
+* 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===
+{{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]]
+
+----
+
+
+***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===
+{{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]]
+
+----
+
+
+***minute***
+minute: 
+{{wikipedia}}
+
+===Etymology 1===
+From {{etyl|fro|en}} {{term|minut||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.''
+# (''in 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}} (''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====
+{{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|en}} {{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====
+{{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ý}}
+* Macedonian: {{t-|mk|подробен|m|tr=pódroben}},  {{t|mk|детален|m|tr=détalen}},  {{t|mk|прецизен|m|tr=précizen}}
+{{trans-mid}}
+* 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]]
+
+----
+
+
+***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 [[calque]] of the {{etyl|la}} word {{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====
+{{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}}
+* 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}}
+* 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}}
+* 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]], {{tø|sco|Diluain}}
+* Scottish Gaelic: {{t-|gd|Di-luain|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===
+{{en-adv|-}}
+
+# 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]]
+***month***
+month: 
+
+===Etymology===
+From {{etyl|enm}}, from {{etyl|ang}} {{term|monaþ|mōnað|lang=ang}}, from {{proto|Germanic|mēnōþs}}, from {{proto|Indo-European|me(n)ses|moon, month}}, probably from {{proto|Indo-European|mê-|to measure}}, referring to the moon's phases as the measure of time. Cognate with English {{term|moon|lang=en}}, Ancient Greek {{term|μήν|tr=mḗn|lang=grc|sc=polytonic}}, Armenian {{term|ամիս|tr=amis|lang=hy}}, Dutch {{term|maand|lang=nl}}, German {{term|Monat|lang=de}} (Middle High German {{term|manot|mānōt|lang=gmh}}, Old High German {{term|manod|mānōd|lang=goh}}), Old Irish {{term|mí|lang=sga}} and [[Old Church Slavonic]] {{term|ⰿⱖⱄⱔⱌⱐ|tr=měsęncĭ|lang=cu|sc=Glag}}.
+
+===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===
+{{wikipedia}}
+{{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}}
+* 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]]
+* Croatian: {{t+|hr|mjesec|m}}
+* Czech: {{t+|cs|měsíc|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}}
+* 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: [[ಮಾಸ]] (maasa), [[ತಿಂಗಳು]] (tingallu)
+* Khmer: {{t-|km|ខែ|tr=kai|sc=Khmr}}
+* Korean: {{t+|ko|달|tr=dal|sc=Hang}}, {{t+|ko|월|tr=weol|sc=Hang}}
+* Kurdish:
+*: Kurmanji: [[meh#Kurdish|meh]], [[heyv]], [[hîv]]
+*: Sorani: {{ku-Arab|[[مانگ]]}}
+{{trans-mid}}
+* Lao: {{t+|lo|ເດືອນ|tr=dyan|sc=Laoo|xs=Lao}}
+* Latin: {{t+|la|mensis|m}}
+* Latvian: [[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: [[മാസം]] (māsam)
+* Maltese: {{t-|mt|xahar|xs=Maltese}}
+* Manchu: [[biya]]
+* Maori: {{t|mi|marama}}
+* Marathi: [[महिना]] (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}}
+* Ojibwe: [[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: [[mais]] {{m}}
+* Russian: {{t+|ru|месяц|m|tr=mésjac}}
+* Saterland Frisian: {{tø|stq|Mound}}
+* Scottish Gaelic: [[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}}
+* 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: [[mwezi]] ''(nc 3/4)''
+* Swedish: {{t+|sv|månad|c}}
+* Tatar: {{t+|tt|ай|sc=Cyrl|xs=Tatar}}
+* Telugu: [[నెల]] (nela), [[మాసము]] (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}}
+* 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: [[חודש#Yiddish|חודש]] (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]]
+***multiculturalism***
+multiculturalism: 
+{{was wotd|2011|April|24}}
+{{wikipedia}}
+===Etymology===
+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|רב-תרבותיות}}
+{{trans-mid}}
+* Hungarian: {{t|hu|multikulturalizmus}}
+* 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]]
+[[pl:multiculturalism]]
+[[ru:multiculturalism]]
+[[fi:multiculturalism]]
+[[ta:multiculturalism]]
+***nonsense***
+nonsense: 
+
+===Etymology===
+{{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====
+{{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}}
+{{trans-mid}}
+* Icelandic: {{t|is|rugl|n}}, {{t|is|bull|n}}
+* 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: {{ku-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)
+* Italian: {{t|it|balla|f}}, {{t|it|fandonia|f}}, {{t|it|scemenza|f}}, {{t|it|fola|f}}, {{t|it|baggianata|f}}
+{{trans-mid}}
+* 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===
+{{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]]
+***noun***
+noun: 
+{{wikipedia}}
+
+===Etymology===
+From {{etyl|xno}} {{term|noun|lang=xno}}, {{term|non|lang=xno}}, {{term|nom|lang=xno}}, from {{etyl|la}} {{term|nomen|nōmen|name|lang=la}}.
+
+===Pronunciation===
+* {{a|UK|US}} {{IPA|/naʊn/}}, {{X-SAMPA|/naUn/}}
+* {{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}}
+* Bashkir: {{tø|ba|исем|tr=isem}}
+* Basque: {{t-|eu|izen|xs=Basque}}
+* {{trreq|bar}}
+* Belarusian: {{t|be|назоўнік|m|xs=Belarusian}}
+* Bengali: {{t|bn|বিশেষ্য|tr=biśeṣya}}
+* {{trreq|bpy}}
+* Bosnian: {{t|bs|imenice}}
+* Breton: {{t|br|anv-kadarn|xs=Breton}}
+* Bulgarian: {{t|bg|съществително име|m|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|名詞|tr=ming4 ci4|sc=Hani|xs=Cantonese}}
+*: {{trreq|gan}}
+*: {{trreq|hak}}
+*: Mandarin: {{t-|cmn|名詞|sc=Hani}}, {{t-|cmn|名词|tr=míngcí|sc=Hani}}
+*: {{trreq|cdo}}
+*: Min Nan: {{t|nan|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}}
+* Croatian: {{t+|hr|imenica|f|alt=ȉmenica}}
+* 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}}
+* German: {{t+|de|Substantiv|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=sangyaa|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í}} ([[めいし]])
+{{trans-mid}}
+* {{trreq|jv}}
+* Kannada: {{t+|kn|ನಾಮಪದ|tr=nāmapada|sc=Knda|xs=Kannada}}
+* Kashubian: {{t-|csb|jistnik|m|xs=Kashubian}}
+* Kazakh: {{t|kk|зат есім|sc=Cyrl|xs=Kazakh}}
+* Khmer: {{t|km|នាម|tr=niem|sc=Khmr}}
+* Korean: {{t+|ko|명사|tr=myeongsa|sc=Hang}}
+* Kurdish: {{t-|ku|ناو|sc=ku-Arab}}
+* Kyrgyz: {{t|ky|зат атооч|sc=Cyrl|xs=Kyrgyz}}
+* 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|нэр үг|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|نام|xs=Persian}} (nām), {{t|fa|اسم|sc=fa-Arab}}
+* 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}}
+* Sanskrit: {{t-|sa|नामन्|n|tr=nā́man|xs=Sanskrit}}, {{t|sa|नाम |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}}
+* 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}}
+* Tamil: {{t|ta|பெயர்ச்சொல்|tr=peyarchchol|xs=Tamil}}
+* Tatar: {{tø|tt|исем|tr=isem}}
+* 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}}
+* Ukrainian: {{t+|uk|іменник|m|xs=Ukrainian}}
+* Upper Sorbian: {{t|hsb|substantiw|m|xs=Upper Sorbian}}
+* Urdu: {{t|ur|اسم|sc=ur-Arab}}
+* Vietnamese: {{t+|vi|danh từ|xs=Vietnamese}}
+* 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]]
+
+----
+
+
+***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====
+{{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}}
+* [[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}}
+
+----
+
+
+***October***
+October: 
+
+===Alternative forms===
+* [[Octobre]] {{qualifier|obsolete}}
+
+===Etymology===
+{{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.
+
+===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===
+{{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|October Crisis]]
+* [[w:October Diploma|October Diploma]]
+* [[October effect]]
+* [[Octoberfest]]
+* [[Octoberist]], [[Octobrist]]
+{{mid2}}
+* [[w:October Manifesto|October Manifesto]]
+* [[October Revolution]]
+* [[w:October Revolution Island|October Revolution Island]]
+* [[October surprise]]
+* [[w:October War|October War]]
+* [[w:October Revolution|Red October]]
+* [[w:Third Saturday in October|Third Saturday in October]]
+{{bottom}}
+
+====Translations====
+{{trans-top|tenth month of the Gregorian calendar}}
+* [[Abaza]]: {{tø|abq|октябрь}}
+* [[Abkhaz]]: {{Cyrl|[[жьҭаара]]}} {{IPAchar|(ẓ̌ṭ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: {{Arab|[[اكتوبر|أكْتُوبَر]]}} (aktóbar) {{m}}, {{Arab|[[تشرين الاول|تِشرينُ الأوّلُ]]}} (tišrīnu l-’áwwal) {{m}}
+* [[Aragonese]]: [[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}}
+* Bosnian: {{t-|bs|oktobar|m}}
+* [[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: [[十月]] (shíyuè)
+*: [[Dungan]]: {{tø|dng|шийүә|sc=Cyrl}}
+* Croatian: {{t+|hr|listopad|m}}
+* 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]]: [[Kele]], [[Ɔktober]]
+* Faroese: {{t|fo|oktober|m}}, {{t|fo|oktobur|m}}
+* Fijian: {{t|fj|okotova}}
+* Finnish: {{t+|fi|lokakuu}}
+* French: {{t+|fr|octobre|m}}
+* [[Friulian]]: [[otubar]] {{m}}
+* [[Galician]]: [[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: [[אוקטובר|אוֹקְטוֹבֶּר]] (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ūgatsú}}, {{t+|ja|神無月|tr=かんなづき, kannazuki, かみなづき, kaminazuki, かむなづき, kamunazuki}}
+* [[Javanese]]: [[Oktober]]
+* [[Kannada]]: [[ಅಕ್ಟೋಬರ್]] {{unicode|(akṭōbara)}}
+* [[Kashubian]]: [[rujan]] {{m}}
+{{trans-mid}}
+* Kazakh: {{t|kk|қазан|tr=qazan|sc=Cyrl}}
+* [[Khmer]]: {{Khmr|[[តុលា]]}} (dtolā)
+* Korean: {{t+|ko|시월|tr=siweol|sc=Kore}}
+* Latin: {{t+|la|october}}
+* Latvian: {{t+|lv|oktobris|m|xs=Latvian}}
+* [[Limburgish]]: [[Oktober]] {{m}}
+* Lithuanian: {{t+|lt|spalis|m|xs=Lithuanian}}
+* [[Livonian]]: [[oktōbõr]], [[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]]: [[ऑक्टोबर]] {{unicode|(okṭobar)}}
+* [[Montagnais]]: {{tø|moe|uashtessiu-pishimᵘ}}
+* Navajo: {{tø|nv|Ghąąjįʼ}}
+* [[Neapolitan]]: [[ottómbre]] {{m}}
+* Norwegian: {{t+|no|oktober}}
+* [[Novial]]: [[oktobre]]
+* [[Ojibwe]]: [[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}}
+* Serbian:
+*: Cyrillic: {{t+|sr|октобар|m|sc=Cyrl}}
+*: Roman: [[oktobar#Serbian|oktobar]] {{m}}, [[listopad]] {{m}}
+* [[Sicilian]]: [[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: {{Thai|[[ตุลาคม]]}} (tòò laa khohm)
+* [[Tok Pisin]]: [[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: [[tháng mười]] (十月)
+* [[Volapük]]: {{t|vo|tobul}}
+* [[Võro]]: [[rehekuu]]
+* [[Walloon]]: [[octóbe]] {{m}}
+* Welsh: {{t+|cy|Hydref|xs=Welsh}}
+* [[West Frisian]]: [[oktober]], [[wynmoanne]]
+* Wolof: {{t|wo|Oktoobar}}
+* Yiddish: {{t-|yi|אָקטאָבער|m|tr=oktober |sc=Hebr|xs=Yiddish}}
+{{trans-bottom}}
+
+====See also====
+* {{list|en|Gregorian calendar months}}
+
+----
+
+
+===of===
+grain of salt: 
+{{wikipedia}}
+===Etymology===
+From Latin {{term|cum grano salis}}, literally ''with a grain of salt'', figuratively ''with a bit of common sense''.
+
+===Noun===
+{{en-noun|sg=[[grain]] of [[salt]]|-}}
+
+# {{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}}
+* 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}}
+* German: mit einem Körnchen Salz
+{{trans-mid}}
+* 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]]
+
+====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]]
+***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===
+{{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).
+
+----
+
+
+===pears===
+apples and pears: 
+
+===Noun===
+{{en-noun|sg=[[apples]] and [[pears]]|-}}
+
+# {{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===
+From {{etyl|enm}}, unknown origin.
+
+====Noun====
+{{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====
+{{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====
+{{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]]
+
+----
+
+
+***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]]
+
+----
+
+
+***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)}}
+{{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===
+{{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====
+{{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]]
+***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]]
+***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===
+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|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}}
+* Indonesian: {{t+|id|kolam|xs=Indonesian}}
+* Interlingua: {{t|ia|stagno}}
+* Irish: {{t-|ga|linn|f|xs=Irish}}
+* Italian: {{t+|it|stagno|m}}
+* Japanese: [[池]] ([[いけ]], ike)
+* Korean: [[못]] (mot)
+{{trans-mid}}
+* Kurdish: {{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}}
+* 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]]
+
+----
+
+
+===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]]
+***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====
+{{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====
+{{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====
+{{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]]
+***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}}
+* Korean: [[파운드]] (paundeu)
+{{trans-mid}}
+* 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}}
+* 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}}
+* 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.
+# 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]]
+===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]]
+***product***
+product: 
+
+===Etymology===
+{{etyl|la}} {{term|productus|prōductus|lang=la}}, perfect participle of {{term|produco|prōdūcō|lang=la}}, first attested in English in the mathematics sense.
+
+===Pronunciation===
+* {{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===
+{{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]])
+
+----
+
+
+===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ʃ}}
+| <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ʒ}}
+| <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'''ot]], [[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]]
+===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].
+
+
+***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}}
+{{trans-mid}}
+* Hungarian: {{t+|hu|tök}}
+* 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}}
+* 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}}
+* 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]]
+===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]]
+===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]]
+===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|inf=[[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]] {{italbrac|coarse slang}}, [[pour]], [[stream]], [[teem]]
+
+====Translations====
+{{trans-top|to rain very heavily}}
+* Arabic: {{t|ar|إنها تمطر بغزارة|tr='innahaa tumTir bi-ghazaara|sc=Arab}}
+* [[Catalan]]: [[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: [[pijpenstelen regenen]], 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|βρέχει με το τουλούμι}}
+* Icelandic: {{t|is|vera mígandi rigning}}, {{t|is|rigna eldi og brennisteini}}
+{{trans-mid}}
+* [[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]]
+***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]]
+* German: {{t+|de|Rabe|m}}, {{t+|de|Kolkrabe|m}}
+* 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}}
+* Italian: {{t-|it|corvo|m}}
+* Japanese: [[渡り鴉]] ([[ワタリガラス]], watari-garasu), [[大鴉]] ([[オオガラス]], oo-garasu)
+* Kannada: {{t-|kn|ಕಾರ್ಗೊರಲಕಾಗೆ|sc=Knda|xs=Kannada}}
+* Korean: {{t|ko|큰까마귀|sc=Kore}}
+* Kurdish: {{ku-Arab|[[داڵ]]}}
+* Kyrgyz: {{t+|ky|карга|tr=karga|sc=Cyrl|xs=Kyrgyz}}
+* Ladin: [[corf]]
+* Latgalian: {{tø|ltg|krauklis|m}}
+{{trans-mid}}
+* Latin: {{t-|la|corvus|m}}
+* Latvian: [[krauklis]]
+* Lithuanian: {{t+|lt|kranklys|m|xs=Lithuanian}}
+* 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}}
+* Old Irish: {{tø|sga|bran|m|xs=Old Irish}}, {{tø|sga|fiach|m|xs=Old Irish}}, {{tø|sga|trogan|m|xs=Old Irish}}
+* 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|male or female}} {{t|vo|rab}}, {{qualifier|male}} {{t|vo|hirab}}, {{qualifier|female}} {{t|vo|jirab}}, {{qualifier|male or female offspring, young}} {{t|vo|rabül}}, {{qualifier|young male offspring}} {{t|vo|hirabül}}, {{qualifier|young female offspring}} {{t|vo|jirabül}}
+* Welsh: {{t-|cy|cigfran|xs=Welsh}}
+* West Frisian: {{t-|fy|raven|c|xs=West Frisian}}
+{{trans-bottom}}
+
+====Adjective====
+{{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: noir comme un corbeau
+* German: {{t|de|rabenschwarz|n}}
+* 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}}
+{{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]]
+
+----
+
+
+===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}}
+* 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}}
+* German: mit einem Körnchen Salz
+{{trans-mid}}
+* 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]]
+***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===
+{{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: {{t+|ku|شه‌مه‌|sc=ku-Arab}}
+* Kyrgyz: {{t|ky|ишемби|tr=işembi|sc=Cyrl}}
+* Lao: {{t+|lo|ວັນເສົາ|tr=wan-sao|sc=Laoo|xs=Lao}}
+* 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]]
+* Lower Sorbian: {{l|dsb|sobota}} {{f}}
+* Luganda: {{tø|lg|Lwamukaaga}}
+{{trans-mid}}
+* 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|Disathairne}}
+* Scottish Gaelic: {{t-|gd|Di-sathurna|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===
+{{en-adv|-}}
+
+# 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]]
+***semantics***
+semantics: 
+{{wikipedia}}
+
+===Pronunciation===
+* {{IPA|/sɪˈmæntɪks/}}
+
+===Noun===
+{{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}}
+{{trans-mid}}
+* Hungarian: {{t|hu|szemantika}}
+* Indonesian: {{t|id|semantik}}
+* Japanese: {{Jpan|[[意味論]]}} ({{Jpan|[[いみろん]]}}, imiron)
+* Korean: {{t|ko|의미론|tr=uimilon|sc=Kore}}
+* 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]]
+***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===
+{{en-proper noun|''plural:'' '''[[Septembers]]'''}}
+
+# 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|September Campaign]]
+* [[w:September Convention|September Convention]]
+* [[w:September Dossier|September Dossier]]
+* [[Septembered]]
+* [[september elm]]
+* [[september equinox]]
+* [[Septemberer]]
+* [[w:September Group|September Group]]
+{{mid3}}
+* [[Septemberish]], [[Septembrish]]
+* [[Septemberism]]
+* [[w:September Massacres|September Massacres]]
+* [[September people]]
+* [[w:September Six|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]]: {{Cyrl|[[цәыббра]]}} (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: {{Arab|[[سبتمبر|سبْتمْبر]]}} (sibtímbir, sibtámbir, sabtámbar) {{m}}, {{Arab|[[ايلول|أيْلولٌ]]}} (’éilūl) {{m}}
+* Armenian: {{t+|hy|սեպտեմբեր|tr=september}}
+*: Old Armenian: {{tø|xcl|սեպտեմբեր|tr=september|sc=Armn}}
+* [[Azeri]]: {{t|az|sentyabr|xs=Azeri}}
+* [[Basque]]: {{t+|eu|irail|xs=Basque}}
+* Bengali: {{t-|bn|সেপ্টেম্বর|sc=Beng|xs=Bengali}}
+* Bislama: {{t|bi|septemba}}
+* Bosnian: {{t-|bs|septembar|m}}
+* [[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}}
+* Cherokee: {{t|chr|ᏚᎵᏍᏗ|tr=Dulisdi|sc=Cher}}
+* Chinese: [[九月]] (jiǔyuè)
+* Croatian: {{t+|hr|rujan|m}}
+* 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]]: [[Anyɔnyɔ]], [[#English|September]]
+* Faroese: {{t|fo|september|m}}, {{t|fo|septembur|m}}
+* Fijian: {{t|fj|Seviteba}}
+* Finnish: {{t+|fi|syyskuu}}
+* French: {{t+|fr|septembre|m}}
+* [[Galician]]: [[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}} (Septémvrios), {{t+|el|Σεπτέμβρης|m}} (Septémvris), {{t|el|Τρυγητής|m}} (Trygitís)
+* [[Greenlandic]]: {{t+|kl|Septembari|xs=Greenlandic}}
+* [[Haitian Creole]]: {{tø|ht|septanm}}
+* Hawaiian: {{tø|haw|Kepakemapa}}
+* Hebrew: [[ספטמבר|סֶפְּטֶמְבֶּר]] (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]]: [[septembre]]
+* Irish: {{t+|ga|Meán Fómhair|m|xs=Irish}}
+* Italian: {{t+|it|settembre|m}}
+* Japanese: {{t+|ja|九月|tr=くがつ, kúgatsu}}, {{t+|ja|長月|tr=ながつき, nagatsuki}}
+{{trans-mid}}
+* Kazakh: {{t|kk|қыркүйек|tr=qırküyek|sc=Cyrl}}
+* [[Khmer]]: {{Khmr|[[កញ្ញា]]}} (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]]: [[septembõr]], [[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: [[hepetemamahuru]]
+* [[Montagnais]]: {{tø|moe|ushkau-pishimᵘ}}
+* Navajo: {{tø|nv|Biniʼantʼą́ą́tsoh}}
+* [[Neapolitan]]: [[settiembre]], [[settembre]]
+* Norwegian: {{t+|no|september}}
+* [[Novial]]: [[septembre]]
+* [[Ojibwe]]: [[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|pop}} {{t+|ro|răpciune}}, {{qualifier|pop}} {{t|ro|vincer}}
+* [[Romansch]]: {{t|rm|satember|m}}, {{t|rm|settember|m}}
+* Russian: {{t+|ru|сентябрь|m|tr=sentjábr’}}
+* Samoan: {{t|sm|setema}}
+* Serbian:
+*: Cyrillic: {{t+|sr|септембар|m|sc=Cyrl}}
+*: Roman: [[septembar#Serbian|septembar]] {{m}}, [[rujan]] {{m}}
+* [[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: {{Thai|[[กันยายน]]}} (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]]: [[süküskuu]]
+* Welsh: {{t+|cy|Medi|m|xs=Welsh}}
+* [[West Frisian]]: [[septimber]], [[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}}
+
+----
+
+
+***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]]
+===sources===
+Wiktionary:Public domain sources: 
+
+The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.
+
+Some scanned fascicles of Oxford English Dictionary under the title ''A New English Dictionary on Historical Principles'' by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.
+
+The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240].
+
+
+===speech===
+freedom of speech: 
+{{wikipedia|Freedom of speech}}
+{{wikinews|Category:Free speech}}
+{{commons|Category:Freedom of speech}}
+{{wikiquote|Freedom of speech}}
+
+===Etymology===
+{{rfe}}
+
+===Pronunciation===
+* {{audio-pron|en-us-freedom_of_speech.ogg|ipa=/fɹiː.dəm.əv.spiːtʃ/|lang=en|country=us|dial=Midland American English.ogg}}
+
+===Noun===
+{{en-noun|sg=[[freedom]] [[of]] [[speech]]|-}}
+
+# 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]]
+
+====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]]
+***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}}
+{{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]]
+
+----
+
+
+***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===
+{{en-noun|Sundays}}
+
+# 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]].
+<!--probably just an attributive form of the noun: #An appointment, person, or feeling associated with this day of the week.-->
+
+====Derived terms====
+{{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: {{ku-Arab|[[یه‌کشه‌م]]}}, {{ku-Arab|[[یه‌کشه‌مه‌]]}}
+* Kyrgyz: {{t|ky|жекшемби|tr=cekşembi|sc=Cyrl}}
+* Lao: {{t+|lo|ວັນອາທິດ|tr=wan-'aa-thit|sc=Laoo|xs=Lao}}
+* 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}}
+* Luxembourgish: {{t|lb|Sonnden|m}}, {{t|lb|Sonndeg|m}}
+{{trans-mid}}
+* 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|Didòmhnaich}}
+* Scottish Gaelic: [[Di-domhnaich]] {{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===
+{{en-adv|-}}
+
+# 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]]
+***swap***
+swap: 
+{{wikipedia}}
+
+===Alternative forms===
+* [[swop]] {{qualifier|nonstandard}}
+
+===Pronunciation===
+* {{audio|en-us-swap.ogg|Audio (US)}}
+* {{rhymes|ɒp}}
+
+===Etymology===
+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===
+{{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}}
+* Czech: {{t-|cs|vyměnit}}, {{t-|cs|prohodit}}
+* Finnish: [[vaihtaa]], [[tehdä]] [[vaihtokauppa]]
+{{trans-mid}}
+* French: {{t+|fr|échanger}}
+* Latvian: {{t|lv|mainīt}}
+{{trans-bottom}}
+
+===Anagrams===
+* [[paws#English|paws]]
+* [[wasp#English|wasp]]
+* [[WSPA#English|WSPA]]
+
+[[Category:Trading]]
+
+----
+
+
+***swop***
+swop: 
+
+===Noun===
+{{en-noun}}
+
+# {{alternative spelling of|swap}}
+
+===Verb===
+{{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]]
+***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}}
+* 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===
+* [[homotypic]]
+* [[heterotypic]]
+
+----
+
+
+***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===
+{{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]]
+
+----
+
+
+***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}}.
+
+===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]]
+* 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|Diardaoin}}
+* Scottish Gaelic: [[Di-ardaoin]]
+* 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===
+{{en-adv|-}}
+
+# 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]]
+***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===
+{{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}}
+{{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}}
+* Norwegian: {{t|no|håndverk|n}}, {{t-|no|fag|n}}
+{{trans-mid}}
+* 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}}
+{{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===
+{{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====
+{{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}}
+* 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]]
+***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]].
+
+===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}}
+* 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}}
+* 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}}
+* 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: {{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}}
+* 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}}
+* Scots: [[Tysday]], {{tø|sco|Dimàirt}}
+* 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===
+{{en-adv|-}}
+
+# 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]]
+***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ɜː(r)b/}}, {{X-SAMPA|/v3:(r)b/}}
+* {{audio|en-us-verb.ogg|Audio (US)}}
+* {{rhymes|ɜː(r)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====
+{{top3}}
+* [[adverb]]
+* [[anomalous verb]]
+* [[auxiliary verb]]
+* [[boot verb]]
+* [[copular verb]]
+* [[coverb]]
+* [[defective verb]]
+* [[ditransitive verb]]
+* [[dynamic verb]]
+* [[full verb]]
+* [[helping verb]]
+{{mid3}}
+* [[impersonal verb]]
+* [[intransitive verb]]
+* [[irregular verb]]
+* [[linking verb]]
+* [[modal verb]]
+* [[passive verb]]
+* [[phrasal verb]]
+* [[preverb]]
+* [[regular verb]]
+* [[serial verb]]
+* [[stative verb]]
+{{mid3}}
+* [[subject-verb agreement]]
+* [[transitive verb]]
+* [[verb inflection]]
+* [[verb phrase]]
+* [[verb tense]]
+* [[verbal]]
+* [[verbal complement]]
+* [[verbal noun]]
+* [[verbal regency]]
+* [[verbless clause]]
+{{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: {{Arab|[[فعل]]}} (fiʕl) {{m}}
+* 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|xs=Belarusian}}
+* Bengali: {{t|bn|ক্রিয়া|tr=kriyā|sc=Beng}}
+* {{trreq|bpy}}
+* Bosnian: {{t-|bs|glagol|m}}
+* 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|хандош}}
+* Chinese:
+*: Cantonese: {{tø|yue|動詞|tr=dung6 ci4|sc=Hani|xs=Cantonese}}
+*: Mandarin: [[動詞]], [[动词]] (dòngcí)
+*: Min Nan: [[tōng-sû]]
+* Chuvash: {{tø|cv|глагол|sc=Cyrl|xs=Chuvash}}
+* Crimean Tatar: {{tø|crh|fiil|xs=Crimean Tatar}}
+* Croatian: {{t+|hr|glagol|m}}
+* 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: [[ზმნა]] (zmna)
+* German: {{t+|de|Zeitwort|n}}, {{t+|de|Verb|n}}, {{t+|de|Verbum|n}}
+* Greek: {{t+|el|ρήμα|n|tr=ˈrima}}
+* Greenlandic: {{t-|kl|oqaluut|xs=Greenlandic}}
+* Hebrew: {{t+|he|פועל|tr=pô'al}}
+* Hindi: {{t+|hi|क्रिया|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}}
+{{trans-mid}}
+* Kazakh: {{t|kk|етістік|sc=Cyrl|xs=Kazakh}}
+* Khmer: {{t-|km|កិរិយាស័ព្ទ|tr=gēiriyā səp|sc=Khmr|xs=Khmer}}
+* Korean: {{t+|ko|동사|tr=dongsa|sc=Hang}} ({{Kore|動詞}})
+* Kurdish: {{ku-Arab|[[کردار]]}}
+* Kyrgyz: {{t|ky|этиш|sc=Cyrl|xs=Kyrgyz}}
+* 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}}
+* {{trreq|mt}}
+* Marathi: {{t|mr|क्रियापद|tr=kriyāpada|sc=Deva}}
+* Mongolian: {{t-|mn|үйл үг|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: {{fa-Arab|[[فعل]]}} (fel)
+* 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}}
+* Serbian:
+*: Cyrillic: {{t-|sr|глагол|m|sc=Cyrl}}
+*: Roman: [[glagol#Serbian|glagol]] {{m}}
+* Sicilian: {{t+|scn|verbu|m|xs=Sicilian}}
+* Slovak: {{t+|sk|sloveso}}
+* 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|феъл|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}}
+* Ukrainian: {{t+|uk|дієслово|xs=Ukrainian}}
+* Upper Sorbian: [[werb]] {{m}}
+* Vietnamese: {{t+|vi|động từ|xs=Vietnamese}}
+* 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|ווערב|xs=Yiddish}} (verb) {{m}}, {{t|yi|צייטווארט|xs=Yiddish}} (tsaytvort) {{n}}
+* {{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]]
+
+----
+
+
+***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]]'')
+
+===Noun===
+{{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]]
+***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 {{proto|Germanic|Wōdanas dagaz|Wednesday|lit=Woden's Day|lang=en}}, equivalent to {{compound|Woden|alt1=Woden's|day}}. 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}}.
+
+===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}}
+* 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: {{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: [[Di-ciadaoin]] {{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===
+{{en-adv|-}}
+
+# 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]]
+===Wiktionary===
+Wiktionary:Public domain sources: 
+
+The first fascicle of the Oxford English Dictionary was published in 1884, and it was published in fascicles until completion in 1928. Oxford English Dictionary is a great source of word history.
+
+Some scanned fascicles of Oxford English Dictionary under the title ''A New English Dictionary on Historical Principles'' by James A. H. Murray can be found at archive.org, as seen in [http://www.archive.org/search.php?query=creator%3A%22James%20A.%20H.%20Murray%22 works by James A. H. Murray]. They have been scanned by a person whose [http://lists.canonical.org/pipermail/kragen-tol/2005-October/000794.html letter of intent] can be seen, as well as his [http://lists.canonical.org/pipermail/kragen-tol/2006-March/000816.html progress] as of March 16 2006. He is scanning those fascicles published in the US before 1923, maybe because in the UK the copyright is [http://answers.google.com/answers/threadview?id=16644 extended to author's life + 70 years]. There seem to be no plain text files converted using OCR.
+
+The volume 1 of OED, 1884, is also avaliable at Fractionary, starting at [http://fraktionary.com/index.php/OED:1_1 OED:1_1], and ending at [http://fraktionary.com/index.php/OED:1_1240 OED:1_1240].
+
+
+Wiktionary:Entry layout explained: 
+
+===Noun===
+{{en-noun}}
+
+# A piece of [[furniture]] to [[sleep]] on.
+
+===References===        
+* ''The Oxford Paperback Dictionary''   
+</pre>
+
+===Variations for languages other than English===
+Entries for terms in other languages should follow the standard format as closely as possible regardless of the language of the word. However, a translation into English should normally be given instead of a definition, including a gloss to indicate which meaning of the English translation is intended. Also, the translations section should be omitted.
+
+Some languages do have characteristics that require variation from the standard format.  For links to these variations see [[Wiktionary:Language considerations]].
+
+
+Wiktionary:Entry layout explained: 
+===Alternative forms===
+===Etymology===
+===Pronunciation===
+* Phonetic transcriptions
+* Audio files in any relevant dialects
+* Rhymes
+* Homophones
+* Hyphenation
+===Noun===
+Declension
+# 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===
+---- (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}}, 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|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=sv}}, {{etyl|la|-}} {{term|verbum||word|lang=la}}, {{etyl|lt|-}} {{term|vardas||name|lang=lt}}.
+
+===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]].
+
+{{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: {{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}}
+* Lingala: {{t|ln|nkómbó}}
+{{trans-mid}}
+* 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}}
+* 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}}
+* 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]]
+
+----
+
+
+word: 
+
+===Alternative forms===
+* [[ƿord]]
+
+===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}}).
+
+===Pronunciation===
+* {{IPA|lang=ang|/word/}}
+
+===Noun===
+{{ang-noun|g=n|pl=word}}
+
+# [[#English|word]]
+# [[speech]], [[utterance]], [[statement]]
+# {{context|grammar}} [[verb]]
+# [[news]], [[information]], [[rumour]]
+# [[command]], [[request]]
+
+[[Category:ang:Grammar]]
+
+----
+
+
+Index: EN EN->EN
+
diff --git a/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text b/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text
new file mode 100644 (file)
index 0000000..7c1c038
--- /dev/null
@@ -0,0 +1,2252 @@
+dictInfo=SomeWikiDataWholeSection
+EntrySource: wiktionary.WholeSection.IT.quickdic 100
+
+Index: IT IT->EN
+***a***
+a-: 
+{{wikipedia|a (prefisso)|lang=it}}
+
+===Etymology 1===
+From {{etyl|la|it}} {{term|ad|ad-|lang=la}}.
+
+====Prefix====
+{{head|it|prefix}}
+
+# {{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===
+Borrowed from {{etyl|grc|it}} {{term|ἀ-|tr=a-|lang=grc}}.
+
+====Prefix====
+{{head|it|prefix}}
+
+# [[#English|a-]] (indicating lack or loss)
+
+=====Synonyms=====
+* [[an-]]
+
+----
+
+
+***A***
+A: 
+{{wikipedia|lang=it}}
+
+===Pronunciation===
+* {{qualifier|phoneme; name of letter}} {{IPA|/a/|lang=it}}
+*: {{homophones|a|ha|lang=it}}
+
+===Letter===
+{{head|it|letter|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]]
+
+----
+
+
+***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]]
+
+----
+
+
+***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}}.
+
+===Pronunciation===
+* {{IPA|/a'bate/|lang=it}}
+* {{audio|It-abate.ogg|audio}}
+
+===Noun===
+{{it-noun|abat|m|e|i}}
+
+# [[abbot]]
+
+====Related terms====
+* [[abbazia]]
+* [[badia]]
+* [[badessa]]
+
+===Anagrams===
+* [[beata#Italian|beata]]
+
+----
+
+
+***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]]
+
+----
+
+
+***abdicate***
+abdicate: 
+
+===Verb form===
+'''abdicate'''
+
+# [[second-person plural]] [[present tense]] of [[abdicare]]
+# second-person plural [[imperative]] of abdicare
+
+[[Category:Italian verb forms]]
+
+----
+
+
+***abduce***
+abduce: 
+
+===Verb===
+'''abduce'''
+
+# {{conjugation of|abdurre||3|s|pres|ind|lang=it}}
+
+[[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]]
+
+----
+
+
+***ablative***
+ablative: 
+
+===Adjective===
+'''ablative''' {{f}}
+
+# Feminine plural form of [[ablativo]]
+
+[[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]]
+
+----
+
+
+***abortive***
+abortive: 
+
+===Adjective===
+'''abortive''' {{f}}
+
+# Feminine plural form of [[abortivo]].
+
+===Anagrams===
+* [[breviato#Italian|breviato]]
+
+[[Category:Italian adjective forms]]
+
+----
+
+
+***abrade***
+abrade: 
+
+===Verb===
+'''abrade'''
+
+# {{conjugation of|abradere||3|s|pres|ind|lang=it}}
+
+===Anagrams===
+* [[badare#Italian|badare]]
+* [[baderà#Italian|baderà]]
+
+[[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]]
+
+----
+
+
+***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]]
+***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]]
+
+----
+
+
+***abrogative***
+abrogative: 
+
+===Adjective===
+'''abrogative''' {{f}}
+
+# Feminine plural form of [[abrogativo]]
+
+[[Category:Italian adjective forms]]
+
+[[el:abrogative]]
+[[pl:abrogative]]
+[[ru:abrogative]]
+[[vi:abrogative]]
+***abusive***
+abusive: 
+
+===Adjective===
+'''abusive''' {{f}}
+
+# Feminine plural form of [[abusivo]]
+
+[[Category:Italian adjective forms]]
+
+----
+
+
+***acacia***
+acacia: 
+
+===Noun===
+{{it-noun|acaci|f|a|e}}
+
+# [[#English|acacia]] (tree)
+
+----
+
+
+***accidie***
+accidie: 
+
+===Noun===
+'''accidie''' {{f}}
+
+# {{plural of|accidia|lang=it}}
+
+[[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]]
+***acclive***
+acclive: 
+
+===Adjective===
+{{it-adj|accliv|e|i}}
+
+# [[steep]]
+
+====Derived terms====
+* {{l|it|acclività}}
+
+===Anagrams===
+* [[leccavi#Italian|leccavi]]
+* [[velacci#Italian|velacci]]
+
+----
+
+
+***accresce***
+accresce: 
+
+===Verb===
+'''accresce'''
+
+# {{conjugation of|accrescere||3|s|pres|ind|lang=it}}
+
+[[Category:Italian verb forms]]
+
+----
+
+
+***accurate***
+accurate: 
+
+===Adjective===
+{{head|it|adjective form|g=f|g2=p}}
+
+# {{feminine plural of|accurato}}
+
+===Anagrams===
+* [[cacature#Italian|cacature]]
+
+----
+
+
+***AD***
+AD: 
+
+===Initialism===
+'''AD'''
+
+# [[CEO]] ([[amministratore delegato]])
+
+===Anagrams===
+* [[da#Italian|da]], [[da'#Italian|da']], [[dà#Italian|dà]]
+
+[[Category:Italian initialisms]]
+
+----
+
+
+***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]]
+
+----
+
+
+***Albania***
+Albania: 
+{{wikipedia|lang=it}}
+
+===Pronunciation===
+* {{audio|It-Albania.ogg|Audio}}
+
+===Proper noun===
+{{it-proper noun|g=f}}
+
+# [[#English|Albania]]
+
+====Derived terms====
+* [[albanese]]
+
+[[Category:it:Countries]]
+
+----
+
+
+***Algeria***
+Algeria: 
+{{wikipedia|lang=it}}
+
+===Pronunciation===
+* {{audio|It-Algeria.ogg|Audio}}
+
+===Proper noun===
+'''Algeria''' {{f}}
+
+# [[#English|Algeria]]
+
+====Derived terms====
+* [[algerino]]
+
+===Anagrams===
+* [[regalai#Italian|regalai]]
+* [[regalia#Italian|regalia]]
+
+[[Category:Italian proper nouns]]
+[[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]]
+[[zh:Algeria]]
+***andante***
+andante: 
+
+===Verb===
+{{head|it|present participle}}
+
+# {{present participle of|andare|lang=it}}
+
+===Adjective===
+{{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]]
+***Andorra***
+Andorra: 
+{{wikipedia|lang=it}}
+
+===Proper noun===
+{{it-proper noun|g=f}}
+
+# [[#English|Andorra]]
+
+====Derived terms====
+* [[andorrano]]
+
+[[Category:it:Countries]]
+
+----
+
+
+***Angola***
+Angola: 
+{{wikipedia|lang=it}}
+
+===Pronunciation===
+* {{audio|it-Angola.ogg|Audio}}
+
+===Proper noun===
+'''Angola''' {{f}}
+
+# [[#English|Angola]]
+
+====Derived terms====
+* [[angolano]]
+
+[[Category:Italian proper nouns]]
+[[Category:it:Countries]]
+
+----
+
+
+***aquila***
+aquila: 
+
+===Etymology===
+From the {{etyl|la|it}} {{term|aquila|lang=la}}.
+
+===Noun===
+{{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]]
+----
+
+
+***are***
+are: 
+
+===Noun===
+'''are''' {{f}} {{p}}
+
+# {{plural of|ara|lang=it}}
+
+===Anagrams===
+* [[era#Italian|era]], [[Era#Italian|Era]]
+* [[rea#Italian|rea]]
+
+----
+
+
+***Argentina***
+Argentina: 
+
+===Proper noun===
+{{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]]
+
+----
+
+
+***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}}
+ària, /ˈarja/, /<tt>"arja</tt>/
+
+===Noun===
+{{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]]
+
+----
+
+
+***arietta***
+arietta: 
+
+===Noun===
+{{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]]
+***Armenia***
+Armenia: 
+{{wikipedia|lang=it}}
+
+===Proper noun===
+{{it-proper noun|g=f}}
+
+# [[#English|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]]
+
+----
+
+
+***Austria***
+Austria: 
+{{wikipedia|lang=it}}
+
+===Pronunciation===
+* {{IPA|/ˈaustrja/|lang=it}}, {{X-SAMPA|/"austrja/|lang=it}}
+
+===Proper noun===
+{{it-proper noun|g=f}}
+
+# [[#English|Austria]]
+
+====Related terms====
+* [[austriaco]]
+
+===Anagrams===
+* [[riusata#Italian|riusata]]
+* [[saturai#Italian|saturai]]
+* [[Taurasi#Italian|Taurasi]]
+
+[[Category:it:Countries]]
+[[Category:it:Exonyms]]
+
+----
+
+
+***avatar***
+avatar: 
+
+===Noun===
+{{wikipedia|lang=it}}
+{{head|it|noun|g=m}} {{inv}}
+
+# [[#English|avatar]] (all senses)
+
+===Anagrams===
+* [[tarava#Italian|tarava]], [[varata#Italian|varata]]
+
+----
+
+
+***Bahrain***
+Bahrain: 
+{{wikipedia|lang=it}}
+
+===Proper noun===
+{{head|it|proper noun|g=m}}
+
+# [[#English|Bahrain]]
+
+[[Category:it:Countries]]
+
+----
+
+
+***Bangladesh***
+Bangladesh: 
+{{wikipedia|lang=it}}
+
+===Proper noun===
+{{it-proper noun|g=m}}
+
+# [[#English|Bangladesh]]
+
+====See also====
+* [[bengalese]]
+* [[bengali]]
+
+[[Category:it:Countries]]
+
+----
+
+
+***BCE***
+BCE: 
+
+===Etymology===
+{{initialism of|Banca Centrale Europea||European Central Bank|lang=it}}
+
+===Proper noun===
+{{it-proper noun}}
+
+# [[ECB]]
+
+----
+
+
+***big***
+big: 
+
+===Noun===
+{{head|it|noun|g=m}} {{inv}}
+
+# [[star]] (entertainment)
+# [[big shot]], [[big noise]]
+
+----
+
+
+***bone***
+bone: 
+
+===Adjective===
+'''bone''' {{f}}
+
+# {{form of|Feminine plural form|[[bono]]}}
+
+[[Category:Italian adjective forms]]
+
+----
+
+
+***Bulgaria***
+Bulgaria: 
+{{wikipedia|lang=it}}
+
+===Pronunciation===
+* {{IPA|/bulɡaˈri.a/|lang=it}}, {{X-SAMPA|/bulga"ri.a/|lang=it}}
+
+===Proper noun===
+{{it-proper noun|g=f}}
+
+# [[#English|Bulgaria]]
+
+====Related terms====
+* [[bulgaro]]
+
+[[Category:it:Countries]]
+
+----
+
+
+***Burundi***
+Burundi: 
+{{wikipedia|lang=it}}
+
+===Proper noun===
+{{it-proper noun|g=m}}
+
+# [[#English|Burundi]]
+
+====Derived terms====
+* [[burundese]]
+
+[[Category:it:Countries]]
+
+----
+
+
+***can***
+can: 
+
+===Noun===
+{{it-noun|ca|m|n|ni}}
+
+# {{context|poetic|_|and literary form of [[cane#Italian|cane]]|lang=it}} [[dog]]
+
+----
+
+
+***centavo***
+centavo: 
+
+===Noun===
+{{it-noun|centav|m|o|i}}
+
+# [[#English|centavo]]
+
+===Anagrams===
+* [[covante#Italian|covante]]
+* [[vocante#Italian|vocante]]
+
+----
+
+***ci***
+ci: 
+
+===Etymology===
+<small>For the pronoun</small><br>
+From {{etyl|la|it}} {{term|ecce||look|lang=la}} + {{term|hic||here|lang=la}}
+
+<small>For the adverb</small><br>
+{{etyl|la|it}} {{term|ecce||look|lang=la}} + {{term|ibi||there|lang=la}}
+
+===Pronunciation===
+* {{IPA|/tʃi/|lang=it}}, {{X-SAMPA|/tSi/}}
+* {{homophones|C|lang=it}} {{qualifier|name of letter}}
+
+===Pronoun===
+{{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]]
+
+----
+
+
+***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]]
+[[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]]
+
+[[Category:Italian verb forms]]
+[[Category:it:Time]]
+
+----
+
+
+***deficit***
+deficit: 
+
+===Etymology===
+{{etyl|en|it}}
+
+===Noun===
+{{head|it|noun|g=m}} {{inv}}
+
+# [[#English|deficit]] (financial, medical)
+
+----
+
+
+***Esperanto***
+Esperanto: 
+
+===Noun===
+{{head|it|noun|g=m}}
+
+# [[#English|Esperanto]]
+
+===See also===
+* [[esperantista]]
+
+===Anagrams===
+* [[pensatore#Italian|pensatore]]
+* [[speronate#Italian|speronate]]
+
+----
+
+
+***Estonia***
+Estonia: 
+{{wikipedia|lang=it}}
+
+===Proper noun===
+{{head|it|proper noun|gender=f}}
+
+# [[#English|Estonia]]
+
+====Related terms====
+* [[estone]]
+
+===Anagrams===
+* [[atesino#Italian|atesino]]
+* [[esitano#Italian|esitano]]
+* [[soniate#Italian|soniate]]
+
+[[Category:it:Countries]]
+[[Category:it:Exonyms]]
+
+----
+
+
+***euro***
+euro: 
+{{wikipedia|lang=it}}
+
+===Noun===
+{{it-noun|eur|m|o|o}}
+
+# [[#English|euro]] {{qualifier|currency}}
+
+[[Category:it:Currency]]
+
+----
+
+
+***f***
+f: 
+
+===Noun===
+{{head|it|letter}} {{m|f|inv}}
+
+# See under [[F#Italian|F]]
+
+----
+
+
+***fa***
+fa: 
+
+===Pronunciation===
+* {{IPA|[ˈfa]|lang=it}}, {{X-SAMPA|/"fa/}}
+* {{hyphenation|fà}}
+
+===Adverb===
+{{it-adv}}
+
+# [[ago]]
+
+====Synonyms====
+* [[prima]]
+
+===Noun===
+{{wikipedia|Fa (nota)|lang=it}}
+{{head|it|noun}} {{m|inv}}
+
+# {{music|lang=it}} [[#English|fa]] (musical note)
+# [[F]] (musical note or key)
+
+===Alternative forms===
+* (''imperative form'') {{l|it|fa'}}, {{l|it|fai}}
+
+===Verb===
+{{head|it|verb form}}
+
+# ''Third-person singular indicative present form of'' '''{{l|it|fare}}'''.
+# ''Second-person singular imperative form of'' '''{{l|it|fare}}'''.
+
+----
+
+
+***gratis***
+gratis: 
+
+===Etymology===
+From {{etyl|la|it}} {{term|gratis|lang=la}}
+
+===Adverb===
+{{head|it|adverb}}
+
+# [[gratis#English|gratis]]
+
+====Synonyms====
+* [[gratuitamente]]
+
+===Adjective===
+{{head|it|adjective}} {{inv}}
+
+# [[free]]
+
+====Synonyms====
+* [[gratuito]]
+
+===Anagrams===
+* [[stragi#Italian|stragi]]
+
+----
+
+
+***guerra***
+guerra: 
+
+===Etymology===
+From {{etyl|roa-oit|it}} {{term|guerra|lang=it}}, from {{etyl|LL.|it}} *{{term||werra, *guerra|lang=la}}, of {{etyl|gem|it}} origin, from {{etyl|frk|it}} *{{term||werra|lang=frk}} "riot, disturbance, quarrel" from {{proto|Germanic|werzō||werzá-|confusion, disarray|lang=it}}, from {{proto|Indo-European|wers-|to mix up, confuse, beat, thresh|lang=it}}. Related to {{etyl|goh|-}} {{term|werra|lang=goh}} "confusion, strife, quarrel" ({{etyl|de|-}} {{l|de|verwirren|ver''wirren''}} "to confuse"), {{etyl|osx|-}} {{term|werran|lang=osx}} "to confuse, perplex", {{nl}} {{term|war|lang=nl}} "confusion, disarray", {{etyl|ang|-}} {{term|wyrsa|wyrsa, wiersa|lang=ang}} "worse". More at {{l|en|worse}}, {{l|en|wurst}}.
+
+===Pronunciation===
+* {{IPA|/ˈɡwɛr.ra/|lang=it}}, {{X-SAMPA|/"gwEr.ra/|lang=it}}
+* {{audio|It-la guerra.ogg|Audio}}
+
+===Noun===
+{{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à]]
+
+----
+
+
+***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]]'' or ''[[#English|i]]'', the letter ''I'' or ''i''
+
+=====Derived terms=====
+* [[i lunga]]
+
+===References===
+<references/>
+
+[[Category:it:Latin letter names]]
+
+----
+
+
+***in***
+in: 
+
+===Pronunciation===
+* {{IPA|[in]|lang=it}}
+
+===Preposition===
+{{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]]
+
+----
+
+
+***Iraq***
+Iraq: 
+{{wikipedia|lang=it}}
+
+===Proper noun===
+'''Iraq''' {{m}}
+
+# [[Iraq#English|Iraq]]
+
+====Derived terms====
+* [[iracheno]]
+
+[[Category:Italian proper nouns]]
+[[Category:it:Countries]]
+
+----
+
+
+***langue***
+langue: 
+
+===Verb===
+'''langue'''
+
+# {{conjugation of|languire||3|s|pres|ind|lang=it}}
+
+===Anagrams===
+* [[lagune#Italian|lagune]]
+
+[[Category:Italian verb forms]]
+
+----
+
+
+***lente***
+lente: 
+
+===Etymology 1===
+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====
+{{it-noun|lent|f|e|i}}
+
+# [[lens]]
+
+=====Derived terms=====
+* [[lente a contatto]]
+* [[lente d'ingrandimento]]
+
+----
+
+
+***libero***
+libero: 
+
+===Etymology===
+From {{etyl|la|it}} {{term|liber|līber}}
+
+===Pronunciation===
+* {{IPA|/ˈlibero/|lang=it}}
+* {{audio|It-libero.ogg|Audio}}
+
+===Adjective===
+{{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===
+{{head|it|verb form}}
+
+# [[first-person singular]] [[present tense]] of [[liberare]]
+
+===Noun===
+{{it-noun|liber|m|o|i}}
+
+# {{football|lang=it}} [[sweeper]].
+
+----
+
+
+***libre***
+libre: 
+
+===Noun===
+'''libre''' {{f}}
+
+# {{plural of|libra|lang=it}}
+
+----
+
+
+***medicine***
+medicine: 
+
+===Noun===
+'''medicine''' {{f}}
+
+# {{plural of|medicina|lang=it}}
+
+===Anagrams===
+* [[endemici#Italian|endemici]]
+
+----
+
+
+***minute***
+minute: 
+
+===Adjective===
+{{head|it|adjective form|g=f|g2=p}}
+
+# {{feminine plural of|minuto#Adjective|minuto}} [[tiny]], [[minute]]; [[fine]], [[delicate]], [[detailed]]
+
+===Anagrams===
+* [[emunti#Italian|emunti]]
+* [[munite#Italian|munite]]
+
+----
+
+
+***mobile***
+mobile: 
+
+===Etymology===
+From {{etyl|la|it}} ''[[mobilis]]''.
+
+===Adjective===
+{{it-adj|mobil|e|i}}
+
+# [[movable]], [[mobile#English|mobile]]
+# [[moving]]
+
+====Antonyms====
+* [[immobile]]
+
+===Noun===
+{{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]]
+
+----
+
+
+***monetario***
+monetario: 
+
+===Adjective===
+{{it-adj|monetar|io|ia|i|ie}}
+
+# [[monetary]]
+
+===Anagrams===
+* [[erotomani#Italian|erotomani]]
+
+----
+
+***nu***
+nu: 
+
+===Noun===
+{{head|it|noun|g=m|g2=f}} {{inv}}
+
+# The name of the letter [[N#Italian|N]]
+
+===Anagrams===
+* [[un#Italian|un]], [[un'#Italian|un']]
+
+----
+
+
+***o***
+o: 
+
+===Etymology 1===
+From {{etyl|la|it}} {{term|aut|lang=la}}.<ref>Angelo Prati, "Vocabolario Etimologico Italiano", Torino, 1951</ref>
+
+====Alternative forms====
+* [[od]] {{qualifier|used optionally before words beginning with a vowel}}
+
+====Conjunction====
+{{head|it|conjunction}}
+
+# [[or]]
+
+===Etymology 2===
+
+====Verb====
+{{head|it|verb form}}
+
+# {{misspelling of|ho|lang=it}}
+
+===References===
+<references/>
+
+----
+
+
+***OMC***
+OMC: 
+
+==={{initialism|Italian}}===
+'''OMC'''
+
+# [[Organizzazione Mondiale del Commercio]], [[WTO]] ([[World Trade Organisation]].)
+
+===Anagrams===
+* [[com'#Italian|com']]
+
+----
+
+
+***osteo***
+osteo-: 
+
+===Prefix===
+'''osteo-'''
+
+# {{anatomy|lang=it}} [[#English|osteo-]]
+
+[[Category:Italian prefixes]]
+
+[[et:osteo-]]
+[[fr:osteo-]]
+[[ja:osteo-]]
+[[pl:osteo-]]
+***parole***
+parole: 
+
+===Pronunciation===
+* {{IPA|/paɾɔle/|lang=it}}, {{X-SAMPA|/pa4Ole/}}
+
+===Noun===
+{{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]]
+
+----
+
+
+***peso***
+peso: 
+
+===Etymology===
+From {{etyl|la|it}} {{term|pensum|lang=la}}.
+
+===Noun===
+{{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]]
+
+----
+
+
+***pie***
+pie: 
+
+===Adjective===
+'''pie''' {{f}}
+
+# Feminine plural form of [[pio]]
+
+===Anagrams===
+* [[pei#Italian|pei]]
+
+[[Category:Italian adjective forms]]
+
+----
+
+
+***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]]
+***pseudo***
+pseudo-: 
+
+===Prefix===
+{{head|it|prefix}}
+
+# [[#English|pseudo-]]
+
+----
+
+***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]]
+***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}}
+
+===Etymology===
+Borrowed from {{etyl|la|it}} ''[[radius]]''.
+
+===Pronunciation===
+* {{enPR|ràdio}}, {{IPA|/ˈradjo/|lang=it}}, {{X-SAMPA|/"radjo/}}
+
+===Noun===
+{{it-noun|rad|m|io|i}}
+
+# {{skeleton|lang=it}} [[radius]]
+# [[radium]]
+# Variant of [[raggio]].
+
+====Synonyms====
+* {{sense|radius}} [[radiale]], [[osso radiale]]
+
+====Related terms====
+* [[radiale]]
+
+===Noun===
+{{head|it|noun|g=f}} {{inv}}
+
+# [[#English|radio]]
+
+===Verb===
+{{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]]
+
+----
+
+
+***rape***
+rape: 
+
+===Pronunciation===
+* {{IPA|/ˈrape/|[ˈraː.pe]|lang=it}}, {{X-SAMPA|/"rape/}}
+* {{hyphenation|rà|pe}}
+
+===Noun===
+'''rape''' {{f}}
+
+# {{plural of|rapa|lang=it}}
+
+===Anagrams===
+* [[apre#Italian|apre]], [[arpe#Italian|arpe]], [[pare#Italian|pare]], [[pera#Italian|pera]]
+
+----
+
+
+***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]]
+
+----
+
+
+***robot***
+robot: 
+
+===Noun===
+{{head|it|noun|g=m}} {{inv}}
+
+# {{l|en|robot}}
+# {{computing|lang=it}} [[bot]]
+
+====Derived terms====
+* [[robot da cucina]]
+
+----
+
+
+***sabato***
+sabato: 
+
+===Pronunciation===
+* {{IPA|/ˈsabato/|[ˈsaː.ba.t̪o]|lang=it}}, {{X-SAMPA|/"sabato/}}
+* {{audio|It-sabato.ogg|audio}}
+* {{hyphenation|sà|ba|to}}
+
+===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===
+{{it-noun|sabat|m|o|i}}
+
+# [[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]]
+***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===
+{{it-noun|sem|m|e|i}}
+
+# [[seed]]
+# [[pip]]
+# [[bean]] (in some cases)
+
+====Related terms====
+* [[semaio]]
+* [[sementa]]
+* [[semente]]
+* [[semenza]]
+* [[semina]]
+* [[seminare]]
+
+===Anagrams===
+* [[mese#Italian|mese]]
+
+----
+
+
+***SpA***
+SpA: 
+
+===Noun===
+{{head|it|noun}} {{f|inv}}
+
+# {{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: 
+
+===Etymology===
+From {{etyl|en|it}}
+
+===Noun===
+{{head|it|noun|g=f}} {{inv}}
+
+# [[#English|star]] {{gloss|celebrity}}
+
+----
+
+
+***stock***
+stock: 
+
+===Etymology===
+From {{etyl|en|it}} [[#English|stock]].
+
+===Noun===
+{{head|it|noun}}
+
+# [[#English|stock]], goods in supply, [[inventory]]
+
+----
+
+
+***te***
+te: 
+
+===Etymology===
+From {{etyl|la|it}} {{term|te|tē|lang=la}}, from {{term|tu|tū|lang=la}}.
+
+===Pronoun===
+{{head|it|pronoun}}
+
+# (''emphasised objective of [[tu#Italian|tu]]'') [[you]]
+
+====See also====
+* [[ti#Italian|ti]]
+* [[tè]]
+
+----
+
+
+***transfinite***
+transfinite: 
+
+===Adjective===
+'''transfinite''' {{f}}
+
+# Feminine plural form of [[transfinito]]
+
+[[Category:Italian adjective forms]]
+
+[[fr:transfinite]]
+[[ko:transfinite]]
+[[io:transfinite]]
+[[pl:transfinite]]
+[[ru:transfinite]]
+[[vi:transfinite]]
+***transitive***
+transitive: 
+
+===Adjective===
+'''transitive''' {{p}}
+
+# {{feminine of|transitivo#Adjective|transitivo}}
+
+===Anagrams===
+* [[intervista#Italian|intervista]], [[intestarvi#Italian|intestarvi]], [[intraviste#Italian|intraviste]], [[rinvestita#Italian|rinvestita]], [[rinvitaste#Italian|rinvitaste]], [[strinatevi#Italian|strinatevi]], [[vetrinista#Italian|vetrinista]]
+
+[[Category:Italian adjective forms]]
+
+----
+
+
+***Tunisia***
+Tunisia: 
+{{wikipedia|lang=it}}
+
+===Proper noun===
+'''Tunisia''' {{f}}
+
+# [[#English|Tunisia]]
+
+====Derived terms====
+* [[tunisino]]
+
+[[Category:Italian proper nouns]]
+[[Category:it:Countries]]
+
+----
+
+
+***wireless***
+wireless: 
+
+===Etymology===
+{{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]]
+***y***
+y: 
+
+===Noun===
+{{head|it|letter}} {{m|f|inv}}
+
+# See under [[Y#Italian|Y]]
+
+----
+
+
+***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===
+{{head|it|adjective}} {{m|f|inv}}
+
+# [[#English|zero]]
+
+===Noun===
+{{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]]
+
+----
+
+
+
+Index: EN EN->IT
+
index 6593b37874bcd0ea76157e7ddfa0ac9655fc1b07..7be6386c3ef7b9b025fed986e80bd22cc6edba7e 100644 (file)
--- a/todo.txt
+++ b/todo.txt
@@ -1,4 +1,7 @@
-change sorting to put your locale first
+get rid of Appendix:....  sections from EN.data in split.
+
+
+
 fix update screen.
 
 download latest wiktionaries
@@ -123,4 +126,5 @@ fix up dictionary manager:
   thread that handles unzipping, downloading for the life of the application (so screen changes don't screw it up).
   check over UI.
 * multi word search
+change sorting to put your locale first
   
\ No newline at end of file