]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
Wiktionary upgrade!
authorThad Hughes <thad.hughes@gmail.com>
Mon, 16 Jan 2012 19:43:27 +0000 (11:43 -0800)
committerThad Hughes <thad.hughes@gmail.com>
Mon, 16 Jan 2012 19:43:27 +0000 (11:43 -0800)
src/com/hughes/android/dictionary/engine/DictionaryBuilder.java
src/com/hughes/android/dictionary/engine/DictionaryTest.java
src/com/hughes/android/dictionary/parser/DictFileParser.java
src/com/hughes/android/dictionary/parser/enwiktionary/EnWiktionaryXmlParser.java
testdata/goldens/wiktionary.ar_ar.quickdic.text
testdata/goldens/wiktionary.de_de.quickdic.text
testdata/goldens/wiktionary.de_en.quickdic.text
testdata/goldens/wiktionary.fr_fr.quickdic.text
testdata/goldens/wiktionary.it_it.quickdic.text
testdata/goldens/wiktionary.zh_en.quickdic.text
testdata/goldens/wiktionary.zh_zh.quickdic.text

index 502da0b5a5c13ea3189230852b43c34d8933873a..519663774bc9242c5708d498a725f4f1bda0a672 100644 (file)
@@ -128,16 +128,16 @@ public class DictionaryBuilder {
           fatalError("Must specify human readable name for: " + prefix + "Name");
         }
 
-        final EntrySource entrySource = new EntrySource(dictionaryBuilder.dictionary.sources.size(), inputName, dictionaryBuilder.dictionary.pairEntries.size());
+        final EntrySource entrySource = new EntrySource(dictionaryBuilder.dictionary.sources.size(), inputName);
         System.out.println("");
         
         String inputFormat = keyValueArgs.remove(prefix + "Format");
         if ("tab_separated".equals(inputFormat)) {
           final boolean flipColumns = "true".equals(keyValueArgs.remove(prefix + "FlipColumns"));
-          new DictFileParser(charset, flipColumns, DictFileParser.TAB, null, dictionaryBuilder, dictionaryBuilder.indexBuilders.toArray(new IndexBuilder[0]), null).parseFile(file);
+          new DictFileParser(charset, flipColumns, DictFileParser.TAB, null, dictionaryBuilder, dictionaryBuilder.indexBuilders.toArray(new IndexBuilder[0]), null).parseFile(file, entrySource);
         } else if ("chemnitz".equals(inputFormat)) {
           final boolean flipColumns = "true".equals(keyValueArgs.remove(prefix + "FlipColumns"));
-          new DictFileParser(charset, flipColumns, DictFileParser.DOUBLE_COLON, DictFileParser.PIPE, dictionaryBuilder, dictionaryBuilder.indexBuilders.toArray(new IndexBuilder[0]), null).parseFile(file);
+          new DictFileParser(charset, flipColumns, DictFileParser.DOUBLE_COLON, DictFileParser.PIPE, dictionaryBuilder, dictionaryBuilder.indexBuilders.toArray(new IndexBuilder[0]), null).parseFile(file, entrySource);
         } else if ("enwiktionary".equals(inputFormat)) {
           final Pattern langPattern = Pattern.compile(keyValueArgs.remove(prefix + "LangPattern"), Pattern.CASE_INSENSITIVE);
           final Pattern langCodePattern = Pattern.compile(keyValueArgs.remove(prefix + "LangCodePattern"));
@@ -151,7 +151,7 @@ public class DictionaryBuilder {
             fatalError("Must be 1 or 2: " + prefix + "EnIndex");
           }
           new EnWiktionaryXmlParser(dictionaryBuilder.indexBuilders.get(enIndex), dictionaryBuilder.indexBuilders.get(1-enIndex),
-              langPattern, langCodePattern, enIndex != 0).parse(file, Integer.parseInt(pageLimit));
+              langPattern, langCodePattern, enIndex != 0).parse(file, entrySource, Integer.parseInt(pageLimit));
         } else {
           fatalError("Invalid or missing input format: " + inputFormat);
         }
index a44b5203cb786ffcc35058928f52a4d091dd116d..53b3a916f692f303075ac0e5c16d39b4ffeea449 100644 (file)
@@ -21,6 +21,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
 import junit.framework.TestCase;
 
 import com.hughes.android.dictionary.engine.Index.IndexEntry;
+import com.hughes.util.ListUtil;
 
 
 public class DictionaryTest extends TestCase {
@@ -60,9 +61,10 @@ public class DictionaryTest extends TestCase {
     
     assertEquals(2, dict.sources.size());
     assertEquals("chemnitz", dict.sources.get(0).name);
-    assertEquals(0, dict.sources.get(0).pairEntryStart);
     assertEquals("dictcc", dict.sources.get(1).name);
-    assertEquals(0, dict.sources.get(1).pairEntryStart);  // TODO: rethink this
+    
+    assertEquals("chemnitz", dict.pairEntries.get(0).entrySource.name);
+    assertEquals("dictcc", ListUtil.getLast(dict.pairEntries).entrySource.name);
     
     raf.close();
   }
index 861c693bbbaab35a255d3891c255171ed7d8bda3..f4f68c8fae466586f1b7f39b87bb77854efe02ff 100644 (file)
@@ -30,6 +30,7 @@ import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 
 import com.hughes.android.dictionary.engine.DictionaryBuilder;
+import com.hughes.android.dictionary.engine.EntrySource;
 import com.hughes.android.dictionary.engine.IndexedEntry;
 import com.hughes.android.dictionary.engine.EntryTypeName;
 import com.hughes.android.dictionary.engine.IndexBuilder;
@@ -71,6 +72,8 @@ public class DictFileParser {
   final IndexBuilder[] langIndexBuilders;
   final IndexBuilder bothIndexBuilder;
   
+  EntrySource entrySource;
+  
   // final Set<String> alreadyDone = new HashSet<String>();
     
   public DictFileParser(final Charset charset, boolean flipCols,
@@ -86,7 +89,8 @@ public class DictFileParser {
     this.bothIndexBuilder = bothIndexBuilder;
   }
 
-  public void parseFile(final File file) throws IOException {
+  public void parseFile(final File file, final EntrySource entrySouce) throws IOException {
+    this.entrySource = entrySouce;
     final BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file), charset));
     String line;
     int count = 0;
@@ -131,7 +135,7 @@ public class DictFileParser {
       subfields[1] = new String[] { fields[1] };
     }
     
-    final PairEntry pairEntry = new PairEntry();
+    final PairEntry pairEntry = new PairEntry(entrySource);
     for (int i = 0; i < subfields[0].length; ++i) {
       subfields[0][i] = subfields[0][i].trim();
       subfields[1][i] = subfields[1][i].trim();
index 1bdf5cc051d5f553648440e61d963aec061b72ab..8f51e4e9d40dece1f25c270b2211b37cf5451f50 100644 (file)
@@ -31,6 +31,7 @@ import java.util.logging.Level;
 import java.util.logging.Logger;
 import java.util.regex.Pattern;
 
+import com.hughes.android.dictionary.engine.EntrySource;
 import com.hughes.android.dictionary.engine.EntryTypeName;
 import com.hughes.android.dictionary.engine.IndexBuilder;
 import com.hughes.android.dictionary.engine.IndexedEntry;
@@ -58,6 +59,7 @@ public class EnWiktionaryXmlParser {
       "Particle|Interjection|Pronominal adverb" +
       "Han character|Hanzi|Hanja|Kanji|Katakana character|Syllable");
   
+  EntrySource entrySource;
   final IndexBuilder enIndexBuilder;
   final IndexBuilder foreignIndexBuilder;
   final Pattern langPattern;
@@ -83,7 +85,8 @@ public class EnWiktionaryXmlParser {
   }
 
   
-  public void parse(final File file, final int pageLimit) throws IOException {
+  public void parse(final File file, final EntrySource entrySource, final int pageLimit) throws IOException {
+    this.entrySource = entrySource;
     int pageCount = 0;
     final DataInputStream dis = new DataInputStream(new BufferedInputStream(new FileInputStream(file)));
     while (true) {
@@ -291,7 +294,7 @@ public class EnWiktionaryXmlParser {
   private void doTranslationLine(final String line, final String lang, final String pos, final String sense, final String rest) {
     state = State.TRANSLATION_LINE;
     // Good chance we'll actually file this one...
-    final PairEntry pairEntry = new PairEntry();
+    final PairEntry pairEntry = new PairEntry(entrySource);
     final IndexedEntry indexedEntry = new IndexedEntry(pairEntry);
     
     final StringBuilder foreignText = new StringBuilder();
@@ -492,7 +495,7 @@ public class EnWiktionaryXmlParser {
       return;
     }
     
-    final PairEntry pairEntry = new PairEntry();
+    final PairEntry pairEntry = new PairEntry(entrySource);
     final IndexedEntry indexedEntry = new IndexedEntry(pairEntry);
 
     entryIsFormOfSomething = false;
index 4c967257b69442452c78fe6d746c15b04bad37cc..1193e0e9d25d6fb9f4cad4d6c37a23ad9c091fd5 100644 (file)
@@ -97,19 +97,15 @@ Index: AR AR->EN
 ***آذار***
   آذار {{ar-noun|head=آذَارٌ|tr=’āðar|g=m}} :: March (Christian calendar followed in Syria, Lebanon, Jordan, and Iraq)
 ***أذن***
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to listen
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to allow, to permit
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to hear, to learn of, to be informed
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to call, to call to prayer
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to crow (of a rooster)
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to ask permission
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to ask permission to enter
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to have oneself announced
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to take leave, to say goodbye
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: ear
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: handle (of a cup)
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: permission, authorization
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: (plural) postal money order
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to listen
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to allow, to permit
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to hear, to learn of, to be informed
+  أذن {{ar-verb|form=II|tr=ʾáđđana|I=ء|impftr=yuʾađđinu|impf=يؤذن}} :: to call, to call to prayer
+  أذن {{ar-verb|form=II|tr=ʾáđđana|I=ء|impftr=yuʾađđinu|impf=يؤذن}} :: to crow (of a rooster)
+  أذن {{ar-noun|tr=ʾúđun|g=f|pl=آذان|pltr=ʾāđān}} :: ear
+  أذن {{ar-noun|tr=ʾúđun|g=f|pl=آذان|pltr=ʾāđān}} :: handle (of a cup)
+  أذن {{ar-noun|head=إذن|tr=ʾíđn|g=m|pl=اذون|pltr=ʾuđūn|pl2=اذونات|pl2tr=ʾuđunāt}} :: permission, authorization
+  أذن {{ar-noun|head=إذن|tr=ʾíđn|g=m|pl=اذون|pltr=ʾuđūn|pl2=اذونات|pl2tr=ʾuđunāt}} :: (plural) postal money order
 ***آدم***
   آدم (ādam) {m} :: human
   آدم (ādam) {m} :: person
@@ -214,13 +210,15 @@ Index: AR AR->EN
   آخر (’āxar) {m}, اخرى (’úxrā) {f}, اخر (’úxar) {p}, آخرون (’āxarūn) {p}, اخريات (’uxrayāt) {p} :: another, one more, other
   آخر (’āxar) {m}, اخرى (’úxrā) {f}, اخر (’úxar) {p}, آخرون (’āxarūn) {p}, اخريات (’uxrayāt) {p} :: also, in turn
 ***أخت***
-  أخت (’ukht) {f}, أخوات (’akhawāt) {p} :: sister
-  أخت (’ukht) {f}, أخوات (’akhawāt) {p} :: sibling
+  أخت {{ar-noun|tr=ʾuxt|g=f|pl=أخوات|pltr=ʾaxawāt}} :: sister
+  أخت {{ar-noun|tr=ʾuxt|g=f|pl=أخوات|pltr=ʾaxawāt}} :: sibling
 ***أخطبوط***
   أخطبوط {{ar-noun|tr=’uxṭubūṭ|g=m}} :: octopus
 ===اختك===
   (North Levantine Arabic) كس {m} (kiss) (noun) :: {vulgar} cunt
     كس اختك (kiss íkhtak) :: your sister’s pussy (general term of discontentment, like English fuck!)
+***اخیرا***
+  اخیرا أخيرا (akhiran) :: finally
 ***إكسينون***
   إكسينون {{ar-noun|tr=’iksīnon|g=m}} :: xenon
 ***أكتوبر***
@@ -319,12 +317,12 @@ Index: AR AR->EN
     {constellation} الدب الاصغر (ad-dubb al-’áʂğar) :: Ursa Minor
     {astronomy} الدب الاكبر (ad-dubb al-’ákbar) :: Ursa Major
 ***الإسلام***
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
-  الإسلام (al-’islām) {m} :: Islam, the religious system advocated by Muhammad, Mohammedanism
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: Islam, the religious system advocated by Muhammad, Mohammedanism
 ===الاستسلام===
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ***الاتحاد***
   الاتحاد السوفيتي الاِتّحَادُ السّوفِيَتِيّ (al-ittiħād us-sufiāti) {m} :: Soviet Union
 ***الإثنين***
@@ -467,8 +465,8 @@ Index: AR AR->EN
   ليبيا {f} (lībiya) (proper noun) :: Libya
     ليبيا دولة تقع في شمال أفريقيا على الساحل الجنوبي للبحر الأبيض المتوسط. :: Libya is a country located in Northern Africa on the southern coast of the Mediterranean Sea.
 ===المعنى===
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ***النار***
   النار (an-nār) {f} :: fire
   النار (an-nār) {f} :: hell
@@ -490,7 +488,7 @@ Index: AR AR->EN
   القاعدة (al-qāʕida) {f}, قواعد (qawāʕid) {p} :: al-Qaeda (al-Qaida) (a worldwide network of militant Islamic organizations and individuals).
   القاعدة (al-qāʕida) {f}, قواعد (qawāʕid) {p} :: the foundation, the base
 ***القدس***
-  القدس القُدْس (al-quds) :: Jerusalem
+  القدس {{ar-proper noun|g=f|tr=al-quds|head=القُدْس}} :: Jerusalem
 ***القرآن***
   القرآن (al-qur’ān) {m} :: the Qur’an (The Islamic holy book).
 ***القوم***
@@ -589,8 +587,8 @@ Index: AR AR->EN
   جمل جَمَل (jamal) {m}, جمال (jimāl) {p} :: chameleon
     جمل اليهود (jámal al-yahūd) :: chameleon
 ===العام===
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ===العائلة===
   رب (rabb) {m}, ارباب (’arbāb) {p} :: master, lord, king, sovereign, potentate, gentleman
     الرب (ar-rább) :: God; Lord
@@ -688,12 +686,11 @@ Index: AR AR->EN
 ***ána***
   (Egyptian Arabic) أنا {m|f} ('ána) (pronoun) :: I
 ***أنا***
-  أنا أنَا (’ána)ـنِيـِي :: I (subject pronoun).
-  أنا أنَا (’ána)ـنِيـِي :: me (enclitic object pronoun).
-  أنا أنَا (’ána)ـنِيـِي :: my (enclitic possessive pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: I (subject pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: me (enclitic object pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: my (enclitic possessive pronoun).
 ***انا***
-  انا أنَا (’ána) {m|f} :: I
-  انا الأنَا (al-’ána) {m} :: ego
+  انا (pronoun) :: {{alternative spelling of|1=أنا}}
   (Egyptian Arabic) أنا {m|f} ('ána) (pronoun) :: I
   (Tunisian Arabic) آنَا {m|f} (ʾānā) (pronoun) :: I
 ***أنف***
@@ -716,9 +713,7 @@ Index: AR AR->EN
   انسان إنْسَان ('insān)انسان :: human
   انسان إنْسَان ('insān)انسان :: mortal
 ***انت***
-  انت أنْتَ (’ínta) {m}, أنْتُم (’íntum, ’ántum) {p} :: you
-  انت أنْتَ (’ínta) {m}, أنْتُم (’íntum, ’ántum) {p} :: thou
-  انت أنْتِ (’ínti) {f}, أنْتُن (’íntun, ’ántun) {f|p} :: you
+  انت (pronoun) :: {{alternative spelling of|1=أنت}}
   (Egyptian Arabic) انت {m} (inta) (pronoun), انتي (inti) {f}, انتوا (intu) {p} :: you
   (Tunisian Arabic) اِنْتِ {m|f} (ʾinti) (pronoun) :: you
 ***أنثى***
@@ -729,7 +724,7 @@ Index: AR AR->EN
 ***انتخاب***
   انتخاب {{ar-noun|head=إنْتِخاب|tr='intixāb|pl=انتخابات|plhead=إنْتِخابات|pltr='intixābāt}} :: election
 ***أنتم***
-  أنتم أنْتُم (’ántum) {p} :: you
+  أنتم {{ar-pron|head=أنْتُم|tr=ʾántum}} {p} :: you {p}
 ***انتوا***
   (Egyptian Arabic) انتوا {p} (íntu) (pronoun) :: you (subject pronoun)
   (Libyan Arabic) انتوا إنْتُوا (’íntu) {p} :: you
@@ -838,10 +833,6 @@ Index: AR AR->EN
   اصل {{ar-noun|head=أَصْل|tr='aSl|g=m|pl=اصول|plhead=أُصول}} :: cause, reason
   اصل {{ar-noun|head=أَصْل|tr='aSl|g=m|pl=اصول|plhead=أُصول}} :: descent, lineage, stock
   اصل {{ar-noun|head=أَصْل|tr='aSl|g=m|pl=اصول|plhead=أُصول}} :: {linguistics} root {l|gloss=primary lexical unit of a word}
-***إسلام***
-  إسلام {{ar-noun|tr=’islām|g=m}} :: submission, resignation, reconciliation
-  إسلام {{ar-noun|tr=’islām|g=m}} :: Islam
-    الإسلام (al-‘islām) &mdash; Islam :: --
 ***اسلام***
   اسلام إسلام (’islām) {m} :: submission, resignation, reconciliation
   اسلام إسلام (’islām) {m} :: religious submission to God, piety, Islam
@@ -866,7 +857,7 @@ Index: AR AR->EN
   اسمي (ísmi) :: my name is...
     اسمي أحمد (ísmi ’áħmad) :: My name is Ahmad
 ***إسرائيل***
-  إسرائيل {{ar-proper noun|tr=’isra’īl}} :: Israel
+  إسرائيل {{ar-proper noun|g=f|tr=ʾisraʾīl}} :: Israel
 ***إسرائيلي***
   إسرائيليّ (’isra’īliyy) :: Israeli
   إسرائيليّ (’isra’īliyy) :: Israelite, Israeli
@@ -1032,8 +1023,8 @@ Index: AR AR->EN
   بارز (bāriz) :: remarkable
   بارز (bāriz) :: distinguished
 ***بات***
-  بات (batt) :: definite, definitive
-  بات (batt) :: categorical
+  بات {{ar-adj|tr=batt}} :: definite, definitive
+  بات {{ar-adj|tr=batt}} :: categorical
     مَنع بات :: categorical interdiction
   بات {{ar-verb (old)|I|بات|bāta}}{{ar-verb (old)|II|بات|bátta}} :: to spend the night, to stay overnight
   بات {{ar-verb (old)|I|بات|bāta}}{{ar-verb (old)|II|بات|bátta}} :: to become
@@ -1132,6 +1123,11 @@ Index: AR AR->EN
   بلدة (bálda) {f} :: town, city
   بلدة (bálda) {f} :: place, village, community
   بلدة (bálda) {f} :: township
+***بلدي***
+  بلدي بَلَدِيّ (baladiyy) {m} :: native, indigenous
+  بلدي بَلَدِيّ (baladiyy) {m} :: communal, municipal
+  بلدي بَلَدِيّ (baladiyy) {m} :: fellow citizen, compatriot, countryman
+  بلدي بَلَدِيّ (baladiyy) {m} :: native
 ***بلدية***
   بلدية بَلَدِيَّة (baladíyya) {f}, بلديات (baladiyāt) {p} :: township, rural community
   بلدية بَلَدِيَّة (baladíyya) {f}, بلديات (baladiyāt) {p} :: district, ward (of a city)
@@ -1197,17 +1193,17 @@ Index: AR AR->EN
   برق (barq) {m}, بروق (burūq) {p} :: flash of lightning
   برق (barq) {m}, بروق (burūq) {p} :: telegraph
 ***برقع***
-  برقع بُرْقُع (burqu‘) :: burqa
-  برقع بُرْقُع (burqu‘) :: burka
-  برقع بُرْقُع (burqu‘) :: cover
-  برقع بُرْقُع (burqu‘) :: veil
-  برقع بُرْقُع (burqu‘) :: yashmak
-  برقع بُرْقُع (burqu‘) :: curtain
-  برقع بَرْقَعَ (barq‘a) :: to envelop
-  برقع بَرْقَعَ (barq‘a) :: to cover
-  برقع بَرْقَعَ (barq‘a) :: to veil
-  برقع بَرْقَعَ (barq‘a) :: to enshroud
-  برقع بَرْقَعَ (barq‘a) :: to conceal
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: burqa
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: burka
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: cover
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: veil
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: yashmak
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: curtain
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to envelop
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to cover
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to veil
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to enshroud
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to conceal
 ***بروج***
   برج (burj) (noun), dual: برجي (barjī), plural: بروج (burūj) or ابراج (’abrāj) :: castle
   برج (burj) (noun), dual: برجي (barjī), plural: بروج (burūj) or ابراج (’abrāj) :: citadel
@@ -1230,7 +1226,7 @@ Index: AR AR->EN
   بت {{ar-verb (old)|I|بت|bátta}} :: to complete, to finish, to achieve, to accomplish
   بت {{ar-verb (old)|I|بت|bátta}} :: to fix, to settle, to determine, to decide
   بت {{ar-verb (old)|I|بت|bátta}} :: to adjudge, to adjudicate
-  بت (batt) :: settlement, decision, resolution
+  بت {{ar-noun|tr=batt}} :: settlement, decision, resolution
 ***بطاطا***
   بطاطا بَطاطا (baTaaTaa) {f} :: potato, spud
   بطاطا بَطاطا (baTaaTaa) {f} :: sweet potato, yam
@@ -1316,6 +1312,8 @@ Index: AR AR->EN
 ***daff***
   دف {m} (daff) (noun), plural: دفوف, dufuufدف {m} (duff, daff) (noun), plural: دفوف, dufuuf :: side, lateral surface
   دف {m} (daff) (noun), plural: دفوف, dufuufدف {m} (duff, daff) (noun), plural: دفوف, dufuuf :: tambourine
+***دام***
+  دام {{ar-verb|II=و|form=1|tr=dāma|impf=يدوم|impftr=yadūmu}} :: to last, to endure
 ***دانمارك***
   دانمارك (dénimark) {m} :: Denmark
 ===دار===
@@ -1341,6 +1339,10 @@ Index: AR AR->EN
   دبّ (dubb) {m}, ادباب (’adbāb) {p}, دببة (díbaba) {p} :: {zoology} bear
     {constellation} الدب الاصغر (ad-dubb al-’áʂğar) :: Ursa Minor
     {astronomy} الدب الاكبر (ad-dubb al-’ákbar) :: Ursa Major
+***دبلوم***
+  دبلوم (diblōm) {m}, دبلومات (diblomāt) {p} :: diploma
+***دبلومة***
+  دبلومة (diblōma) {f}, دبلومات (diblomāt) {p} :: diploma
 ===دبي===
   برج (burj) (noun), dual: برجي (barjī), plural: بروج (burūj) or ابراج (’abrāj) :: tower
     برج خليفة (Burj Khalifa) (Khalifa Tower) (dialect: borǰ khalīfa), initially named برج دبي. :: --
@@ -1389,21 +1391,20 @@ Index: AR AR->EN
   ذبح (ðabħ) {m}ذبح{m} :: slaughter, slaughtering
   ذبح (ðabħ) {m}ذبح{m} :: sacrificial victim, blood sacrifice
 ***ذهب***
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to go, to travel
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to go away, to leave, to depart
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to disappear, to vanish
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to decline, to dwindle
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to perish, to die, to be destroyed
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to abduct, to steal, to sweep away, to annihilate
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to lead someone, to conduct someone, to take someone along
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to think, to believe, to hold the view, to be of the opinion
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to escape, to slip, to lose sight of, to forget
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to ignore, to skip, to omit
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to prepare to, to be about to
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to gild
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
-  ذهب (ðáhab) {m|f} :: gold
-  ذهب (ðáhab) {m|f} :: gold coin
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to go, to travel
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to go away, to leave, to depart
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to disappear, to vanish
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to decline, to dwindle
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to perish, to die, to be destroyed
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to abduct, to steal, to sweep away, to annihilate
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to lead someone, to conduct someone, to take someone along
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to think, to believe, to hold the view, to be of the opinion
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to escape, to slip, to lose sight of, to forget
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to ignore, to skip, to omit
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to prepare to, to be about to
+  ذهب {{ar-verb|form=2|tr=ḏáhhaba|impf=يذهب|impftr=yuḏahhibu}} :: to gild
+  ذهب {{ar-noun|tr=ḏáhab|g=mf}} :: gold
+  ذهب {{ar-noun|tr=ḏáhab|g=mf}} :: gold coin
 ***ذكر***
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to remember, to recall.
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to bear in mind.
@@ -1461,31 +1462,14 @@ Index: AR AR->EN
   مار {{ar-noun|tr=mārr|g=m}} :: passing
     المار ذكره (al-mārr ðikruhū) :: the above-mentioned, the aforesaid, the above
 ***دخل***
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to enter
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to penetrate, to pierce
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to seize
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to take up (a profession, etc.), to start
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to drop in on, to come to see, to call on
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to consummate the marriage, to cohabit, to sleep with
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to enter, to insert, to include
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to seize, to come over
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in, to admit, to show in
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to move, to haul
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to incorporate, to include, to embody, to insert
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to produce, to set off, to trigger, to induce
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to introduce
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to enroll
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to meddle, to interfere
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to intervene, to interpose
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to invade, to intrude, to disturb
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interlock, to mesh
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to meddle, to butt in
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interfere, to intervene, to interpose
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interlock, to mesh
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to be superimposed
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to shade, to blend
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to strike, to seize, to come over
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to enter
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to penetrate, to pierce
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to befall, to seize
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to take up (a profession, etc.), to start
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to drop in on, to come to see, to call on
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to consummate the marriage, to cohabit, to sleep with
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to make enter, to bring in, to let in
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to enter, to insert, to include
   دخل (dákhl) {m} :: income
   دخل (dákhl) {m} :: revenues, receipts, returns
   دخل (dákhl) {m} :: interference, intervention
@@ -1584,6 +1568,8 @@ Index: AR AR->EN
   دين {m} (diin) (noun)دين {m} (dayn) (noun)ديون{p} :: claim, financial claim
 ***ديسمبر***
   ديسمبر {{ar-noun|head=دِيسمْبِر|tr=disímbir, disámbir|g=m}} :: December (Westernized calendar)
+***دعا***
+  دعا {{ar-verb|III=و|form=1|tr=daʿā|impf=يدعو|impftr=yadʿū}} :: to invite, to summon
 ***el***
   (Egyptian Arabic) ال... (el-) (article) :: the
 ***ف***
@@ -1617,10 +1603,7 @@ Index: AR AR->EN
   (Egyptian Arabic) فارسى {m} (Fārsīyy) (proper noun) :: Persian, Farsi (language)
   (Egyptian Arabic) فارسى {{arz-adj|tr=Fārsīyy|f=فارسيه|ftr=Fārseyya}} :: Persian, Farsi
 ***فاس***
-  فاس (proper noun) :: The city of Fez in Morocco.
-***faSl***
-  فَصْل (faSl) (noun), فُصُول (fuSuul) {p} :: season
-  فَصْل (faSl) (noun), فُصُول (fuSuul) {p} :: class (group of students)
+  فاس {ar-proper noun} :: Fez
 ***fawqa***
   فَوقَ (fawqa) (preposition) :: above, on top of
 ***فبراير***
@@ -1717,8 +1700,8 @@ Index: AR AR->EN
     يومًا فيومًا (yáuman fa-yáuman) :: day after day
     شيئًا فشيئًا (šái’an fa-šái’an) :: step by step
 ***فصل***
-  فَصْل (faSl) (noun), فُصُول (fuSuul) {p} :: season
-  فَصْل (faSl) (noun), فُصُول (fuSuul) {p} :: class (group of students)
+  فصل {{ar-noun|g=m|head=فَصْل|tr=faṣl|pl=فصول|plhead=فُصُول|pltr=fuṣūl}} :: season
+  فصل {{ar-noun|g=m|head=فَصْل|tr=faṣl|pl=فصول|plhead=فُصُول|pltr=fuṣūl}} :: class (group of students)
 ***فتوى***
   فتوى (fatwā) {f}, فتاو (fatāwin) {p}, فتاوى (fatāwā) {p} :: fatwa, formal legal opinion
 ***فوق***
@@ -1771,16 +1754,15 @@ Index: AR AR->EN
 ***غ***
   غ / غ‍ / ‍غ‍ / ‍غ (ğayn) :: The nineteenth letter of the Arabic alphabet. It is preceded by ع and followed by ف.
   غ / غ‍ / ‍غ‍ / ‍غ (ğayn) :: The twenty-eighth and final letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ظ.
-***ghaliṭa***
-  غَلِطَ (ghaliṭa) (verb) :: to err
-  غَلِطَ (ghaliṭa) (verb) :: to make a mistake
+***غائم***
+  غائم (ğā’im) :: cloudy, overcast, clouded
 ***غبي***
   غبي (ghábiy) {m}, غبية (ghabíyya) {f}, أغبياء (’aghbiyaa’) {p} :: idiot
   غبي (ghábiy) {m}, غبية (ghabíyya) {f}, أغبياء (’aghbiyaa’) {p} :: stupid
   غبي (ghábiy) {m}, غبية (ghabíyya) {f}, أغبياء (’aghbiyaa’) {p} :: unwise
 ***غلط***
-  ØºÙ\8eÙ\84Ù\90Ø·Ù\8e (ghaliá¹­a) (verb) :: to err
-  ØºÙ\8eÙ\84Ù\90Ø·Ù\8e (ghaliá¹­a) (verb) :: to make a mistake
+  ØºÙ\84Ø· {{ar-verb|head=غÙ\8eÙ\84Ù\90Ø·Ù\8e|tr=Ä\9faliá¹­a|form=1|impf=Ù\8aغÙ\84Ø·|impftr=yaÄ\9flaá¹­u}} :: to err
+  ØºÙ\84Ø· {{ar-verb|head=غÙ\8eÙ\84Ù\90Ø·Ù\8e|tr=Ä\9faliá¹­a|form=1|impf=Ù\8aغÙ\84Ø·|impftr=yaÄ\9flaá¹­u}} :: to make a mistake
 ***غرفة***
   غرفة غُرْفَة (ghurfa) {f}, غرف (ghuraf) {p} :: room (of a building etc.)
   غرفة غُرْفَة (ghurfa) {f}, غرف (ghuraf) {p} :: compartment
@@ -2192,24 +2174,15 @@ Index: AR AR->EN
   حِصان {m} (HiSaan) (noun) ({{IPA|/ħisˤaːn/}}), أَحْصِِنة('aHSina(t)) {p}, حِصانِين(HiSaaniin) {p}, حُصُن(HuSun) {p} :: knight (in chess) (plural: حصانين)
   (Egyptian Arabic) حصان {m} (HiSaan) (noun), حصانة (HaSaana(t)) {p} :: horse
 ***حسب***
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to calculate, to compute
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to guess, to reckon
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to count
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to charge, to debit
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to credit
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to attach importance
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to regard, to consider, to deem
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to assume, to think, to suppose, to believe
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle and account, to get even
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to call to account, to ask for an accounting
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to hold responsible, to make answerable
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to be careful, to be on guard
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take precautions
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to seek to know, to try to find out
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle a mutual account
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to debit, to credit
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to calculate, to compute
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to guess, to reckon
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to count
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to charge, to debit
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to credit
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to take into account, to take into consideration, to reckon with
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to attach importance
+  حسب {{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}} :: to regard, to consider, to deem
+  حسب {{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}} :: to assume, to think, to suppose, to believe
   حسب (ħasb) {m}حسب{m}احساب{p} :: reckoning, calculation, computing
   حسب (ħasb) {m}حسب{m}احساب{p} :: thinking, opinion, view
   حسب (ħasb) {m}حسب{m}احساب{p} :: sufficiency
@@ -2275,8 +2248,8 @@ Index: AR AR->EN
 ***Huut***
   فم الحوت {m} (fam al-Huut) (proper noun) :: {star} Fomalhaut (literally, the whale’s mouth)
 ===هو===
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ***حوت***
   حوت (ħūt) {m}, حيتان (ħītān) {p}, احوات (’aħwāt) {p} :: fish
     حوت سليمان (ħūt sulaimān) — salmon :: --
@@ -2621,6 +2594,15 @@ Index: AR AR->EN
 ***خبز***
   خبز {{ar-verb (old)|I|خبز|xábaza}} :: to bake bread
   خبز (khubz) {m}, اخباز (’akhbáz) {p} :: bread
+***كحل***
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: antimony
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: kohl, stibnite (pulverized antimony)
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: black coloring of the edges of the eyelids
+  كحل (káħil) :: darkened with kohl, dyed black (of the eyelids)
 ***خلخال***
   خلخال خَلْخال (xalxāl) :: anklet
   خلخال خَلْخال (xalxāl) :: bracelet
@@ -2632,6 +2614,26 @@ Index: AR AR->EN
   خليفة (xalīfa) {m}, خلفاء (xulafā’) {p}, خلائف (xalā’if) {p} :: successor
   برج (burj) (noun), dual: برجي (barjī), plural: بروج (burūj) or ابراج (’abrāj) :: tower
     برج خليفة (Burj Khalifa) (Khalifa Tower) (dialect: borǰ khalīfa), initially named برج دبي. :: --
+***خمر***
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to cover, to hide, to conceal
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to cover, to hide, to conceal
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to permeate, to pervade, to blend, to mix
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to possess, to seize
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to harbor, to entertain
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to bear a grudge, to feel resentment
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment, to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to veil the head and face
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to conspire, to plot, to collude, to scheme
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment, to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ripen, to become ripe
+  خمر (xamr) {m|f}, خمور (xumūr) {p} :: wine
+  خمر (xamr) {m|f}, خمور (xumūr) {p} :: (plural) alcoholic beverages, liquor, spirits
 ***خمسة***
   خمسة خَمْسة (’χámsa) {m} :: five
     Eastern Arabic numeral: ٥ :: --
@@ -2642,6 +2644,8 @@ Index: AR AR->EN
   خنفساء (xunfusā’) {f}, خنافس (xanāfis) {p} :: beetle
 ***خردل***
   خردل {{ar-noun|g=m|tr=xárdal}} :: mustard
+***كحول***
+  كحول (kuħūl) {m} :: alcohol, spirits
 ***خون***
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to regard as faithless, to regard as disloyal, to regard as false, to regard as treacherous, to regard as traitorous, to regard as perfidious, to regard as dishonest, to regard as unreliable
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to call faithless, to call disloyal, to be false, to be treacherous, to be perfidious, to call false, to call treacherous, to call perfidious, to call dishonest, to call unreliable
@@ -2661,6 +2665,8 @@ Index: AR AR->EN
 ***خياط***
   خياط خَيَّاط (khayyāṭ) {m}, خَيَّاطون (khayyāṭūn) {p} :: tailor
   خياط خَيَّاط (khayyāṭ) {m}, خَيَّاطون (khayyāṭūn) {p} :: seamster
+***خيزو***
+  خيزو خيزّو (xizzu) {m} :: (Moroccan) carrot, carrots
 ***خزن***
   خزن خَزَنَ (χázana) (transitive) :: to store, to stock, to lay up, to hoard, to amass, to accumulate
   خزن خَزَنَ (χázana) (transitive) :: to keep secret
@@ -2668,6 +2674,8 @@ Index: AR AR->EN
   خزن خَزَنَ (χázana) (transitive) :: to dam
   خزن خَزْن (χazn) m :: storing, accumulation, hoarding, amassing
   خزن خَزْن (χazn) m :: storage, warehousing
+***خزو***
+  خزو خزّو (xizzu) {m} :: (Moroccan) carrot, carrots
 ***ki***
   ـكِ {f} (-ki) (suffix) :: you, your (bound object pronoun)
     بِكِ (biki) :: to you
@@ -2681,6 +2689,14 @@ Index: AR AR->EN
   (Egyptian Arabic) ي (-ii) (pronoun) :: me, my (bound object pronoun)
     لي (liyya) :: to me
     كتابي (kitaabi) :: my book
+***كلام***
+  كلامٌ (kalām) {m} :: talking, speaking
+  كلامٌ (kalām) {m} :: conversation, speech, talk, language
+  كلامٌ (kalām) {m} :: discussion, debate
+  كلامٌ (kalām) {m} :: dispute, controversy
+  كلامٌ (kalām) {m} :: words, word, saying
+  كلامٌ (kalām) {m} :: statement, remark
+  كلامٌ (kalām) {m} :: sentence, clause, phrase
 ***كلب***
   كلب {{ar-verb (old)|I|كلب|káliba}}{{ar-verb (old)|VI|تكالب|takālaba}}{{ar-verb (old)|X|استكلب|istáklaba}} :: to be seized by hydrophobia, to become rabid
   كلب {{ar-verb (old)|I|كلب|káliba}}{{ar-verb (old)|VI|تكالب|takālaba}}{{ar-verb (old)|X|استكلب|istáklaba}} :: to become mad, to become crazy
@@ -2831,8 +2847,8 @@ Index: AR AR->EN
     لي (liyya) :: to me
     كتابي (kitaabi) :: my book
 ===لكلمة===
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ***llāhi***
   ﷲ (li-llāhi) (adverb), :: for/to God, for/to Allah
 ===للبحر===
@@ -2840,8 +2856,8 @@ Index: AR AR->EN
     ليبيا دولة تقع في شمال أفريقيا على الساحل الجنوبي للبحر الأبيض المتوسط. :: Libya is a country located in Northern Africa on the southern coast of the Mediterranean Sea.
 ***لله***
   لله (li-llāhi) :: for/to God, for/to Allah
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ***لن***
   لن (lan) :: not
   لن (lan) :: Note: لن is used to deny the future. It governs the subjunctive of the verb.
@@ -2900,7 +2916,7 @@ Index: AR AR->EN
   (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
     مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
     He didn't choose a good title for his book :: --
-  بات (batt) :: categorical
+  بات {{ar-adj|tr=batt}} :: categorical
     مَنع بات :: categorical interdiction
 ***ما***
   ما {{ar-pron|tr=mā}} :: {interrogative} what?
@@ -3514,8 +3530,8 @@ Index: AR AR->EN
   نفر {m} (náfar) (verb), انفار (’anfār) {p} :: {military} soldier, private, man
   نفر {m} (náfar) (verb), انفار (’anfār) {p} :: guy, individual, person, gent, persona
 ***نافذة***
-  نافذة (nāfiða) {f}, نوافذ (nawāfið) {p} :: opening in a wall, air hole
-  نافذة (nāfiða) {f}, نوافذ (nawāfið) {p} :: window
+  نافذة {{ar-noun|tr=nāfiḏa|g=f|pl=نوافذ|pltr=nawāfiḏ}} :: opening in a wall, air hole
+  نافذة {{ar-noun|tr=nāfiḏa|g=f|pl=نوافذ|pltr=nawāfiḏ}} :: window
 ***nafr***
   نفر {p} (nafr, núffar) (adjective form) :: shy, fearful, timid ({plural of|نافر})
 ===نافر===
@@ -3689,7 +3705,7 @@ Index: AR AR->EN
   نظرية {{ar-noun|head=نَظَرِيَّة|tr=naðʿaríyya|g=f|pl=نظريات|pltr=naðʿariyyāt}} :: theory
   نظرية {{ar-noun|head=نَظَرِيَّة|tr=naðʿaríyya|g=f|pl=نظريات|pltr=naðʿariyyāt}} :: theorem
 ===نع===
-  بات (batt) :: categorical
+  بات {{ar-adj|tr=batt}} :: categorical
     مَنع بات :: categorical interdiction
 ***نعامة***
   نعامة (naʕāma) {f} (singulative), نعام (naʕām) {m} (collective), نعائم (naʕā’im) {p} :: ostrich
@@ -3764,21 +3780,21 @@ Index: AR AR->EN
   قضب {{ar-verb|form=2|tr=qáḍḍaba|head=قَضَّبَ|impf=يقضب|impfhead=يُقَضِّبُ|impftr=yuqaḍḍibu}} :: to cut off, to prune, to lop, to trim.
   قضب {{ar-noun|tr=qáḍb|g=m}} :: edible herbs
 ***قدم***
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to precede
-  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8eÙ\85Ù\8e|qádama}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}}{{ar-verb (old)|II|Ù\82Ù\8eدÙ\91Ù\85Ù\8e|qáddama}} :: to arrive, to reach
-  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8eÙ\85Ù\8e|qádama}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}}{{ar-verb (old)|II|Ù\82Ù\8eدÙ\91Ù\85Ù\8e|qáddama}} :: to be old, to be ancient
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to do earlier, to do beforehand
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to give precedence, to prefer
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to appoint as guardian
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to present, to produce, to exhibit, to display
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to hand over, to deliver
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to dedicate
+  قدم {{ar-verb (old)|I|قَدَمَ|qádama}} :: to precede
+  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}} :: to arrive, to reach
+  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}} :: to be old, to be ancient
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to do earlier, to do beforehand
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to give precedence, to prefer
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to appoint as guardian
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to present, to produce, to exhibit, to display
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to hand over, to deliver
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to dedicate
   قدم قَدَمٌ (qádam) {f}, أقدام (’aqdām) {p} :: foot (also a measure)
   قدم قَدَمٌ (qádam) {f}, أقدام (’aqdām) {p} :: step
   قدم قِدم (qidm)قُدُم :: time long past, old times
@@ -3851,8 +3867,8 @@ Index: AR AR->EN
   قرن {{ar-noun|tr=qarn|g=m}} :: century
   قرن {{ar-noun|tr=qarn|g=m}} :: horn
 ***قصاب***
-  قصاب قَصَّاب (qaṣṣāb) {m} :: butcher
-  قصاب قَصَّاب (qaṣṣāb) {m} :: slaughterer
+  قصاب {{ar-noun|tr=qaṣṣāb|head=قَصَّاب|g=m}} :: butcher
+  قصاب {{ar-noun|tr=qaṣṣāb|head=قَصَّاب|g=m}} :: slaughterer
 ***قسمة***
   قسمة {{ar-noun|head=قِسْمَة|tr=qísma|g=f|pl=قسم|pltr=qísam}} :: dividing, division, distribution, allotment, apportionment, splitting, carving up
   قسمة {{ar-noun|head=قِسْمَة|tr=qísma|g=f|pl=قسم|pltr=qísam}} :: {mathematics} division
@@ -3881,17 +3897,12 @@ Index: AR AR->EN
   قطب (quṭb) {m}, اقطاب (’aqṭāb) {p} :: pole (electrical, astronomy, geography)
   قطب (quṭb) {m}, اقطاب (’aqṭāb) {p} :: {{usually|plural}} leader, authority, leading personality, celebrity
 ***قتل***
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to slay, to murder, to assassinate
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to mitigate, to alleviate
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to mix, to dilute
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to know, to master
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to massacre, to cause carnage
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to combat, to battle, to fight
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to risk one’s life, to defy death
-  قتل (qatl) {m}قتل{m}اقتال{p} :: killing, manslaughter, homicide, murder, assassination
-  قتل (qatl) {m}قتل{m}اقتال{p} :: enemy, adversary, foe, opponent
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to kill, to slay, to murder, to assassinate
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to mitigate, to alleviate
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to mix, to dilute
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to know, to master
+  قتل {{ar-verb|form=2|impf=يقتل|tr=qáttala|impftr=yuqattilu}} :: to kill, to massacre, to cause carnage
+  قتل {{ar-noun|tr=qitl|g=m|pl=أقتال|pltr=ʾaqtāl}} :: enemy, adversary, foe, opponent
 ***قطر***
   قطر {{ar-verb (old)|I|قطر|qáTara}}{{ar-verb (old)|II|قطر|qáTTara}}{{ar-verb (old)|V|تقطر|taqáTTara}}{{ar-verb (old)|VI|تقاطر|taqāTara}}{{ar-verb (old)|X|استقطر|istáqTara}} :: to drip, to dribble, to trickle
   قطر {{ar-verb (old)|I|قطر|qáTara}}{{ar-verb (old)|II|قطر|qáTTara}}{{ar-verb (old)|V|تقطر|taqáTTara}}{{ar-verb (old)|VI|تقاطر|taqāTara}}{{ar-verb (old)|X|استقطر|istáqTara}} :: to let drip, to let dribble, to infuse in driblets
@@ -3973,17 +3984,17 @@ Index: AR AR->EN
   ران (verb) :: to tarnish
   ران (verb) :: to sully
 ***رأس***
-  رأس (rá’asa) :: to be at the head, to be chairman, to chair, to be in charge, to preside
-  رأس (rá’asa) :: to head, to lead, to direct, to manage, to run
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: head
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: head (enumerator for cattle)
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: leader, chief, chieftain
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: tip, top, summit, peak, upper part
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: vertex, apex
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: extremity, end
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: promontory, headland, cape
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: main part
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: beginning
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to be at the head, to be chairman, to chair, to be in charge, to preside
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to head, to lead, to direct, to manage, to run
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: head
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: head (enumerator for cattle)
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: leader, chief, chieftain
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: tip, top, summit, peak, upper part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: vertex, apex
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: extremity, end
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: promontory, headland, cape
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: main part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: beginning
 ***رب***
   رب {{ar-verb (old)|I|رب|rábba}}{{ar-verb (old)|II|ربب|rábbaba}} :: to be master, to be lord
   رب {{ar-verb (old)|I|رب|rábba}}{{ar-verb (old)|II|ربب|rábbaba}} :: to have possession, to gather, to control
@@ -4090,6 +4101,9 @@ Index: AR AR->EN
   رصيد (raṣīd) {m}, ارصدة (’árṣida) {p} :: capital
 ***رطب***
   رطب (rutb) (collective) :: Ripened dates, used in traditions relating to Muhammad.
+***رطوبة***
+  رطوبة (rutūba) {f} :: humidity
+  رطوبة (rutūba) {f} :: moistness
 ===rúbba===
   رب (rúbba) :: (with a following indefinite genitive) many
     رب رجلٍ (rúbba rájulin) :: many a man
@@ -4369,8 +4383,8 @@ Index: AR AR->EN
   شفرة (šáfra) {f}, شفرات (šafarāt) {p}, شفار (šifār) {p} :: brink, edge, verge
   شفرة (šífra) {f} :: cipher, code
 ***شفة***
-  شفة (šáfa) {f}, شفاه (šifāh) {p}, شفوات (šafawāt) {p} :: {anatomy} lip
-  شفة (šáfa) {f}, شفاه (šifāh) {p}, شفوات (šafawāt) {p} :: rim, edge
+  شفة {{ar-noun|tr=šáfa|g=f|pl=شفاه|pltr=šifāh|pl2=شفوات|pl2tr=šafawāt}} :: {anatomy} lip
+  شفة {{ar-noun|tr=šáfa|g=f|pl=شفاه|pltr=šifāh|pl2=شفوات|pl2tr=šafawāt}} :: rim, edge
   (Egyptian Arabic) شفة {f} (shiffa) (noun), شفايف (shafaayif) {p} :: {anatomy} lip
 ***شغف***
   شغف {{ar-verb|form=I|tr=šáğafa|impf=يشغف}} :: {medicine} to affect the pericardium
@@ -4770,30 +4784,20 @@ Index: AR AR->EN
   (Tunisian Arabic) سَمَّا (sammā) (verb) :: to title, to entitle
   (Tunisian Arabic) سَمَّا (sammā) (verb) :: to nominate, to appoint
 ***سمع***
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with ب) to hear of, to hear about
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من) to hear from
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to learn, to be told
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to learn by hearsay
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to overhear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to lend an ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to recite
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to dishonor, to discredit
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to let someone know, to tell about
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to give ear, to listen, to lend an ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to eavesdrop, to listen secretly
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to be heard of, to become known among people
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to hear, to overhear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to listen, to listen closely
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to lend an ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to eavesdrop
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: {medicine} to auscultate
-  سمع (sámʕ) {m}, اسماع (’asmāʕ) {p} :: hearing, sense of hearing
-  سمع (sámʕ) {m}, اسماع (’asmāʕ) {p} :: audition
-  سمع (sámʕ) {m}, اسماع (’asmāʕ) {p} :: ear
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to hear
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with ب) to hear of, to hear about
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من) to hear from
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to learn, to be told
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to learn by hearsay
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to overhear
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to lend an ear
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to make hear, to let hear, to give someone something to hear
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to recite
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to dishonor, to discredit
+  سمع {{ar-noun|tr=samʿ|g=m|pl=اسماع|pltr=ʾasmāʿ}} :: hearing, sense of hearing
+  سمع {{ar-noun|tr=samʿ|g=m|pl=اسماع|pltr=ʾasmāʿ}} :: audition
+  سمع {{ar-noun|tr=samʿ|g=m|pl=اسماع|pltr=ʾasmāʿ}} :: ear
   (Egyptian Arabic) سمع {{arz-verb|form=1|tr=simiʿ|impf=يسمع|impftr=yismaʿ}} :: to hear {l|gloss=to perceive with the ear}
   (Egyptian Arabic) سمع {{arz-verb|form=1|tr=simiʿ|impf=يسمع|impftr=yismaʿ}} :: to listen {l|gloss=to pay attention to a sound}
 ***سن***
@@ -4903,13 +4907,16 @@ Index: AR AR->EN
   (Egyptian Arabic) سوق (suu') (noun), pl: أسواك {m} :: market, souq, bazaar, street of shops
 ***suuq***
   سُوق (suuq) (noun) {f} or {m}, أسواق (’aswāq) {p} :: market, souq, bazaar, street of shops
+***صوفیا***
+  صوفیا {ar-proper noun} :: Sofia
 ***سوق***
   سُوق (suuq) (noun) {f} or {m}, أسواق (’aswāq) {p} :: market, souq, bazaar, street of shops
   (Egyptian Arabic) سوق (suu') (noun), pl: أسواك {m} :: market, souq, bazaar, street of shops
 ***سوريا***
   سوريا (suurya) {f} :: Syria
 ***صوت***
-  صوت {{ar-noun|head=صَوت|tr=Sawt|g=m|pl=اصوات|plhead=أَصْوات}} :: voice {l|gloss=sound uttered by the mouth}
+  صوت {{ar-noun|head=صَوت|tr=ṣawt|g=m|pl=اصوات|plhead=أَصْوات}} :: voice {l|gloss=sound uttered by the mouth}
+  صوت {{ar-verb|form=2|II=و|tr=ṣawwata|impf=يصوت|imptr=yuṣawwitu}} :: to vote
   (Egyptian Arabic) صوت {m} (Sawt) (noun) :: voice {l|gloss=sound uttered by the mouth}
 ***سيارة***
   سيارة سيّارةٌ (sayyāra) {f}, سيارات (sayyarāt) {p} :: automobile, car, motorcar
@@ -4969,7 +4976,7 @@ Index: AR AR->EN
   طالب {{ar-noun|tr=ṭā́lib|g=m|pl=طلاب|pltr=ṭullā́b|pl2=طلبة|pl2tr=ṭálaba}} :: candidate
 ***ṭarīqa***
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: manner, mode, means
-  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, method, procedure, course of action
+  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, path, method, procedure, course of action
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: system
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: creed, faith, religion
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: religious brotherhood, dervish order
@@ -5051,8 +5058,8 @@ Index: AR AR->EN
 ***تل***
   تل أبيب (tálli ’abīb) :: Tel Aviv
 ***طلاق***
-  طلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
-  طلاق (ṭalāq) {m} :: divorce
+  طلاق طَلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
+  طلاق طَلاق (ṭalāq) {m} :: divorce
 ***طلب***
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to search, to look
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to set out, to get underway, to go see
@@ -5150,7 +5157,7 @@ Index: AR AR->EN
   تركية تُرْكِيَّة (turkiyyah) :: Turkish language
 ***طريقة***
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: manner, mode, means
-  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, method, procedure, course of action
+  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, path, method, procedure, course of action
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: system
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: creed, faith, religion
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: religious brotherhood, dervish order
@@ -5245,44 +5252,25 @@ Index: AR AR->EN
   ولد {{ar-noun|g=m|tr=wálad|pl=أولاد|pltr=ʾawlād}} :: boy
   ولد {{ar-noun|g=m|tr=wálad|pl=أولاد|pltr=ʾawlād}} :: son
 ***وقف***
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to come to a stop, to come to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stop
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to come to a stop, to come to a standstill
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to stop
     قف (qif) &mdash; halt!, stop! :: --
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to pause, to hesitate
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stand
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to bring to a stop, to bring to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to arrest, to halt, to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to obstruct, to hamper
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to park (a car)
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to erect, to raise
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to make stand, to set up
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to bring to a stop, to bring to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to arrest, to halt, to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to obstruct, to hamper
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to postpone, to delay
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to suppress, to ban
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to donate, to bequeath
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stop, to halt
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to come to a stop, to come to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to pause, to suspend, to interrupt
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to waiver, to be undecided, to hesitate
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to depend on, to rest on, to be based on
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to consist in
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to fight each other, to meet in battle
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to ask to stop, to bring to a stop, to request to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stop, to halt
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to detain, to impede, to obstruct, to hamper
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to give pause
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to try to retain
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: stopping, halting
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: discontinuation, suspension
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: stay, standstill
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: pausing, resting
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: blocking
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: impediment, obstacle
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: discharge, dismissal, removal
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: {Islam} a waqf, religious endowment, endowment fund
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: inalienable property
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to pause, to hesitate
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to stand
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to bring to a stop, to bring to a standstill
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to arrest, to halt, to stop
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to obstruct, to hamper
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to park (a car)
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to erect, to raise
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: stopping, halting
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: discontinuation, suspension
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: stay, standstill
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: pausing, resting
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: blocking
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: impediment, obstacle
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: discharge, dismissal, removal
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: {Islam} a waqf, religious endowment, endowment fund
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: inalienable property
   أوقاف اوقاف (’awqāf) {p} :: {plural of|وقف}
 ***وقت***
   وقت {{ar-verb|form=2|head=وَقّتَ|tr=wáqqata}} :: to set a time, to appoint a time, to fix a time, to schedule.
@@ -5371,6 +5359,8 @@ Index: AR AR->EN
     شيئًا فشيئًا (šái’an fa-šái’an) :: step by step
 ***يونيو***
   يونيو {{ar-noun|head=يُونْيُو|tr=yúnyu|g=m}} :: June (Westernized calendar)
+***يعرفه***
+  يعرفه (yaʕrífuhu) :: he knows it/him, he recognizes it/him. (from the verb عرف, ʕárafa)
 ***ز***
   ز / ‍ز (zāyn) :: The eleventh letter of the Arabic alphabet. It is preceded by ر and followed by س.
   ز / ‍ز (zāyn) :: The seventh letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by و and followed by ح.
@@ -5394,9 +5384,9 @@ Index: AR AR->EN
 ***zawga***
   (Egyptian Arabic) زوجة {f} (zawga(t)) (noun) :: wife
 ***زائر***
-  زائر زائِر (zā’ir) {m}, زوّار (zūwār) {p} :: visitor
-  زائر زائِر (zā’ir) {m}, زوّار (zūwār) {p} :: guest
-  زائر زائِر (zā’ir) {m}, زوّار (zūwār) {p} :: caller
+  زائر {{ar-noun|tr=zāʾir|g=m|pl=زوار|pltr=zūwār}} :: visitor
+  زائر {{ar-noun|tr=zāʾir|g=m|pl=زوار|pltr=zūwār}} :: guest
+  زائر {{ar-noun|tr=zāʾir|g=m|pl=زوار|pltr=zūwār}} :: caller
 ===záʕtar===
   مناقيش (manāqīsh) {m} :: manakish (a Middle-Eastern pastry similar to pizza); also spelt manaeesh or manakeesh in English.
     مناقيش بزعتر (manāqīsh bi-záʕtar) :: thyme manakish
@@ -5463,6 +5453,10 @@ Index: AR AR->EN
   زرد {{ar-verb (old)|I|زرد|zárada}} :: to choke, to strangle
   زرد {{ar-verb (old)|I|زرد|zárada}} :: to gulp, to swallow, to devour
   زرد (zárad) {m}, زرود (zurūd) {p} :: chainmail, coat of mail
+***زرود***
+  زرود (zurūd) {m|p} :: coats of chainmail (plural of زرد).
+***زرودية***
+  زرودية (zurudíya) {f} :: (Algerian) carrot, carrots
 ***zuHal***
   زحل {m} (zuHal) (proper noun) :: Saturn (planet)
 ***زوبعة***
@@ -5530,11 +5524,11 @@ Index: AR AR->EN
   ع / ع‍ / ‍ع‍ / ‍ع (ʕayn) :: The sixteenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by س and followed by ف.
   (Egyptian Arabic) ع (ʕa) (preposition) :: see على
 ***عادة***
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: habit, wont, custom, usage, practice
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: law
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: manner
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: taxes, duties, charges, fees, rates
-  عادةً (ʕá:datan) :: usually, customarily, ordinarily, habitually
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: habit, wont, custom, usage, practice
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: law
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: manner
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عوائد|pltr=ʿawā́ʾid}} :: (in plural) taxes, duties, charges, fees, rates
+  عادة {{ar-adv|tr=ʿā́datan}}) :: usually, customarily, ordinarily, habitually
 ***عادي***
   عاديّ (ʕādi) :: normal, regular, ordinary
 ***عاهرة***
@@ -5707,14 +5701,12 @@ Index: AR AR->EN
   عربية (ʕarabíya) {f}, عربيات (ʕarabiyát) {p} :: (Egyptian Arabic) araba, coach
   عربية (ʕarabíyya) {f} or {p} :: Arabic (feminine or plural form of عربي)
 ***عرق***
-  عرق {{ar-verb|form=1|tr=ʿáriqa|impf=يعرق}} :: to sweat, to perspire
+  عرق {{ar-verb|form=1|tr=ʿáriqa|impf=يعرق|impftr=yaʿraqu}} :: to sweat, to perspire
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to make sweat, to promote perspiration
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to water down, to dilute (a drink)
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to take root
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to be deeply rooted
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to vein, to marble
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: sweat, perspiration
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
   عرق {{ar-noun|tr=ʿirq|g=m|pl=عروق|pltr=ʿurūq}} :: plant stem, leaf stem
   عرق {{ar-noun|tr=ʿirq|g=m|pl=عروق|pltr=ʿurūq}} :: vein
   عرق {{ar-noun|tr=ʿirq|g=m|pl=عروق|pltr=ʿurūq}} :: hereditary disposition
@@ -5820,7 +5812,7 @@ Index: EN EN->AR
   صلى الله عليه وسلم (ṣállā Allāhu ʕaláyhi wa sállam) :: {{context|Islam|eulogy}} "peace be upon him" (following mention of the Prophet Muhammad); abbreviated as SAW, or (in English) PBUH.
   ﷺ <big>ﷺ</big> (ṣállā Allāhu ʕaláyhi wa sállam) :: {{context|Islam|eulogy}} "peace be upon him" (following mention of the Prophet Muhammad); abbreviated SAW or, in English, PBUH.
 ===abduct===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to abduct, to steal, to sweep away, to annihilate
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to abduct, to steal, to sweep away, to annihilate
 ===Abdullah===
   عبد الله (ʕabd állah) :: {{given name|male}}, Abdullah (literally, servant of God)
 ===aberrant===
@@ -5883,10 +5875,9 @@ Index: EN EN->AR
 ===abortion===
   طرح (ṭarḥ) {m}طرح(ṭirḥ){m}طرح(ṭúraḥ){p} :: miscarriage, abortion
 ===about===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with ب) to hear of, to hear about
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with ب) to hear of, to hear about
   عن عَن (ʕan) :: about, on
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to prepare to, to be about to
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to let someone know, to tell about
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to prepare to, to be about to
 ===above===
   فَوقَ (fawqa) (preposition) :: above, on top of
   (Egyptian Arabic) فوق (fooq) (preposition) ({{IPA|/foːʔ/}}) :: above, on top of
@@ -5946,14 +5937,8 @@ Index: EN EN->AR
   عن عَن (ʕan) :: according to, as attested by, on authority of
 ===account===
   ذكر :: report, account, narration.
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle and account, to get even
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to call to account, to ask for an accounting
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle a mutual account
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to take into account, to take into consideration, to reckon with
   رصيد (raṣīd) {m}, ارصدة (’árṣida) {p} :: balance, account balance
-===accounting===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to call to account, to ask for an accounting
 ===accounts===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to keep (the books, accounts, etc.)
 ===accrue===
@@ -6002,7 +5987,7 @@ Index: EN EN->AR
 ===action===
   فعل (fiʕl) {m}, افعال (’afʕāl) {p}, فعال (fiʕāl) {p}فِعْل{m}افعالفعل{m}افاعيل :: activity, action, work
   فعل (fiʕl) {m}, افعال (’afʕāl) {p}, فعال (fiʕāl) {p}فِعْل{m}افعالفعل{m}افاعيل :: deed, act, action
-  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, method, procedure, course of action
+  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, path, method, procedure, course of action
   شهيد (šahīd) {m}, شهداء (šuhadā’) {p} :: anyone killed in action.
 ===activate===
   فعل {{ar-verb|form=II|head=فَعَّلَ|tr=fáʿʿala}} :: to activate
@@ -6029,8 +6014,6 @@ Index: EN EN->AR
 ===add===
   جمل {{ar-verb (old)|I|جمل|jámala}}{{ar-verb (old)|I|جمل|jámula}}{{ar-verb (old)|II|جمّل|jámmala}}{{ar-verb (old)|III|جامل|jāmala}}{{ar-verb (old)|IV|اجمل|’ájmala}}{{ar-verb (old)|V|تجمل|tajámmala}}{{ar-verb (old)|VI|تجامل|tajāmala}} :: to sum, to total, to add
   زيت {{ar-verb (old)|II|زيت|záyyata}} :: to add oil (to a food)
-===added===
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
 ===address===
   كلم {{ar-verb (old)|II|كلم|kállama}}{{ar-verb (old)|III|كالم|kālama}}{{ar-verb (old)|V|تكلم|takállama}} :: to speak, to talk, to address
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to address
@@ -6068,7 +6051,6 @@ Index: EN EN->AR
 ===admissible===
   حلال حَلال (ẖalāl) :: allowed, permitted, allowable, admissible, permissible
 ===admit===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in, to admit, to show in
   قبل {{ar-verb|form=I|head=قَبِلَ|tr=qábila|impf=يقبل|impfhead=يَقبَلُ|impftr=yaqbalu}} :: to admit
 ===admonish===
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to ask to be patient, to admonish to be patient
@@ -6098,14 +6080,14 @@ Index: EN EN->AR
   حسنة حَسَنَة (ħásana) {f} :: advantage
 ===adversary===
   ضد {{ar-noun|head=ضِدّ|tr=Didd|g=m|pl=اضداد|plhead=أضداد}} :: adversary, opponent
-  قتل (qatl) {m}قتل{m}اقتال{p} :: enemy, adversary, foe, opponent
+  قتل {{ar-noun|tr=qitl|g=m|pl=أقتال|pltr=ʾaqtāl}} :: enemy, adversary, foe, opponent
 ===advice===
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to ask advice of, to seek the opinion of, to consult
 ===advise===
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to notify, to advise, to apprise, to inform
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to notify, to advise, to apprise, to inform
 ===advocated===
-  الإسلام (al-’islām) {m} :: Islam, the religious system advocated by Muhammad, Mohammedanism
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: Islam, the religious system advocated by Muhammad, Mohammedanism
 ===aegyptiaca===
   بان بَان (bān) (collective) {m}, بَانَة (bāna) (singulative) {f} :: Egyptian willow (Salix aegyptiaca L.)
 ===affair===
@@ -6185,7 +6167,7 @@ Index: EN EN->AR
 ===agreeable===
   حسن {{ar-adj|head=حَسَن|tr=ħásan|g=m|f=حسنة|fhead=حَسَنَة|ftr=ħásana|el=أحسن|elhead=أحْسَن|eltr=ʾaħsan}} :: agreeable, pleasant, nice, well-favored
 ===ahead===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
   قدم قِدم (qidm)قُدُم :: straight ahead, forward
 ===Ahmad===
   اسمي (ísmi) :: my name is...
@@ -6199,7 +6181,7 @@ Index: EN EN->AR
 ===aimed===
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to design to, to be aimed at
 ===air===
-  نافذة (nāfiða) {f}, نوافذ (nawāfið) {p} :: opening in a wall, air hole
+  نافذة {{ar-noun|tr=nāfiḏa|g=f|pl=نوافذ|pltr=nawāfiḏ}} :: opening in a wall, air hole
 ===ákala===
   ياكل (yá:kul) :: (imperfective) he eats, is eating. See آكل (ákala,' 'to eat').
 ===akin===
@@ -6211,8 +6193,8 @@ Index: EN EN->AR
 ===al===
   ذو القعدة {{ar-noun|head=ذُو القَعْدَةِ|tr=ðu l-qáʕda|g=m}} :: Dhu al-Qi'dah, the eleventh of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhu al-Qi'dah means "master of the truce" in Arabic, and pagan Arabs did not conduct war during this month.
   القاعدة (al-qāʕida) {f}, قواعد (qawāʕid) {p} :: al-Qaeda (al-Qaida) (a worldwide network of militant Islamic organizations and individuals).
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ===Al===
   حسن كامل الصباح (ḥássan kāmel aṣ-ṣabāḥ) :: Hassan Kamel Al-Sabbah, a Lebanese electronics engineer and father of the solar cell.
   مسجد مَسْجِدٌ (masjid) {m}, مسجدان (masjidān) dual, مساجد (masājid) {p} :: mosque
@@ -6230,6 +6212,9 @@ Index: EN EN->AR
   ألبانيا (’albánya) {f} :: Albania
 ===alcohol===
   غول (ğūl) {f}, اغوال (’ağwāl) {p}, غيلان (ğilān) {p} :: alcohol, or alcohol beverages.
+  كحول (kuħūl) {m} :: alcohol, spirits
+===alcoholic===
+  خمر (xamr) {m|f}, خمور (xumūr) {p} :: (plural) alcoholic beverages, liquor, spirits
 ===alexandri===
   درة (dúrra) {f}, درات (durrāt) {p}, درر (dúrar) {p} :: budgie, a variety of parrot (Psittacus alexandri Linnaeus)
 ===الف===
@@ -6239,6 +6224,8 @@ Index: EN EN->AR
   الجزائر الجَزَائِر (al-jazā’ir) {p} :: Algeria
   الجزاير الجَزَائِر (al-jazā’ir) :: Algeria
   ثاقبايليث (θāqbāylīθ) :: Kabyle (a Northern Berber language of Algeria).
+===Algerian===
+  زرودية (zurudíya) {f} :: (Algerian) carrot, carrots
 ===Algiers===
   الجزائر الجَزَائِر (al-jazā’ir) {p} :: Algiers
 ===alibi===
@@ -6262,7 +6249,7 @@ Index: EN EN->AR
 ===allegiance===
   إخلاص‎ {m} (’ikhlaaS) (noun) :: loyalty, faithfulness, fidelity, allegiance
 ===alleviate===
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to mitigate, to alleviate
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to mitigate, to alleviate
 ===alley===
   زقاق (zuqāq) {m} :: alley
 ===الله===
@@ -6273,7 +6260,7 @@ Index: EN EN->AR
 ===allotment===
   قسمة {{ar-noun|head=قِسْمَة|tr=qísma|g=f|pl=قسم|pltr=qísam}} :: dividing, division, distribution, allotment, apportionment, splitting, carving up
 ===allow===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to allow, to permit
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to allow, to permit
 ===allowable===
   حلال حَلال (ẖalāl) :: allowed, permitted, allowable, admissible, permissible
 ===allowed===
@@ -6288,7 +6275,7 @@ Index: EN EN->AR
 ===alone===
   شاذ (šaðð), شذاذ (šuððāð) {p}, شواذ (šawáðð) {p} :: isolated, separate, detached, alone
 ===along===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to lead someone, to conduct someone, to take someone along
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to lead someone, to conduct someone, to take someone along
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to follow a road, to wend, to travel along
 ===alphabet===
   أبجدية أَبْجَدِيَّة (’abjadíyya) {f} :: alphabet
@@ -6381,8 +6368,6 @@ Index: EN EN->AR
   جمل {{ar-verb (old)|I|جمل|jámala}}{{ar-verb (old)|I|جمل|jámula}}{{ar-verb (old)|II|جمّل|jámmala}}{{ar-verb (old)|III|جامل|jāmala}}{{ar-verb (old)|IV|اجمل|’ájmala}}{{ar-verb (old)|V|تجمل|tajámmala}}{{ar-verb (old)|VI|تجامل|tajāmala}} :: to be polite, to be courteous, to be amiable
 ===Amman===
   عمان عُمان {LR}(3umaan)عَمّان{LR} :: Amman
-===among===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to be heard of, to become known among people
 ===amount===
   حسب (ħasb) {m}حسب{m}احساب{p} :: measure, extent, degree, quantity, amount
 ===امرأة===
@@ -6398,7 +6383,7 @@ Index: EN EN->AR
 ===ancestor===
   أبٌ {m} (’ab) (noun), آبَاءٌ (’ābā’) {p} :: ancestor, forefather
 ===ancient===
-  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8eÙ\85Ù\8e|qádama}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}}{{ar-verb (old)|II|Ù\82Ù\8eدÙ\91Ù\85Ù\8e|qáddama}} :: to be old, to be ancient
+  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}} :: to be old, to be ancient
   شعبان {{ar-noun|head=شَعْبَانُ|tr=šaʕbān|g=m}} :: Sha'aban, the eighth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Sha'aban means "scattered" in Arabic, and is the time when ancient people dispersed to find water.
 ===Andket===
   عندقت {{ar-proper noun|tr=ʕándqet}} :: Andket (a Maronite Christian village in northern Lebanon, over 1500 years old.)
@@ -6419,14 +6404,12 @@ Index: EN EN->AR
   أخبار أخْبار (’axbār) {p}اخبار{m} :: annals
   تاريخ (tārīx) {m}, تواريخ (tawārīx) {p} :: chronicles, annals
 ===annihilate===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to abduct, to steal, to sweep away, to annihilate
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to abduct, to steal, to sweep away, to annihilate
   اصل {{ar-verb (old)|I|أصل|’áṣula}}{{ar-verb (old)|II|أصل|’áṣṣala}}{{ar-verb (old)|V|تأصل|ta’áṣṣala}}{{ar-verb (old)|X|استأصل|istá’ṣala}} :: to uproot, to root out, to extirpate, to annihilate
 ===announce===
   شهر {{ar-verb (old)|I|شهر|šáhara}}{{ar-verb (old)|II|شهّر|šáhhara}}{{ar-verb (old)|III|شاهر|šāhara}}{{ar-verb (old)|IV|اشهر|’ášhara}}{{ar-verb (old)|VIII|اشتهر|ištáhara}} :: to proclaim, to announce
   شهر {{ar-verb (old)|I|شهر|šáhara}}{{ar-verb (old)|II|شهّر|šáhhara}}{{ar-verb (old)|III|شاهر|šāhara}}{{ar-verb (old)|IV|اشهر|’ášhara}}{{ar-verb (old)|VIII|اشتهر|ištáhara}} :: to proclaim, to announce
   شهر {{ar-verb (old)|I|شهر|šáhara}}{{ar-verb (old)|II|شهّر|šáhhara}}{{ar-verb (old)|III|شاهر|šāhara}}{{ar-verb (old)|IV|اشهر|’ášhara}}{{ar-verb (old)|VIII|اشتهر|ištáhara}} :: to make known, to proclaim, to announce
-===announced===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to have oneself announced
 ===announcement===
   أخبار أخْبار (’axbār) {p}اخبار{m} :: announcement
 ===announcer===
@@ -6447,14 +6430,10 @@ Index: EN EN->AR
   ضد {{ar-verb (old)|III|ضادَدَ|Daadada|ضادد}}{{ar-verb (old)|VI|تَضادَدَ|taDaadada|تضادد}} :: to be opposed to one another, to be contradictory, to contradict one another.
   جمل {{ar-verb (old)|I|جمل|jámala}}{{ar-verb (old)|I|جمل|jámula}}{{ar-verb (old)|II|جمّل|jámmala}}{{ar-verb (old)|III|جامل|jāmala}}{{ar-verb (old)|IV|اجمل|’ájmala}}{{ar-verb (old)|V|تجمل|tajámmala}}{{ar-verb (old)|VI|تجامل|tajāmala}} :: to be courteous, to be friendly to one another
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to inform one another, to notify one another
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to exchange with one another
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to avoid one another
 ===answer===
   الله اعلم (Alláhu áʕlam) :: “God only knows” (literally, “God knows best”...a traditional Arabic expression used when responding to a question to which one does not know the answer).
-===answerable===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to hold responsible, to make answerable
 ===answering===
   آلو (’ālló) :: hello (when answering the telephone)
 ===antagonistic===
@@ -6465,6 +6444,9 @@ Index: EN EN->AR
   ضد {{ar-noun|head=ضِدّ|tr=Didd|g=m|pl=اضداد|plhead=أضداد}} :: antitoxin, antidote, anti-
 ===antidote===
   ضد {{ar-noun|head=ضِدّ|tr=Didd|g=m|pl=اضداد|plhead=أضداد}} :: antitoxin, antidote, anti-
+===antimony===
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: antimony
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: kohl, stibnite (pulverized antimony)
 ===antithesis===
   عكس عَكْس (ʕaks) {m} :: antithesis
 ===antitoxin===
@@ -6483,7 +6465,7 @@ Index: EN EN->AR
   فم (fam) {m}, فو (fū) (construct state), أفواه (’afwāh) {p} :: orifice, aperture, hole, vent
   (Egyptian Arabic) فم (fumm) {m}, افمام (’afmām) {p} :: orifice, aperture, hole, vent
 ===apex===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: vertex, apex
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: vertex, apex
 ===apostasy===
   ارتداد اِرْتِداد (irtidād) :: apostasy
 ===apostle===
@@ -6527,7 +6509,7 @@ Index: EN EN->AR
   سمى {{ar-verb (old)|II|سمى|sámmā}}{{ar-verb (old)|IV|اسمى|’ásmā}}{{ar-verb (old)|V|تسمى|tasámmā}} :: to nominate, to appoint
   (Tunisian Arabic) سَمَّا (sammā) (verb) :: to nominate, to appoint
   عين {{ar-verb (old)|II|عيّن|ʕáyyana}} (transitive) :: to appoint, to nominate
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to appoint as guardian
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to appoint as guardian
   رسم {{ar-verb|form=2|tr=rássama}} :: to appoint (to public office)
   وقت {{ar-verb|form=2|head=وَقّتَ|tr=wáqqata}} :: to set a time, to appoint a time, to fix a time, to schedule.
 ===apportionment===
@@ -6700,14 +6682,11 @@ Index: EN EN->AR
   سلاح سِلاحٌ (silāħ) {m}, اسلحة (’ásliħa) {p} :: weapons, arms
 ===around===
   دور {{ar-verb (old)|II|دور|dáwwara}} :: to look for something, to search (to look around for something)
-===arrack===
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
 ===arrest===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to arrest, to halt, to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to arrest, to halt, to stop
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to arrest, to halt, to stop
   (Libyan Arabic) طب (ṭabb) {m} :: {slang}to arrest
 ===arrive===
-  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8eÙ\85Ù\8e|qádama}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}}{{ar-verb (old)|II|Ù\82Ù\8eدÙ\91Ù\85Ù\8e|qáddama}} :: to arrive, to reach
+  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}} :: to arrive, to reach
 ===arrows===
   جعبة (já‘ba) (noun), plural: جعاب :: quiver (for arrows)
 ===ascend===
@@ -6725,15 +6704,11 @@ Index: EN EN->AR
 ===Asia===
   مَا وَرَاءَ النَهْر (maa waraa3a n-nahr) (proper noun) :: Transoxiana, "beyond the river" (an old name for the land in Central Asia north of the Amu Darya River).
 ===aside===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
 ===ask===
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to ask, to beg
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to ask permission
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to inquire, to ask
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to inquire, to ask
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to ask permission to enter
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to call to account, to ask for an accounting
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to ask to stop, to bring to a stop, to request to stop
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to ask to be patient, to admonish to be patient
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to ask advice of, to seek the opinion of, to consult
   رحم {{ar-verb (old)|I|رحم|ráHima}}{{ar-verb (old)|II|رحّم|ráHHama}} :: to ask God to have mercy (upon), to plead for God’s mercy
@@ -6750,9 +6725,7 @@ Index: EN EN->AR
   كلب {{ar-verb (old)|I|كلب|káliba}}{{ar-verb (old)|VI|تكالب|takālaba}}{{ar-verb (old)|X|استكلب|istáklaba}} :: to fall on, to pounce, to rush in on, to assail
   كلب {{ar-verb (old)|I|كلب|káliba}}{{ar-verb (old)|VI|تكالب|takālaba}}{{ar-verb (old)|X|استكلب|istáklaba}} :: to assail one another, to rush against one another
 ===assassinate===
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to slay, to murder, to assassinate
-===assassination===
-  قتل (qatl) {m}قتل{m}اقتال{p} :: killing, manslaughter, homicide, murder, assassination
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to kill, to slay, to murder, to assassinate
 ===assembly===
   مشهد (mášhad) {m}, مشاهد (mašāhid) {p} :: place of assembly, meeting, meeting place
 ===assent===
@@ -6787,7 +6760,7 @@ Index: EN EN->AR
 ===association===
   نفر {m} (náfar) (verb), انفار (’anfār) {p} :: band, party, group, troop, herd, coterie, collective, cohort, clique, company, association, society, gang, flock, circle, cabal, squad, community, crowd
 ===assume===
-  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\8eبÙ\8e|Hasaba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8eبÙ\8f\8aحسب}}{{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}}{{ar-verb (old)|III|حاسب|ħÄ\81saba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħÄ\81saba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to assume, to think, to suppose, to believe
+  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}} :: to assume, to think, to suppose, to believe
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to assume an imperious attitude, to be domineering
 ===asterisk===
   نجمة {{ar-noun|tr=nájma|g=f|pl=نجمات|pltr=najamāt}} :: asterisk
@@ -6803,7 +6776,7 @@ Index: EN EN->AR
 ===atom===
   ذرة ذَرّة (ðárra) {f} (singulative), ذرات (ðarrāt) {p} :: atom
 ===attach===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to attach importance
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to attach importance
 ===attachment===
   إخلاص‎ {m} (’ikhlaaS) (noun) :: sincere devotion, loyal attachment, sincere affection
 ===attack===
@@ -6824,7 +6797,7 @@ Index: EN EN->AR
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to take care, to attend, to pay attention
   صغا {{ar-verb (old)|I|صغا|ʂağā}}{{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
   أصغى {{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
 ===attest===
   شهادة (šahāda) {f}, شهادات (šahadāt) {p} :: attestation, attest
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to attest, to confirm, to certify
@@ -6846,13 +6819,11 @@ Index: EN EN->AR
 ===auction===
   شهر {{ar-verb (old)|I|شهر|šáhara}}{{ar-verb (old)|II|شهّر|šáhhara}}{{ar-verb (old)|III|شاهر|šāhara}}{{ar-verb (old)|IV|اشهر|’ášhara}}{{ar-verb (old)|VIII|اشتهر|ištáhara}} :: to sell at auction
 ===audition===
-  سمع (sámʕ) {m}, اسماع (’asmāʕ) {p} :: audition
+  سمع {{ar-noun|tr=samʿ|g=m|pl=اسماع|pltr=ʾasmāʿ}} :: audition
 ===August===
   اب آب (’Āb) {m} :: August (month name used in Syria, Lebanon, Jordan, and Iraq)
   آبُ (āb) {m} :: August (Christian calendar followed in Syria, Lebanon, Jordan, and Iraq)
   أغسطس {{ar-noun|head=أغُسْطُسْ|tr=’ağúʂʈuʂ|g=m}} :: August (Westernized calendar)
-===auscultate===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: {medicine} to auscultate
 ===Australian===
   سيدني (sí:dni) {m} :: Sydney (Australian city)
 ===authentic===
@@ -6873,7 +6844,7 @@ Index: EN EN->AR
 ===Authority===
   السلطة الوطنية الفلسطينية (as-súlṭaṭ al-waṭaníyya al-filaṣṭiníyya) {f} :: Palestine National Authority
 ===authorization===
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: permission, authorization
+  أذن {{ar-noun|head=إذن|tr=ʾíđn|g=m|pl=اذون|pltr=ʾuđūn|pl2=اذونات|pl2tr=ʾuđunāt}} :: permission, authorization
 ===automobile===
   العربية (al-ʕarabíyya) {f} :: {{context|colloquial|Egypt}} car, automobile
   سيارة سيّارةٌ (sayyāra) {f}, سيارات (sayyarāt) {p} :: automobile, car, motorcar
@@ -6905,7 +6876,7 @@ Index: EN EN->AR
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to be conscious, to be aware
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to be conscious, to be aware
 ===away===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to go away, to leave, to depart
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to go away, to leave, to depart
   من {{ar-prep|tr=min|head=مِن}} :: from, away from, out of
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to keep, to store, to put away
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to avert, to turn away
@@ -6917,8 +6888,7 @@ Index: EN EN->AR
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to startle, to frighten, to scare away, to frighten away, to drive away, to chase away
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to avoid, to keep away, to have an aversion
   عن عَن (ʕan) :: off, away from
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to abduct, to steal, to sweep away, to annihilate
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to abduct, to steal, to sweep away, to annihilate
   غول (ğūl) {m} :: taking away, snatching, seizing, grabbing
   ابد {{ar-verb (old)|I|ابد|’ábada}}{{ar-verb (old)|II|ابد|’ábbada}}{{ar-verb (old)|V|تأبد|ta’ábbada}} :: to be shy, to shy away
   زحل {{ar-verb (old)|I|زحل|záHala}}{{ar-verb (old)|II|زحّل|záHHala}} :: to move away, withdraw, retire
@@ -6941,7 +6911,7 @@ Index: EN EN->AR
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
   أ / ‍أ (’álifu hámzatin) :: The first letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is followed by ب.
   ج / ج‍ / ‍ج‍ / ‍ج (jīm) :: The third letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ب and followed by د.
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with ب) to hear of, to hear about
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with ب) to hear of, to hear about
 ===bā===
   ب ﺏ / ﺑ / ﺒ / ﺐ (bā’) :: The second letter of the Arabic alphabet. Its name is باء (bā’) and it has the sound of English b. It is preceded by أ and followed by ت.
 ===back===
@@ -6982,8 +6952,6 @@ Index: EN EN->AR
   شرفة (šúrfa) {f}, شرفات (šurfāt, šurufāt) {p}, شرف (šúruf) {p} :: balcony, loge, theater box
 ===ballast===
   صبر {{ar-verb (old)|II|صبر|ṣábbara}} :: {nautical} to ballast
-===ban===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to suppress, to ban
 ===banana===
   موز مَوْز (mawz) :: banana the fruit
 ===band===
@@ -7008,8 +6976,6 @@ Index: EN EN->AR
   القاعدة (al-qāʕida) {f}, قواعد (qawāʕid) {p} :: the foundation, the base
   بن (bin, ibn) {m}, بنت (bint) {f}, ابناء (abnā’) {p}, بنون (banūn) {p} :: son, base form of ابن (ibn) (same as Hebrew בֵּן).
     بني (bunáiya) — my little son :: --
-===based===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to depend on, to rest on, to be based on
 ===bases===
   قواعد (qawaa3id) {p} (singular: قاعدة, qaa3ida) :: bases
 ===basis===
@@ -7030,9 +6996,7 @@ Index: EN EN->AR
   حرب {{ar-verb (old)|I|حَرِبَ|Háriba|حرب|يَحْرَبُ|يحرب}}{{ar-verb (old)|III|حارَبَ|Haaraba|حارب|يُحارِبُ|يحارب}}{{ar-verb (old)|VI|تَحارَبَ|taHaaraba|تحارب|يَتَحارَبُ|يتحارب}}{{ar-verb (old)|VIII|اِحْتَرَبَ|iHtáraba|احترب|يَحْتَرِبُ|يحترب}} :: to fight, to wage war, to battle
   حرب {{ar-noun|head=حَرْب|tr=Harb|g=f|pl=حروب|plhead=حُروب}} :: battle
   عراك :: battle
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to combat, to battle, to fight
   شهيد (šahīd) {m}, شهداء (šuhadā’) {p} :: martyr, someone killed in battle with the infidels.
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to fight each other, to meet in battle
 ===battlefront===
   جبهة (jábha), جباه (jibāh) {p}, جبهات (jibahāt) {p} :: {military} frontline, battlefront
 ===battlement===
@@ -7063,6 +7027,7 @@ Index: EN EN->AR
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to observe, to bear in mind, to comply
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to bear stoutly
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to testify, to bear witness, to give testimony, to give evidence
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to bear a grudge, to feel resentment
 ===beard===
   لحية لِحْيَة (liHya(t)) {f} :: beard
 ===bearer===
@@ -7129,7 +7094,7 @@ Index: EN EN->AR
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to become lord and master
   وتر {{ar-verb (old)|I|وتر|wátara}}{{ar-verb (old)|II|وتر|wáttara}}{{ar-verb (old)|III|واتر|wātara}}{{ar-verb (old)|IV|اوتر|’autara}}{{ar-verb (old)|V|توتر|tawáttara}}{{ar-verb (old)|VI|تواتر|tawātara}} :: to become stretched, to be strained, to be tight, to become taut
   حبل {{ar-verb (old)|I|حبل|ħábila}}{{ar-verb (old)|II|حبّل|ħábbala}}{{ar-verb (old)|IV|احبل|’áħbala}} :: to become pregnant, to conceive
-  Ø³Ù\85ع {{ar-verb (old)|I|سÙ\85ع|sámiÊ\95a}}{{ar-verb (old)|II|سÙ\85ع|sámmaÊ\95a}}{{ar-verb (old)|IV|اسÙ\85ع|â\80\99ásmaÊ\95a}}{{ar-verb (old)|V|تسÙ\85ع|tasámmaÊ\95a}}{{ar-verb (old)|VI|تساÙ\85ع|tasÄ\81maÊ\95a}}{{ar-verb (old)|VIII|استÙ\85ع|istámaÊ\95a}} :: to be heard of, to become known among people
+  Ø®Ù\85ر {{ar-verb (old)|I|Ø®Ù\85ر|xámara}}{{ar-verb (old)|II|Ø®Ù\85Ù\91ر|xámmara}}{{ar-verb (old)|III|خاÙ\85ر|xÄ\81mara}}{{ar-verb (old)|IV|أخÙ\85ر|â\80\99áxmara}}{{ar-verb (old)|V|تخÙ\85Ù\91ر|taxámmara}}{{ar-verb (old)|VI|تخاÙ\85ر|taxÄ\81mara}}{{ar-verb (old)|VIII|اختÙ\85ر|â\80\99ixtámara}} :: to ripen, to become ripe
 ===becomes===
   صرب صَرَبَ :: to leave milk for days in a container until it becomes sour
 ===bed===
@@ -7152,20 +7117,18 @@ Index: EN EN->AR
   خنفساء (xunfusā’) {f}, خنافس (xanāfis) {p} :: dung beetle, scarab
   خنفساء (xunfusā’) {f}, خنافس (xanāfis) {p} :: beetle
 ===befall===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to seize
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to seize, to come over
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to strike, to seize, to come over
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to befall, to seize
   مس {{ar-verb (old)|I|مس|mássa}}{{ar-verb (old)|III|ماس|māsasa, māssa}}{{ar-verb (old)|VI|تماس|tamāsasa, tamāssa}} :: to befall, to hit
 ===before===
   امام أمَامَ (’amāma) :: in front of, in the presence of, before
   قبل {{ar-adv|tr=qáblu}} :: previously, formerly, earlier, before
   قبل (qábla) (preposition)قبل (qíbala) (preposition) :: before
   قبل (qábla) (preposition)قبل (qíbala) (preposition) :: in the presence of, before, near
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to appear before
 ===beforehand===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to do earlier, to do beforehand
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to do earlier, to do beforehand
 ===beg===
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to ask, to beg
 ===beget===
@@ -7175,7 +7138,7 @@ Index: EN EN->AR
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to begin the day
 ===beginning===
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: beginning, start, outset, commencement, inception
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: beginning
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: beginning
   فجر {{ar-noun|tr=fajr|g=m}} :: {figuratively} dawn, beginning, outset, start
   محرم {{ar-noun|head=ُُمُحَرّمٌ|tr=muħárram|g=m}} :: Muharram, the first of the twelve months of the Muslim lunar calendar, each beginning on a new moon. Muharram means "forbidden" in Arabic, and it is unlawful to fight during this month.
   صفر صَفَرٌ (ṣáfar) {m}, اصفار (’aṣfār) {p} :: Safar, the second of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Safar means "void" in Arabic, supposedly because pagan Arabs looted during this month and left the houses empty.
@@ -7207,8 +7170,8 @@ Index: EN EN->AR
 ===beliefs===
   منهج (minhaj) :: {{context|Islamic}} In Islamic context, it refers to the manner of implementation of Islam's rules and beliefs.
 ===believe===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to think, to believe, to hold the view, to be of the opinion
-  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\8eبÙ\8e|Hasaba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8eبÙ\8f\8aحسب}}{{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}}{{ar-verb (old)|III|حاسب|ħÄ\81saba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħÄ\81saba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to assume, to think, to suppose, to believe
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to think, to believe, to hold the view, to be of the opinion
+  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}} :: to assume, to think, to suppose, to believe
 ===believers===
   مُتّقُون {m|p} (muttaqūn) (noun) :: The pious believers of Islamic monotheism who fear and love Allah (abstaining from all sin and evil deeds which he has forbidden, while performing all manner of good deeds which he has ordained).
 ===bell===
@@ -7243,7 +7206,6 @@ Index: EN EN->AR
   مشغرة {{ar-proper noun|tr=mašğara|g=f}} :: The village of Mashghara (Machghara), a Lebanese village renowned for its abundance of water, located in the Beqaa region approximately 87 kilometers from Beirut.
 ===bequeath===
   كتب {{ar-verb|form=I|head=كَتَبَ|tr=kátaba|impf=يكتب|impfhead=يَكْتُبُ|impftr=yaktúbu}} :: to bequeath
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to donate, to bequeath
 ===Berber===
   ثاقبايليث (θāqbāylīθ) :: Kabyle (a Northern Berber language of Algeria).
   بربري بَرْبَريّ (bárbari) {m} :: Berber
@@ -7271,6 +7233,7 @@ Index: EN EN->AR
   تحسين تَحْسِين (taħsíin) {m} :: amelioration, betterment, improvement, beautification
 ===beverage===
   شراب (šarāb) {m}, اشربة (’ášriba) {p}شراب{m}شراب{m}شرابات{p} :: beverage, drink
+  خمر (xamr) {m|f}, خمور (xumūr) {p} :: (plural) alcoholic beverages, liquor, spirits
 ===beverages===
   غول (ğūl) {f}, اغوال (’ağwāl) {p}, غيلان (ğilān) {p} :: alcohol, or alcohol beverages.
 ===bewildered===
@@ -7315,6 +7278,9 @@ Index: EN EN->AR
   فيل فِيل (fīl) {m}, فيلة (fiyala) {p}, فيول (fuyú:l) {p}, افيال (’afyá:l) {p}, فيلين (filīn) {p} :: bishop (chess) (plural: فيلين)
 ===bitch===
   عاهرة عاهِرَة (ʕāhira) {f}, عاهرات (ʕahirāt) {p}, عواهر (ʕawāhir) {p} :: bitch
+===black===
+  كحل (káħil) :: darkened with kohl, dyed black (of the eyelids)
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: black coloring of the edges of the eyelids
 ===blade===
   شفرة (šáfra) {f}, شفرات (šafarāt) {p}, شفار (šifār) {p} :: blade (of a sword or knife)
   شفرة (šáfra) {f}, شفرات (šafarāt) {p}, شفار (šifār) {p} :: razor blade
@@ -7324,14 +7290,14 @@ Index: EN EN->AR
   صري :: blatant
 ===blend===
   مزاج (mazāj) {m}, امزجة (’ámzija) {p} :: mixture, medley, blend
-  Ø¯Ø®Ù\84 {{ar-verb (old)|I|دخÙ\84|dáxala}}{{ar-verb (old)|II|دخÙ\91Ù\84|dáxxala}}{{ar-verb (old)|III|داخÙ\84|dÄ\81xala}}{{ar-verb (old)|IV|ادخÙ\84\80\99ádxala}}{{ar-verb (old)|V|تدخÙ\84|tadáxxala}}{{ar-verb (old)|VI|تداخÙ\84|tadÄ\81xala}} :: to shade, to blend
+  Ø®Ù\85ر {{ar-verb (old)|I|Ø®Ù\85ر|xámara}}{{ar-verb (old)|II|Ø®Ù\85Ù\91ر|xámmara}}{{ar-verb (old)|III|خاÙ\85ر|xÄ\81mara}}{{ar-verb (old)|IV|أخÙ\85ر|â\80\99áxmara}}{{ar-verb (old)|V|تخÙ\85Ù\91ر|taxámmara}}{{ar-verb (old)|VI|تخاÙ\85ر|taxÄ\81mara}}{{ar-verb (old)|VIII|اختÙ\85ر|â\80\99ixtámara}} :: to permeate, to pervade, to blend, to mix
 ===blessing===
   من {{ar-noun|head=مَنّ|g=m|tr=mann}} :: benefit, blessing, boon
 ===blind===
   قمر {{ar-verb (old)|I|قَمَرَ|qámara}}{{ar-verb (old)|I|قَمِرَ|qámira}}{{ar-verb (old)|II|قمّر|qámmara}}{{ar-verb (old)|III|قامر|qāmara}}{{ar-verb (old)|IV|اقمر|’áqmara}}{{ar-verb (old)|VI|تقامر|taqāmara}} :: to be snow-blind
   قمر قَمَرٌ (qámar) {m}, أقْمَار (’aqmār) {p} :: snow blindness
 ===blocking===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: blocking
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: blocking
 ===blog===
   المدونة الإلكترونية (al-mudáwwana al-'iliktruníyya) {f},المدونات الإلكترونية (al-mudawwanāt al-'iliktruníyya) {p} :: blog
 ===blood===
@@ -7478,15 +7444,12 @@ Index: EN EN->AR
   ازهر أزْهَر (’áz-har) :: shining, luminous, radiant, brilliant, bright
     الازهران (al-’az-harān) &mdash; the sun and moon :: --
 ===bring===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in, to admit, to show in
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to make enter, to bring in, to let in
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to produce, to bring on, to yield
   رب {{ar-verb (old)|I|رب|rábba}}{{ar-verb (old)|II|ربب|rábbaba}} :: to be raise, to bring up, to rear
   ولد {{ar-verb|form=I|tr=wálada|impf=يلد}} :: to produce, to bring forth
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to bring a charge against
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to bring to a stop, to bring to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to bring to a stop, to bring to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to ask to stop, to bring to a stop, to request to stop
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to bring to a stop, to bring to a standstill
   صرع {{ar-verb (old)|I|صرع|ṣáraʕa}} :: to throw down, to fell, to bring to the ground
 ===brink===
   حرف حَرف (ħarf) {m}, حِرَف (ħíraf) {p} :: border, brink, edge, rim
@@ -7549,14 +7512,14 @@ Index: EN EN->AR
 ===buried===
   قبر {{ar-verb (old)|I|قَبَرَ|qábara}}{{ar-verb (old)|IV|اقبر|’áqbara}} :: to provide for burial, to have buried
 ===burka===
-  برقع بُرْقُع (burqu‘) :: burka
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: burka
 ===burning===
   هيام هيَام (huyām, hiyām) {m} :: burning thirst
   حارّ (ḥārr) :: hot, burning
 ===burnish===
   رز {{ar-verb (old)|I|رز|rázza}}{{ar-verb (old)|II|رز|rázza}}{{ar-verb (old)|IV|ارز|’arázza}} :: to burnish, to polish
 ===burqa===
-  برقع بُرْقُع (burqu‘) :: burqa
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: burqa
 ===bush===
   شجرة شَجَرٌ (šájar) m (collective), ٌشَجَرَة (šájara) f (singulative), شَجَرْتَيْنِ (šajartayn) (dual), شَجَرَاتٌ (šajarāt) (paucal), أشْجَارٌ (’ašjār) {p} :: shrub, bush
 ===business===
@@ -7580,11 +7543,9 @@ Index: EN EN->AR
     This phrase, called the shahada, or Muslim creed, is the declaration of belief in the oneness of God and in Muhammad as His messenger. Recitation of the shahada is considered one of the five pillars of Islam by Sunni Muslims. By sincerely stating the shahada aloud before two witnesses, one is considered to have converted to Islam. :: --
   ف‍- (fa-) (prefix) :: but then, then however
 ===butcher===
-  قصاب قَصَّاب (qaṣṣāb) {m} :: butcher
+  قصاب {{ar-noun|tr=qaṣṣāb|head=قَصَّاب|g=m}} :: butcher
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to slaughter, to butcher
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to kill, to slaughter, to butcher, to massacre, to murder
-===butt===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to meddle, to butt in
 ===butterflies===
   فراش (fará:š) {m} (collective), فراشة (fará:ša) {f} (singulative) :: butterflies
 ===butterfly===
@@ -7618,7 +7579,7 @@ Index: EN EN->AR
   غول (ğūl) {f}, اغوال (’ağwāl) {p}, غيلان (ğilān) {p} :: calamity, disaster
   مس (mass) {m} :: misfortune, calamity
 ===calculate===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to calculate, to compute
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to calculate, to compute
 ===calculation===
   حسب (ħasb) {m}حسب{m}احساب{p} :: reckoning, calculation, computing
 ===calendar===
@@ -7659,13 +7620,12 @@ Index: EN EN->AR
   سمى {{ar-verb (old)|II|سمى|sámmā}}{{ar-verb (old)|IV|اسمى|’ásmā}}{{ar-verb (old)|V|تسمى|tasámmā}} :: to name, to call, to designate, to denominate
   (Tunisian Arabic) سَمَّا (sammā) (verb) :: to name, to call, to designate, to denominate
     شْسَمِّيتْ وِلْدِكْ ؟ (šsammīt wildik ?) — How did you name your son? :: --
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to call, to call to prayer
+  أذن {{ar-verb|form=II|tr=ʾáđđana|I=ء|impftr=yuʾađđinu|impf=يؤذن}} :: to call, to call to prayer
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to call a witness
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to call a witness, to cite a witness
   جب {{ar-verb (old)|I|جَبّ|jábba}} :: to repeal, to abate, to abolish, to frustrate, to make null and void, to call off
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to remind, to call to mind.
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to call to account, to ask for an accounting
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to drop in on, to come to see, to call on
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to drop in on, to come to see, to call on
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to call faithless, to call disloyal, to be false, to be treacherous, to be perfidious, to call false, to call treacherous, to call perfidious, to call dishonest, to call unreliable
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to be frightened away, to ask someone to fight against, to call someone to go to war
 ===called===
@@ -7673,7 +7633,7 @@ Index: EN EN->AR
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
 ===caller===
-  زائر زائِر (zā’ir) {m}, زوّار (zūwār) {p} :: caller
+  زائر {{ar-noun|tr=zāʾir|g=m|pl=زوار|pltr=zūwār}} :: caller
 ===calligraphic===
   قلم {{ar-noun|head=قَلَم|tr=qálam|g=m}}, أقْلاَم (’aqlām) {p} :: calligraphic style, ductus
 ===calligraphy===
@@ -7728,7 +7688,7 @@ Index: EN EN->AR
 ===capable===
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to be capable, to be able, to be in a position to
 ===cape===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: promontory, headland, cape
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: promontory, headland, cape
 ===capital===
   مصر (miSr, maSr) {m}, امصار (’amSaar) {p} :: big city, metropolis, capital
   رصيد (raṣīd) {m}, ارصدة (’árṣida) {p} :: capital
@@ -7741,7 +7701,7 @@ Index: EN EN->AR
 ===car===
   العربية (al-ʕarabíyya) {f} :: {{context|colloquial|Egypt}} car, automobile
   سيارة سيّارةٌ (sayyāra) {f}, سيارات (sayyarāt) {p} :: automobile, car, motorcar
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to park (a car)
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to park (a car)
 ===carcinoma===
   سرطان سَرَطان (saraṭān) {m}, سرطانات (saraṭanāt) {p} :: {disease} cancer, carcinoma
 ===cardinal===
@@ -7754,12 +7714,10 @@ Index: EN EN->AR
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to hold, to have in safe-keeping, to take care
   هم (hamm) {m}, هموم (humūm) {p} :: anxiety, concern, worry, care
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to take care, to attend, to pay attention
-===careful===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to be careful, to be on guard
 ===caretaker===
   حافظ {{ar-noun|tr=ħāfiđ̣|g=m}} :: guard, guardian, keeper, custodian, caretaker
 ===carnage===
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to massacre, to cause carnage
+  قتل {{ar-verb|form=2|impf=يقتل|tr=qáttala|impftr=yuqattilu}} :: to kill, to massacre, to cause carnage
 ===carnival===
   عيد عِيد (ʕīd) {m}, أعيَاد (’aʕyād) :: carnival
 ===carpenter===
@@ -7769,6 +7727,14 @@ Index: EN EN->AR
   فراش (farrá:š) {m} :: carpet layer, carpet spreader
 ===carriage===
   عربية (ʕarabíya) {f}, عربيات (ʕarabiyát) {p} :: (Egyptian Arabic) carriage, vehicle
+===carrot===
+  خيزو خيزّو (xizzu) {m} :: (Moroccan) carrot, carrots
+  خزو خزّو (xizzu) {m} :: (Moroccan) carrot, carrots
+  زرودية (zurudíya) {f} :: (Algerian) carrot, carrots
+===carrots===
+  خيزو خيزّو (xizzu) {m} :: (Moroccan) carrot, carrots
+  خزو خزّو (xizzu) {m} :: (Moroccan) carrot, carrots
+  زرودية (zurudíya) {f} :: (Algerian) carrot, carrots
 ===carry===
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to realize, to carry out, to effect
   (Egyptian Arabic) شال (shaal) (verb), يشيل (yishiil) :: to carry {l|gloss=to transport by lifting}
@@ -7801,7 +7767,7 @@ Index: EN EN->AR
 ===catch===
   حبل {{ar-verb (old)|VIII|احتبل|iħtábala}} :: to ensnare, to snare, to catch in a snare
 ===categorical===
-  بات (batt) :: categorical
+  بات {{ar-adj|tr=batt}} :: categorical
     مَنع بات :: categorical interdiction
 ===categorize===
   جنس {{ar-verb (old)|II|جنس|jánnasa}}{{ar-verb (old)|III|جانس|jānasa}}{{ar-verb (old)|V|تجنس|tajánnasa}}{{ar-verb (old)|VI|تجانس|tajānasa}} :: to class, to classify, to sort, to categorize
@@ -7809,19 +7775,21 @@ Index: EN EN->AR
   باب بَاب (baab) {m}, أبْوَاب (’abwaab) {p}, بِيبَان (bibaan) {p} :: group, class, category
   جنس (jins) {m}, أجناس (ajnās) {p} :: category
 ===cattle===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: head (enumerator for cattle)
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: head (enumerator for cattle)
 ===causative===
   عامل (ʕāmil) {m}, عوامل (ʕawāmil) {p}عامل{m}عمّال{p} :: factor, constituent, element, causative agent
 ===cause===
   سبب {{ar-verb (old)|II|سَبّبَ|sábbaba}} :: to cause
   سبب سَبَب (sábab) {m}, اسباب (’asbāb) {p} :: cause
   اصل {{ar-noun|head=أَصْل|tr='aSl|g=m|pl=اصول|plhead=أُصول}} :: cause, reason
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
   كتب {{ar-verb|form=II|head=كَتَّبَ|tr=káttaba|impf=يكتب|impfhead=يُكَتِّبُ|impftr=yukattibu}} (causative) :: to cause to write, to make someone write
   مجاهد {{ar-noun|tr=mujāhid|g=m|pl=مجاهدون|pltr=mujahidūn|pl2=مجاهدين|pl2tr=mujahidīn}} :: a mujahid, a jihadist, a combatant motivated by a Muslim religious cause
   مذهب (máðhaba) :: to cause to split into sects
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to massacre, to cause carnage
+  قتل {{ar-verb|form=2|impf=يقتل|tr=qáttala|impftr=yuqattilu}} :: to kill, to massacre, to cause carnage
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to cause a miscarriage
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
 ===cavity===
   حق (ħaqq) {m}, حقوق (ħuqūq) {p}حق{m} :: hollow, cavity
   جب جُبّ (jubb) {m}, اجباب (’ajbāb) {p}, جباب (jibāb) {p} :: pit, fosse, cavity
@@ -7869,12 +7837,13 @@ Index: EN EN->AR
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to attest, to confirm, to certify
 ===chainmail===
   زرد (zárad) {m}, زرود (zurūd) {p} :: chainmail, coat of mail
+  زرود (zurūd) {m|p} :: coats of chainmail (plural of زرد).
 ===chair===
-  رأس (rá’asa) :: to be at the head, to be chairman, to chair, to be in charge, to preside
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to be at the head, to be chairman, to chair, to be in charge, to preside
   كرسي كُرْسِيّ (kursiyy) {m}, كراسي (karāsī) {p} :: chair, seat
   (Egyptian Arabic) كرسي (kursii) (noun), كراسي (karaasii) {p} :: chair, seat
 ===chairman===
-  رأس (rá’asa) :: to be at the head, to be chairman, to chair, to be in charge, to preside
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to be at the head, to be chairman, to chair, to be in charge, to preside
   رئيس {{ar-noun|tr=ra’īs|g=m|pl=رؤساء|pltr=ru’asā’}} :: chairman
 ===chamber===
   غرفة غُرْفَة (ghurfa) {f}, غرف (ghuraf) {p} :: chamber
@@ -7899,9 +7868,9 @@ Index: EN EN->AR
   طلسم طِلّسْم (ṭílasm, ṭíllasm) {m}, طلسمات (ṭilasmāt, ṭillasmāt) {p}, طلاسم (ṭalāsim) {p} :: seal inscribed with cryptic characters or words
   طلسم طِلّسْم (ṭílasm, ṭíllasm) {m}, طلسمات (ṭilasmāt, ṭillasmāt) {p}, طلاسم (ṭalāsim) {p} :: (plural: طلاسم) cryptic characters
 ===charge===
-  رأس (rá’asa) :: to be at the head, to be chairman, to chair, to be in charge, to preside
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: taxes, duties, charges, fees, rates
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to charge, to debit
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to be at the head, to be chairman, to chair, to be in charge, to preside
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عوائد|pltr=ʿawā́ʾid}} :: (in plural) taxes, duties, charges, fees, rates
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to charge, to debit
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to commission, to charge, to entrust
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to take (charge, control, etc.)
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to bring a charge against
@@ -7945,7 +7914,7 @@ Index: EN EN->AR
   تخت (taxt) {m}, تخوت (tuxūt) {p} :: chest, box, case
 ===chief===
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: sheik, chief, chieftain
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: leader, chief, chieftain
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: leader, chief, chieftain
   الرئيسية (ar-ra’isíyya) {f} :: main, chief, principal, leading, cardinal (definite feminine or definite plural of رئيسي)
     الفضائل الرئيسية — cardinal virtues :: --
     مقالة رئيسية — lead article, editorial :: --
@@ -7960,7 +7929,7 @@ Index: EN EN->AR
     رب بحري (rabb báħri) :: seaman (naval rank)
 ===chieftain===
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: sheik, chief, chieftain
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: leader, chief, chieftain
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: leader, chief, chieftain
 ===childbearing===
   ولادة (wilāda) f., مولد (máwlid), ميلاد (mīlad) :: birth; as in the process of childbearing.
 ===childbirth===
@@ -8040,6 +8009,8 @@ Index: EN EN->AR
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to cite, to quote
 ===citing===
   ذكر :: mentioning, quoting, quote, citing, citation.
+===citizen===
+  بلدي بَلَدِيّ (baladiyy) {m} :: fellow citizen, compatriot, countryman
 ===citizenship===
   جنس {{ar-verb (old)|II|جنس|jánnasa}}{{ar-verb (old)|III|جانس|jānasa}}{{ar-verb (old)|V|تجنس|tajánnasa}}{{ar-verb (old)|VI|تجانس|tajānasa}} :: to become naturalized, to acquire citizenship
 ===city===
@@ -8048,7 +8019,6 @@ Index: EN EN->AR
   المدينة (al-madīna) {f} :: the city
   بلد (bálad) {m|f}, بلاد (bilād) {p}, بلدان (buldān) {p} :: town, city
   بلدة (bálda) {f} :: town, city
-  فاس (proper noun) :: The city of Fez in Morocco.
   سيدني (sí:dni) {m} :: Sydney (Australian city)
   مصر {{ar-verb (old)|II|مصر|máSSara}}{{ar-verb (old)|V|تمصر|tamáSSara}} :: to become a populated area, to become a big city, to become a metropolis
   أورشليم (Ūrušalīm) :: Jerusalem (city in the Middle East)
@@ -8082,10 +8052,11 @@ Index: EN EN->AR
   باب بَاب (baab) {m}, أبْوَاب (’abwaab) {p}, بِيبَان (bibaan) {p} :: group, class, category
   جنس {{ar-verb (old)|II|جنس|jánnasa}}{{ar-verb (old)|III|جانس|jānasa}}{{ar-verb (old)|V|تجنس|tajánnasa}}{{ar-verb (old)|VI|تجانس|tajānasa}} :: to class, to classify, to sort, to categorize
   جنس (jins) {m}, أجناس (ajnās) {p} :: kind, sort, variety, species, class, genus
-  فَصْل (faSl) (noun), فُصُول (fuSuul) {p} :: class (group of students)
+  فصل {{ar-noun|g=m|head=فَصْل|tr=faṣl|pl=فصول|plhead=فُصُول|pltr=fuṣūl}} :: class (group of students)
 ===classify===
   جنس {{ar-verb (old)|II|جنس|jánnasa}}{{ar-verb (old)|III|جانس|jānasa}}{{ar-verb (old)|V|تجنس|tajánnasa}}{{ar-verb (old)|VI|تجانس|tajānasa}} :: to class, to classify, to sort, to categorize
 ===clause===
+  كلامٌ (kalām) {m} :: sentence, clause, phrase
   خبر (xábar) {m}, اخبار (’axbār) {p} :: {grammar} predicate of a nominal clause
 ===claw===
   سلاح سِلاحٌ (silāħ) {m}, اسلحة (’ásliħa) {p} :: steel claw
@@ -8101,7 +8072,6 @@ Index: EN EN->AR
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to clean, to clear
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to make clear, to make plain, to express unmistakably, to state clearly, to declare.
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to become clear
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
 ===clearly===
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to express, to state clearly, to declare.
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to make clear, to make plain, to express unmistakably, to state clearly, to declare.
@@ -8129,14 +8099,15 @@ Index: EN EN->AR
 ===closely===
   صغا {{ar-verb (old)|I|صغا|ʂağā}}{{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
   أصغى {{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to listen, to listen closely
 ===cloth===
   شاش (šāš) {m} :: white cloth
 ===clothes===
   ريش (rīš) {m} (collective), ريشة (rīša) {f} (singulative), رياش (riyāš) {p}, ارياش (aryāš) {p}, ريشات (rišāt) {p} :: clothes, attire
   بذلة (baðla) {f}, بذل (biðal) {p} :: suit (of clothes)
+===clouded===
+  غائم (ğā’im) :: cloudy, overcast, clouded
 ===cloudy===
-  Ø¹Ø±Ù\82 {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
+  ØºØ§Ø¦Ù\85 (Ä\9fÄ\81â\80\99im) :: cloudy, overcast, clouded
 ===clutch===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to grab, grasp, clutch, clasp, seize, take hold
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to seize, grasp, clutch, grip, hold
@@ -8152,6 +8123,7 @@ Index: EN EN->AR
 ===coat===
   دم {{ar-verb (old)|I|دم|dámma}}{{ar-verb (old)|II|دمم|dámmama}} :: to coat, to smear
   زرد (zárad) {m}, زرود (zurūd) {p} :: chainmail, coat of mail
+  زرود (zurūd) {m|p} :: coats of chainmail (plural of زرد).
 ===code===
   شفرة (šífra) {f} :: cipher, code
 ===coffee===
@@ -8173,12 +8145,12 @@ Index: EN EN->AR
   علم {{ar-verb (old)|I|عَلِمَ|ʕálima|علم}}{{ar-verb (old)|II|عَلّمَ|ʕállama|علم}} :: to know, to have knowledge, to be cognizant, to be aware
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to know, to have knowledge, to be cognizant
 ===cohabit===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to consummate the marriage, to cohabit, to sleep with
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to consummate the marriage, to cohabit, to sleep with
   مس {{ar-verb (old)|I|مس|mássa}}{{ar-verb (old)|III|ماس|māsasa, māssa}}{{ar-verb (old)|VI|تماس|tamāsasa, tamāssa}} :: to cohabit
 ===cohort===
   نفر {m} (náfar) (verb), انفار (’anfār) {p} :: band, party, group, troop, herd, coterie, collective, cohort, clique, company, association, society, gang, flock, circle, cabal, squad, community, crowd
 ===coin===
-  ذهب (ðáhab) {m|f} :: gold coin
+  ذهب {{ar-noun|tr=ḏáhab|g=mf}} :: gold coin
 ===cold===
   دهان (dihān) {m}, دهانات (dihanāt) {p}, ادهنة (ádhina) {p}دهان{m} :: cold cream, cosmetic cream, salve, ointment, unguent
 ===collapse===
@@ -8205,6 +8177,8 @@ Index: EN EN->AR
   مصر (miSr, maSr) {f} :: Cairo (colloquial, in this sense, a feminine noun)
   ملحون (malħūn) :: (Morocco) poetry in colloquial language
   قهوة قَهْوَة (qáhwa) {f}, قَهَوَات (qahawāt) {p}, قَهَاوِي (qahāwi) {p} :: coffee shop, café (colloquial use)
+===collude===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to conspire, to plot, to collude, to scheme
 ===colon===
   قولون (qolōn) :: {anatomy} colon
   نقطة مزدوجة (núqṭa muzdáwija) {f}, نقط مزدوجة (núqaṭ muzdáwija) {p}, نقط مزدوجة (niqāṭ muzdáwija) {p} :: (punctuation) colon, " : "
@@ -8212,6 +8186,10 @@ Index: EN EN->AR
   مصر {{ar-verb (old)|II|مصر|máSSara}}{{ar-verb (old)|V|تمصر|tamáSSara}} :: to found, to build, to settle, to civilize, to colonize
 ===color===
   صفر {{ar-verb (old)|II|صفّر|ṣáffara}}{{ar-verb (old)|IX|اصفر|iṣfárra}} :: to dye yellow, to make yellow, to color yellow
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+===coloring===
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: black coloring of the edges of the eyelids
 ===colt===
   مهر مُهْر (muhr) ({p}: أمْهار amhār, مِهارَة mihārä) :: colt
 ===column===
@@ -8222,9 +8200,6 @@ Index: EN EN->AR
   رجل {{ar-verb|form=2|tr=rájjala|impf=يرجل}} :: to comb (the hair)
 ===combat===
   حرب {{ar-noun|head=حَرْب|tr=Harb|g=f|pl=حروب|plhead=حُروب}} :: combat
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to combat, to battle, to fight
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
 ===combatant===
   مجاهد {{ar-noun|tr=mujāhid|g=m|pl=مجاهدون|pltr=mujahidūn|pl2=مجاهدين|pl2tr=mujahidīn}} :: a mujahid, a jihadist, a combatant motivated by a Muslim religious cause
 ===come===
@@ -8233,15 +8208,12 @@ Index: EN EN->AR
   صدر {{ar-verb|form=1|tr=ṣádara}} :: to happen, to occur, to come to pass
   آب {{ar-verb|tr=ʾāba|I=ء|II=و|form=1}} :: to return, to come back
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to come out, to be published
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to seize, to come over
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to strike, to seize, to come over
   (Egyptian Arabic) جا (gaa) (verb), ييجي (yiigii) :: to come {l|gloss=To move from further away to nearer to}
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to come forth, to come forward, to enter, to appear
   قطر {{ar-verb (old)|I|قطر|qáTara}}{{ar-verb (old)|II|قطر|qáTTara}}{{ar-verb (old)|V|تقطر|taqáTTara}}{{ar-verb (old)|VI|تقاطر|taqāTara}}{{ar-verb (old)|X|استقطر|istáqTara}} :: to come in successive groups, to crowd, to flock, to throng
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to come to light, to appear, to emerge
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to drop in on, to come to see, to call on
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to come to a stop, to come to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to come to a stop, to come to a standstill
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to drop in on, to come to see, to call on
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to come to a stop, to come to a standstill
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to come in the morning
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to make come true
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to realize, to notice, to come to know
@@ -8304,6 +8276,8 @@ Index: EN EN->AR
   جلابية (gallabiya) {f}, جلاليب (galalīb) {p} :: (Egyptian Arabic) galabia (a loose, shirtlike garment commonly worn by Egyptian men)
 ===commotion===
   حركة (ḥáraka) {f}, حركات (ḥarakāt) {p} :: commotion
+===communal===
+  بلدي بَلَدِيّ (baladiyy) {m} :: communal, municipal
 ===communicate===
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to communicate, to report
 ===communication===
@@ -8333,6 +8307,8 @@ Index: EN EN->AR
   رحم {{ar-verb (old)|I|رحم|ráHima}}{{ar-verb (old)|II|رحّم|ráHHama}} :: to have mercy (upon), have compassion
 ===Compassionate===
   بسم الله الرحمن الرحيم بِسْمِ ٱللهِ ٱلرّحْمَنِ ٱلرّحِيمِ (b-ism-illāh ir-raħmān ir-raħīm) :: "in the name of God, the Merciful, the Compassionate"
+===compatriot===
+  بلدي بَلَدِيّ (baladiyy) {m} :: fellow citizen, compatriot, countryman
 ===competence===
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: competence, jurisdiction
 ===compiler===
@@ -8374,7 +8350,7 @@ Index: EN EN->AR
 ===comprise===
   رب {{ar-verb (old)|I|رب|rábba}}{{ar-verb (old)|II|ربب|rábbaba}} :: to impact, to comprise, to contain
 ===compute===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to calculate, to compute
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to calculate, to compute
 ===computer===
   حاسوب (ħasūb) {m} :: computer
 ===computing===
@@ -8384,7 +8360,9 @@ Index: EN EN->AR
 ===conceal===
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to keep secret, to hide, to conceal, to disguise
   قبر {{ar-verb (old)|I|قَبَرَ|qábara}}{{ar-verb (old)|IV|اقبر|’áqbara}} :: to conceal
-  برقع بَرْقَعَ (barq‘a) :: to conceal
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to conceal
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to cover, to hide, to conceal
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to cover, to hide, to conceal
 ===conceit===
   عجب (ʕujb) {m} :: pride, vanity, conceit
   إعجاب (’íʕjāb) {m} :: conceit, self-complacency
@@ -8419,7 +8397,7 @@ Index: EN EN->AR
   مزاج (mazāj) {m}, امزجة (’ámzija) {p} :: physical condition, state of health
   حال {m|f} (ḥāla) (noun), plural: أحوال, ’aḥwāl :: condition, state, situation
 ===conduct===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to lead someone, to conduct someone, to take someone along
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to lead someone, to conduct someone, to take someone along
   ذو القعدة {{ar-noun|head=ذُو القَعْدَةِ|tr=ðu l-qáʕda|g=m}} :: Dhu al-Qi'dah, the eleventh of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhu al-Qi'dah means "master of the truce" in Arabic, and pagan Arabs did not conduct war during this month.
 ===conductor===
   مدير (mudīr) {m}, مديرون (mudīrūn) {p} :: {music} conductor
@@ -8489,24 +8467,22 @@ Index: EN EN->AR
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to conserve
 ===consider===
   نظر {{ar-verb|form=I|head=نَظَرَ|tr=náẓara|impf=ينظر|impfhead=يَنْظُرُ|impftr=yanẓuru}} :: to envisage, to consider, to contemplate
-  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\8eبÙ\8e|Hasaba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8eبÙ\8f\8aحسب}}{{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}}{{ar-verb (old)|III|حاسب|ħÄ\81saba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħÄ\81saba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to regard, to consider, to deem
+  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}} :: to regard, to consider, to deem
 ===considerable===
   بالغ (bāliğ) :: considerable, profound, serious
 ===consideration===
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: consideration, reflection
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: attention, heed, regard, notice, observation, respect, consideration, care
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to take into account, to take into consideration, to reckon with
 ===considered===
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
-===consist===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to consist in
 ===console===
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to console, to comfort
 ===consonant===
   حرف حَرف (ħarf) {m}, حروف (ħurūf) {p}, أحرف (’áħruf) {p} :: consonant
 ===conspire===
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to plot, to conspire
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to conspire, to plot, to collude, to scheme
 ===constant===
   ثابت {{ar-adj|head=ثَابِت|tr=thābit}} :: constant
   ثابت {{ar-noun|head=ثَابِت|tr=thābit}} :: constant
@@ -8520,7 +8496,7 @@ Index: EN EN->AR
 ===consult===
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to ask advice of, to seek the opinion of, to consult
 ===consummate===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to consummate the marriage, to cohabit, to sleep with
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to consummate the marriage, to cohabit, to sleep with
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to fulfill, to consummate, to actualize
 ===contact===
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to write to, to address, to appeal, to contact in writing
@@ -8580,8 +8556,12 @@ Index: EN EN->AR
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to supervise, to control, to watch over, to watch out for
   رب {{ar-verb (old)|I|رب|rábba}}{{ar-verb (old)|II|ربب|rábbaba}} :: to have possession, to gather, to control
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to take (charge, control, etc.)
+===controversy===
+  كلامٌ (kalām) {m} :: dispute, controversy
 ===controvert===
   جب {{ar-verb (old)|I|جَبّ|jábba}} :: to cancel, to countermand, to controvert, to invalidate, to abrogate, to void, to abort, to rebut
+===conversation===
+  كلامٌ (kalām) {m} :: conversation, speech, talk, language
 ===converse===
   كلم {{ar-verb (old)|II|كلم|kállama}}{{ar-verb (old)|III|كالم|kālama}}{{ar-verb (old)|V|تكلم|takállama}} :: to speak, to talk, to converse
 ===convert===
@@ -8656,7 +8636,7 @@ Index: EN EN->AR
 ===counsel===
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to take counsel, to deliberate together, to confer
 ===count===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to count
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to count
 ===countenance===
   وجه {{ar-noun|head=وَجْه|tr=wajh|g=m|pl=وجوه|plhead=وُجوه}} :: face, countenance
   قطب {{ar-verb (old)|I|قطب|qáṭaba}}{{ar-verb (old)|II|قطب|qáṭṭaba}}{{ar-verb (old)|V|تقطب|taqáṭṭaba}}{{ar-verb (old)|X|استقطب|istáqṭaba}} :: to become gloomy (countenance)
@@ -8678,13 +8658,15 @@ Index: EN EN->AR
   الأردن (al-’úrdunn) :: Jordan (river and country)
   ليبيا {f} (lībiya) (proper noun) :: Libya
     ليبيا دولة تقع في شمال أفريقيا على الساحل الجنوبي للبحر الأبيض المتوسط. :: Libya is a country located in Northern Africa on the southern coast of the Mediterranean Sea.
+===countryman===
+  بلدي بَلَدِيّ (baladiyy) {m} :: fellow citizen, compatriot, countryman
 ===couple===
   زوج {{ar-verb (old)|II|زوّج|záwwaja}}{{ar-verb (old)|VIII|ازدوج|izdáwaja}} :: to pair, to couple, to join in pairs
   زوج (zawj) {m}, زوجة {f}, ازواج (’azwāj) {p} :: couple, pair
   قطر {{ar-verb (old)|I|قطر|qáTara}}{{ar-verb (old)|II|قطر|qáTTara}}{{ar-verb (old)|V|تقطر|taqáTTara}}{{ar-verb (old)|VI|تقاطر|taqāTara}}{{ar-verb (old)|X|استقطر|istáqTara}} :: {{vehicles|ships}} to couple, to tow, to tug
 ===course===
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: course, school
-  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, method, procedure, course of action
+  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, path, method, procedure, course of action
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to turn the helm, to change course
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to enter upon a course
 ===court===
@@ -8699,8 +8681,10 @@ Index: EN EN->AR
 ===cover===
   فراش (firá:š) {m}, فرش (fúruš) {p}, افرشة (’áfriša) {p} :: blanket, cover
   حجاب {{ar-noun|tr=ḥijāb|g=m}} :: cover
-  برقع بُرْقُع (burqu‘) :: cover
-  برقع بَرْقَعَ (barq‘a) :: to cover
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: cover
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to cover
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to cover, to hide, to conceal
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to cover, to hide, to conceal
   (Libyan Arabic) جلابية (jillābiyya) {f}, جلاليب (jlālīb) {p} :: a long gown that cover the body from the shoulders to the feet. (especially one for men)
 ===covered===
   افنان (afnán) (noun) :: {literally} "Branches with leaves". By extension, a specific place in the heavens, a peaceful setting which is covered in shade and full of fruits.
@@ -8732,8 +8716,7 @@ Index: EN EN->AR
 ===credentials===
   شهادة (šahāda) {f}, شهادات (šahadāt) {p} :: credentials, identification
 ===credit===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to credit
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to debit, to credit
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to credit
 ===credo===
   دين {m} (diin) (noun)دين {m} (diin) (noun)أديان{p} :: religion, creed, credo, faith, conviction, belief, tenet, rite
 ===creed===
@@ -8765,7 +8748,7 @@ Index: EN EN->AR
 ===croquettes===
   فلافل {{ar-noun|tr=falaafil|g=m}} :: falafel (a dish made of ground broad beans, mixed with various herbs and garlic and deep-fat fried as croquettes)
 ===crow===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to crow (of a rooster)
+  أذن {{ar-verb|form=II|tr=ʾáđđana|I=ء|impftr=yuʾađđinu|impf=يؤذن}} :: to crow (of a rooster)
 ===crowd===
   قطر {{ar-verb (old)|I|قطر|qáTara}}{{ar-verb (old)|II|قطر|qáTTara}}{{ar-verb (old)|V|تقطر|taqáTTara}}{{ar-verb (old)|VI|تقاطر|taqāTara}}{{ar-verb (old)|X|استقطر|istáqTara}} :: to come in successive groups, to crowd, to flock, to throng
   ازدحام (izdiħām) {m} :: crowd, rush, jam
@@ -8789,7 +8772,7 @@ Index: EN EN->AR
     كس اختك (kiss íkhtak) :: your sister’s pussy (general term of discontentment, like English fuck!)
 ===cup===
   فنجان (finjān) :: cup
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: handle (of a cup)
+  أذن {{ar-noun|tr=ʾúđun|g=f|pl=آذان|pltr=ʾāđān}} :: handle (of a cup)
 ===curiosities===
   معلم {{ar-noun|tr=muʕállim|g=m|head=مُعَلِّم}}, مُعَلّمُون (muʕallimūn) {p}{{ar-noun|tr=máʕlam|g=m|head=مَعْلَم}}مَعَالِم{p}{{ar-noun|tr=múʕlim|g=m|head=مُعْلِم}} :: (plural) sights, curiosities
 ===curious===
@@ -8807,15 +8790,15 @@ Index: EN EN->AR
 ===cursive===
   نسخ (naskh) {m} :: Naskh, a cursive style of Arabic calligraphy or font, the one most popular for and characteristic of the Arabic language itself.
 ===curtain===
-  برقع بُرْقُع (burqu‘) :: curtain
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: curtain
 ===cushion===
   فراش (firá:š) {m}, فرش (fúruš) {p}, افرشة (’áfriša) {p} :: cushion, pillow
 ===custodian===
   حافظ {{ar-noun|tr=ħāfiđ̣|g=m}} :: guard, guardian, keeper, custodian, caretaker
 ===custom===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: habit, wont, custom, usage, practice
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: habit, wont, custom, usage, practice
 ===customarily===
-  عادةً (ʕá:datan) :: usually, customarily, ordinarily, habitually
+  عادة {{ar-adv|tr=ʿā́datan}}) :: usually, customarily, ordinarily, habitually
 ===customary===
   سنة {{ar-noun|tr=súnna|g=f|pl=سنن|pltr=súnan}} :: {Islam} habitual practice, customary procedure, norm
     سنة النبي (súnnat an-nabiy) :: the Sunna of the Prophet (his sayings and deeds)
@@ -8863,6 +8846,8 @@ Index: EN EN->AR
   زهر اللؤلؤ (zahr al-lu’lú’) {m} (collective), زهرة اللؤلؤ (záhrat al-lu’lú’) {f} (singulative) :: daisy
 ===dam===
   خزن خَزَنَ (χázana) (transitive) :: to dam
+===darkened===
+  كحل (káħil) :: darkened with kohl, dyed black (of the eyelids)
 ===darling===
   حبيب {{ar-noun|head=حَبِيب|tr=ħabīb|g=m|pl=أحبة|pltr=ʾaħibba|pl2=أحباء|pl2tr=ʾaħibbāʾ|pl3=أحباب|pl3tr=ʾaħbāb}} :: darling
 ===Darya===
@@ -8913,11 +8898,11 @@ Index: EN EN->AR
 ===death===
   موت {{ar-noun|head=مَوْت|tr=mawt|g=m}} :: death
   حَمَام {m} (Hamaam) (noun) collective, حمامة (Hamaama, singulative), حمامات (Hamaamaat) {p}, حمائم (Hamaa’im) {p}حِمَام {m} (Himaam) (noun)حَمّام {m} (Hammaam) (noun)حمامات{p} :: death (as a fate)
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to risk one’s life, to defy death
   بموتي !بموتي (bi-máut-i) :: "by my death!"
+===debate===
+  كلامٌ (kalām) {m} :: discussion, debate
 ===debit===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to charge, to debit
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to debit, to credit
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to charge, to debit
   دين {m} (diin) (noun)دين {m} (dayn) (noun)ديون{p} :: (verbal noun) debt, debit
   دين {m} (diin) (noun)دين {m} (dayn) (noun)ديون{p} :: debt, debit
 ===debt===
@@ -8937,7 +8922,7 @@ Index: EN EN->AR
 ===decimal===
   ٫ :: The Arabic decimal point: ٣٫١٤١٥٩٢٦٥٣٥٨ = 3.14159265358
 ===decision===
-  بت (batt) :: settlement, decision, resolution
+  بت {{ar-noun|tr=batt}} :: settlement, decision, resolution
 ===deck===
   حسن {{ar-verb|form=II|head=حَسَّنَ|tr=ħássana|impf=يحسن|impftr=yuħassinu}} :: to bedeck, to ornament, to decorate, to deck out, to garnish
   ظهر {m} (ẓahr), ظهور (ẓuhūr) {p}, اظهر (’áẓhur) {p}, ظهورات (ẓuhurāt) {p}ظهر{m}(ẓuhr)اظهار(’aẓhār){p} :: deck, surface, top
@@ -8951,7 +8936,7 @@ Index: EN EN->AR
   حرم {{ar-verb (old)|I|حرم|ħáruma}}{{ar-verb (old)|I|حرم|ħárama}}{{ar-verb (old)|II|حرم|ħárrama}}{{ar-verb (old)|IV|احرم|’áħrama}}{{ar-verb (old)|V|تحرم|taħárrama}}{{ar-verb (old)|VIII|تحرم|iħtárama}}{{ar-verb (old)|X|استحرم|istáħrama}} :: to declare sacred, to declare sacrosanct, to declare inviolable, to declare taboo
   حرم {{ar-verb (old)|I|حرم|ħáruma}}{{ar-verb (old)|I|حرم|ħárama}}{{ar-verb (old)|II|حرم|ħárrama}}{{ar-verb (old)|IV|احرم|’áħrama}}{{ar-verb (old)|V|تحرم|taħárrama}}{{ar-verb (old)|VIII|تحرم|iħtárama}}{{ar-verb (old)|X|استحرم|istáħrama}} :: to declare unlawful, to forbid, to interdict, to proscribe
 ===decline===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to decline, to dwindle
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to decline, to dwindle
 ===decorate===
   حسن {{ar-verb|form=II|head=حَسَّنَ|tr=ħássana|impf=يحسن|impftr=yuħassinu}} :: to bedeck, to ornament, to decorate, to deck out, to garnish
 ===decoration===
@@ -8961,7 +8946,7 @@ Index: EN EN->AR
 ===decrepit===
   هم (himm) {m}, اهمة (hímma) {f}, اهمام (’ahmām) {p}, همائم (hamā’im) {p}, همات (himmāt) {f|p} :: decrepit, senile
 ===dedicate===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to dedicate
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to dedicate
 ===deduct===
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to deduct, to subtract, to discount
 ===deduction===
@@ -8977,7 +8962,7 @@ Index: EN EN->AR
   سنة {{ar-noun|tr=súnna|g=f|pl=سنن|pltr=súnan}} :: {Islam} habitual practice, customary procedure, norm
     سنة النبي (súnnat an-nabiy) :: the Sunna of the Prophet (his sayings and deeds)
 ===deem===
-  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\8eبÙ\8e|Hasaba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8eبÙ\8f\8aحسب}}{{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}}{{ar-verb (old)|III|حاسب|ħÄ\81saba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħÄ\81saba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to regard, to consider, to deem
+  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}} :: to regard, to consider, to deem
   حرم {{ar-verb (old)|I|حرم|ħáruma}}{{ar-verb (old)|I|حرم|ħárama}}{{ar-verb (old)|II|حرم|ħárrama}}{{ar-verb (old)|IV|احرم|’áħrama}}{{ar-verb (old)|V|تحرم|taħárrama}}{{ar-verb (old)|VIII|تحرم|iħtárama}}{{ar-verb (old)|X|استحرم|istáħrama}} :: to deem sacrosanct, to deem sacred, to deem holy, to deem inviolable
   حرم {{ar-verb (old)|I|حرم|ħáruma}}{{ar-verb (old)|I|حرم|ħárama}}{{ar-verb (old)|II|حرم|ħárrama}}{{ar-verb (old)|IV|احرم|’áħrama}}{{ar-verb (old)|V|تحرم|taħárrama}}{{ar-verb (old)|VIII|تحرم|iħtárama}}{{ar-verb (old)|X|استحرم|istáħrama}} :: to deem unlawful, to deem impermissible
 ===deep===
@@ -9000,16 +8985,14 @@ Index: EN EN->AR
 ===define===
   عين {{ar-verb (old)|II|عيّن|ʕáyyana}} (transitive) :: to define
 ===definite===
-  بات (batt) :: definite, definitive
+  بات {{ar-adj|tr=batt}} :: definite, definitive
   الرئيسية (ar-ra’isíyya) {f} :: main, chief, principal, leading, cardinal (definite feminine or definite plural of رئيسي)
     الفضائل الرئيسية — cardinal virtues :: --
     مقالة رئيسية — lead article, editorial :: --
 ===definitive===
-  بات (batt) :: definite, definitive
+  بات {{ar-adj|tr=batt}} :: definite, definitive
 ===deflect===
   حرف {{ar-verb (old)|II|حرّف|ħárrafa}}{{ar-verb (old)|V|تحرف|taħárrafa}} :: to deflect
-===defy===
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to risk one’s life, to defy death
 ===degree===
   حسب (ħasb) {m}حسب{m}احساب{p} :: measure, extent, degree, quantity, amount
   ما {{ar-adv|tr=mā}} :: as far as, to the extent that, to the degree that
@@ -9020,7 +9003,6 @@ Index: EN EN->AR
 ===deity===
   ربوبية رُبُوبِيّة (rububíyya) {f} :: divinity, deity, godhood, divine power, divine nature, Godhead, deism
 ===delay===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to postpone, to delay
   حالاً (ḥālan) (adverb) :: presently, immediately, at once, right away, without delay
 ===delegate===
   رسول (rasūl) {m}, رسل (rúsul) {p} :: envoy, delegate
@@ -9043,7 +9025,7 @@ Index: EN EN->AR
   جان {{ar-adj|head=جانٍ|tr=jānin|pl=جناة}} :: guilty, delinquent, criminal, flagrant, vicious, evil
   جان {{ar-noun|head=جانٍ|tr=jānin|pl=جناة}} :: perpetrator, offender, delinquent, criminal, culprit, felon, evildoer
 ===deliver===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to hand over, to deliver
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to hand over, to deliver
 ===deluge===
   طوفان طُوفَان (ṭufan) :: deluge
 ===demand===
@@ -9080,7 +9062,7 @@ Index: EN EN->AR
 ===denying===
   زاهد (zāhid) (adjective), زهاد (zuhhād) {p} :: abstemious, abstinent, self-denying.
 ===depart===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to go away, to leave, to depart
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to go away, to leave, to depart
   حرف {{ar-verb (old)|II|حرّف|ħárrafa}}{{ar-verb (old)|V|تحرف|taħárrafa}} :: to deviate, to depart, to digress
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to start out, to leave, to depart
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to deviate, to depart, to dodge, to evade
@@ -9092,8 +9074,6 @@ Index: EN EN->AR
     مخزن أدوية (máχzan ’adwiya) — drugstore (chemist’s) :: --
 ===departure===
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: going, leaving, departure
-===depend===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to depend on, to rest on, to be based on
 ===depict===
   رسم {{ar-verb|form=1|tr=rásama|head=رَسَمَ|impf=يرسم|impftr=yarsumu|impfhead=يَرْسُمُ}} :: to describe, depict, portray
 ===deploy===
@@ -9165,14 +9145,13 @@ Index: EN EN->AR
 ===destiny===
   قسمة {{ar-noun|head=قِسْمَة|tr=qísma|g=f|pl=قسم|pltr=qísam}} :: lot, destiny, foreordained fate, kismet
 ===destroyed===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to perish, to die, to be destroyed
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to perish, to die, to be destroyed
 ===detached===
   شاذ (šaðð), شذاذ (šuððāð) {p}, شواذ (šawáðð) {p} :: isolated, separate, detached, alone
 ===detail===
   دقيقة {{ar-noun|tr=daqīqa|g=f|pl=دقائق|pltr=daqā’iq}} :: detail, particular
 ===detain===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to hold back, keep, detain, restrain
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to detain, to impede, to obstruct, to hamper
 ===detention===
   شغل (šuğl) {m}, اشغال (’ašğāl) {p}, شغول (šuğūl) {p} :: detention, prevention, distraction
 ===deter===
@@ -9235,7 +9214,7 @@ Index: EN EN->AR
 ===did===
   ذو القعدة {{ar-noun|head=ذُو القَعْدَةِ|tr=ðu l-qáʕda|g=m}} :: Dhu al-Qi'dah, the eleventh of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhu al-Qi'dah means "master of the truce" in Arabic, and pagan Arabs did not conduct war during this month.
 ===die===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to perish, to die, to be destroyed
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to perish, to die, to be destroyed
   زهر {{ar-coll-noun|tr=zahr|g=m|sing=زهرة|singtr=záhra|singg=f|pl=زهور|pltr=zuhūr|pl2=ازهر|pl2tr=’ázhur|pl3=ازهار|pl3tr=’azhār|pl4=ازاهير|pl4tr=’azāhir|pl5=ازاهر|pl5tr=’azāhir}} :: die, dice
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: (passive, ’úšhida) to be martyred, to die as a martyr
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: (passive, ustúšhida) to be martyred, to die as a martyr
@@ -9255,11 +9234,13 @@ Index: EN EN->AR
 ===dilute===
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to water down, to dilute (a drink)
   رخ {{ar-verb (old)|I|رخ|ráxxa}} :: to dilute, to mix with water
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to mix, to dilute
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to mix, to dilute
 ===diploma===
   شهادة (šahāda) {f}, شهادات (šahadāt) {p} :: diploma
+  دبلوم (diblōm) {m}, دبلومات (diblomāt) {p} :: diploma
+  دبلومة (diblōma) {f}, دبلومات (diblomāt) {p} :: diploma
 ===direct===
-  رأس (rá’asa) :: to head, to lead, to direct, to manage, to run
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to head, to lead, to direct, to manage, to run
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to aim, to direct, to steer
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to direct
 ===direction===
@@ -9273,8 +9254,7 @@ Index: EN EN->AR
 ===disagree===
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to disagree, to be incongruous, to be incompatible
 ===disappear===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to disappear, to vanish
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to disappear, to vanish
 ===disaster===
   غول (ğūl) {f}, اغوال (’ağwāl) {p}, غيلان (ğilān) {p} :: calamity, disaster
 ===discard===
@@ -9286,7 +9266,7 @@ Index: EN EN->AR
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: insight, discernment
 ===discharge===
   ايفاء إيفاء (’īfā’) {m} :: fulfillment, discharge
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: discharge, dismissal, removal
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: discharge, dismissal, removal
 ===disciples===
   زاهد {m} (zāhid) (noun), زهاد (zuhhād) {p} :: {{context|Sufism}} A popular title bestowed on disciples of Mystic Sufi orders upon their initiation. After initiation the title took the place of the new Spiritual Masters’ given names. A famous bearer of the title Zahed was Sheikh Zahed Gilani of Lahijan in Gilan province of northern Iran.
 ===discipline===
@@ -9299,14 +9279,14 @@ Index: EN EN->AR
   (North Levantine Arabic) كس {m} (kiss) (noun) :: {vulgar} cunt
     كس اختك (kiss íkhtak) :: your sister’s pussy (general term of discontentment, like English fuck!)
 ===discontinuation===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: discontinuation, suspension
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: discontinuation, suspension
 ===discount===
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to deduct, to subtract, to discount
   طرح (ṭarḥ) {m}طرح(ṭirḥ){m}طرح(ṭúraḥ){p} :: subtraction, deduction, discount
 ===discourse===
   أخبار أخْبار (’axbār) {p}اخبار{m} :: {grammar} indirect discourse
 ===discredit===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to dishonor, to discredit
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to dishonor, to discredit
 ===discuss===
   بحث {{ar-verb (old)|I|بحث|báħaθa}}{{ar-verb (old)|III|باحث|bāħaθa}}{{ar-verb (old)|VI|تباحث|tabāħaθa}} :: to discuss
   بحث {{ar-verb (old)|I|بحث|báħaθa}}{{ar-verb (old)|III|باحث|bāħaθa}}{{ar-verb (old)|VI|تباحث|tabāħaθa}} :: to discuss
@@ -9314,6 +9294,7 @@ Index: EN EN->AR
 ===discussion===
   بحث {{ar-verb (old)|I|بحث|báħaθa}}{{ar-verb (old)|III|باحث|bāħaθa}}{{ar-verb (old)|VI|تباحث|tabāħaθa}} :: to have a discussion, to discuss together
   بحث (baħθ) {m}, بحوث (buħūθ) {p}, بحوثات (buħuθāt) {p}, ابحاث (’abħāθ) {p} :: discussion
+  كلامٌ (kalām) {m} :: discussion, debate
 ===disentangle===
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to clarify, to unravel, to disentangle
 ===disguise===
@@ -9326,7 +9307,7 @@ Index: EN EN->AR
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to regard as faithless, to regard as disloyal, to regard as false, to regard as treacherous, to regard as traitorous, to regard as perfidious, to regard as dishonest, to regard as unreliable
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to call faithless, to call disloyal, to be false, to be treacherous, to be perfidious, to call false, to call treacherous, to call perfidious, to call dishonest, to call unreliable
 ===dishonor===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to dishonor, to discredit
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to dishonor, to discredit
 ===disinclined===
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to hate intensely, to dislike, to be disinclined to, to feel disgust for, to have an aversion to, to detest, to abhor, to loathe
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to make averse to, to make disinclined to, to make hateful to, to alienate from, to make someone hate
@@ -9341,7 +9322,7 @@ Index: EN EN->AR
 ===disloyalty===
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to accuse of betrayal, to accuse of disloyalty
 ===dismissal===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: discharge, dismissal, removal
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: discharge, dismissal, removal
 ===disorder===
   دخل (dákhal) {m} :: disturbance, imbalance, derangement, disorder, mental defect
 ===disown===
@@ -9350,19 +9331,21 @@ Index: EN EN->AR
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to be rejected, to be expelled, to be disowned, to be repudiated
 ===dispatch===
   صدر {{ar-verb|form=2|tr=ṣáddara|impf=يصدر|impftr=yuṣaddiru}} :: to send, to send off, to dispatch, to forward
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to send, to dispatch
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to send out, to dispatch
 ===dispersed===
   شعبان {{ar-noun|head=شَعْبَانُ|tr=šaʕbān|g=m}} :: Sha'aban, the eighth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Sha'aban means "scattered" in Arabic, and is the time when ancient people dispersed to find water.
 ===display===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to present, to produce, to exhibit, to display
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to present, to produce, to exhibit, to display
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to manifest, to display, to exhibit
 ===disposition===
   مزاج (mazāj) {m}, امزجة (’ámzija) {p} :: temperament, temper, nature, disposition
   عرق {{ar-noun|tr=ʿirq|g=m|pl=عروق|pltr=ʿurūq}} :: hereditary disposition
 ===dispossess===
   حرم {{ar-verb (old)|I|حرم|ħáruma}}{{ar-verb (old)|I|حرم|ħárama}}{{ar-verb (old)|II|حرم|ħárrama}}{{ar-verb (old)|IV|احرم|’áħrama}}{{ar-verb (old)|V|تحرم|taħárrama}}{{ar-verb (old)|VIII|تحرم|iħtárama}}{{ar-verb (old)|X|استحرم|istáħrama}} :: to deprive, to dispossess, to divest, to bereave, to withhold, to withdraw, to deny, to refuse
+===dispute===
+  كلامٌ (kalām) {m} :: dispute, controversy
 ===disquiet===
   هم {{ar-verb (old)|I|هم|hámma}}{{ar-verb (old)|IV|أهمّ|’áhamma}}{{ar-verb (old)|VIII|اهتم|ihtámma}} :: to disquiet, to make uneasy, to distress
 ===dissatisfied===
@@ -9411,7 +9394,6 @@ Index: EN EN->AR
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to distrust, to mistrust
 ===disturb===
   عكس {{ar-verb (old)|I|عَكَسَ|ʕákasa}}{{ar-verb (old)|III|عاكس|ʕākasa}}{{ar-verb (old)|VI|تعاكس|taʕākasa}}{{ar-verb (old)|VII|انعكس|inʕákasa}} :: to disturb, to trouble
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to invade, to intrude, to disturb
 ===disturbance===
   دخل (dákhal) {m} :: disturbance, imbalance, derangement, disorder, mental defect
 ===divert===
@@ -9430,8 +9412,8 @@ Index: EN EN->AR
   قسمة {{ar-noun|head=قِسْمَة|tr=qísma|g=f|pl=قسم|pltr=qísam}} :: dividing, division, distribution, allotment, apportionment, splitting, carving up
   قسمة {{ar-noun|head=قِسْمَة|tr=qísma|g=f|pl=قسم|pltr=qísam}} :: {mathematics} division
 ===divorce===
-  طلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
-  طلاق (ṭalāq) {m} :: divorce
+  طلاق طَلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
+  طلاق طَلاق (ṭalāq) {m} :: divorce
 ===divulge===
   شهر {{ar-verb (old)|I|شهر|šáhara}}{{ar-verb (old)|II|شهّر|šáhhara}}{{ar-verb (old)|III|شاهر|šāhara}}{{ar-verb (old)|IV|اشهر|’ášhara}}{{ar-verb (old)|VIII|اشتهر|ištáhara}} :: to spread, to make known, to divulge
   شهر {{ar-verb (old)|I|شهر|šáhara}}{{ar-verb (old)|II|شهّر|šáhhara}}{{ar-verb (old)|III|شاهر|šāhara}}{{ar-verb (old)|IV|اشهر|’ášhara}}{{ar-verb (old)|VIII|اشتهر|ištáhara}} :: to spread, to make known, to divulge
@@ -9440,7 +9422,7 @@ Index: EN EN->AR
   عمل {{ar-verb|form=I|head=عَمِلَ|tr=ʿámila|impf=يعمل|impfhead=يَعْمَلُ|impftr=yáʿmalu}} :: to do {{context|with deliberate thought}}
   (Egyptian Arabic) عمل {{arz-verb|form=1|tr=ʿamal|impf=يعمل|impftr=yiʿmil}} :: to do
   فعل {{ar-verb|form=I|head=فَعَلَ|tr=fáʿala|impf=يفعل|impfhead=يَفْعَلُ|impftr=yafʿalu}} :: to do
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to do earlier, to do beforehand
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to do earlier, to do beforehand
   ذنب {{ar-verb (old)|IV|اذنب|’áðnaba}}{{ar-verb (old)|X|استذنب|’istáðnaba}} :: to do wrong, to commit a sin, to commit a crime
   الا {{ar-verb (old)|I|الا|’alā}} :: to neglect to do, to fail to do, not to do
   بحث {{ar-verb (old)|I|بحث|báħaθa}}{{ar-verb (old)|III|باحث|bāħaθa}}{{ar-verb (old)|VI|تباحث|tabāħaθa}} :: to do research
@@ -9473,8 +9455,6 @@ Index: EN EN->AR
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to assume an imperious attitude, to be domineering
 ===dominion===
   ملك (mulk) {m}ملك{m}املاك{p}ملك{m}ملوك{p}املاك{p} :: rule, reign, supreme authority, dominion, dominance, sway, power
-===donate===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to donate, to bequeath
 ===donkey===
   حمار حِمار (Himaar) {m}, حَمير (Hamiir) {p} :: donkey.
   اتان أتُانٌ (’atān) {f}, آتُن (’ātun) {p}, أتُن (’útun, ’utn) {p} :: she ass, female donkey, jenny
@@ -9488,6 +9468,12 @@ Index: EN EN->AR
   زوج {{ar-verb (old)|II|زوّج|záwwaja}}{{ar-verb (old)|VIII|ازدوج|izdáwaja}} :: to be in pairs, to be doubled, to appear twice
 ===doubt===
   دخل (dákhl) {m} :: doubt, misgiving
+===dough===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment, to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment, to rise (of dough)
 ===dove===
   حَمَام {m} (Hamaam) (noun) collective, حمامة (Hamaama, singulative), حمامات (Hamaamaat) {p}, حمائم (Hamaa’im) {p}حِمَام {m} (Himaam) (noun)حَمّام {m} (Hammaam) (noun)حمامات{p} :: dove, pigeon
 ===dower===
@@ -9562,7 +9548,7 @@ Index: EN EN->AR
   جمال (jammāl) {m}, جمالون (jammalūn) {p} :: camel driver
 ===drop===
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to drop, to fall
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to drop in on, to come to see, to call on
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to drop in on, to come to see, to call on
 ===dropped===
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to be thrown down, to be dropped
 ===drops===
@@ -9598,7 +9584,7 @@ Index: EN EN->AR
 ===durum===
   ذرة ذُرَة (ðóra) {f} (collective) :: maize, durum corn, Indian corn (Zea mays L.)
 ===duties===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: taxes, duties, charges, fees, rates
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عوائد|pltr=ʿawā́ʾid}} :: (in plural) taxes, duties, charges, fees, rates
 ===duty===
   واجب (wājib) {m}, واجبات (wajibāt) {p}, وجائب (wajā’ib) {p} :: duty, obligation
   مهمة (mahámma) {f}, مهام (mahámm) {p}مهمة{f}مهمات{p} :: job, task, function, duty
@@ -9608,11 +9594,13 @@ Index: EN EN->AR
   منزل (manzil) {m}, منازل (manāzil) {p} :: house, dwelling
   بيت بَيْتٌ (beyt) {m}, بُيُوتٌ (buyūt) {p}, بيوتات (buyutāt) {p}بَيْتٌ{m}أبْيَاتٌ{p} :: tent (dwelling)
 ===dwindle===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to decline, to dwindle
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to decline, to dwindle
 ===dye===
   دم {{ar-verb (old)|I|دم|dámma}}{{ar-verb (old)|II|دمم|dámmama}} :: to paint, to daub, to dye, to tint
   دم {{ar-noun|head=دَم|tr=dam|g=m|pl=دماء}} :: pigment, dye
   صفر {{ar-verb (old)|II|صفّر|ṣáffara}}{{ar-verb (old)|IX|اصفر|iṣfárra}} :: to dye yellow, to make yellow, to color yellow
+===dyed===
+  كحل (káħil) :: darkened with kohl, dyed black (of the eyelids)
 ===dyes===
   قرمز قِرْمِز (qirmiz) :: kermes insect (Kermes ilicis, an insect found on the Kermes oak that is used to make crimson dyes)
 ===dynasty===
@@ -9634,12 +9622,9 @@ Index: EN EN->AR
   ذو الحجة {{ar-noun|head=ذُو الحِجّةِ|tr=ðu l-ħíjja|g=m}} :: Dhul Hijjah, the twelfth and last of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhul Hijjah means "lord of the pilgrimage" in Arabic, and this is when pilgrims visit Mecca.
   ربيع الثاني {{ar-noun|head=رَبِيعُ الثَانِي|tr=rabīʕu l-θāni|g=m}} :: Rabia II, the fourth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Rabia II means "second part of spring" in Arabic.
   جمادى الثاني {{ar-noun|head=جُمَادَى الثَانِي|tr=jumá:da l-θá:ni|g=m}} :: Jumada II, the sixth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Jumada II means "second part of parched land" in Arabic.
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to fight each other, to meet in battle
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to write each other, to correspond
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to resemble each other, to be alike, to go together, to agree, to match
   مس {{ar-verb (old)|I|مس|mássa}}{{ar-verb (old)|III|ماس|māsasa, māssa}}{{ar-verb (old)|VI|تماس|tamāsasa, tamāssa}} :: to touch each other, to be in mutual contact
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
 ===eagle===
   عقاب (ʕuqāb), اعقب (’áʕqub) {p}, عقبان (ʕiqbān) {p} :: eagle
   نسر {{ar-verb (old)|V|تنسر|tanássara}}{{ar-verb (old)|X|استنسر|istánsara}} :: to become like an eagle
@@ -9647,23 +9632,21 @@ Index: EN EN->AR
 ===eaglewood===
   قطر (quTur) {m} :: agalloch, agarwood, aloeswood, eaglewood (Aquilaria agallocha)
 ===ear===
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: ear
+  أذن {{ar-noun|tr=ʾúđun|g=f|pl=آذان|pltr=ʾāđān}} :: ear
   صغا {{ar-verb (old)|I|صغا|ʂağā}}{{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
   أصغى {{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to lend an ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to give ear, to listen, to lend an ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to lend an ear
-  سمع (sámʕ) {m}, اسماع (’asmāʕ) {p} :: ear
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to lend an ear
+  سمع {{ar-noun|tr=samʿ|g=m|pl=اسماع|pltr=ʾasmāʿ}} :: ear
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to confide a secret, to whisper in someone’s ear
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to listen, to hearken, to lend an ear
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to listen, to hearken, to lend an ear
 ===earlier===
   قبل {{ar-adv|tr=qáblu}} :: previously, formerly, earlier, before
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to do earlier, to do beforehand
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to do earlier, to do beforehand
 ===early===
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: early period, dawn, beginnings
 ===earmark===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
   علم {{ar-verb (old)|I|عَلِمَ|ʕálima|علم}}{{ar-verb (old)|II|عَلّمَ|ʕállama|علم}} :: to designate, to mark, to earmark
 ===earner===
   عامل (ʕāmil) {m}, عوامل (ʕawāmil) {p}عامل{m}عمّال{p} :: wage earner, employee
@@ -9685,8 +9668,6 @@ Index: EN EN->AR
   ياكل (yá:kul) :: (imperfective) he eats, is eating. See آكل (ákala,' 'to eat').
 ===eavesdrop===
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to eavesdrop, to listen secretly
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to eavesdrop, to listen secretly
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to eavesdrop
 ===eavesdropping===
   نصت تَنَصّت (tanáṣṣut) {m} :: eavesdropping
 ===eccentric===
@@ -9704,8 +9685,12 @@ Index: EN EN->AR
 ===edge===
   حرف حَرف (ħarf) {m}, حِرَف (ħíraf) {p} :: cutting edge, sharp edge
   حرف حَرف (ħarf) {m}, حِرَف (ħíraf) {p} :: border, brink, edge, rim
-  شفة (šáfa) {f}, شفاه (šifāh) {p}, شفوات (šafawāt) {p} :: rim, edge
+  شفة {{ar-noun|tr=šáfa|g=f|pl=شفاه|pltr=šifāh|pl2=شفوات|pl2tr=šafawāt}} :: rim, edge
   شفرة (šáfra) {f}, شفرات (šafarāt) {p}, شفار (šifār) {p} :: brink, edge, verge
+===edges===
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: black coloring of the edges of the eyelids
 ===edible===
   زيت (zeyt) {m}, زيوت (zuyūt) {p}, ازيات (azyāt) {p} :: oil (all types of oil, edible, fuel, motor oil, etc.)
   قضب {{ar-noun|tr=qáḍb|g=m}} :: edible herbs
@@ -9729,8 +9714,6 @@ Index: EN EN->AR
   حسن {{ar-noun|head=حُسْن|tr=ħúsn|g=m}}, حُسْنَاء (ħusnáʾ) {f} :: fineness, efficiency, efficacy
 ===egg===
   بيضة {{ar-sing-noun|g=f|tr=báyḍa|head=بَيْضَة|coll=بيض|colltr=bayḍ|pl=بيوض|pltr=buyūḍ}}, {paucal} بيضات (bayḍāt) :: egg
-===ego===
-  انا الأنَا (al-’ána) {m} :: ego
 ===Egypt===
   مصر (miSr, maSr) {f} :: Egypt or Masr (in this sense, a feminine noun)
   القاهرة (al-qaahira) {f} :: Cairo (capital of Egypt)
@@ -9788,8 +9771,6 @@ Index: EN EN->AR
   ذو القعدة {{ar-noun|head=ذُو القَعْدَةِ|tr=ðu l-qáʕda|g=m}} :: Dhu al-Qi'dah, the eleventh of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhu al-Qi'dah means "master of the truce" in Arabic, and pagan Arabs did not conduct war during this month.
   ز / ‍ز (zāyn) :: The eleventh letter of the Arabic alphabet. It is preceded by ر and followed by س.
   ك / ك‍ / ‍ك‍ / ‍ك (kāf) :: The eleventh letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ى and followed by ل.
-===eliminate===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
 ===elite===
   علية القوم عِلْيَةُ القَوْم (ʕílyatu-l-qáum) {f} :: upper class, elite, prominent people, VIP‏s.
 ===elucidate===
@@ -9807,8 +9788,6 @@ Index: EN EN->AR
   تحسين تَحْسِين (taħsíin) {m} :: embellishment, decoration, garnishment, ornamentation
 ===emblem===
   شعار شِعَار (šiʕār) {m}, شعر (šúʕur) {p}, اشعرة (’ášʕira) {p}شِعَار(šiʕār){p} :: badge, emblem
-===embody===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to incorporate, to include, to embody, to insert
 ===emerge===
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to come to light, to appear, to emerge
 ===eminence===
@@ -9855,10 +9834,10 @@ Index: EN EN->AR
 ===enamoring===
   شغف {{ar-noun|head=شَغْف|tr=šağf|g=m}} :: infatuating, enamoring, having ardent passion
 ===enclitic===
-  أنا أنَا (’ána)ـنِيـِي :: me (enclitic object pronoun).
-  أنا أنَا (’ána)ـنِيـِي :: my (enclitic possessive pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: me (enclitic object pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: my (enclitic possessive pronoun).
 ===end===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: extremity, end
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: extremity, end
   ذنب (ðánab) {m}, اذناب (’aðnāb) {p} :: tail, end
   آخر (’āxir) {m}, آخرون (’axirūn) {p}, اخرات (’axirāt) {p}, اواخر (’awāxir) {p} :: end, conclusion
     الآخر (al-’āxir) &mdash; the hereafter :: --
@@ -9871,15 +9850,16 @@ Index: EN EN->AR
 ===endowed===
   رب (rabb) {m}, ارباب (’arbāb) {p} :: (with a following genitive) one possessed of, one endowed with
 ===endowment===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: {Islam} a waqf, religious endowment, endowment fund
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: {Islam} a waqf, religious endowment, endowment fund
 ===endurance===
   صبر (ṣabr) {m}صبر(ṣábir, ṣabr){m} :: perseverance, endurance, hardiness
 ===endure===
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to persevere, to endure
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to persevere, to endure
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to persevere, to endure
+  دام {{ar-verb|II=و|form=1|tr=dāma|impf=يدوم|impftr=yadūmu}} :: to last, to endure
 ===enemy===
-  قتل (qatl) {m}قتل{m}اقتال{p} :: enemy, adversary, foe, opponent
+  قتل {{ar-noun|tr=qitl|g=m|pl=أقتال|pltr=ʾaqtāl}} :: enemy, adversary, foe, opponent
 ===enforce===
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to enforce
 ===engage===
@@ -9942,10 +9922,8 @@ Index: EN EN->AR
   شرف {{ar-verb (old)|I|شَرُفَ|šárufa}}{{ar-verb (old)|II|شرّف|šárrafa}} :: to make noble, to ennoble, to make illustrious, to make eminent, to elevate, to exalt, to honor
 ===enraged===
   حرب {{ar-verb (old)|I|حَرِبَ|Háriba|حرب|يَحْرَبُ|يحرب}}{{ar-verb (old)|III|حارَبَ|Haaraba|حارب|يُحارِبُ|يحارب}}{{ar-verb (old)|VI|تَحارَبَ|taHaaraba|تحارب|يَتَحارَبُ|يتحارب}}{{ar-verb (old)|VIII|اِحْتَرَبَ|iHtáraba|احترب|يَحْتَرِبُ|يحترب}} :: to be enraged, to be furious, to be angry
-===enroll===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to enroll
 ===enshroud===
-  برقع بَرْقَعَ (barq‘a) :: to enshroud
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to enshroud
 ===ensign===
   شعار شِعَار (šiʕār) {m}, شعر (šúʕur) {p}, اشعرة (’ášʕira) {p}شِعَار(šiʕār){p} :: ensign
 ===ensnare===
@@ -9953,18 +9931,18 @@ Index: EN EN->AR
 ===enter===
   كتب {{ar-verb|form=I|head=كَتَبَ|tr=kátaba|impf=يكتب|impfhead=يَكْتُبُ|impftr=yaktúbu}} :: to write, to pen, to write down, to inscribe, to enter, to record, to register
   دب {{ar-verb (old)|I|دب|dábba}}{{ar-verb (old)|II|دبّ|dábba}} :: to enter
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to enter
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to enter, to insert, to include
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in, to admit, to show in
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to enter
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to make enter, to bring in, to let in
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to enter, to insert, to include
   رسم {{ar-verb|form=1|tr=rásama|head=رَسَمَ|impf=يرسم|impftr=yarsumu|impfhead=يَرْسُمُ}} :: to record, enter, mark, indicate
   رسم {{ar-verb|form=2|tr=rássama}} :: to enter, mark, indicate
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to come forth, to come forward, to enter, to appear
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to set foot, to enter
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to ask permission to enter
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to enter upon morning
   حرم {{ar-verb (old)|I|حرم|ħáruma}}{{ar-verb (old)|I|حرم|ħárama}}{{ar-verb (old)|II|حرم|ħárrama}}{{ar-verb (old)|IV|احرم|’áħrama}}{{ar-verb (old)|V|تحرم|taħárrama}}{{ar-verb (old)|VIII|تحرم|iħtárama}}{{ar-verb (old)|X|استحرم|istáħrama}} :: to enter into the state of ritual consecration (of a pilgrim to Mecca)
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to enter upon a course
+===entertain===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to harbor, to entertain
 ===enthusiasm===
   حماس {{ar-noun|g=m|tr=Hamaas|head=حَماس}} :: enthusiasm, zeal, excitement
 ===entire===
@@ -9989,10 +9967,10 @@ Index: EN EN->AR
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   (Egyptian Arabic) باب {{arz-noun|m|أبواب|abwaab|tr=baab}} :: door (portal of entry into a building or room)
 ===enumerator===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: head (enumerator for cattle)
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: head (enumerator for cattle)
   ﻫ (initial form of ه) (hā’) :: Normally the twenty-sixth letter of the Arabic alphabet, when this letter is used in this initial form as an enumerator, it is interpreted as the fifth letter in traditional abjad order, equivalent to our Roman numeral V or Ⅴ (see abjad numerals). It is preceded by د and followed by و.
 ===envelop===
-  برقع بَرْقَعَ (barq‘a) :: to envelop
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to envelop
 ===envisage===
   نظر {{ar-verb|form=I|head=نَظَرَ|tr=náẓara|impf=ينظر|impfhead=يَنْظُرُ|impftr=yanẓuru}} :: to envisage, to consider, to contemplate
 ===envoy===
@@ -10025,15 +10003,15 @@ Index: EN EN->AR
 ===eradicate===
   اصل {{ar-verb (old)|I|أصل|’áṣula}}{{ar-verb (old)|II|أصل|’áṣṣala}}{{ar-verb (old)|V|تأصل|ta’áṣṣala}}{{ar-verb (old)|X|استأصل|istá’ṣala}} :: to remove (e.g., surgically), to eradicate
 ===erect===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to erect, to raise
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to erect, to raise
 ===err===
-  ØºÙ\8eÙ\84Ù\90Ø·Ù\8e (ghaliá¹­a) (verb) :: to err
+  ØºÙ\84Ø· {{ar-verb|head=غÙ\8eÙ\84Ù\90Ø·Ù\8e|tr=Ä\9faliá¹­a|form=1|impf=Ù\8aغÙ\84Ø·|impftr=yaÄ\9flaá¹­u}} :: to err
 ===errand===
   فراش (farrá:š) {m} :: office boy, errand boy
 ===es===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: taxes, duties, charges, fees, rates
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عوائد|pltr=ʿawā́ʾid}} :: (in plural) taxes, duties, charges, fees, rates
 ===escape===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to escape, to slip, to lose sight of, to forget
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to escape, to slip, to lose sight of, to forget
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: way out, escape
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to flee, to run away, to turn tail, to scamper, to abscond, to get away, to escape
 ===eschew===
@@ -10081,8 +10059,6 @@ Index: EN EN->AR
 ===Eve===
   جدة (jídda) {f}, جدات (jiddāt) {p} :: Eve (wife of Adam)
   جدة (jídda) {f}, جدات (jiddāt) {p} :: Jeddah (port city in Saudi Arabia on the Red Sea, purportedly the burial site of Eve)
-===even===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle and account, to get even
 ===evening===
   ليل (layl) {m}, ليالي (layālī) {p}ليلة{f}ليال{p}ليائل{p} :: evening
 ===evenings===
@@ -10149,7 +10125,7 @@ Index: EN EN->AR
   حركة (ḥáraka) {f}, حركات (ḥarakāt) {p} :: physical exercise
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to rule, to reign, to exercise authority, to hold sway, to lord over
 ===exhibit===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to present, to produce, to exhibit, to display
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to present, to produce, to exhibit, to display
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to manifest, to display, to exhibit
 ===exigencies===
   مهمة (mahámma) {f}, مهام (mahámm) {p}مهمة{f}مهمات{p} :: {plural} requirements, exigencies
@@ -10214,7 +10190,7 @@ Index: EN EN->AR
 ===expulsion===
   طرح (ṭarḥ) {m}طرح(ṭirḥ){m}طرح(ṭúraḥ){p} :: expulsion, rejection, repulsion, banishment, repudiation
 ===extend===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
 ===extension===
   افنان (afnán) (noun) :: {literally} "Branches with leaves". By extension, a specific place in the heavens, a peaceful setting which is covered in shade and full of fruits.
 ===extensive===
@@ -10242,7 +10218,7 @@ Index: EN EN->AR
 ===extremely===
   جِدًا (jíddan) (adverb) :: extremely
 ===extremity===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: extremity, end
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: extremity, end
 ===eye===
   عين (ʕayn) {f}, عَيْنَانِ (ʕeynāni, dual nom.), عَيْنَيْنِ (ʕeynéyni, dual acc./gen.), عُيُون (ʕuyūn, {p}) :: eye
     عَيْنَاىَ (ʕeynāya, dual nom.) &mdash; my two eyes :: --
@@ -10254,6 +10230,11 @@ Index: EN EN->AR
   قطب {{ar-verb (old)|I|قطب|qáṭaba}}{{ar-verb (old)|II|قطب|qáṭṭaba}}{{ar-verb (old)|V|تقطب|taqáṭṭaba}}{{ar-verb (old)|X|استقطب|istáqṭaba}} :: to knit the eyebrows, to scowl
 ===eyeglasses===
   منظر (mínẓar) {m} :: pair of eyeglasses, spectacles
+===eyelids===
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: black coloring of the edges of the eyelids
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل (káħil) :: darkened with kohl, dyed black (of the eyelids)
 ===eyes===
   مع (máʕa) :: in the estimation of, in the eyes of, in the opinion of
   شاهد {{ar-verb (old)|III|شاهد|šāhada}} :: to see (with one’s own eyes), to view, to inspect, to watch, to observe, to witness
@@ -10283,6 +10264,7 @@ Index: EN EN->AR
   وجه {{ar-noun|head=وَجْه|tr=wajh|g=m|pl=وجوه|plhead=وُجوه}} :: face, countenance
   سلم {{ar-verb (old)|I|سَلِمَ|sálima}}{{ar-verb (old)|II|سلّم|sállama}}{{ar-verb (old)|III|سالم|sālama}}{{ar-verb (old)|IV|اسلم|’áslama}}{{ar-verb (old)|V|تسلم|tasállama}}{{ar-verb (old)|VI|تسالم|tasālama}}{{ar-verb (old)|VIII|استلم|istálama}}{{ar-verb (old)|X|استسلم|istáslama}} :: to turn one’s face to
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to turn one’s face, to turn
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to veil the head and face
 ===facial===
   قسمة {{ar-noun|head=قسمة|tr=qásama, qásima|g=f|pl=قسمات|pltr=qasamāt}} :: facial feature
 ===fact===
@@ -10414,12 +10396,13 @@ Index: EN EN->AR
   شباط {{ar-noun|head=شُبَاطٌ|tr=šubāṭ|g=m}} :: February (Christian calendar followed in Syria, Lebanon, Jordan, and Iraq)
   فبراير {{ar-noun|head=فِبْرايِر|tr=fibrá:yir|g=m}} :: February (Westernized calendar)
 ===fee===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: taxes, duties, charges, fees, rates
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عوائد|pltr=ʿawā́ʾid}} :: (in plural) taxes, duties, charges, fees, rates
 ===feel===
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to perceive, to feel, to sense
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to perceive, to feel, to sense, to notice, to realize
   مس {{ar-verb (old)|I|مس|mássa}}{{ar-verb (old)|III|ماس|māsasa, māssa}}{{ar-verb (old)|VI|تماس|tamāsasa, tamāssa}} :: to feel, to touch
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to hate intensely, to dislike, to be disinclined to, to feel disgust for, to have an aversion to, to detest, to abhor, to loathe
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to bear a grudge, to feel resentment
 ===feeling===
   عن عَن (ʕan) :: out of (a feeling)
 ===feet===
@@ -10431,6 +10414,7 @@ Index: EN EN->AR
   صرع {{ar-verb (old)|I|صرع|ṣáraʕa}} :: to throw down, to fell, to bring to the ground
 ===fellow===
   قزم (qázam) {m}, اقزام (’aqzām) {p} :: little fellow, shrimp, hop-o'-my-thumb, whippersnapper
+  بلدي بَلَدِيّ (baladiyy) {m} :: fellow citizen, compatriot, countryman
 ===felon===
   جان {{ar-noun|head=جانٍ|tr=jānin|pl=جناة}} :: perpetrator, offender, delinquent, criminal, culprit, felon, evildoer
 ===feminine===
@@ -10443,6 +10427,12 @@ Index: EN EN->AR
     مقالة رئيسية — lead article, editorial :: --
 ===feral===
   بربري بَرْبَريّ (bárbari) :: animal, bestial, beastly, brutal, feral
+===ferment===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment, to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment, to rise (of dough)
 ===festival===
   عيد عِيد (ʕīd) {m}, أعيَاد (’aʕyād) :: eid, feast day, festival, holiday
   موسم مَوْسِم (mawsim) {m}, مواسم (mawāsim) {p} :: festival, holiday
@@ -10456,7 +10446,7 @@ Index: EN EN->AR
 ===fettering===
   صبر (ṣabr) {m}صبر(ṣábir, ṣabr){m} :: fettering, shackling
 ===Fez===
-  فاس (proper noun) :: The city of Fez in Morocco.
+  فاس {ar-proper noun} :: Fez
 ===fidelity===
   إخلاص‎ {m} (’ikhlaaS) (noun) :: loyalty, faithfulness, fidelity, allegiance
 ===field===
@@ -10479,10 +10469,6 @@ Index: EN EN->AR
   حرب {{ar-verb (old)|I|حَرِبَ|Háriba|حرب|يَحْرَبُ|يحرب}}{{ar-verb (old)|III|حارَبَ|Haaraba|حارب|يُحارِبُ|يحارب}}{{ar-verb (old)|VI|تَحارَبَ|taHaaraba|تحارب|يَتَحارَبُ|يتحارب}}{{ar-verb (old)|VIII|اِحْتَرَبَ|iHtáraba|احترب|يَحْتَرِبُ|يحترب}} :: to fight one another, to be engaged in war
   حرب {{ar-verb (old)|I|حَرِبَ|Háriba|حرب|يَحْرَبُ|يحرب}}{{ar-verb (old)|III|حارَبَ|Haaraba|حارب|يُحارِبُ|يحارب}}{{ar-verb (old)|VI|تَحارَبَ|taHaaraba|تحارب|يَتَحارَبُ|يتحارب}}{{ar-verb (old)|VIII|اِحْتَرَبَ|iHtáraba|احترب|يَحْتَرِبُ|يحترب}} :: to fight one another, to be engaged in war
   حرب {{ar-noun|head=حَرْب|tr=Harb|g=f|pl=حروب|plhead=حُروب}} :: fight
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to fight each other, to meet in battle
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to combat, to battle, to fight
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to be frightened away, to ask someone to fight against, to call someone to go to war
   محرم {{ar-noun|head=ُُمُحَرّمٌ|tr=muħárram|g=m}} :: Muharram, the first of the twelve months of the Muslim lunar calendar, each beginning on a new moon. Muharram means "forbidden" in Arabic, and it is unlawful to fight during this month.
 ===fighter===
@@ -10509,10 +10495,11 @@ Index: EN EN->AR
 ===final===
   غ / غ‍ / ‍غ‍ / ‍غ (ğayn) :: The twenty-eighth and final letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ظ.
   ي / ي‍ / ‍ي‍ / ـي (yā’) :: The twenty-eighth and final letter of the Arabic alphabet. It is preceded by و.
+===finally===
+  اخیرا أخيرا (akhiran) :: finally
 ===financial===
   دين {m} (diin) (noun)دين {m} (dayn) (noun)ديون{p} :: claim, financial claim
 ===find===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to seek to know, to try to find out
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to determine, to ascertain, to find out, to identify
   ذنب {{ar-verb (old)|IV|اذنب|’áðnaba}}{{ar-verb (old)|X|استذنب|’istáðnaba}} :: to declare someone guilty, to find someone guilty
   شعبان {{ar-noun|head=شَعْبَانُ|tr=šaʕbān|g=m}} :: Sha'aban, the eighth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Sha'aban means "scattered" in Arabic, and is the time when ancient people dispersed to find water.
@@ -10634,7 +10621,7 @@ Index: EN EN->AR
 ===fodder===
   علف {{ar-noun|tr='alaf|head=عَلَف}} :: fodder
 ===foe===
-  قتل (qatl) {m}قتل{m}اقتال{p} :: enemy, adversary, foe, opponent
+  قتل {{ar-noun|tr=qitl|g=m|pl=أقتال|pltr=ʾaqtāl}} :: enemy, adversary, foe, opponent
 ===foetus===
   طرح (ṭarḥ) {m}طرح(ṭirḥ){m}طرح(ṭúraḥ){p} :: miscarried foetus
 ===foil===
@@ -10791,7 +10778,7 @@ Index: EN EN->AR
 ===foreword===
   ترجمة {{ar-noun|tr=tárjama|g=f|head=تَرْجَمة}}, plural: تَراجِم (taraajim), تَرْجَمَات (tarjamaat) :: introduction, preface, foreword
 ===forget===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to escape, to slip, to lose sight of, to forget
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to escape, to slip, to lose sight of, to forget
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to forget
 ===formal===
   فتوى (fatwā) {f}, فتاو (fatāwin) {p}, فتاوى (fatāwā) {p} :: fatwa, formal legal opinion
@@ -10805,7 +10792,7 @@ Index: EN EN->AR
   خون {m} (khawn) (noun) :: forsaking, deserting, letting down
 ===forth===
   ولد {{ar-verb|form=I|tr=wálada|impf=يلد}} :: to produce, to bring forth
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
   فجر {{ar-verb|form=2|tr=fájjara|impf=يفجر|impftr=yufajjiru}} :: to let pour forth
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to come forth, to come forward, to enter, to appear
 ===fortune===
@@ -10913,7 +10900,7 @@ Index: EN EN->AR
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: front part, front
   جبهة (jábha), جباه (jibāh) {p}, جبهات (jibahāt) {p} :: front, face, façade
   وجه {{ar-noun|head=وَجْه|tr=wajh|g=m|pl=وجوه|plhead=وُجوه}} :: front, façade
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
 ===frontline===
   جبهة (jábha), جباه (jibāh) {p}, جبهات (jibahāt) {p} :: {military} frontline, battlefront
 ===frown===
@@ -10948,7 +10935,7 @@ Index: EN EN->AR
   فعل (fiʕl) {m}, افعال (’afʕāl) {p}, فعال (fiʕāl) {p}فِعْل{m}افعالفعل{m}افاعيل :: function
   مهمة (mahámma) {f}, مهام (mahámm) {p}مهمة{f}مهمات{p} :: job, task, function, duty
 ===fund===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: {Islam} a waqf, religious endowment, endowment fund
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: {Islam} a waqf, religious endowment, endowment fund
   مال (māl) {m}, اموال (’amwāl) {p} :: assets, capital, stock, fund
 ===fundament===
   قواعد (qawaa3id) {p} (singular: قاعدة, qaa3ida) :: fundaments
@@ -11065,9 +11052,8 @@ Index: EN EN->AR
 ===Germany===
   ألمانيا ألْمَانْيَا (’almānya) {f} :: Germany
 ===get===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle and account, to get even
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to flee, to run away, to turn tail, to scamper, to abscond, to get away, to escape
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to set out, to get underway, to go see
   نسر {{ar-verb (old)|V|تنسر|tanássara}}{{ar-verb (old)|X|استنسر|istánsara}} :: to get torn
   نور {{ar-verb (old)|II|نور|náwwara}}{{ar-verb (old)|IV|انار|’ánara}}{{ar-verb (old)|IV|انور|’ánwara}}{{ar-verb (old)|V|تنور|tanáwwara}}{{ar-verb (old)|X|استنور|istánwara}} :: to receive information, to get an explanation
@@ -11088,7 +11074,7 @@ Index: EN EN->AR
 ===Gilani===
   زاهد {m} (zāhid) (noun), زهاد (zuhhād) {p} :: {{context|Sufism}} A popular title bestowed on disciples of Mystic Sufi orders upon their initiation. After initiation the title took the place of the new Spiritual Masters’ given names. A famous bearer of the title Zahed was Sheikh Zahed Gilani of Lahijan in Gilan province of northern Iran.
 ===gild===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to gild
+  ذهب {{ar-verb|form=2|tr=ḏáhhaba|impf=يذهب|impftr=yuḏahhibu}} :: to gild
 ===gilded===
   مذهب (muðáhhab, múðhab) :: gilded
 ===girdle===
@@ -11102,8 +11088,7 @@ Index: EN EN->AR
   قبل {{ar-verb|form=I|head=قَبِلَ|tr=qábila|impf=يقبل|impfhead=يَقبَلُ|impftr=yaqbalu}} :: to obey, to yield, to give in, to submit
   زوج {{ar-verb (old)|II|زوّج|záwwaja}}{{ar-verb (old)|VIII|ازدوج|izdáwaja}} :: to marry off, to give in marriage
   ولد {{ar-verb|form=I|tr=wálada|impf=يلد}} :: to bear, to give birth, to beget
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to give precedence, to prefer
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to give pause
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to give precedence, to prefer
   زهر {{ar-verb (old)|I|زهر|záhara}}{{ar-verb (old)|IV|ازهر|’ázhara}}{{ar-verb (old)|VIII|ازدهر|’izdáhara}} :: to shine, to be radiant, to give light
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to Arabicize, Arabize; to give an Arabic form.
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to give earnest money.
@@ -11115,9 +11100,7 @@ Index: EN EN->AR
   قبل {{ar-verb|form=I|head=قَبِلَ|tr=qábila|impf=يقبل|impfhead=يَقبَلُ|impftr=yaqbalu}} :: to receive kindly, to give a friendly reception
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to give trouble, to distract, to divert
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to testify, to bear witness, to give testimony, to give evidence
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to give ear, to listen, to lend an ear
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to make hear, to let hear, to give someone something to hear
 ===given===
   حَسَن {m} (proper noun) :: Hassan, a male given name.
   زاهد {m} (zāhid) (noun), زهاد (zuhhād) {p} :: {{context|Sufism}} A popular title bestowed on disciples of Mystic Sufi orders upon their initiation. After initiation the title took the place of the new Spiritual Masters’ given names. A famous bearer of the title Zahed was Sheikh Zahed Gilani of Lahijan in Gilan province of northern Iran.
@@ -11164,8 +11147,8 @@ Index: EN EN->AR
 ===glower===
   قطب {{ar-verb (old)|I|قطب|qáṭaba}}{{ar-verb (old)|II|قطب|qáṭṭaba}}{{ar-verb (old)|V|تقطب|taqáṭṭaba}}{{ar-verb (old)|X|استقطب|istáqṭaba}} :: to scowl, to glower
 ===go===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to go, to travel
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to go away, to leave, to depart
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to go, to travel
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to go away, to leave, to depart
   صدر {{ar-verb|form=1|tr=ṣádara}} :: to go out, to step out, to leave
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to go, to repair (to a place)
     ام مدينة لندن :: to go to London
@@ -11173,7 +11156,6 @@ Index: EN EN->AR
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to go, to repair (to a place)
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to go to see
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to elapse, to pass, to go by
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to go to bed
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to go to sleep
   رجل {{ar-verb|form=1|tr=rájila|impf=يرجل}} :: to go on foot, to walk
@@ -11209,8 +11191,8 @@ Index: EN EN->AR
   بسم الله الرحمن الرحيم بِسْمِ ٱللهِ ٱلرّحْمَنِ ٱلرّحِيمِ (b-ism-illāh ir-raħmān ir-raħīm) :: "in the name of God, the Merciful, the Compassionate"
   لا إله إلا الله محمد رسول الله لا إله إلا الله محمّد رسول الله (lā ilāhā illā-llāhu; muħámmadu rasūlu-llāhi) :: Literally, There is no god but God; Muhammad is the messenger of God.
     This phrase, called the shahada, or Muslim creed, is the declaration of belief in the oneness of God and in Muhammad as His messenger. Recitation of the shahada is considered one of the five pillars of Islam by Sunni Muslims. By sincerely stating the shahada aloud before two witnesses, one is considered to have converted to Islam. :: --
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
   حزب الله (ħizbu-llāh) {m} :: Hezbollah (lit., party of God).
   بسم الله (b-ism illāh) :: “in the name of God”
   عبد الله (ʕabd állah) :: {{given name|male}}, Abdullah (literally, servant of God)
@@ -11231,8 +11213,8 @@ Index: EN EN->AR
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: going, leaving, departure
   مار {{ar-noun|tr=mārr|g=m}} :: going by, walking past, riding past, going across, walking, transient
 ===gold===
-  ذهب (ðáhab) {m|f} :: gold
-  ذهب (ðáhab) {m|f} :: gold coin
+  ذهب {{ar-noun|tr=ḏáhab|g=mf}} :: gold
+  ذهب {{ar-noun|tr=ḏáhab|g=mf}} :: gold coin
 ===gone===
   رشد رَشَدَ :: he has gone the right way
 ===gong===
@@ -11250,7 +11232,6 @@ Index: EN EN->AR
     He was good (well, fine, okay). :: --
   مُتّقُون {m|p} (muttaqūn) (noun) :: The pious believers of Islamic monotheism who fear and love Allah (abstaining from all sin and evil deeds which he has forbidden, while performing all manner of good deeds which he has ordained).
 ===goodbye===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to take leave, to say goodbye
   مع السلامة (maʕ as-salāma) :: goodbye, farewell (literally, "with safety") (said by the person remaining behind to the one who is leaving)
 ===goodness===
   حسن {{ar-noun|head=حُسْن|tr=ħúsn|g=m}}, حُسْنَاء (ħusnáʾ) {f} :: goodness
@@ -11382,7 +11363,7 @@ Index: EN EN->AR
 ===group===
   باب بَاب (baab) {m}, أبْوَاب (’abwaab) {p}, بِيبَان (bibaan) {p} :: group, class, category
   نفر {m} (náfar) (verb), انفار (’anfār) {p} :: band, party, group, troop, herd, coterie, collective, cohort, clique, company, association, society, gang, flock, circle, cabal, squad, community, crowd
-  فَصْل (faSl) (noun), فُصُول (fuSuul) {p} :: class (group of students)
+  فصل {{ar-noun|g=m|head=فَصْل|tr=faṣl|pl=فصول|plhead=فُصُول|pltr=fuṣūl}} :: class (group of students)
 ===groups===
   قطر {{ar-verb (old)|I|قطر|qáTara}}{{ar-verb (old)|II|قطر|qáTTara}}{{ar-verb (old)|V|تقطر|taqáTTara}}{{ar-verb (old)|VI|تقاطر|taqāTara}}{{ar-verb (old)|X|استقطر|istáqTara}} :: to come in successive groups, to crowd, to flock, to throng
 ===grow===
@@ -11390,18 +11371,19 @@ Index: EN EN->AR
   سن {{ar-verb (old)|I|سن|sánna}}{{ar-verb (old)|II|سن|sánna}}{{ar-verb (old)|IV|اسن|’ásanna}}{{ar-verb (old)|VIII|استن|istánna}} :: to grow teeth, to cut one’s teeth
   سن {{ar-verb (old)|I|سن|sánna}}{{ar-verb (old)|II|سن|sánna}}{{ar-verb (old)|IV|اسن|’ásanna}}{{ar-verb (old)|VIII|استن|istánna}} :: to grow old, to age
   رب {{ar-verb (old)|I|رب|rábba}}{{ar-verb (old)|II|ربب|rábbaba}} :: to grow, to increase, to become greater
+===grudge===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to bear a grudge, to feel resentment
 ===guard===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to be careful, to be on guard
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to protect, to guard, to defend
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to protect, to guard, to defend
   حافظ {{ar-noun|tr=ħāfiđ̣|g=m}} :: guard, guardian, keeper, custodian, caretaker
 ===guardian===
   حافظ {{ar-noun|tr=ħāfiđ̣|g=m}} :: guard, guardian, keeper, custodian, caretaker
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to appoint as guardian
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to appoint as guardian
 ===guess===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to guess, to reckon
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to guess, to reckon
 ===guest===
-  زائر زائِر (zā’ir) {m}, زوّار (zūwār) {p} :: guest
+  زائر {{ar-noun|tr=zāʾir|g=m|pl=زوار|pltr=zūwār}} :: guest
 ===guide===
   قضيب {{ar-noun|tr=qadʿīb|g=m|pl=قضبان|pltr=qudʿbān}} :: (technical) guide rail
   ترجمان {{ar-noun|tr=turjumān|head=تُرْجُمَان|g=m}}, تراجمة (tarājima) {p}, تراجيم (tarājīm) {p} :: guide
@@ -11438,12 +11420,12 @@ Index: EN EN->AR
 ===hab===
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: {{context|Islamic law}} Madh’hab, doctrine, teaching, belief, ideology, opinion, view
 ===habit===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: habit, wont, custom, usage, practice
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: habit, wont, custom, usage, practice
 ===habitual===
   سنة {{ar-noun|tr=súnna|g=f|pl=سنن|pltr=súnan}} :: {Islam} habitual practice, customary procedure, norm
     سنة النبي (súnnat an-nabiy) :: the Sunna of the Prophet (his sayings and deeds)
 ===habitually===
-  عادةً (ʕá:datan) :: usually, customarily, ordinarily, habitually
+  عادة {{ar-adv|tr=ʿā́datan}}) :: usually, customarily, ordinarily, habitually
 ===habituate===
   بلد {{ar-verb (old)|I|بلد|báluda}}{{ar-verb (old)|II|بلد|bállada}}{{ar-verb (old)|V|تبلد|tabállada}}{{ar-verb (old)|VI|تبلد|tabālada}} :: to acclimatize, to habituate
   بلد {{ar-verb (old)|I|بلد|báluda}}{{ar-verb (old)|II|بلد|bállada}}{{ar-verb (old)|V|تبلد|tabállada}}{{ar-verb (old)|VI|تبلد|tabālada}} :: to be acclimatized, to be habituated
@@ -11465,20 +11447,15 @@ Index: EN EN->AR
 ===halal===
   حلال حَلال (ẖalāl) :: halal, that which is permitted
 ===halt===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to arrest, to halt, to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to arrest, to halt, to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stop, to halt
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stop, to halt
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to arrest, to halt, to stop
 ===halters===
   قطر {{ar-verb (old)|I|قطر|qáTara}}{{ar-verb (old)|II|قطر|qáTTara}}{{ar-verb (old)|V|تقطر|taqáTTara}}{{ar-verb (old)|VI|تقاطر|taqāTara}}{{ar-verb (old)|X|استقطر|istáqTara}} :: to form a train of camels, to line up camels in single file (connected with halters)
 ===halting===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: stopping, halting
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: stopping, halting
 ===Hamas===
   حماس (Hamaas) :: Hamas
 ===hamper===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to obstruct, to hamper
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to obstruct, to hamper
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to detain, to impede, to obstruct, to hamper
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to obstruct, to hamper
 ===hamza===
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
@@ -11487,9 +11464,9 @@ Index: EN EN->AR
   يد يَدٌ (yad) {f}, أيد (’áydin) {p}, أياد (’ayādin) {p} :: hand
   (Egyptian Arabic) يد (iid) (noun), ادين (idiin) {p} :: {anatomy} hand
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to pass on, to hand on, to forward
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to hand over, to deliver
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to hand over, to deliver
 ===handle===
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: handle (of a cup)
+  أذن {{ar-noun|tr=ʾúđun|g=f|pl=آذان|pltr=ʾāđān}} :: handle (of a cup)
   مس {{ar-verb (old)|I|مس|mássa}}{{ar-verb (old)|III|ماس|māsasa, māssa}}{{ar-verb (old)|VI|تماس|tamāsasa, tamāssa}} :: to handle, to palpate
 ===handsome===
   حسن {{ar-adj|head=حَسَن|tr=ħásan|g=m|f=حسنة|fhead=حَسَنَة|ftr=ħásana|el=أحسن|elhead=أحْسَن|eltr=ʾaħsan}} :: handsome, good-looking, magnificent
@@ -11513,6 +11490,8 @@ Index: EN EN->AR
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to gladden, to make happy, to delight, to cheer up
 ===harass===
   عكس {{ar-verb (old)|I|عَكَسَ|ʕákasa}}{{ar-verb (old)|III|عاكس|ʕākasa}}{{ar-verb (old)|VI|تعاكس|taʕākasa}}{{ar-verb (old)|VII|انعكس|inʕákasa}} :: to molest, to vex, to tease, to harass
+===harbor===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to harbor, to entertain
 ===harden===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to rise, harden, firm up
 ===hardiness===
@@ -11559,8 +11538,6 @@ Index: EN EN->AR
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to make averse to, to make disinclined to, to make hateful to, to alienate from, to make someone hate
 ===hateful===
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to make averse to, to make disinclined to, to make hateful to, to alienate from, to make someone hate
-===haul===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to move, to haul
 ===have===
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to possess, to lay hold, to own, to have, to be the owner
   عِنْدَ (‘inda) (preposition) :: expresses possession, to have
@@ -11575,7 +11552,6 @@ Index: EN EN->AR
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to parley, negotiate, to have a talk.
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to remind one another, to confer together, to have a talk.
   نظر {{ar-verb|form=I|head=نَظَرَ|tr=náẓara|impf=ينظر|impfhead=يَنْظُرُ|impftr=yanẓuru}} :: to have in mind, to have in view
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to have oneself announced
   علم {{ar-verb (old)|I|عَلِمَ|ʕálima|علم}}{{ar-verb (old)|II|عَلّمَ|ʕállama|علم}} :: to know, to have knowledge, to be cognizant, to be aware
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to have a morning draught
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to hold, to have in safe-keeping, to take care
@@ -11612,11 +11588,12 @@ Index: EN EN->AR
   ياكل (yá:kul) :: (imperfective) he eats, is eating. See آكل (ákala,' 'to eat').
   يكون (yakūn) :: (he) is, that is, which is
   مُتّقُون {m|p} (muttaqūn) (noun) :: The pious believers of Islamic monotheism who fear and love Allah (abstaining from all sin and evil deeds which he has forbidden, while performing all manner of good deeds which he has ordained).
+  يعرفه (yaʕrífuhu) :: he knows it/him, he recognizes it/him. (from the verb عرف, ʕárafa)
 ===head===
-  رأس (rá’asa) :: to be at the head, to be chairman, to chair, to be in charge, to preside
-  رأس (rá’asa) :: to head, to lead, to direct, to manage, to run
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: head
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: head (enumerator for cattle)
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to be at the head, to be chairman, to chair, to be in charge, to preside
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to head, to lead, to direct, to manage, to run
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: head
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: head (enumerator for cattle)
   مدير (mudīr) {m}, مديرون (mudīrūn) {p} :: manager, head, chief, director, administrator
   قائد {{ar-noun|tr=qā’id|g=m}}, قوّاد (quwwād) {p} :: head, chief
   سر (sar) {m} :: (in compounds) head, chief
@@ -11625,10 +11602,11 @@ Index: EN EN->AR
     سرياوران (siryāwarān) :: adjutant general
   رب (rabb) {m}, ارباب (’arbāb) {p} :: leader, chief, head
     رب بحري (rabb báħri) :: seaman (naval rank)
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to head for
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to veil the head and face
 ===headland===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: promontory, headland, cape
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: promontory, headland, cape
 ===headlight===
   نور (náur) {m} (collective), نورة (náura) {f} (singulative), أنوار (’anwār) {p}نور{m}نور{m}أنوار{p} :: headlight
 ===headmaster===
@@ -11638,28 +11616,24 @@ Index: EN EN->AR
 ===health===
   مزاج (mazāj) {m}, امزجة (’ámzija) {p} :: physical condition, state of health
 ===hear===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to hear, to learn of, to be informed
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to hear, to learn of, to be informed
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to try to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with ب) to hear of, to hear about
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من) to hear from
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to hear, to overhear
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to hear
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with ب) to hear of, to hear about
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من) to hear from
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to make hear, to let hear, to give someone something to hear
   (Egyptian Arabic) سمع {{arz-verb|form=1|tr=simiʿ|impf=يسمع|impftr=yismaʿ}} :: to hear {l|gloss=to perceive with the ear}
-===heard===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to be heard of, to become known among people
 ===hearing===
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: trial, hearing
-  سمع (sámʕ) {m}, اسماع (’asmāʕ) {p} :: hearing, sense of hearing
+  سمع {{ar-noun|tr=samʿ|g=m|pl=اسماع|pltr=ʾasmāʿ}} :: hearing, sense of hearing
 ===hearken===
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to listen, to hearken, to lend an ear
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to listen, to hearken, to lend an ear
   صغا {{ar-verb (old)|I|صغا|ʂağā}}{{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
   أصغى {{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
 ===hearsay===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to learn by hearsay
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to learn by hearsay
 ===heart===
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: bosom, heart
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to remember, to recall, to bear in mind, to know by heart.
@@ -11729,8 +11703,7 @@ Index: EN EN->AR
 ===Herzegovina===
   البوسنة والهَرْسَك (al-buusna wa-al-harsak) (proper noun) :: Bosnia and Herzegovina
 ===hesitate===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to pause, to hesitate
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to waiver, to be undecided, to hesitate
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to pause, to hesitate
 ===Hezbollah===
   حزب الله (ħizbu-llāh) {m} :: Hezbollah (lit., party of God).
 ===hidden===
@@ -11740,6 +11713,8 @@ Index: EN EN->AR
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to try to hide
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to hide, to be hidden
   قبر {{ar-verb (old)|I|قَبَرَ|qábara}}{{ar-verb (old)|IV|اقبر|’áqbara}} :: to hide
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to cover, to hide, to conceal
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to cover, to hide, to conceal
 ===high===
   شرف {{ar-verb (old)|I|شَرُفَ|šárufa}}{{ar-verb (old)|II|شرّف|šárrafa}} :: to be noble, to be highborn, to be illustrious, to be eminent, to be distinguished, to be high-ranking
   بالغ (bāliğ) :: intense, high, extreme, strong
@@ -11763,6 +11738,7 @@ Index: EN EN->AR
   به (bíhi) :: with him/it, in connection with him/it
   به (bíhi) :: through him/it, by means of him/it
   به (bíhi) :: by him/it
+  يعرفه (yaʕrífuhu) :: he knows it/him, he recognizes it/him. (from the verb عرف, ʕárafa)
 ===hippology===
   فروسية (furūsiyya) {f} :: horsemanship, hippology, farriery
 ===hire===
@@ -11801,11 +11777,10 @@ Index: EN EN->AR
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to occupy, to hold (office)
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to hold in play, to keep occupied
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to occupy, to hold (office)
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to think, to believe, to hold the view, to be of the opinion
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to think, to believe, to hold the view, to be of the opinion
   عيد {{ar-verb (old)|II|عَيّدَ|ʕáyyada|عيد}}{{ar-verb (old)|III|عَايَدَ|ʕāyada|عايد}} :: to hold a feast
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to possess, to lay hold, to own, to have, to be the owner
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to rule, to reign, to exercise authority, to hold sway, to lord over
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to hold responsible, to make answerable
 ===holder===
   فم (fam) {m}, فو (fū) (construct state), أفواه (’afwāh) {p} :: mouthpiece (of pipe or cigarette), cigarette holder
     آلة الفم (’ālati l-fam) — wind instrument :: --
@@ -11817,7 +11792,7 @@ Index: EN EN->AR
   فم (fam) {m}, فو (fū) (construct state), أفواه (’afwāh) {p} :: orifice, aperture, hole, vent
   (Egyptian Arabic) فم (fumm) {m}, افمام (’afmām) {p} :: orifice, aperture, hole, vent
   حَمَام {m} (Hamaam) (noun) collective, حمامة (Hamaama, singulative), حمامات (Hamaamaat) {p}, حمائم (Hamaa’im) {p}حِمَام {m} (Himaam) (noun)حَمّام {m} (Hammaam) (noun)حمامات{p} :: watering hole
-  نافذة (nāfiða) {f}, نوافذ (nawāfið) {p} :: opening in a wall, air hole
+  نافذة {{ar-noun|tr=nāfiḏa|g=f|pl=نوافذ|pltr=nawāfiḏ}} :: opening in a wall, air hole
 ===holiday===
   عيد عِيد (ʕīd) {m}, أعيَاد (’aʕyād) :: eid, feast day, festival, holiday
   موسم مَوْسِم (mawsim) {m}, مواسم (mawāsim) {p} :: festival, holiday
@@ -11838,8 +11813,6 @@ Index: EN EN->AR
   حرم (ħirm) {m}حرم{m}احرام{p}حرم{p} :: sanctum, sanctuary, sacred precinct
     الحرمان (al-ħaramān) :: the two Holy Places (Mecca and Medina)
     ثالث الحرمين (θāliθ al-ħarmēin) :: the third Holy Place (Jerusalem)
-===homicide===
-  قتل (qatl) {m}قتل{m}اقتال{p} :: killing, manslaughter, homicide, murder, assassination
 ===homogeneous===
   جنس {{ar-verb (old)|II|جنس|jánnasa}}{{ar-verb (old)|III|جانس|jānasa}}{{ar-verb (old)|V|تجنس|tajánnasa}}{{ar-verb (old)|VI|تجانس|tajānasa}} :: to be akin, to be related, to be the same kind, to be homogeneous
 ===homosexual===
@@ -11930,6 +11903,8 @@ Index: EN EN->AR
   آدم (ādam) {m} :: human
   قلب {{ar-noun|tr=qalb|g=m|pl=قلوب|pltr=qulūb}} :: heart (the symbolic seat of human emotion)
   نعش (naʿš) :: corpse (human)
+===humidity===
+  رطوبة (rutūba) {f} :: humidity
 ===humor===
   مزاج (mazāj) {m}, امزجة (’ámzija) {p} :: mood, frame of mind, humor
 ===hurricane===
@@ -11939,7 +11914,7 @@ Index: EN EN->AR
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to hurry, to rush, to hasten
 ===husband===
   زوج (zawj) {m}, زوجة {f}, ازواج (’azwāj) {p} :: husband, wife, mate, partner
-  طلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
+  طلاق طَلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
 ===hush===
   صمت {{ar-verb|form=I|tr=ṣámata|head=صَمَتَ|impf=يصمت}} :: to be silent, to be taciturn, to hold one's tongue, to hush up, to be quiet, to become quiet
 ===Hussein===
@@ -11983,7 +11958,7 @@ Index: EN EN->AR
 ===ignorant===
   أغبياء (plural of غبي) :: ignorant
 ===ignore===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to ignore, to skip, to omit
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to ignore, to skip, to omit
 ===II===
   ربيع الآخر {{ar-noun|head=رَبِيعُ الآخِرُ|tr=abīʕu l-’āxir|g=m}} :: Rabia II, the fourth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Rabia II means "last of spring" in Arabic.
   جمادى الآخرة {{ar-noun|head=جُمَادَى الآخِرَةُ|tr=jumāda l-’āxira|g=f}} :: Jumada II, the sixth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. جمادى الآخرة means "last of parched land".
@@ -12039,10 +12014,8 @@ Index: EN EN->AR
 ===impartiality===
   ميزان (mizān) {m}, موازين (mawazīn) {p} :: justice, equity, fairness, impartiality
     الميزان (al-mīzān) &mdash; constellation Libra :: --
-===impede===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to detain, to impede, to obstruct, to hamper
 ===impediment===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: impediment, obstacle
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: impediment, obstacle
 ===imperfective===
   ياكل (yá:kul) :: (imperfective) he eats, is eating. See آكل (ákala,' 'to eat').
 ===imperious===
@@ -12059,7 +12032,7 @@ Index: EN EN->AR
   معنى {{ar-noun|head=مَعْنَى|tr=máʕnā|g=m|pl=معاني}} :: meaning, import
 ===importance===
   هم (hamm) {m}, هموم (humūm) {p} :: weight, moment, importance
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to attach importance
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to attach importance
 ===important===
   (Egyptian Arabic) مهم (mohimm) (adjective) :: important
   مهمة (mahámma) {f}, مهام (mahámm) {p}مهمة{f}مهمات{p} :: important matter
@@ -12080,7 +12053,7 @@ Index: EN EN->AR
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to be inactive, to be listless
   كسلان {{ar-adj|head=كَسْلان|tr=kaslaan|g=m}}, كسلانة (kaslaana(t)) {f}, كسلى (kaslaa) {f}, كسالى (kasaalaa) {p}, كسلى (kaslaa) {p} :: sluggish, inactive
 ===inalienable===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: inalienable property
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: inalienable property
 ===inception===
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: beginning, start, outset, commencement, inception
 ===incessantly===
@@ -12089,8 +12062,7 @@ Index: EN EN->AR
   حرف {{ar-verb (old)|II|حرّف|ħárrafa}}{{ar-verb (old)|V|تحرف|taħárrafa}} :: to slant, to incline
   صغا {{ar-verb (old)|I|صغا|ʂağā}}{{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to incline, to bend, to lean
 ===include===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to enter, to insert, to include
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to incorporate, to include, to embody, to insert
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to enter, to insert, to include
 ===income===
   دخل (dákhl) {m} :: income
   مال (māl) {m}, اموال (’amwāl) {p} :: income, revenue
@@ -12103,8 +12075,6 @@ Index: EN EN->AR
   مسلم :: accepted, uncontested, incontestable, indisputable, incontrovertible
 ===incontrovertible===
   مسلم :: accepted, uncontested, incontestable, indisputable, incontrovertible
-===incorporate===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to incorporate, to include, to embody, to insert
 ===incorrect===
   ملحون (malħūn) :: incorrect, ungrammatical
 ===increase===
@@ -12141,6 +12111,8 @@ Index: EN EN->AR
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
 ===indicating===
   ذكر :: stating, indicating, naming.
+===indigenous===
+  بلدي بَلَدِيّ (baladiyy) {m} :: native, indigenous
 ===indirect===
   أخبار أخْبار (’axbār) {p}اخبار{m} :: {grammar} indirect discourse
 ===indispensable===
@@ -12155,8 +12127,6 @@ Index: EN EN->AR
   القاعدة (al-qāʕida) {f}, قواعد (qawāʕid) {p} :: al-Qaeda (al-Qaida) (a worldwide network of militant Islamic organizations and individuals).
 ===indolent===
   كسلان {{ar-adj|head=كَسْلان|tr=kaslaan|g=m}}, كسلانة (kaslaana(t)) {f}, كسلى (kaslaa) {f}, كسالى (kasaalaa) {p}, كسلى (kaslaa) {p} :: lazy, idle, slothful, indolent
-===induce===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to produce, to set off, to trigger, to induce
 ===inescapable===
   واجب (wājib) :: necessary, indispensable, unavoidable, essential, inevitable, inescapable, requisite
 ===inevitable===
@@ -12196,7 +12166,7 @@ Index: EN EN->AR
   نور {{ar-verb (old)|II|نور|náwwara}}{{ar-verb (old)|IV|انار|’ánara}}{{ar-verb (old)|IV|انور|’ánwara}}{{ar-verb (old)|V|تنور|tanáwwara}}{{ar-verb (old)|X|استنور|istánwara}} :: to receive information, to get an explanation
   خبر (xábar) {m}, اخبار (’axbār) {p} :: information, intelligence
 ===informed===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to hear, to learn of, to be informed
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to hear, to learn of, to be informed
   علم {{ar-verb (old)|I|عَلِمَ|ʕálima|علم}}{{ar-verb (old)|II|عَلّمَ|ʕállama|علم}} :: to be informed, to be familiar, to be acquainted
 ===informer===
   معلم {{ar-noun|tr=muʕállim|g=m|head=مُعَلِّم}}, مُعَلّمُون (muʕallimūn) {p}{{ar-noun|tr=máʕlam|g=m|head=مَعْلَم}}مَعَالِم{p}{{ar-noun|tr=múʕlim|g=m|head=مُعْلِم}} :: bearer of news, notifier, informer, informant
@@ -12221,7 +12191,7 @@ Index: EN EN->AR
 ===Initial===
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
 ===initiated===
-  طلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
+  طلاق طَلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
 ===initiation===
   زاهد {m} (zāhid) (noun), زهاد (zuhhād) {p} :: {{context|Sufism}} A popular title bestowed on disciples of Mystic Sufi orders upon their initiation. After initiation the title took the place of the new Spiritual Masters’ given names. A famous bearer of the title Zahed was Sheikh Zahed Gilani of Lahijan in Gilan province of northern Iran.
 ===inmost===
@@ -12242,8 +12212,7 @@ Index: EN EN->AR
 ===insect===
   قرمز قِرْمِز (qirmiz) :: kermes insect (Kermes ilicis, an insect found on the Kermes oak that is used to make crimson dyes)
 ===insert===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to enter, to insert, to include
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to incorporate, to include, to embody, to insert
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to enter, to insert, to include
   رز {{ar-verb (old)|I|رز|rázza}}{{ar-verb (old)|II|رز|rázza}}{{ar-verb (old)|IV|ارز|’arázza}} :: to insert, to drive in
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to insert
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to insert, to stick into
@@ -12297,7 +12266,7 @@ Index: EN EN->AR
   حرم (ħáram) {m}, احرام (’aħrām) {p}حرم{p} :: forbidden, prohibited, interdicted
   حرم (ħáram) {m}, احرام (’aħrām) {p}حرم{p} :: {plural of|حرام}; forbidden, prohibited, interdicted, unlawful
 ===interdiction===
-  بات (batt) :: categorical
+  بات {{ar-adj|tr=batt}} :: categorical
     مَنع بات :: categorical interdiction
 ===interest===
   كعبة (káʕba) {f}, كعبات (kaʕabāt) {p} :: {figuratively} shrine, focus of interest
@@ -12306,20 +12275,14 @@ Index: EN EN->AR
 ===interesting===
   (Egyptian Arabic) مهم (mohimm) (adjective) :: interesting
 ===interfere===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to meddle, to interfere
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interfere, to intervene, to interpose
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to intervene, to interfere, to interpose
 ===interference===
   دخل (dákhl) {m} :: interference, intervention
 ===interlock===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to hold together, be firmly connected, be interlocked
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interlock, to mesh
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interlock, to mesh
 ===intermittently===
   وتر {{ar-verb (old)|I|وتر|wátara}}{{ar-verb (old)|II|وتر|wáttara}}{{ar-verb (old)|III|واتر|wātara}}{{ar-verb (old)|IV|اوتر|’autara}}{{ar-verb (old)|V|توتر|tawáttara}}{{ar-verb (old)|VI|تواتر|tawātara}} :: to perform at intervals, to do intermittently, to do with interruptions
 ===interpose===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to intervene, to interpose
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interfere, to intervene, to interpose
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to intervene, to interfere, to interpose
 ===interpretation===
   ترجمة {{ar-noun|tr=tárjama|g=f|head=تَرْجَمة}}, plural: تَراجِم (taraajim), تَرْجَمَات (tarjamaat) :: interpretation
@@ -12335,22 +12298,17 @@ Index: EN EN->AR
 ===interrogative===
   هل {{ar-part|head=هَل|tr=hal}} :: initial interrogative particle that indicates a yes-or-no question.
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
-===interrupt===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to pause, to suspend, to interrupt
 ===interruptions===
   وتر {{ar-verb (old)|I|وتر|wátara}}{{ar-verb (old)|II|وتر|wáttara}}{{ar-verb (old)|III|واتر|wātara}}{{ar-verb (old)|IV|اوتر|’autara}}{{ar-verb (old)|V|توتر|tawáttara}}{{ar-verb (old)|VI|تواتر|tawātara}} :: to perform at intervals, to do intermittently, to do with interruptions
 ===intervals===
   حدث متكرر (ħádaθ mutakárrir) {m} :: period (something that repeats at regular intervals)
   وتر {{ar-verb (old)|I|وتر|wátara}}{{ar-verb (old)|II|وتر|wáttara}}{{ar-verb (old)|III|واتر|wātara}}{{ar-verb (old)|IV|اوتر|’autara}}{{ar-verb (old)|V|توتر|tawáttara}}{{ar-verb (old)|VI|تواتر|tawātara}} :: to perform at intervals, to do intermittently, to do with interruptions
 ===intervene===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to intervene, to interpose
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interfere, to intervene, to interpose
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to intervene, to interfere, to interpose
 ===intervention===
   دخل (dákhl) {m} :: interference, intervention
 ===into===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to take into account, to take into consideration, to reckon with
   (Egyptian Arabic) باب {{arz-noun|m|أبواب|abwaab|tr=baab}} :: door (portal of entry into a building or room)
   دور {{ar-verb (old)|II|دور|dáwwara}} :: to turn into a circle, to make round
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to translate into Arabic.
@@ -12362,19 +12320,15 @@ Index: EN EN->AR
   دقيقة {{ar-noun|tr=daqīqa|g=f|pl=دقائق|pltr=daqā’iq}} :: intricacy
 ===introduce===
   صدر {{ar-verb|form=2|tr=ṣáddara|impf=يصدر|impftr=yuṣaddiru}} :: to introduce, to commence
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to introduce
   سن {{ar-verb (old)|I|سن|sánna}}{{ar-verb (old)|II|سن|sánna}}{{ar-verb (old)|IV|اسن|’ásanna}}{{ar-verb (old)|VIII|استن|istánna}} :: to prescribe, to introduce, to enact
   سن {{ar-verb (old)|I|سن|sánna}}{{ar-verb (old)|II|سن|sánna}}{{ar-verb (old)|IV|اسن|’ásanna}}{{ar-verb (old)|VIII|استن|istánna}} :: to prescribe, to introduce, to enact
 ===introduction===
   ترجمة {{ar-noun|tr=tárjama|g=f|head=تَرْجَمة}}, plural: تَراجِم (taraajim), تَرْجَمَات (tarjamaat) :: introduction, preface, foreword
   سن (sann) {m}سِنّ{f}اسنان{p}اسنة{p}اسن{p} :: prescription, introduction, enactment
-===intrude===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to invade, to intrude, to disturb
 ===inundation===
   طوفان طُوفَان (ṭufan) :: inundation
 ===invade===
   دب {{ar-verb (old)|I|دب|dábba}}{{ar-verb (old)|II|دبّ|dábba}} :: to spread, to fill, to pervade, to invade
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to invade, to intrude, to disturb
 ===invalidate===
   نسخ (násakha) :: to abrogate, to invalidate
   جب {{ar-verb (old)|I|جَبّ|jábba}} :: to cancel, to countermand, to controvert, to invalidate, to abrogate, to void, to abort, to rebut
@@ -12404,6 +12358,7 @@ Index: EN EN->AR
   حرم {{ar-verb (old)|I|حرم|ħáruma}}{{ar-verb (old)|I|حرم|ħárama}}{{ar-verb (old)|II|حرم|ħárrama}}{{ar-verb (old)|IV|احرم|’áħrama}}{{ar-verb (old)|V|تحرم|taħárrama}}{{ar-verb (old)|VIII|تحرم|iħtárama}}{{ar-verb (old)|X|استحرم|istáħrama}} :: to deem sacrosanct, to deem sacred, to deem holy, to deem inviolable
 ===invite===
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to invite, to request, to beseech
+  دعا {{ar-verb|III=و|form=1|tr=daʿā|impf=يدعو|impftr=yadʿū}} :: to invite, to summon
 ===invoice===
   فقط {{ar-verb (old)|II|فقط|fáqqaṭa}} :: to write the word فقط (only) after the total on an invoice to prevent fraudulent modifications.
   فقط {{ar-verb (old)|II|فقط|fáqqaṭa}} :: to spell out the numbers on an invoice.
@@ -12435,14 +12390,9 @@ Index: EN EN->AR
 ===Islam===
   اسلام إسلام (’islām) {m} :: religious submission to God, piety, Islam
     الإسلام (al-‘islām) — Islam :: --
-  الإسلام (al-’islām) {m} :: Islam, the religious system advocated by Muhammad, Mohammedanism
-  إسلام {{ar-noun|tr=’islām|g=m}} :: Islam
-    الإسلام (al-‘islām) &mdash; Islam :: --
-  طلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: Islam, the religious system advocated by Muhammad, Mohammedanism
+  طلاق طَلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
   منهج (minhaj) :: {{context|Islamic}} In Islamic context, it refers to the manner of implementation of Islam's rules and beliefs.
-===islām===
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
 ===Islamic===
   القرآن (al-qur’ān) {m} :: the Qur’an (The Islamic holy book).
   مُتّقُون {m|p} (muttaqūn) (noun) :: The pious believers of Islamic monotheism who fear and love Allah (abstaining from all sin and evil deeds which he has forbidden, while performing all manner of good deeds which he has ordained).
@@ -12458,7 +12408,7 @@ Index: EN EN->AR
 ===isolated===
   شاذ (šaðð), شذاذ (šuððāð) {p}, شواذ (šawáðð) {p} :: isolated, separate, detached, alone
 ===Israel===
-  إسرائيل {{ar-proper noun|tr=’isra’īl}} :: Israel
+  إسرائيل {{ar-proper noun|g=f|tr=ʾisraʾīl}} :: Israel
   بيت المقدس (beyt al-muqáddas or al-máqdis) (proper noun) :: Jerusalem (the capital of Palestine and Israel)
 ===Israeli===
   إسرائيليّ (’isra’īliyy) :: Israeli
@@ -12581,7 +12531,7 @@ Index: EN EN->AR
   اتان أتُانٌ (’atān) {f}, آتُن (’ātun) {p}, أتُن (’útun, ’utn) {p} :: she ass, female donkey, jenny
 ===Jerusalem===
   أورشليم (Ūrušalīm) :: Jerusalem (city in the Middle East)
-  القدس القُدْس (al-quds) :: Jerusalem
+  القدس {{ar-proper noun|g=f|tr=al-quds|head=القُدْس}} :: Jerusalem
   بيت المقدس (beyt al-muqáddas or al-máqdis) (proper noun) :: Jerusalem (the capital of Palestine and Israel)
   مسجد مَسْجِدٌ (masjid) {m}, مسجدان (masjidān) dual, مساجد (masājid) {p} :: mosque
     مسجد جامع (masjid jāmiʕ) :: central mosque, great mosque
@@ -12717,13 +12667,11 @@ Index: EN EN->AR
 ===kill===
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to kill by slitting the throat
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to kill, to slaughter, to butcher, to massacre, to murder
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to slay, to murder, to assassinate
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to massacre, to cause carnage
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to kill, to slay, to murder, to assassinate
+  قتل {{ar-verb|form=2|impf=يقتل|tr=qáttala|impftr=yuqattilu}} :: to kill, to massacre, to cause carnage
 ===killed===
   شهيد (šahīd) {m}, شهداء (šuhadā’) {p} :: martyr, someone killed in battle with the infidels.
   شهيد (šahīd) {m}, شهداء (šuhadā’) {p} :: anyone killed in action.
-===killing===
-  قتل (qatl) {m}قتل{m}اقتال{p} :: killing, manslaughter, homicide, murder, assassination
 ===kiln===
   تنور تَنَوّر (tanawwūr) {m}تَنّور{m} :: oven, furnace, kiln
 ===kilometers===
@@ -12783,10 +12731,9 @@ Index: EN EN->AR
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to let know, to notify, to inform, to give notice
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to experience, to know by experience, to know well, to know thoroughly
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to know well, to know by experience
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to know, to master
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to let someone know, to tell about
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to know, to master
+  يعرفه (yaʕrífuhu) :: he knows it/him, he recognizes it/him. (from the verb عرف, ʕárafa)
   الله اعلم (Alláhu áʕlam) :: “God only knows” (literally, “God knows best”...a traditional Arabic expression used when responding to a question to which one does not know the answer).
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to seek to know, to try to find out
 ===knowledge===
   أعلم (’áʕlam) :: {{elative of|عالم}}: having more knowledge; more learned.
     الله أعلم (Alláhu ’áʕlam) — God knows best. :: --
@@ -12807,12 +12754,18 @@ Index: EN EN->AR
   شهر {{ar-verb (old)|I|شهر|šáhara}}{{ar-verb (old)|II|شهّر|šáhhara}}{{ar-verb (old)|III|شاهر|šāhara}}{{ar-verb (old)|IV|اشهر|’ášhara}}{{ar-verb (old)|VIII|اشتهر|ištáhara}} :: to make known, to proclaim, to announce
   شهر {{ar-verb (old)|I|شهر|šáhara}}{{ar-verb (old)|II|شهّر|šáhhara}}{{ar-verb (old)|III|شاهر|šāhara}}{{ar-verb (old)|IV|اشهر|’ášhara}}{{ar-verb (old)|VIII|اشتهر|ištáhara}} :: to be known, to be widespread, to be common
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to utter, to voice, to proclaim, to make known, to manifest.
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to be heard of, to become known among people
 ===knows===
   الله اعلم (Alláhu áʕlam) :: “God only knows” (literally, “God knows best”...a traditional Arabic expression used when responding to a question to which one does not know the answer).
   حافظ {{ar-noun|tr=ħāfiđ̣|g=m|pl=حفاظ|pltr=ħufāđ̣|pl2=حفظة|pl2tr=ħáfađ̣a}} :: hafiz (one who knows the Qur'an by heart)
 ===koala===
   كوالا (kuwála) {f} :: koala
+===kohl===
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: kohl, stibnite (pulverized antimony)
+  كحل (káħil) :: darkened with kohl, dyed black (of the eyelids)
 ===kosher===
   مشروع {{ar-adj|tr=mašrū‘|head=مَشْرُوع}} :: kosher
 ===Kuwait===
@@ -12826,7 +12779,7 @@ Index: EN EN->AR
   ك / ك‍ / ‍ك‍ / ‍ك (kāf) :: The eleventh letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ى and followed by ل.
   م / م‍ / ‍م‍ / ‍م (mīm) :: The twenty-fourth letter of the Arabic alphabet. It is preceded by ل and followed by ن.
   م / م‍ / ‍م‍ / ‍م (mīm) :: The thirteenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ل and followed by ن.
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
 ===labeled===
   معلم {{ar-adj|tr=muʕállam|head=مُعَلّم}} :: marked, labeled, represented
 ===laborer===
@@ -12865,6 +12818,7 @@ Index: EN EN->AR
   لسان (lisān) {m} and {f}, ألسنة (’álsina) {p}, ألسن (’álsun) {p} :: language
   ثاقبايليث (θāqbāylīθ) :: Kabyle (a Northern Berber language of Algeria).
   طليق اللسان (ṭalíeq al-lisān) {m} :: vocabulary; fluent language
+  كلامٌ (kalām) {m} :: conversation, speech, talk, language
   إنجليزي إنْجِلِيزِيّ (’ingilīzi) {m}, إنْجِلِيزِيَّةٌ (’ingilizíyya) {f} and {p} :: English language
   العبرية العِبْرِيَّة (al`ibriyyat) :: Hebrew (language)
   (Egyptian Arabic) فارسى {m} (Fārsīyy) (proper noun) :: Persian, Farsi (language)
@@ -12897,6 +12851,7 @@ Index: EN EN->AR
   اكبر أكبرُ (’ákbar) {m}, كبرى (kúbra) {f}, كُبرٌ (kúbarun) {p}, اكابر (akābir) {p}, كبريات (kubrayāt) {p} :: {{elative of|كبير}}: bigger, larger; biggest, largest
 ===last===
   آخر (’āxir) {m}, آخرون (’axirūn) {p}, اخرات (’axirāt) {p}, اواخر (’awāxir) {p} :: last, ultimate, utmost, extreme
+  دام {{ar-verb|II=و|form=1|tr=dāma|impf=يدوم|impftr=yadūmu}} :: to last, to endure
   ربيع الآخر {{ar-noun|head=رَبِيعُ الآخِرُ|tr=abīʕu l-’āxir|g=m}} :: Rabia II, the fourth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Rabia II means "last of spring" in Arabic.
   جمادى الآخرة {{ar-noun|head=جُمَادَى الآخِرَةُ|tr=jumāda l-’āxira|g=f}} :: Jumada II, the sixth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. جمادى الآخرة means "last of parched land".
   ذو الحجة {{ar-noun|head=ذُو الحِجّةِ|tr=ðu l-ħíjja|g=m}} :: Dhul Hijjah, the twelfth and last of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhul Hijjah means "lord of the pilgrimage" in Arabic, and this is when pilgrims visit Mecca.
@@ -12911,7 +12866,7 @@ Index: EN EN->AR
 ===laudable===
   محمد محمّد (muħámmad) :: praised, commendable, laudable.
 ===law===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: law
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: law
   عين (ʕayn) {f}, عَيْنَانِ (ʕeynāni, dual nom.), عَيْنَيْنِ (ʕeynéyni, dual acc./gen.), عُيُون (ʕuyūn, {p}) :: In law: money or whatever is the equivalent of money.
   مثليّ (míthlii) :: (Islamic law) replaceable, fungible
   مال (māl) {m}, اموال (’amwāl) {p} :: (Islamic law) marketable title
@@ -12923,7 +12878,7 @@ Index: EN EN->AR
   حلال (ẖalāl) {m} :: lawful possession
 ===lay===
   خزن خَزَنَ (χázana) (transitive) :: to store, to stock, to lay up, to hoard, to amass, to accumulate
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to possess, to lay hold, to own, to have, to be the owner
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to be entitled, to have a claim, to lay claim
 ===layer===
@@ -12932,15 +12887,15 @@ Index: EN EN->AR
   كسلان {{ar-adj|head=كَسْلان|tr=kaslaan|g=m}}, كسلانة (kaslaana(t)) {f}, كسلى (kaslaa) {f}, كسالى (kasaalaa) {p}, كسلى (kaslaa) {p} :: lazy, idle, slothful, indolent
   (Egyptian Arabic) كسلان {m} (kaslān) (adjective) :: lazy
 ===lead===
-  رأس (rá’asa) :: to head, to lead, to direct, to manage, to run
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to head, to lead, to direct, to manage, to run
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to lead the way, to lead by example
     ام الناس :: to lead the people
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to lead in prayer
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to lead someone, to conduct someone, to take someone along
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to lead someone, to conduct someone, to take someone along
 ===leader===
   امام {{wikipedia|إمام}}إمَام (’imām) {m}, ائمة (a’imma) {p} :: leader
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: leader, commander
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: leader, chief, chieftain
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: leader, chief, chieftain
   رئيس {{ar-noun|tr=ra’īs|g=m|pl=رؤساء|pltr=ru’asā’}} :: boss, chief, leader, boss
   قائد {{ar-noun|tr=qā’id|g=m}}, قوّاد (quwwād) {p} :: leader
   قطب (quṭb) {m}, اقطاب (’aqṭāb) {p} :: {{usually|plural}} leader, authority, leading personality, celebrity
@@ -12961,10 +12916,10 @@ Index: EN EN->AR
 ===learn===
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to memorize, to learn, to study
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to memorize, to learn by heart
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to hear, to learn of, to be informed
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to hear, to learn of, to be informed
   علم {{ar-verb (old)|I|عَلِمَ|ʕálima|علم}}{{ar-verb (old)|II|عَلّمَ|ʕállama|علم}} :: to perceive, to discern, to find out, to learn
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to learn, to be told
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to learn by hearsay
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to learn, to be told
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to learn by hearsay
 ===learned===
   أعلم (’áʕlam) :: {{elative of|عالم}}: having more knowledge; more learned.
     الله أعلم (Alláhu ’áʕlam) — God knows best. :: --
@@ -12973,12 +12928,15 @@ Index: EN EN->AR
 ===lease===
   كراء (kirā’) {m} :: rent, rental, hire, lease
 ===leave===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to go away, to leave, to depart
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to go away, to leave, to depart
   صدر {{ar-verb|form=1|tr=ṣádara}} :: to go out, to step out, to leave
   (Egyptian Arabic) مشى {{arz-verb|form=1|head=مَشى|tr=mašā|impf=يمشي|impfhead=يِمْشي|impftr=yimšī}} :: {intransitive} to leave
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to take leave, to say goodbye
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to start out, to leave, to depart
   صرب صَرَبَ :: to leave milk for days in a container until it becomes sour
+===leaven===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
 ===leaves===
   افنان (afnán) (noun) :: {literally} "Branches with leaves". By extension, a specific place in the heavens, a peaceful setting which is covered in shade and full of fruits.
 ===leaving===
@@ -13022,9 +12980,7 @@ Index: EN EN->AR
   دين {{ar-verb (old)|II|دين|dáyyana}} :: to loan, to lend, to advance.
   صغا {{ar-verb (old)|I|صغا|ʂağā}}{{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
   أصغى {{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to lend an ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to give ear, to listen, to lend an ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to lend an ear
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to lend an ear
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to listen, to hearken, to lend an ear
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to listen, to hearken, to lend an ear
 ===lengthen===
@@ -13041,17 +12997,14 @@ Index: EN EN->AR
   الا {{ar-con|head=ألا|tr=’allā}} :: lest
 ===let===
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to abate, to subside, to let up, to calm down
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in, to admit, to show in
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to make enter, to bring in, to let in
   رحم {{ar-verb (old)|I|رحم|ráHima}}{{ar-verb (old)|II|رحّم|ráHHama}} :: to spare, let off
   رجل {{ar-verb|form=2|tr=rájjala|impf=يرجل}} :: to let down (the hair)
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
   قطر {{ar-verb (old)|I|قطر|qáTara}}{{ar-verb (old)|II|قطر|qáTTara}}{{ar-verb (old)|V|تقطر|taqáTTara}}{{ar-verb (old)|VI|تقاطر|taqāTara}}{{ar-verb (old)|X|استقطر|istáqTara}} :: to let drip, to let dribble, to infuse in driblets
   فجر {{ar-verb|form=2|tr=fájjara|impf=يفجر|impftr=yufajjiru}} :: to let pour forth
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to let know, to notify, to inform, to give notice
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to let someone know, to tell about
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to make hear, to let hear, to give someone something to hear
 ===letter===
   {{ar-noun|tr=kitāb|g=m|pl=كتب|pltr=kútub}}{{ar-noun|head=كُتّاب|tr=kuttāb|g=m|pl=كتاتيب|pltr=katātīb}}كتاب {p} (kuttāb) (noun form) :: letter, note, paper, piece of writing, message
   حرف حَرف (ħarf) {m}, حروف (ħurūf) {p}, أحرف (’áħruf) {p} :: letter (of the alphabet), piece of type
@@ -13148,8 +13101,6 @@ Index: EN EN->AR
   نوم {{ar-verb|form=2|head=نَوَّمَ|tr=náwwama|II=و}} :: to lull to sleep, to put to bed, to put to sleep, to make lie down
 ===lieutenant===
   عامل (ʕāmil) {m}, عوامل (ʕawāmil) {p}عامل{m}عمّال{p} :: governor, lieutenant, vicegerent
-===life===
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to risk one’s life, to defy death
 ===light===
   زهر {{ar-verb (old)|I|زهر|záhara}}{{ar-verb (old)|IV|ازهر|’ázhara}}{{ar-verb (old)|VIII|ازدهر|’izdáhara}} :: to shine, to be radiant, to give light
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to illuminate, to light
@@ -13219,12 +13170,12 @@ Index: EN EN->AR
   أسَد {m} ('asad) (noun), , أُسُود ('usuud) {p} :: lion
   (Egyptian Arabic) أسد {m} ('asad) (noun), , أسود ('usuud) {p} :: lion
 ===lip===
-  شفة (šáfa) {f}, شفاه (šifāh) {p}, شفوات (šafawāt) {p} :: {anatomy} lip
+  شفة {{ar-noun|tr=šáfa|g=f|pl=شفاه|pltr=šifāh|pl2=شفوات|pl2tr=šafawāt}} :: {anatomy} lip
   (Egyptian Arabic) شفة {f} (shiffa) (noun), شفايف (shafaayif) {p} :: {anatomy} lip
 ===liquid===
   ماء (mā’) {m}, مياه (miyah) {p}, امواه (’amwāh) {p} :: liquid
 ===liquor===
-  Ø¹Ø±Ù\82 {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
+  Ø®Ù\85ر (xamr) {m|f}, Ø®Ù\85Ù\88ر (xumÅ«r) {p} :: (plural) alcoholic beverages, liquor, spirits
 ===list===
   و / ‍و (wāw) :: The sixth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ﻫ and followed by ز.
   ر / ‍ر (rā’) :: The twentieth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ق and followed by ش.
@@ -13257,16 +13208,13 @@ Index: EN EN->AR
   ه (number) :: The fifth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by د and followed by و.
   ي / ي‍ / ‍ي‍ / ـي (yā’) :: The tenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ط and followed by ك.
 ===listen===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to listen
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to listen
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to listen, to hearken, to lend an ear
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to listen, to hearken, to lend an ear
   صغا {{ar-verb (old)|I|صغا|ʂağā}}{{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
   أصغى {{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
   أطاع {{ar-verb (old)|IV|أطاعَ|’aTaa3a|اطاع|يُطيعُ|يطيع}} :: to comply with, to comply, to obey, to be obedient, to listen, to follow
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to give ear, to listen, to lend an ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to eavesdrop, to listen secretly
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to listen, to listen closely
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
   (Egyptian Arabic) سمع {{arz-verb|form=1|tr=simiʿ|impf=يسمع|impftr=yismaʿ}} :: to listen {l|gloss=to pay attention to a sound}
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to eavesdrop, to listen secretly
 ===listless===
@@ -13384,7 +13332,7 @@ Index: EN EN->AR
 ===lore===
   علم عِلْمٌ (ʕilm) {m}, علوم (ʕulūm) {p} :: knowledge, learning, lore
 ===lose===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to escape, to slip, to lose sight of, to forget
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to escape, to slip, to lose sight of, to forget
 ===lot===
   قسمة {{ar-noun|head=قِسْمَة|tr=qísma|g=f|pl=قسم|pltr=qísam}} :: lot, destiny, foreordained fate, kismet
 ===loudly===
@@ -13502,7 +13450,7 @@ Index: EN EN->AR
     الفضائل الرئيسية — cardinal virtues :: --
     مقالة رئيسية — lead article, editorial :: --
   بيضة {{ar-sing-noun|g=f|tr=báyḍa|head=بَيْضَة|coll=بيض|colltr=bayḍ|pl=بيوض|pltr=buyūḍ}}, {paucal} بيضات (bayḍāt) :: main part, substance, essence
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: main part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: main part
 ===maintain===
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to keep up, to maintain, to sustain
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to preserve, to maintain, to keep up, to uphold, to sustain
@@ -13515,7 +13463,7 @@ Index: EN EN->AR
 ===majority===
   بالغ (bāliğ) :: mature, of age, in one’s majority, adult
 ===make===
-  ØºÙ\8eÙ\84Ù\90Ø·Ù\8e (ghaliá¹­a) (verb) :: to make a mistake
+  ØºÙ\84Ø· {{ar-verb|head=غÙ\8eÙ\84Ù\90Ø·Ù\8e|tr=Ä\9faliá¹­a|form=1|impf=Ù\8aغÙ\84Ø·|impftr=yaÄ\9flaá¹­u}} :: to make a mistake
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to utter, to voice, to proclaim, to make known, to manifest.
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to ascertain, to make sure
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to change, to transform, to convert, to turn, to make
@@ -13526,10 +13474,9 @@ Index: EN EN->AR
   سلم {{ar-verb (old)|I|سَلِمَ|sálima}}{{ar-verb (old)|II|سلّم|sállama}}{{ar-verb (old)|III|سالم|sālama}}{{ar-verb (old)|IV|اسلم|’áslama}}{{ar-verb (old)|V|تسلم|tasállama}}{{ar-verb (old)|VI|تسالم|tasālama}}{{ar-verb (old)|VIII|استلم|istálama}}{{ar-verb (old)|X|استسلم|istáslama}} :: to make peace with one another
   شرف {{ar-verb (old)|I|شَرُفَ|šárufa}}{{ar-verb (old)|II|شرّف|šárrafa}} :: to make noble, to ennoble, to make illustrious, to make eminent, to elevate, to exalt, to honor
   حسن {{ar-verb|form=II|head=حَسَّنَ|tr=ħássana|impf=يحسن|impftr=yuħassinu}} :: to prettify, to beautify, to adorn, to make attractive
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
   بحر {{ar-verb (old)|I|بحر|báħira}}{{ar-verb (old)|II|بحر|báħħara}} :: to travel by sea, to make a voyage
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: {grammar} to make masculine.
   كتب {{ar-verb|form=II|head=كَتَّبَ|tr=káttaba|impf=يكتب|impfhead=يُكَتِّبُ|impftr=yukattibu}} (causative) :: to cause to write, to make someone write
@@ -13545,11 +13492,8 @@ Index: EN EN->AR
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to transfer ownership, to assign, to make over, to convey
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to make king
   دور {{ar-verb (old)|II|دور|dáwwara}} :: to turn into a circle, to make round
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to hold responsible, to make answerable
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in, to admit, to show in
+  دخل {{ar-verb|form=2|head=دَخَّلَ|tr=dáxxala|impf=يدخل|impftr=yudaxxilu}} :: to make enter, to bring in, to let in
   جنس {{ar-verb (old)|II|جنس|jánnasa}}{{ar-verb (old)|III|جانس|jānasa}}{{ar-verb (old)|V|تجنس|tajánnasa}}{{ar-verb (old)|VI|تجانس|tajānasa}} :: to make alike, to make similar
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to make stand, to set up
   جمل {{ar-verb (old)|I|جمل|jámala}}{{ar-verb (old)|I|جمل|jámula}}{{ar-verb (old)|II|جمّل|jámmala}}{{ar-verb (old)|III|جامل|jāmala}}{{ar-verb (old)|IV|اجمل|’ájmala}}{{ar-verb (old)|V|تجمل|tajámmala}}{{ar-verb (old)|VI|تجامل|tajāmala}} :: to make beautiful, to beautify, to embellish, to adorn
   جمل {{ar-verb (old)|I|جمل|jámala}}{{ar-verb (old)|I|جمل|jámula}}{{ar-verb (old)|II|جمّل|jámmala}}{{ar-verb (old)|III|جامل|jāmala}}{{ar-verb (old)|IV|اجمل|’ájmala}}{{ar-verb (old)|V|تجمل|tajámmala}}{{ar-verb (old)|VI|تجامل|tajāmala}} :: to make oneself pretty, to adorn oneself
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to make clear, to make plain, to express unmistakably, to state clearly, to declare.
@@ -13571,8 +13515,7 @@ Index: EN EN->AR
   برق {{ar-verb (old)|I|برق|báraqa}}{{ar-verb (old)|IV|ابرق|’ábraqa}} :: to make bolts of lightning
   حبل {{ar-verb (old)|I|حبل|ħábila}}{{ar-verb (old)|II|حبّل|ħábbala}}{{ar-verb (old)|IV|احبل|’áħbala}} :: to make pregnant
   حبل {{ar-verb (old)|I|حبل|ħábila}}{{ar-verb (old)|II|حبّل|ħábbala}}{{ar-verb (old)|IV|احبل|’áħbala}} :: to make pregnant
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to make hear, to let hear, to give someone something to hear
   جب {{ar-verb (old)|I|جَبّ|jábba}} :: to repeal, to abate, to abolish, to frustrate, to make null and void, to call off
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to alienate, to estrange, to deter, to make dissatisfied
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to make averse to, to make disinclined to, to make hateful to, to alienate from, to make someone hate
@@ -13605,7 +13548,7 @@ Index: EN EN->AR
   مناقيش (manāqīsh) {m} :: manakish (a Middle-Eastern pastry similar to pizza); also spelt manaeesh or manakeesh in English.
     مناقيش بزعتر (manāqīsh bi-záʕtar) :: thyme manakish
 ===manage===
-  رأس (rá’asa) :: to head, to lead, to direct, to manage, to run
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to head, to lead, to direct, to manage, to run
 ===management===
   سياسة {{ar-noun|tr=siyāsa|g=f|pl=سياسات|pltr=siyasāt}} :: administration, management
 ===manager===
@@ -13628,14 +13571,12 @@ Index: EN EN->AR
   من {{ar-noun|head=مَنّ|g=m|tr=mann}} :: manna
 ===manner===
   قواعد (qawaa3id) {p} (singular: قاعدة, qaa3ida) :: methods, manners
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: manner
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: manner
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: manner, mode, means
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: procedure, policy, manner
   حق (ħaqq) {m}, حقوق (ħuqūq) {p}حق{m} :: proper manner
   منهج (minhaj) :: {{context|Islamic}} In Islamic context, it refers to the manner of implementation of Islam's rules and beliefs.
   مُتّقُون {m|p} (muttaqūn) (noun) :: The pious believers of Islamic monotheism who fear and love Allah (abstaining from all sin and evil deeds which he has forbidden, while performing all manner of good deeds which he has ordained).
-===manslaughter===
-  قتل (qatl) {m}قتل{m}اقتال{p} :: killing, manslaughter, homicide, murder, assassination
 ===manual===
   كتيب التشغيل (kutáyyib at-tašğí:l) {m} :: operating manual
 ===manufacture===
@@ -13676,7 +13617,7 @@ Index: EN EN->AR
 ===marriage===
   زوج {{ar-verb (old)|II|زوّج|záwwaja}}{{ar-verb (old)|VIII|ازدوج|izdáwaja}} :: to marry off, to give in marriage
   مهر {{ar-noun|tr=mahr|head=مَهْر}} ({p}: مُهُور muhūr) :: dowry, dower, marriage portion
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to consummate the marriage, to cohabit, to sleep with
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to consummate the marriage, to cohabit, to sleep with
 ===marrow===
   لُب (lubb) (noun) :: pulp, backlog, marrow, core, heart
 ===marry===
@@ -13707,7 +13648,7 @@ Index: EN EN->AR
 ===massacre===
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to massacre
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to kill, to slaughter, to butcher, to massacre, to murder
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to massacre, to cause carnage
+  قتل {{ar-verb|form=2|impf=يقتل|tr=qáttala|impftr=yuqattilu}} :: to kill, to massacre, to cause carnage
 ===master===
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: master
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to be the master
@@ -13718,7 +13659,7 @@ Index: EN EN->AR
     الرب (ar-rább) :: God; Lord
     رب العائلة (rabb al-ʕá’ila) :: paterfamilias
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to become lord and master
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to know, to master
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to know, to master
   ذو القعدة {{ar-noun|head=ذُو القَعْدَةِ|tr=ðu l-qáʕda|g=m}} :: Dhu al-Qi'dah, the eleventh of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhu al-Qi'dah means "master of the truce" in Arabic, and pagan Arabs did not conduct war during this month.
 ===Masters===
   زاهد {m} (zāhid) (noun), زهاد (zuhhād) {p} :: {{context|Sufism}} A popular title bestowed on disciples of Mystic Sufi orders upon their initiation. After initiation the title took the place of the new Spiritual Masters’ given names. A famous bearer of the title Zahed was Sheikh Zahed Gilani of Lahijan in Gilan province of northern Iran.
@@ -13753,7 +13694,7 @@ Index: EN EN->AR
 ===mays===
   ذرة ذُرَة (ðóra) {f} (collective) :: maize, durum corn, Indian corn (Zea mays L.)
 ===me===
-  أنا أنَا (’ána)ـنِيـِي :: me (enclitic object pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: me (enclitic object pronoun).
   مني مِنّي (mínni) :: of me
   ي (-ii) (pronoun) :: me, my (bound object pronoun)
     لي (lii) :: to me
@@ -13769,8 +13710,8 @@ Index: EN EN->AR
   معنى {{ar-noun|head=مَعْنَى|tr=máʕnā|g=m|pl=معاني}} :: meaning, import
   ب (bi-) :: A prefix meaning at, by, in, or with.
   ل (li-) :: A prefix meaning to, for, belonging to.
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ===meanings===
   ضد {{ar-noun|head=ضِدّ|tr=Didd|g=m|pl=اضداد|plhead=أضداد}} :: word with two opposite meanings.
 ===means===
@@ -13805,9 +13746,6 @@ Index: EN EN->AR
   حرم (ħirm) {m}حرم{m}احرام{p}حرم{p} :: sanctum, sanctuary, sacred precinct
     الحرمان (al-ħaramān) :: the two Holy Places (Mecca and Medina)
     ثالث الحرمين (θāliθ al-ħarmēin) :: the third Holy Place (Jerusalem)
-===meddle===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to meddle, to interfere
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to meddle, to butt in
 ===medicine===
   طب (ṭibb) {m} :: medicine
 ===Medina===
@@ -13828,8 +13766,6 @@ Index: EN EN->AR
     ليبيا دولة تقع في شمال أفريقيا على الساحل الجنوبي للبحر الأبيض المتوسط. :: Libya is a country located in Northern Africa on the southern coast of the Mediterranean Sea.
 ===medley===
   مزاج (mazāj) {m}, امزجة (’ámzija) {p} :: mixture, medley, blend
-===meet===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to fight each other, to meet in battle
 ===meeting===
   مجلس {{ar-noun|g=m|head=مَجْلِس|tr=majlis|pl=مجالس|plhead=مَجالِس}} :: gathering, meeting, party
   مجلس {{ar-noun|g=m|head=مَجْلِس|tr=majlis|pl=مجالس|plhead=مَجالِس}} :: council meeting, council
@@ -13876,9 +13812,6 @@ Index: EN EN->AR
   بالكاد (b-il-kād) :: merely
 ===merit===
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to be worthy, to deserve, to merit
-===mesh===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interlock, to mesh
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to interlock, to mesh
 ===message===
   {{ar-noun|tr=kitāb|g=m|pl=كتب|pltr=kútub}}{{ar-noun|head=كُتّاب|tr=kuttāb|g=m|pl=كتاتيب|pltr=katātīb}}كتاب {p} (kuttāb) (noun form) :: letter, note, paper, piece of writing, message
   كتب {p} (kútub) (noun form) :: letters, notes, messages
@@ -13900,7 +13833,7 @@ Index: EN EN->AR
 ===method===
   قواعد (qawaa3id) {p} (singular: قاعدة, qaa3ida) :: methods, manners
   ميزان (mizān) {m}, موازين (mawazīn) {p} :: rule, method
-  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, method, procedure, course of action
+  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, path, method, procedure, course of action
 ===methodology===
   منهج (minhaj) :: methodology
 ===metropolis===
@@ -13986,24 +13919,25 @@ Index: EN EN->AR
 ===mission===
   مهمة (mahámma) {f}, مهام (mahámm) {p}مهمة{f}مهمات{p} :: commission, assignment, mission
 ===mistake===
-  ØºÙ\8eÙ\84Ù\90Ø·Ù\8e (ghaliá¹­a) (verb) :: to make a mistake
+  ØºÙ\84Ø· {{ar-verb|head=غÙ\8eÙ\84Ù\90Ø·Ù\8e|tr=Ä\9faliá¹­a|form=1|impf=Ù\8aغÙ\84Ø·|impftr=yaÄ\9flaá¹­u}} :: to make a mistake
 ===mistrust===
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to distrust, to mistrust
 ===mite===
   حلمة {{ar-sing-noun|g=f|tr=ħálama|pl=حلمات|pltr=ħalamāt|coll=حلم|colltr=ħálam}} :: tick, mite
 ===mitigate===
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to mitigate, to alleviate
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to mitigate, to alleviate
 ===mix===
   ماه {{ar-verb (old)|I|ماه|māha}} :: to mix
   رخ {{ar-verb (old)|I|رخ|ráxxa}} :: to dilute, to mix with water
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to mix, to dilute
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to mix, to dilute
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to permeate, to pervade, to blend, to mix
 ===mixed===
   فلافل {{ar-noun|tr=falaafil|g=m}} :: falafel (a dish made of ground broad beans, mixed with various herbs and garlic and deep-fat fried as croquettes)
 ===mixture===
   مزاج (mazāj) {m}, امزجة (’ámzija) {p} :: mixture, medley, blend
 ===من===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من) to hear from
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من) to hear from
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
 ===mode===
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: manner, mode, means
 ===model===
@@ -14024,7 +13958,9 @@ Index: EN EN->AR
 ===Mohammed===
   محمد محمّدٌ (muħámmad) {m} :: {{given name|male}}, variously transliterated as: Muhammad, Mohammed, Mohamed, Muhamed, Mohamet, etc.
 ===Mohammedanism===
-  الإسلام (al-’islām) {m} :: Islam, the religious system advocated by Muhammad, Mohammedanism
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: Islam, the religious system advocated by Muhammad, Mohammedanism
+===moistness===
+  رطوبة (rutūba) {f} :: moistness
 ===mold===
   سن {{ar-verb (old)|I|سن|sánna}}{{ar-verb (old)|II|سن|sánna}}{{ar-verb (old)|IV|اسن|’ásanna}}{{ar-verb (old)|VIII|استن|istánna}} :: to mold, to shape, to form
   جبل {{ar-verb (old)|I|جبل|jábala}} :: to mold, to form, to shape, to fashion
@@ -14048,15 +13984,15 @@ Index: EN EN->AR
 ===money===
   عين (ʕayn) {f}, عَيْنَانِ (ʕeynāni, dual nom.), عَيْنَيْنِ (ʕeynéyni, dual acc./gen.), عُيُون (ʕuyūn, {p}) :: In law: money or whatever is the equivalent of money.
   صفر صُفر (ṣufr) {m}صَفَر(ṣáfar){m} :: money
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: (plural) postal money order
+  أذن {{ar-noun|head=إذن|tr=ʾíđn|g=m|pl=اذون|pltr=ʾuđūn|pl2=اذونات|pl2tr=ʾuđunāt}} :: (plural) postal money order
   مال (māl) {m}, اموال (’amwāl) {p} :: money
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to give earnest money.
   عين (ʕayn) {f}, عَيْنَانِ (ʕeynāni, dual nom.), عَيْنَيْنِ (ʕeynéyni, dual acc./gen.), عُيُون (ʕuyūn, {p}) :: In economics: what has monetary value except money.
 ===monotheism===
   مُتّقُون {m|p} (muttaqūn) (noun) :: The pious believers of Islamic monotheism who fear and love Allah (abstaining from all sin and evil deeds which he has forbidden, while performing all manner of good deeds which he has ordained).
 ===monotheistic===
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ===month===
   شهر (šáher) {m}, اشهر (’ášhur) {p}, شهور (šuhūr) {p} :: month (unit of time)
   اب آب (’Āb) {m} :: August (month name used in Syria, Lebanon, Jordan, and Iraq)
@@ -14134,8 +14070,9 @@ Index: EN EN->AR
 ===Moroccan===
   (Moroccan Arabic) ڢ / ڢ‍ / ‍ڢ‍ / ‍ڢ (fā’) :: The twentieth letter of the Moroccan Arabic alphabet. It is preceded by غ and followed by ڧ.
   (Moroccan Arabic) ڧ / ڧ‍ / ‍ڧ‍ / ‍ڧ (qāf) :: The twenty-first letter of the Moroccan Arabic alphabet. It is preceded by ڢ and followed by ك.
+  خيزو خيزّو (xizzu) {m} :: (Moroccan) carrot, carrots
+  خزو خزّو (xizzu) {m} :: (Moroccan) carrot, carrots
 ===Morocco===
-  فاس (proper noun) :: The city of Fez in Morocco.
   المغرب (al-mághrib) {m} :: Morocco
   ملحون (malħūn) :: (Morocco) poetry in colloquial language
   ناموسية (nāmūsiya) {f} :: (Morocco) bed
@@ -14209,7 +14146,6 @@ Index: EN EN->AR
   (Egyptian Arabic) فم (fumm) {m}, افمام (’afmām) {p} :: mouthpiece (of pipe or cigarette), cigarette holder
 ===move===
   دب {{ar-verb (old)|I|دب|dábba}}{{ar-verb (old)|II|دبّ|dábba}} :: to proceed, to advance, to move slowly
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to move, to haul
   زحل {{ar-verb (old)|I|زحل|záHala}}{{ar-verb (old)|II|زحّل|záHHala}} :: to move away, withdraw, retire
 ===movement===
   حركة (ḥáraka) {f}, حركات (ḥarakāt) {p} :: movement, motion
@@ -14228,7 +14164,7 @@ Index: EN EN->AR
   محمد محمّدٌ (muħámmad) {m} :: {{given name|male}}, variously transliterated as: Muhammad, Mohammed, Mohamed, Muhamed, Mohamet, etc.
 ===Muhammad===
   صلى الله عليه وسلم (ṣállā Allāhu ʕaláyhi wa sállam) :: {{context|Islam|eulogy}} "peace be upon him" (following mention of the Prophet Muhammad); abbreviated as SAW, or (in English) PBUH.
-  الإسلام (al-’islām) {m} :: Islam, the religious system advocated by Muhammad, Mohammedanism
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: Islam, the religious system advocated by Muhammad, Mohammedanism
   محمد محمّدٌ (muħámmad) {m} :: {{given name|male}}, variously transliterated as: Muhammad, Mohammed, Mohamed, Muhamed, Mohamet, etc.
   محمد محمّدٌ (muħámmad) {m} :: the prophet Muhammad (see محمد بن عبد الله).
   رطب (rutb) (collective) :: Ripened dates, used in traditions relating to Muhammad.
@@ -14248,13 +14184,13 @@ Index: EN EN->AR
   ملا {{ar-noun|tr=mullaa|g=m}} :: mullah, mollah, mulla, moolah
 ===municipal===
   بلدية بَلَدِيَّة (baladíyya) {f}, بلديات (baladiyāt) {p} :: municipal council
+  بلدي بَلَدِيّ (baladiyy) {m} :: communal, municipal
 ===municipality===
   بلدية بَلَدِيَّة (baladíyya) {f}, بلديات (baladiyāt) {p} :: municipality
 ===murder===
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to murder, to slay
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to kill, to slaughter, to butcher, to massacre, to murder
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to slay, to murder, to assassinate
-  قتل (qatl) {m}قتل{m}اقتال{p} :: killing, manslaughter, homicide, murder, assassination
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to kill, to slay, to murder, to assassinate
 ===music===
   موسيقى (músiqa) {f} :: music
 ===musical===
@@ -14287,13 +14223,12 @@ Index: EN EN->AR
 ===mutilate===
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to maim, to mutilate
 ===mutual===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle a mutual account
   مس {{ar-verb (old)|I|مس|mássa}}{{ar-verb (old)|III|ماس|māsasa, māssa}}{{ar-verb (old)|VI|تماس|tamāsasa, tamāssa}} :: to touch each other, to be in mutual contact
 ===muzzle===
   فم (fam) {m}, فو (fū) (construct state), أفواه (’afwāh) {p} :: muzzle
   (Egyptian Arabic) فم (fumm) {m}, افمام (’afmām) {p} :: muzzle
 ===my===
-  أنا أنَا (’ána)ـنِيـِي :: my (enclitic possessive pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: my (enclitic possessive pronoun).
   اسمي (ísmi) :: my name
   اسمي (ísmi) :: my name is...
     اسمي أحمد (ísmi ’áħmad) :: My name is Ahmad
@@ -14380,6 +14315,9 @@ Index: EN EN->AR
 ===nationalize===
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to nationalize
     امم البترول :: to nationalize the oil
+===native===
+  بلدي بَلَدِيّ (baladiyy) {m} :: native, indigenous
+  بلدي بَلَدِيّ (baladiyy) {m} :: native
 ===naturalize===
   جنس {{ar-verb (old)|II|جنس|jánnasa}}{{ar-verb (old)|III|جانس|jānasa}}{{ar-verb (old)|V|تجنس|tajánnasa}}{{ar-verb (old)|VI|تجانس|tajānasa}} :: to assimilate, to naturalize
 ===naturalized===
@@ -14572,7 +14510,7 @@ Index: EN EN->AR
   الا {{ar-con|head=ألا|tr=’allā}} :: in order that...not
   الا {{ar-con|head=ألا|tr=’allā}} :: so as not to
   الا {{ar-verb (old)|I|الا|’alā}} :: to neglect to do, to fail to do, not to do
-  طلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
+  طلاق طَلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
   (Egyptian Arabic) كـ (ki-) (preposition) :: like
     مش كده :: not like this
     مش كده ؟ :: isn't it ? (tag question)
@@ -14742,7 +14680,7 @@ Index: EN EN->AR
   مصدر {{ar-noun|tr=máṣdar|head=مَصْدَر|g=m|pl=مصادر|pltr=maṣādir}} :: {grammar} absolute object
   هدف {m} (hádaf) (noun), plural: اهداف (’ahdāf) :: target, object, aim, end
   شيء (šæy’) {m}, أشياء (’ašyā’) {p} :: object
-  أنا أنَا (’ána)ـنِيـِي :: me (enclitic object pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: me (enclitic object pronoun).
   ـكَ {m} (-ka) (suffix) :: you, your (bound object pronoun)
     بِكَ (bika) :: to you
   ـكِ {f} (-ki) (suffix) :: you, your (bound object pronoun)
@@ -14784,11 +14722,9 @@ Index: EN EN->AR
 ===obsolete===
   إيطالية (’iṭalíyya) {f} :: Italy obsolete
 ===obstacle===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: impediment, obstacle
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: impediment, obstacle
 ===obstruct===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to obstruct, to hamper
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to obstruct, to hamper
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to detain, to impede, to obstruct, to hamper
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to obstruct, to hamper
 ===obtain===
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to request, to apply, to seek, to try to obtain
   نور {{ar-verb (old)|II|نور|náwwara}}{{ar-verb (old)|IV|انار|’ánara}}{{ar-verb (old)|IV|انور|’ánwara}}{{ar-verb (old)|V|تنور|tanáwwara}}{{ar-verb (old)|X|استنور|istánwara}} :: to obtain enlightenment, to gain insight
@@ -14834,7 +14770,6 @@ Index: EN EN->AR
   وتر (watr, witr) :: odd (numbers)
 ===off===
   صدر {{ar-verb|form=2|tr=ṣáddara|impf=يصدر|impftr=yuṣaddiru}} :: to send, to send off, to dispatch, to forward
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to produce, to set off, to trigger, to induce
   قضب {{ar-verb|form=I|tr=qáḍaba|head=قَضَبَ}} :: to cut off, to prune, to lop, to trim.
   قضب {{ar-verb|form=2|tr=qáḍḍaba|head=قَضَّبَ|impf=يقضب|impfhead=يُقَضِّبُ|impftr=yuqaḍḍibu}} :: to cut off, to prune, to lop, to trim.
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to turn off, to switch off, to disconnect
@@ -14852,10 +14787,10 @@ Index: EN EN->AR
 ===offender===
   جان {{ar-noun|head=جانٍ|tr=jānin|pl=جناة}} :: perpetrator, offender, delinquent, criminal, culprit, felon, evildoer
 ===offer===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to sacrifice, to offer up, to immolate
   عن {{ar-verb (old)|I|عَنّ|ʕánna}} :: to present itself, to offer itself
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to offer a morning draught
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to offer a morning draught
 ===office===
@@ -14895,7 +14830,7 @@ Index: EN EN->AR
     كَانَ حَسَنًا (kána ħásanan) :: --
     He was good (well, fine, okay). :: --
 ===old===
-  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8eÙ\85Ù\8e|qádama}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}}{{ar-verb (old)|II|Ù\82Ù\8eدÙ\91Ù\85Ù\8e|qáddama}} :: to be old, to be ancient
+  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}} :: to be old, to be ancient
   هم (himm) {m}, اهمة (hímma) {f}, اهمام (’ahmām) {p}, همائم (hamā’im) {p}, همات (himmāt) {f|p} :: old man, old woman
   سن {{ar-verb (old)|I|سن|sánna}}{{ar-verb (old)|II|سن|sánna}}{{ar-verb (old)|IV|اسن|’ásanna}}{{ar-verb (old)|VIII|استن|istánna}} :: to grow old, to age
   عجوز {{ar-noun|g=f|head=عَجُوزٌ|tr=ʿajūz|pl=عجائز|pltr=ʿajā’iz|pl2=عجز|pl2tr=ʿújuz}} :: old woman
@@ -14914,14 +14849,13 @@ Index: EN EN->AR
   ريال {{ar-noun|tr=riyāl|g=m|pl=ريالات|pltr=riyalāt}} :: rial (the official currency of Oman and Yemen).
   عمان عُمان {LR}(3umaan)عَمّان{LR} :: Oman
 ===omit===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to ignore, to skip, to omit
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to ignore, to skip, to omit
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to neglect, to omit, to overlook
 ===once===
   حالاً (ḥālan) (adverb) :: presently, immediately, at once, right away, without delay
 ===oneself===
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to appear, to be revealed, to show oneself
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to compose oneself, to pull oneself together
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to have oneself announced
   جمل {{ar-verb (old)|I|جمل|jámala}}{{ar-verb (old)|I|جمل|jámula}}{{ar-verb (old)|II|جمّل|jámmala}}{{ar-verb (old)|III|جامل|jāmala}}{{ar-verb (old)|IV|اجمل|’ájmala}}{{ar-verb (old)|V|تجمل|tajámmala}}{{ar-verb (old)|VI|تجامل|tajāmala}} :: to make oneself pretty, to adorn oneself
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to assimilate oneself to the Arabs, to become an Arab, to adopt the customs of the Arabs.
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to assimilate oneself to the Arabs, to become an Arab, to adopt the customs of the Arabs.
@@ -14947,7 +14881,7 @@ Index: EN EN->AR
   هدف {{ar-verb (old)|I|هدف|hádafa}}{{ar-verb (old)|IV|اهدف|’áhdafa}}{{ar-verb (old)|V|تهدف|taháddafa}}{{ar-verb (old)|X|استهدف|istáhdafa}} :: to be exposed, to be open
 ===opening===
   باب بَاب (baab) {m}, أبْوَاب (’abwaab) {p}, بِيبَان (bibaan) {p} :: opening, gateway
-  نافذة (nāfiða) {f}, نوافذ (nawāfið) {p} :: opening in a wall, air hole
+  نافذة {{ar-noun|tr=nāfiḏa|g=f|pl=نوافذ|pltr=nawāfiḏ}} :: opening in a wall, air hole
 ===operate===
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to operate, to run
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to operate
@@ -14960,10 +14894,10 @@ Index: EN EN->AR
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to ask advice of, to seek the opinion of, to consult
   مع (máʕa) :: in the estimation of, in the eyes of, in the opinion of
   فتوى (fatwā) {f}, فتاو (fatāwin) {p}, فتاوى (fatāwā) {p} :: fatwa, formal legal opinion
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to think, to believe, to hold the view, to be of the opinion
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to think, to believe, to hold the view, to be of the opinion
 ===opponent===
   ضد {{ar-noun|head=ضِدّ|tr=Didd|g=m|pl=اضداد|plhead=أضداد}} :: adversary, opponent
-  قتل (qatl) {m}قتل{m}اقتال{p} :: enemy, adversary, foe, opponent
+  قتل {{ar-noun|tr=qitl|g=m|pl=أقتال|pltr=ʾaqtāl}} :: enemy, adversary, foe, opponent
 ===opportunity===
   فرصة فُرْصَة (fúrṣa) {f} :: opportunity
 ===oppose===
@@ -14985,7 +14919,7 @@ Index: EN EN->AR
   مُتّقُون {m|p} (muttaqūn) (noun) :: The pious believers of Islamic monotheism who fear and love Allah (abstaining from all sin and evil deeds which he has forbidden, while performing all manner of good deeds which he has ordained).
 ===order===
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to order, to demand, to exact, to require
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: (plural) postal money order
+  أذن {{ar-noun|head=إذن|tr=ʾíđn|g=m|pl=اذون|pltr=ʾuđūn|pl2=اذونات|pl2tr=ʾuđunāt}} :: (plural) postal money order
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to order, to command, to bid, to instruct
   امر أمر (’amr) {m}, أوامر (’awāmir) {p}أمر{m}أمور{p} :: order, command, instruction
   و / ‍و (wāw) :: The sixth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ﻫ and followed by ز.
@@ -15027,7 +14961,7 @@ Index: EN EN->AR
 ===ordinance===
   امر أمر (’amr) {m}, أوامر (’awāmir) {p}أمر{m}أمور{p} :: ordinance, decree
 ===ordinarily===
-  عادةً (ʕá:datan) :: usually, customarily, ordinarily, habitually
+  عادة {{ar-adv|tr=ʿā́datan}}) :: usually, customarily, ordinarily, habitually
 ===ordinary===
   عاديّ (ʕādi) :: normal, regular, ordinary
 ===organization===
@@ -15059,12 +14993,9 @@ Index: EN EN->AR
   نعامة (naʕāma) {f} (singulative), نعام (naʕām) {m} (collective), نعائم (naʕā’im) {p} :: ostrich
 ===other===
   آخر (’āxar) {m}, اخرى (’úxrā) {f}, اخر (’úxar) {p}, آخرون (’āxarūn) {p}, اخريات (’uxrayāt) {p} :: another, one more, other
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to fight each other, to meet in battle
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to write each other, to correspond
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to resemble each other, to be alike, to go together, to agree, to match
   مس {{ar-verb (old)|I|مس|mássa}}{{ar-verb (old)|III|ماس|māsasa, māssa}}{{ar-verb (old)|VI|تماس|tamāsasa, tamāssa}} :: to touch each other, to be in mutual contact
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to fight with one another, to combat each other
 ===Ottoman===
   سر (sar) {m} :: (in compounds) head, chief
     سردار (sirdār) :: supreme commander; commanding general
@@ -15079,7 +15010,6 @@ Index: EN EN->AR
   صدر {{ar-verb|form=1|tr=ṣádara}} :: to come out, to be issued, to be promulgated
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to remind, to point out.
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to come out, to be published
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to seek to know, to try to find out
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to start out, to leave, to depart
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to send out, to dispatch
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to realize, to carry out, to effect
@@ -15094,7 +15024,7 @@ Index: EN EN->AR
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to supervise, to control, to watch over, to watch out for
   اصل {{ar-verb (old)|I|أصل|’áṣula}}{{ar-verb (old)|II|أصل|’áṣṣala}}{{ar-verb (old)|V|تأصل|ta’áṣṣala}}{{ar-verb (old)|X|استأصل|istá’ṣala}} :: to uproot, to root out, to extirpate, to annihilate
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to carry out orders
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
 ===outer===
   خارج (xārij) :: outer, outside, outward, exterior
     خارجًا (xārijan) — outside, out (adverb) :: --
@@ -15126,18 +15056,18 @@ Index: EN EN->AR
 ===over===
   سلم {{ar-verb (old)|I|سَلِمَ|sálima}}{{ar-verb (old)|II|سلّم|sállama}}{{ar-verb (old)|III|سالم|sālama}}{{ar-verb (old)|IV|اسلم|’áslama}}{{ar-verb (old)|V|تسلم|tasállama}}{{ar-verb (old)|VI|تسالم|tasālama}}{{ar-verb (old)|VIII|استلم|istálama}}{{ar-verb (old)|X|استسلم|istáslama}} :: to hand over
   أمل {{ar-verb|tr=ʾámala|head=أَمَلَ|form=I|impf=يأمل|impfhead=يَأْمَلُ|impftr=yaʾmalu}}{{ar-verb|tr=ʾámmala|form=II|impf=يؤمل|impftr=yuʾammilu}}{{ar-verb (old)|V|تأمل|ta’ámmala}} :: to meditate, to think over, to ponder, to reflect
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to seize, to come over
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to hand over, to deliver
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to hand over, to deliver
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to take in possession, to take over, to acquire, to seize
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to rule, to reign, to exercise authority, to hold sway, to lord over
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to transfer ownership, to assign, to make over, to convey
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to strike, to seize, to come over
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to be glazed over
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to supervise, to control, to watch over, to watch out for
   رب {{ar-verb (old)|I|رب|rábba}}{{ar-verb (old)|II|ربب|rábbaba}} :: to have authority over, to govern
   عندقت {{ar-proper noun|tr=ʕándqet}} :: Andket (a Maronite Christian village in northern Lebanon, over 1500 years old.)
 ===overall===
   محيط مُحِيطٌ (muḥíeṭun) {m} :: overall
+===overcast===
+  غائم (ğā’im) :: cloudy, overcast, clouded
 ===overcome===
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to overcome, to surmount, to conquer, to vanquish
   حج {{ar-verb (old)|I|حج|Hájja}} :: to overcome, defeat (with arguments, evidence, etc.)
@@ -15146,8 +15076,7 @@ Index: EN EN->AR
 ===overdo===
   بالغ {{ar-verb (old)|III|بالغ|bālağa}} :: to exaggerate, to overdo
 ===overhear===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to overhear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to hear, to overhear
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to overhear
 ===overlook===
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to neglect, to omit, to overlook
 ===overnight===
@@ -15187,6 +15116,8 @@ Index: EN EN->AR
   دم {{ar-noun|head=دَم|tr=dam|g=m|pl=دماء}} :: paint
   دهان (dihān) {m}, دهانات (dihanāt) {p}, ادهنة (ádhina) {p}دهان{m} :: paint, varnish
   رسم {{ar-verb|form=1|tr=rásama|head=رَسَمَ|impf=يرسم|impftr=yarsumu|impfhead=يَرْسُمُ}} :: to paint
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
 ===painter===
   دهان (dihān) {m}, دهانات (dihanāt) {p}, ادهنة (ádhina) {p}دهان{m} :: house painter, painter
   ريش (rīš) {m} (collective), ريشة (rīša) {f} (singulative), رياش (riyāš) {p}, ارياش (aryāš) {p}, ريشات (rišāt) {p} :: writing pen, quill, painter’s brush
@@ -15237,7 +15168,7 @@ Index: EN EN->AR
   قط {{ar-verb (old)|I|قط|qáṭṭa}} :: to cut, to trim, to clip, to pare
   قلم {{ar-verb (old)|I|قَلَمَ|qálama}}{{ar-verb (old)|II|قلّم|qállama}} :: to cut, to clip, to pare, to prune, to trim, to lop, to truncate, to snip, to cut back, to cut down
 ===park===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to park (a car)
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to park (a car)
 ===parley===
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to parley, negotiate, to have a talk.
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to negotiate, to parley
@@ -15248,8 +15179,8 @@ Index: EN EN->AR
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: part, portion
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: front part, front
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: tip, top, summit, peak, upper part
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: main part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: tip, top, summit, peak, upper part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: main part
   ربيع الثاني {{ar-noun|head=رَبِيعُ الثَانِي|tr=rabīʕu l-θāni|g=m}} :: Rabia II, the fourth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Rabia II means "second part of spring" in Arabic.
   جمادى الثاني {{ar-noun|head=جُمَادَى الثَانِي|tr=jumá:da l-θá:ni|g=m}} :: Jumada II, the sixth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Jumada II means "second part of parched land" in Arabic.
   بيضة {{ar-sing-noun|g=f|tr=báyḍa|head=بَيْضَة|coll=بيض|colltr=bayḍ|pl=بيوض|pltr=buyūḍ}}, {paucal} بيضات (bayḍāt) :: main part, substance, essence
@@ -15305,6 +15236,8 @@ Index: EN EN->AR
   رب (rabb) {m}, ارباب (’arbāb) {p} :: master, lord, king, sovereign, potentate, gentleman
     الرب (ar-rább) :: God; Lord
     رب العائلة (rabb al-ʕá’ila) :: paterfamilias
+===path===
+  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, path, method, procedure, course of action
 ===patience===
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to be patient, to have patience
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to be patient, to have patience
@@ -15322,11 +15255,9 @@ Index: EN EN->AR
   قواعد (qawaa3id) {p} (singular: قاعدة, qaa3ida) :: models, patterns
   رسم {{ar-noun|tr=rasm|g=m|pl=رسوم|pltr=rusūm|pl2=رسومات|pl2tr=rusūmāt}} :: pattern
 ===pause===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to pause, to hesitate
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to pause, to suspend, to interrupt
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to give pause
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to pause, to hesitate
 ===pausing===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: pausing, resting
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: pausing, resting
 ===pawn===
   بيدق (báidaq) {m}, بيادق (bayādiq) {p} :: pawn (chess)
 ===pay===
@@ -15334,7 +15265,7 @@ Index: EN EN->AR
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to take care, to attend, to pay attention
   صغا {{ar-verb (old)|I|صغا|ʂağā}}{{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
   أصغى {{ar-verb (old)|IV|أصْغَى|’áʂğā}} :: to listen closely to, to lend an ear to, to pay attention to, to hark, to hearken, to listen, to attend
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
   نظر {{ar-verb|form=I|head=نَظَرَ|tr=náẓara|impf=ينظر|impfhead=يَنْظُرُ|impftr=yanẓuru}} :: to pay attention, to expect
 ===payable===
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to become due, to fall due, to become payable, to mature
@@ -15358,7 +15289,7 @@ Index: EN EN->AR
 ===peaceful===
   افنان (afnán) (noun) :: {literally} "Branches with leaves". By extension, a specific place in the heavens, a peaceful setting which is covered in shade and full of fruits.
 ===peak===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: tip, top, summit, peak, upper part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: tip, top, summit, peak, upper part
 ===pearl===
   لؤلؤة (lu’lú’a) {f} (singulative), لؤلؤ (lu’lú’) {m} (collective), لآلئ (la’āli’) {p} :: pearl
   درة (dúrra) {f}, درات (durrāt) {p}, درر (dúrar) {p} :: pearl
@@ -15395,7 +15326,7 @@ Index: EN EN->AR
   (Tunisian Arabic) و (u) (conjunction) :: and
     حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
 ===penetrate===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to penetrate, to pierce
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to penetrate, to pierce
 ===penis===
   قضيب {{ar-noun|tr=qadʿīb|g=m|pl=قضبان|pltr=qudʿbān}} :: {anatomy} penis, phallus
   ذكر {{ar-noun|tr=ḏákar|g=m}}, ذكور (ḏukūr) {p} :: penis
@@ -15405,7 +15336,6 @@ Index: EN EN->AR
   ناس (nās) :: people
   شعبي {{ar-adj|شعبي|tr=sha3biyy|head=شَعْبِيّ}} :: national, people’s
   شعبان {{ar-noun|head=شَعْبَانُ|tr=šaʕbān|g=m}} :: Sha'aban, the eighth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Sha'aban means "scattered" in Arabic, and is the time when ancient people dispersed to find water.
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to be heard of, to become known among people
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to lead the way, to lead by example
     ام الناس :: to lead the people
 ===pepper===
@@ -15466,19 +15396,19 @@ Index: EN EN->AR
 ===periodical===
   مجلة مجلّة (majalla) {f}, مجلّات (majallāt) {p} :: magazine (periodical)
 ===perish===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to perish, to die, to be destroyed
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to perish, to die, to be destroyed
 ===permanent===
   ابد {{ar-verb (old)|I|ابد|’ábada}}{{ar-verb (old)|II|ابد|’ábbada}}{{ar-verb (old)|V|تأبد|ta’ábbada}} :: to make lasting, to make permanent
   ابد {{ar-verb (old)|I|ابد|’ábada}}{{ar-verb (old)|II|ابد|’ábbada}}{{ar-verb (old)|V|تأبد|ta’ábbada}} :: to become permanent
   ثابت {{ar-adj|head=ثَابِت|tr=thābit}} :: permanent
+===permeate===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to permeate, to pervade, to blend, to mix
 ===permissible===
   حلال حَلال (ẖalāl) :: allowed, permitted, allowable, admissible, permissible
 ===permission===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to ask permission
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: permission, authorization
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to ask permission to enter
+  أذن {{ar-noun|head=إذن|tr=ʾíđn|g=m|pl=اذون|pltr=ʾuđūn|pl2=اذونات|pl2tr=ʾuđunāt}} :: permission, authorization
 ===permit===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to allow, to permit
+  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu|I=ء}} :: to allow, to permit
 ===permitted===
   حلال حَلال (ẖalāl) :: allowed, permitted, allowable, admissible, permissible
   حلال حَلال (ẖalāl) :: halal, that which is permitted
@@ -15517,9 +15447,8 @@ Index: EN EN->AR
   منظر (mánẓar) {m}, مناظر (mánāẓir) {p} :: prospect, outlook, perspective
 ===perspiration===
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to make sweat, to promote perspiration
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: sweat, perspiration
 ===perspire===
-  عرق {{ar-verb|form=1|tr=ʿáriqa|impf=يعرق}} :: to sweat, to perspire
+  عرق {{ar-verb|form=1|tr=ʿáriqa|impf=يعرق|impftr=yaʿraqu}} :: to sweat, to perspire
 ===pertaining===
   من {{ar-prep|tr=min|head=مِن}} :: pertaining to
 ===Pertaining===
@@ -15529,6 +15458,7 @@ Index: EN EN->AR
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: inspection, study, perusal
 ===pervade===
   دب {{ar-verb (old)|I|دب|dábba}}{{ar-verb (old)|II|دبّ|dábba}} :: to spread, to fill, to pervade, to invade
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to permeate, to pervade, to blend, to mix
 ===pervert===
   حرف {{ar-verb (old)|II|حرّف|ħárrafa}}{{ar-verb (old)|V|تحرف|taħárrafa}} :: to distort, to corrupt, to falsify, to misconstrue, to pervert, to twist
 ===perverted===
@@ -15545,6 +15475,8 @@ Index: EN EN->AR
   فلسفة (fálsafa) {f} :: philosophy
 ===photon===
   فوتون {{ar-noun|g=m|head=فُوتُون|tr=fuutun}} :: photon
+===phrase===
+  كلامٌ (kalām) {m} :: sentence, clause, phrase
 ===physical===
   مزاج (mazāj) {m}, امزجة (’ámzija) {p} :: physical condition, state of health
   حركة (ḥáraka) {f}, حركات (ḥarakāt) {p} :: physical exercise
@@ -15563,12 +15495,12 @@ Index: EN EN->AR
 ===pieces===
   كتب {p} (kútub) (noun form) :: pieces of writing, records, papers
 ===pierce===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to penetrate, to pierce
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to penetrate, to pierce
 ===piety===
   اسلام إسلام (’islām) {m} :: religious submission to God, piety, Islam
     الإسلام (al-‘islām) — Islam :: --
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ===pigeon===
   حَمَام {m} (Hamaam) (noun) collective, حمامة (Hamaama, singulative), حمامات (Hamaamaat) {p}, حمائم (Hamaa’im) {p}حِمَام {m} (Himaam) (noun)حَمّام {m} (Hammaam) (noun)حمامات{p} :: dove, pigeon
 ===pigment===
@@ -15621,7 +15553,7 @@ Index: EN EN->AR
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to go, to repair (to a place)
     ام مدينة لندن :: to go to London
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to go, to repair (to a place)
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
   أ / ‍أ (’álifu hámzatin) :: The first letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is followed by ب.
   ث / ث‍ / ‍ث‍ / ‍ث (θā’) :: The twenty-third letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ت and followed by خ.
   ج / ج‍ / ‍ج‍ / ‍ج (jīm) :: The third letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ب and followed by د.
@@ -15704,6 +15636,7 @@ Index: EN EN->AR
   م.ت.ف (m.t.f.) {f} (abbreviation of منظمة التحرير الفلسطينية) :: PLO, Palestine Liberation Organization
 ===plot===
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to plot, to conspire
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to conspire, to plot, to collude, to scheme
   بات {{ar-verb (old)|I|بات|bāta}}{{ar-verb (old)|II|بات|bátta}} :: to contrive, to hatch (a plan, plot)
 ===plowshare===
   سلاح سِلاحٌ (silāħ) {m}, اسلحة (’ásliħa) {p} :: plowshare
@@ -15775,6 +15708,7 @@ Index: EN EN->AR
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to be capable, to be able, to be in a position to
 ===possess===
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to possess, to lay hold, to own, to have, to be the owner
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to possess, to seize
 ===possessed===
   كلب {{ar-verb (old)|I|كلب|káliba}}{{ar-verb (old)|VI|تكالب|takālaba}}{{ar-verb (old)|X|استكلب|istáklaba}} :: to be raging, to be raving, to be furious, to be mad, to be frenzied, to be possessed
   بحر (baħr) {m}, بحار (biħār) {p}, بحور (buħūr) {p}, أبحار (’abħār) {p}, أبحر (’abħur) {p} :: a noble or great man (possessed of a sea of knowledge, experience and wisdom)
@@ -15797,13 +15731,11 @@ Index: EN EN->AR
 ===possessions===
   مال (māl) {m}, اموال (’amwāl) {p} :: property, possessions, chattels, goods
 ===possessive===
-  أنا أنَا (’ána)ـنِيـِي :: my (enclitic possessive pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: my (enclitic possessive pronoun).
 ===possessor===
   صاحب (ʂāħib) {m}, اصحاب (’aʂħāb) {p}, صحب (ʂaħb) {p}, صحابة (ʂaħāba) {p}, اصحبان (ʂuħbān) {p}, اصحبة (ʂuħba) {p} :: (with a following genitive) man, owner, possessor, holder, master, lord, commander, representative, author
 ===postal===
-  أذن (’úðun) {f}, آذان (’āðān) {p}إذن{m}اذون{p}اذونات{p} :: (plural) postal money order
-===postpone===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to postpone, to delay
+  أذن {{ar-noun|head=إذن|tr=ʾíđn|g=m|pl=اذون|pltr=ʾuđūn|pl2=اذونات|pl2tr=ʾuđunāt}} :: (plural) postal money order
 ===posture===
   حال {m|f} (ḥāla) (noun), plural: أحوال, ’aḥwāl :: attitude, bearing, posture
 ===potassium===
@@ -15836,7 +15768,7 @@ Index: EN EN->AR
 ===practice===
   سنة {{ar-noun|tr=súnna|g=f|pl=سنن|pltr=súnan}} :: {Islam} habitual practice, customary procedure, norm
     سنة النبي (súnnat an-nabiy) :: the Sunna of the Prophet (his sayings and deeds)
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: habit, wont, custom, usage, practice
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: habit, wont, custom, usage, practice
   مارس {{ar-verb|form=3|tr=mārasa|impf=يمارس|impftr=yumārisu}} :: to practice (to engage in)
 ===praise===
   محمد محمّد (muħámmad) :: praised, commendable, laudable.
@@ -15847,12 +15779,10 @@ Index: EN EN->AR
   صبح (ṣubḥ) {m}, اصباح (’aṣbāḥ) {p} :: morning prayer
   مؤذن (mu’áððin) {m}, مؤذنون (mu’aððinūn) {p} :: muezzin, announcer of the hour of prayer
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to lead in prayer
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to call, to call to prayer
-===precautions===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take precautions
+  أذن {{ar-verb|form=II|tr=ʾáđđana|I=ء|impftr=yuʾađđinu|impf=يؤذن}} :: to call, to call to prayer
 ===precede===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to precede
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
+  قدم {{ar-verb (old)|I|قَدَمَ|qádama}} :: to precede
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
 ===preceded===
   و / ‍و (wāw) :: The twenty-seventh letter of the Arabic alphabet. It is preceded by ه and followed by ى.
   و / ‍و (wāw) :: The sixth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ﻫ and followed by ز.
@@ -15914,7 +15844,7 @@ Index: EN EN->AR
   ي / ي‍ / ‍ي‍ / ـي (yā’) :: The tenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ط and followed by ك.
   ﻫ (initial form of ه) (hā’) :: Normally the twenty-sixth letter of the Arabic alphabet, when this letter is used in this initial form as an enumerator, it is interpreted as the fifth letter in traditional abjad order, equivalent to our Roman numeral V or Ⅴ (see abjad numerals). It is preceded by د and followed by و.
 ===precedence===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to give precedence, to prefer
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to give precedence, to prefer
 ===precedes===
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
 ===preceding===
@@ -15938,7 +15868,7 @@ Index: EN EN->AR
 ===prefect===
   عامل (ʕāmil) {m}, عوامل (ʕawāmil) {p}عامل{m}عمّال{p} :: administrative officer, prefect, district president
 ===prefer===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to give precedence, to prefer
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to give precedence, to prefer
 ===prefix===
   ب (bi-) :: A prefix meaning at, by, in, or with.
   ل (li-) :: A prefix meaning to, for, belonging to.
@@ -15955,8 +15885,8 @@ Index: EN EN->AR
   هم {{ar-verb (old)|I|هم|hámma}}{{ar-verb (old)|IV|أهمّ|’áhamma}}{{ar-verb (old)|VIII|اهتم|ihtámma}} :: to preoccupy, to concern, to affect
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to occupy, to busy, to preoccupy
 ===prepare===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to prepare to, to be about to
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to prepare to, to be about to
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
 ===prescribe===
   كتب {{ar-verb|form=I|head=كَتَبَ|tr=kátaba|impf=يكتب|impfhead=يَكْتُبُ|impftr=yaktúbu}} :: to prescribe
   سن {{ar-verb (old)|I|سن|sánna}}{{ar-verb (old)|II|سن|sánna}}{{ar-verb (old)|IV|اسن|’ásanna}}{{ar-verb (old)|VIII|استن|istánna}} :: to prescribe, to introduce, to enact
@@ -15975,7 +15905,7 @@ Index: EN EN->AR
   صبر {{ar-verb (old)|I|صبر|ṣábara}}{{ar-verb (old)|II|صبر|ṣábbara}}{{ar-verb (old)|III|صابر|ṣābara}}{{ar-verb (old)|V|تصبر|taṣábbara}}{{ar-verb (old)|VIII|اصطبر|iṣṭábara}} :: to preserve, to can
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to preserve, to maintain, to keep up, to uphold, to sustain
 ===preside===
-  رأس (rá’asa) :: to be at the head, to be chairman, to chair, to be in charge, to preside
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to be at the head, to be chairman, to chair, to be in charge, to preside
 ===president===
   عامل (ʕāmil) {m}, عوامل (ʕawāmil) {p}عامل{m}عمّال{p} :: administrative officer, prefect, district president
   رئيس {{ar-noun|tr=ra’īs|g=m|pl=رؤساء|pltr=ru’asā’}} :: president
@@ -16028,7 +15958,7 @@ Index: EN EN->AR
 ===procedure===
   سنة {{ar-noun|tr=súnna|g=f|pl=سنن|pltr=súnan}} :: {Islam} habitual practice, customary procedure, norm
     سنة النبي (súnnat an-nabiy) :: the Sunna of the Prophet (his sayings and deeds)
-  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, method, procedure, course of action
+  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, path, method, procedure, course of action
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: procedure, policy, manner
 ===proceed===
   صدر {{ar-verb|form=1|tr=ṣádara}} :: to proceed, to emanate, to arise, to originate, to stem
@@ -16047,9 +15977,8 @@ Index: EN EN->AR
   اعراب (iʕrāb) {m}اعراب{p} :: manifestation, declaration, proclamation, pronouncement, utterance
 ===produce===
   ولد {{ar-verb|form=I|tr=wálada|impf=يلد}} :: to produce, to bring forth
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to present, to produce, to exhibit, to display
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to present, to produce, to exhibit, to display
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to make visible, to make apparent, to show, to demonstrate, to present, to produce
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to produce, to set off, to trigger, to induce
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to produce, to bring on, to yield
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to produce, to manufacture, to fabricate
 ===producer===
@@ -16058,13 +15987,13 @@ Index: EN EN->AR
   بان بَان (bān) (collective) {m}, بَانَة (bāna) (singulative) {f} :: ben tree, horseradish tree (the Moringa oleifera of Arabia and India, which produces oil of ben)
 ===profession===
   سلك (silk) {m}, اسلاك (aslāk) {p} :: organization, body, profession, corps, cadre
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to take up (a profession, etc.), to start
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to take up (a profession, etc.), to start
 ===professor===
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: (title of professors and spiritual leaders) sheik, Dr., professor
 ===professors===
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: (title of professors and spiritual leaders) sheik, Dr., professor
 ===proffer===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
 ===proficient===
   مهر (verb) :: to be proficient
 ===profound===
@@ -16082,7 +16011,7 @@ Index: EN EN->AR
 ===promise===
   خون {m} (khawn) (noun) :: failing, breaking (a promise)
 ===promontory===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: promontory, headland, cape
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: promontory, headland, cape
 ===promote===
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to make sweat, to promote perspiration
 ===promulgated===
@@ -16090,9 +16019,9 @@ Index: EN EN->AR
 ===prong===
   سن (sann) {m}سِنّ{f}اسنان{p}اسنة{p}اسن{p} :: cog, sprocket, prong
 ===pronoun===
-  أنا أنَا (’ána)ـنِيـِي :: I (subject pronoun).
-  أنا أنَا (’ána)ـنِيـِي :: me (enclitic object pronoun).
-  أنا أنَا (’ána)ـنِيـِي :: my (enclitic possessive pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: I (subject pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: me (enclitic object pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: my (enclitic possessive pronoun).
   (Egyptian Arabic) انتوا {p} (íntu) (pronoun) :: you (subject pronoun)
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
   ـكَ {m} (-ka) (suffix) :: you, your (bound object pronoun)
@@ -16122,7 +16051,7 @@ Index: EN EN->AR
 ===property===
   ملك (mulk) {m}ملك{m}املاك{p}ملك{m}ملوك{p}املاك{p} :: property, possession, goods and chattels, fortune, wealth
   ملك (mulk) {m}ملك{m}املاك{p}ملك{m}ملوك{p}املاك{p} :: real estate , landed property
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: inalienable property
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: inalienable property
   مال (māl) {m}, اموال (’amwāl) {p} :: property, possessions, chattels, goods
   حق (ħaqq) {m}, حقوق (ħuqūq) {p}حق{m} :: rightful possession, property
 ===prophet===
@@ -16161,14 +16090,14 @@ Index: EN EN->AR
 ===proverb===
   مثل (miθl) {m}, امثال (’amθāl) {p}مَثَلٌ{m}امثال{p}مثل{p} :: proverb, adage
 ===provide===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
   قبر {{ar-verb (old)|I|قَبَرَ|qábara}}{{ar-verb (old)|IV|اقبر|’áqbara}} :: to provide for burial, to have buried
   وتر {{ar-verb (old)|I|وتر|wátara}}{{ar-verb (old)|II|وتر|wáttara}}{{ar-verb (old)|III|واتر|wātara}}{{ar-verb (old)|IV|اوتر|’autara}}{{ar-verb (old)|V|توتر|tawáttara}}{{ar-verb (old)|VI|تواتر|tawātara}} :: to string (as a bow), to provide with a string
   وتر {{ar-verb (old)|I|وتر|wátara}}{{ar-verb (old)|II|وتر|wáttara}}{{ar-verb (old)|III|واتر|wātara}}{{ar-verb (old)|IV|اوتر|’autara}}{{ar-verb (old)|V|توتر|tawáttara}}{{ar-verb (old)|VI|تواتر|tawātara}} :: to string (as a bow), to provide with a string
 ===province===
   زاهد {m} (zāhid) (noun), زهاد (zuhhād) {p} :: {{context|Sufism}} A popular title bestowed on disciples of Mystic Sufi orders upon their initiation. After initiation the title took the place of the new Spiritual Masters’ given names. A famous bearer of the title Zahed was Sheikh Zahed Gilani of Lahijan in Gilan province of northern Iran.
 ===provision===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
 ===provisions===
   مهمة (mahámma) {f}, مهام (mahámm) {p}مهمة{f}مهمات{p} :: {plural} stock, stores, supplies, provisions
 ===prune===
@@ -16197,6 +16126,8 @@ Index: EN EN->AR
 ===pulp===
   لُب (lubb) (noun) :: pulp, backlog, marrow, core, heart
   رب (rubb) {m}, رباب (ribāb) {p}, ربوب (rubūb) {p} :: mash, pulp
+===pulverized===
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: kohl, stibnite (pulverized antimony)
 ===punctuation===
   ، :: The Arabic comma punctuation mark.
     واحد، اثنان، ثلاثة، اربعة، خمسة، ستة، سبعين :: --
@@ -16345,14 +16276,12 @@ Index: EN EN->AR
 ===rainbow===
   قوس قزح (qaus qúzaħa) {m}, اقواس قزح (’aqwās qúzaħa) {p} :: rainbow
 ===raise===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to erect, to raise
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to erect, to raise
   رب {{ar-verb (old)|I|رب|rábba}}{{ar-verb (old)|II|ربب|rábbaba}} :: to be raise, to bring up, to rear
   شوال {{ar-noun|head=شَوّالٌ|tr=šáwwal|g=m}} :: Shawwal, the tenth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Shawwal means raised in Arabic, because the she-camels begin to raise their tails during this time after giving birth.
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to raise to eminence, to distinguish, to honor
 ===raised===
   شوال {{ar-noun|head=شَوّالٌ|tr=šáwwal|g=m}} :: Shawwal, the tenth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Shawwal means raised in Arabic, because the she-camels begin to raise their tails during this time after giving birth.
-===raisin===
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
 ===Rajab===
   رجب {{ar-noun|head=رَجَبٌ|tr=rájab|g=m}} :: Rajab, the seventh of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Rajab means "respect" or "honor" in Arabic, and fighting is forbidden.
 ===Ramadan===
@@ -16370,7 +16299,7 @@ Index: EN EN->AR
 ===rapier===
   سيف {{ar-noun|head=سَيْف|tr=sayf|g=m|pl=سيوف|pltr=suyūf|pl2=اسياف|pl2tr=’asyāf|pl3=اسيف|pl3tr=’ásyuf}} :: sword, sabre, foil, rapier, scimitar
 ===rate===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: taxes, duties, charges, fees, rates
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عوائد|pltr=ʿawā́ʾid}} :: (in plural) taxes, duties, charges, fees, rates
   رسم {{ar-noun|tr=rasm|g=m|pl=رسوم|pltr=rusūm|pl2=رسومات|pl2tr=rusūmāt}} :: rate
 ===rave===
   كلب {{ar-verb (old)|I|كلب|káliba}}{{ar-verb (old)|VI|تكالب|takālaba}}{{ar-verb (old)|X|استكلب|istáklaba}} :: to rage, to rave, to storm
@@ -16382,14 +16311,14 @@ Index: EN EN->AR
 ===razor===
   شفرة (šáfra) {f}, شفرات (šafarāt) {p}, شفار (šifār) {p} :: razor blade
 ===reach===
-  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\8eÙ\85Ù\8e|qádama}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}}{{ar-verb (old)|I|Ù\82Ù\8eدÙ\8fÙ\85Ù\8e|qáduma}}{{ar-verb (old)|II|Ù\82Ù\8eدÙ\91Ù\85Ù\8e|qáddama}} :: to arrive, to reach
+  Ù\82دÙ\85 {{ar-verb (old)|I|Ù\82Ù\8eدÙ\90Ù\85Ù\8e|qádima}} :: to arrive, to reach
 ===reaching===
   بالغ (bāliğ) :: {{context|superlative form}} extensive, far-reaching
 ===read===
   (Egyptian Arabic) ده {m} (da) (determiner), f: دي, pl: دول :: this
     قالت الكتاب ده :: I read this book.
 ===ready===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to prepare, to get ready, to make ready
 ===real===
   ملك (mulk) {m}ملك{m}املاك{p}ملك{m}ملوك{p}املاك{p} :: real estate , landed property
   ريال {{ar-noun|tr=riyāl|g=m|pl=ريالات|pltr=riyalāt}} :: real (the official currency of Brazil).
@@ -16445,17 +16374,17 @@ Index: EN EN->AR
 ===recess===
   فرصة فُرْصَة (fúrṣa) {f} :: recess
 ===recite===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to recite
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to recite
 ===reciter===
   فقيه (faqīh) {m}, فقهاء (fuqahā’) {p} :: (popular) reciter of the Qur’an.
 ===reckon===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to guess, to reckon
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to guess, to reckon
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to take into account, to take into consideration, to reckon with
 ===reckoning===
   حسب (ħasb) {m}حسب{m}احساب{p} :: reckoning, calculation, computing
 ===recognize===
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to recognize, to identify
+  يعرفه (yaʕrífuhu) :: he knows it/him, he recognizes it/him. (from the verb عرف, ʕárafa)
 ===recoil===
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to break loose, to recoil, to slip away, to free oneself, to get free, to break away, to free
 ===recollection===
@@ -16464,7 +16393,6 @@ Index: EN EN->AR
   جزاء (jazā’) :: reward, recompense, retribution
 ===reconciliation===
   اسلام إسلام (’islām) {m} :: submission, resignation, reconciliation
-  إسلام {{ar-noun|tr=’islām|g=m}} :: submission, resignation, reconciliation
 ===record===
   {{ar-noun|tr=kitāb|g=m|pl=كتب|pltr=kútub}}{{ar-noun|head=كُتّاب|tr=kuttāb|g=m|pl=كتاتيب|pltr=katātīb}}كتاب {p} (kuttāb) (noun form) :: record, document, deed, contract
   كتب {{ar-verb|form=I|head=كَتَبَ|tr=kátaba|impf=يكتب|impfhead=يَكْتُبُ|impftr=yaktúbu}} :: to write, to pen, to write down, to inscribe, to enter, to record, to register
@@ -16489,7 +16417,7 @@ Index: EN EN->AR
   ريش (rīš) {m} (collective), ريشة (rīša) {f} (singulative), رياش (riyāš) {p}, ارياش (aryāš) {p}, ريشات (rišāt) {p} :: {music} plectrum, reed
   قلم {{ar-noun|head=قَلَم|tr=qálam|g=m}}, أقْلاَم (’aqlām) {p} :: pen, reed pen
 ===refer===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to refer.
 ===refers===
   منهج (minhaj) :: {{context|Islamic}} In Islamic context, it refers to the manner of implementation of Islam's rules and beliefs.
@@ -16517,7 +16445,7 @@ Index: EN EN->AR
   نظر {{ar-verb|form=I|head=نَظَرَ|tr=náẓara|impf=ينظر|impfhead=يَنْظُرُ|impftr=yanẓuru}} :: to see, to view, to eye, to regard
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: attention, heed, regard, notice, observation, respect, consideration, care
   أمل {{ar-verb|tr=ʾámala|head=أَمَلَ|form=I|impf=يأمل|impfhead=يَأْمَلُ|impftr=yaʾmalu}}{{ar-verb|tr=ʾámmala|form=II|impf=يؤمل|impftr=yuʾammilu}}{{ar-verb (old)|V|تأمل|ta’ámmala}} :: to contemplate, to regard
-  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\8eبÙ\8e|Hasaba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8eبÙ\8f\8aحسب}}{{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}}{{ar-verb (old)|III|حاسب|ħÄ\81saba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħÄ\81saba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to regard, to consider, to deem
+  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}} :: to regard, to consider, to deem
   حسب (ħasb) {m}حسب{m}احساب{p} :: high regard, esteem
   خون {{ar-verb (old)|II|خون|kháwwana}} :: to regard as faithless, to regard as disloyal, to regard as false, to regard as treacherous, to regard as traitorous, to regard as perfidious, to regard as dishonest, to regard as unreliable
 ===region===
@@ -16564,11 +16492,11 @@ Index: EN EN->AR
   اسلام إسلام (’islām) {m} :: religious submission to God, piety, Islam
     الإسلام (al-‘islām) — Islam :: --
   مجاهد {{ar-noun|tr=mujāhid|g=m|pl=مجاهدون|pltr=mujahidūn|pl2=مجاهدين|pl2tr=mujahidīn}} :: a mujahid, a jihadist, a combatant motivated by a Muslim religious cause
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
-  الإسلام (al-’islām) {m} :: Islam, the religious system advocated by Muhammad, Mohammedanism
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: Islam, the religious system advocated by Muhammad, Mohammedanism
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: religious brotherhood, dervish order
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: {Islam} a waqf, religious endowment, endowment fund
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: {Islam} a waqf, religious endowment, endowment fund
   مشهد (mášhad) {m}, مشاهد (mašāhid) {p} :: tomb of a saint, religious shrine
 ===remain===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to remain undaunted, remain calm, be composed
@@ -16576,6 +16504,8 @@ Index: EN EN->AR
   رصيد (raṣīd) {m}, ارصدة (’árṣida) {p} :: remainder to be paid at a later date
 ===remaining===
   مع السلامة (maʕ as-salāma) :: goodbye, farewell (literally, "with safety") (said by the person remaining behind to the one who is leaving)
+===remark===
+  كلامٌ (kalām) {m} :: statement, remark
 ===remarkable===
   بارز (bāriz) :: remarkable
 ===remember===
@@ -16593,9 +16523,8 @@ Index: EN EN->AR
 ===remit===
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to remit, to send, to transmit
 ===removal===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: discharge, dismissal, removal
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: discharge, dismissal, removal
 ===remove===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
   اصل {{ar-verb (old)|I|أصل|’áṣula}}{{ar-verb (old)|II|أصل|’áṣṣala}}{{ar-verb (old)|V|تأصل|ta’áṣṣala}}{{ar-verb (old)|X|استأصل|istá’ṣala}} :: to remove (e.g., surgically), to eradicate
   زحل {{ar-verb (old)|I|زحل|záHala}}{{ar-verb (old)|II|زحّل|záHHala}} :: to remove
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to remove, to expel, to reject, to disown, to repudiate
@@ -16661,7 +16590,6 @@ Index: EN EN->AR
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to request, to apply, to seek, to try to obtain
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to invite, to request, to beseech
   أمل {{ar-verb|tr=ʾámala|head=أَمَلَ|form=I|impf=يأمل|impfhead=يَأْمَلُ|impftr=yaʾmalu}}{{ar-verb|tr=ʾámmala|form=II|impf=يؤمل|impftr=yuʾammilu}}{{ar-verb (old)|V|تأمل|ta’ámmala}} :: to hope for, to look forward to, to request, to wish
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to ask to stop, to bring to a stop, to request to stop
 ===require===
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to order, to demand, to exact, to require
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to require, to demand
@@ -16685,15 +16613,16 @@ Index: EN EN->AR
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to resemble, to look like, to be similar
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to resemble each other, to be alike, to go together, to agree, to match
   جنس {{ar-verb (old)|II|جنس|jánnasa}}{{ar-verb (old)|III|جانس|jānasa}}{{ar-verb (old)|V|تجنس|tajánnasa}}{{ar-verb (old)|VI|تجانس|tajānasa}} :: to be like, to resemble
+===resentment===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to bear a grudge, to feel resentment
 ===reserve===
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to reserve
 ===resignation===
   اسلام إسلام (’islām) {m} :: submission, resignation, reconciliation
-  إسلام {{ar-noun|tr=’islām|g=m}} :: submission, resignation, reconciliation
 ===resin===
   صرع (ṣurʕ) {m} :: resin
 ===resolution===
-  بت (batt) :: settlement, decision, resolution
+  بت {{ar-noun|tr=batt}} :: settlement, decision, resolution
 ===respect===
   من {{ar-prep|tr=min|head=مِن}} :: in relation to, with respect to
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: attention, heed, regard, notice, observation, respect, consideration, care
@@ -16703,12 +16632,8 @@ Index: EN EN->AR
   الله اعلم (Alláhu áʕlam) :: “God only knows” (literally, “God knows best”...a traditional Arabic expression used when responding to a question to which one does not know the answer).
 ===responsibility===
   مسؤولية مسؤوليّة (mas’ūlíyya) {f} :: responsibility
-===responsible===
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to hold responsible, to make answerable
-===rest===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to depend on, to rest on, to be based on
 ===resting===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: pausing, resting
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: pausing, resting
 ===restive===
   شمس {{ar-verb (old)|I|شمس|šámasa}}{{ar-verb (old)|II|شمس|šámmasa}} :: to be headstrong, to be restive
 ===restrain===
@@ -16716,7 +16641,6 @@ Index: EN EN->AR
 ===result===
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to arise, to result
 ===retain===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to try to retain
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to retain, to uphold
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to retain in memory, to remember, to know by heart
 ===retire===
@@ -16794,7 +16718,11 @@ Index: EN EN->AR
     الحقوق (al-ħuqūq) :: law, jurisprudence
 ===rim===
   حرف حَرف (ħarf) {m}, حِرَف (ħíraf) {p} :: border, brink, edge, rim
-  شفة (šáfa) {f}, شفاه (šifāh) {p}, شفوات (šafawāt) {p} :: rim, edge
+  شفة {{ar-noun|tr=šáfa|g=f|pl=شفاه|pltr=šifāh|pl2=شفوات|pl2tr=šafawāt}} :: rim, edge
+===ripe===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ripen, to become ripe
+===ripen===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ripen, to become ripe
 ===Ripened===
   رطب (rutb) (collective) :: Ripened dates, used in traditions relating to Muhammad.
 ===ripple===
@@ -16803,9 +16731,13 @@ Index: EN EN->AR
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to rise, harden, firm up
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to rise, to tower up
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to rise, to ascend
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to leaven, to cause to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment, to rise (of dough)
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to ferment, to rise (of dough)
 ===risk===
   قمر {{ar-verb (old)|I|قَمَرَ|qámara}}{{ar-verb (old)|I|قَمِرَ|qámira}}{{ar-verb (old)|II|قمّر|qámmara}}{{ar-verb (old)|III|قامر|qāmara}}{{ar-verb (old)|IV|اقمر|’áqmara}}{{ar-verb (old)|VI|تقامر|taqāmara}} :: to risk (something)
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to risk one’s life, to defy death
 ===rite===
   دين {m} (diin) (noun)دين {m} (diin) (noun)أديان{p} :: religion, creed, credo, faith, conviction, belief, tenet, rite
   مدرسة {{ar-noun|g=f|head=مَدْرَسَة|tr=madrasa|pl=مدارس|plhead=مَدَارِس|pltr=madāris}} :: rite
@@ -16852,7 +16784,7 @@ Index: EN EN->AR
 ===rooms===
   مخازن مَخَازن (maχáːzin) (plural of مَخْزَن) :: stockrooms, storage rooms
 ===rooster===
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to crow (of a rooster)
+  أذن {{ar-verb|form=II|tr=ʾáđđana|I=ء|impftr=yuʾađđinu|impf=يؤذن}} :: to crow (of a rooster)
 ===root===
   نجار (najjār) {m}, نجارون (najjarūn) {p}نجار{m} :: origin, descent, stock, root
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to take root
@@ -16875,6 +16807,8 @@ Index: EN EN->AR
   ملك (mulk) {m}ملك{m}املاك{p}ملك{m}ملوك{p}املاك{p} :: sovereignty, kingship, royalty
 ===rub===
   دم {{ar-verb (old)|I|دم|dámma}}{{ar-verb (old)|II|دمم|dámmama}} :: to rub, to anoint
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
   شمع {{ar-verb (old)|II|شمّع|šámmaʿa}} :: to wax, to rub with wax
 ===ruffian===
   بربري بَرْبَريّ (bárbari) {m} :: ruffian
@@ -16888,7 +16822,7 @@ Index: EN EN->AR
 ===rumor===
   خبر (xábar) {m}, اخبار (’axbār) {p} :: rumor, story
 ===run===
-  رأس (rá’asa) :: to head, to lead, to direct, to manage, to run
+  رأس {{ar-verb|tr=ráʾasa|form=1|II=ء|impf=يرأس|impftr=yarʾasu}} :: to head, to lead, to direct, to manage, to run
   ابد {{ar-verb (old)|I|ابد|’ábada}}{{ar-verb (old)|II|ابد|’ábbada}}{{ar-verb (old)|V|تأبد|ta’ábbada}} :: to roam in the wilderness, to run wild
   شغل {{ar-verb (old)|I|شغل|šáğala}}{{ar-verb (old)|II|شغل|šáğğala}}{{ar-verb (old)|III|شاغل|šāğala}}{{ar-verb (old)|IV|اشغل|’ášğala}}{{ar-verb (old)|VI|تشاغل|tašāğala}}{{ar-verb (old)|VII|انشغل|inšáğala}}{{ar-verb (old)|VIII|اشتغل|ištáğala}} :: to operate, to run
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to flee, to run away, to turn tail, to scamper, to abscond, to get away, to escape
@@ -17044,8 +16978,9 @@ Index: EN EN->AR
   ﷺ <big>ﷺ</big> (ṣállā Allāhu ʕaláyhi wa sállam) :: {{context|Islam|eulogy}} "peace be upon him" (following mention of the Prophet Muhammad); abbreviated SAW or, in English, PBUH.
 ===say===
   كلم {{ar-verb (old)|II|كلم|kállama}}{{ar-verb (old)|III|كالم|kālama}}{{ar-verb (old)|V|تكلم|takállama}} :: to utter, to express, to voice, to say
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to take leave, to say goodbye
   سمى {{ar-verb (old)|II|سمى|sámmā}}{{ar-verb (old)|IV|اسمى|’ásmā}}{{ar-verb (old)|V|تسمى|tasámmā}} :: to say بسم الله (in the name of God)
+===saying===
+  كلامٌ (kalām) {m} :: words, word, saying
 ===sayings===
   سنة {{ar-noun|tr=súnna|g=f|pl=سنن|pltr=súnan}} :: {Islam} habitual practice, customary procedure, norm
     سنة النبي (súnnat an-nabiy) :: the Sunna of the Prophet (his sayings and deeds)
@@ -17074,6 +17009,8 @@ Index: EN EN->AR
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to scent with musk
 ===schedule===
   وقت {{ar-verb|form=2|head=وَقّتَ|tr=wáqqata}} :: to set a time, to appoint a time, to fix a time, to schedule.
+===scheme===
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to conspire, to plot, to collude, to scheme
 ===scholar===
   طالب {{ar-noun|tr=ṭā́lib|g=m|pl=طلاب|pltr=ṭullā́b|pl2=طلبة|pl2tr=ṭálaba}} :: student, scholar
   عالم {{ar-noun|head=عالِم|tr=ʕālim|g=m|pl=عالمون|pltr=ʕālimūn|pl2=علماء|pl2tr=ʕulamā}} :: scholar
@@ -17153,7 +17090,7 @@ Index: EN EN->AR
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to explore, to search
 ===season===
   موسم مَوْسِم (mawsim) {m}, مواسم (mawāsim) {p} :: season
-  فَصْل (faSl) (noun), فُصُول (fuSuul) {p} :: season
+  فصل {{ar-noun|g=m|head=فَصْل|tr=faṣl|pl=فصول|plhead=فُصُول|pltr=fuṣūl}} :: season
   موسم مَوْسِم (mawsim) {m}, مواسم (mawāsim) {p} :: festive season (especially, the hadj festival)
 ===seat===
   كرسي كُرْسِيّ (kursiyy) {m}, كراسي (karāsī) {p} :: chair, seat
@@ -17174,7 +17111,6 @@ Index: EN EN->AR
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to keep secret, to hide, to conceal, to disguise
 ===secretly===
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to eavesdrop, to listen secretly
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to eavesdrop, to listen secretly
 ===sect===
   مذهب (máðhaba) :: to cause to split into sects
 ===section===
@@ -17194,7 +17130,7 @@ Index: EN EN->AR
   ام {{ar-verb (old)|I|أمّ|’ámma|ام}}{{ar-verb (old)|II|أمّم|’ámmama|امم}}{{ar-verb (old)|V|تَأمّمَ|ta’ámmama|تأمم}}{{ar-verb (old)|VIII|اِئْتَمّ|i’támma|ائتم}} :: to go to see
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to set out, to get underway, to go see
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to drop in on, to come to see, to call on
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to drop in on, to come to see, to call on
   محمد محمّدٌ (muħámmad) {m} :: the prophet Muhammad (see محمد بن عبد الله).
   (Egyptian Arabic) ع (ʕa) (preposition) :: see على
   ﻫ (initial form of ه) (hā’) :: Normally the twenty-sixth letter of the Arabic alphabet, when this letter is used in this initial form as an enumerator, it is interpreted as the fifth letter in traditional abjad order, equivalent to our Roman numeral V or Ⅴ (see abjad numerals). It is preceded by د and followed by و.
@@ -17208,7 +17144,6 @@ Index: EN EN->AR
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to seek help, to seek assistance
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to request, to apply, to seek, to try to obtain
   بحث {{ar-verb (old)|I|بحث|báħaθa}}{{ar-verb (old)|III|باحث|bāħaθa}}{{ar-verb (old)|VI|تباحث|tabāħaθa}} :: to look for, to search, to seek
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to seek to know, to try to find out
   نور {{ar-verb (old)|II|نور|náwwara}}{{ar-verb (old)|IV|انار|’ánara}}{{ar-verb (old)|IV|انور|’ánwara}}{{ar-verb (old)|V|تنور|tanáwwara}}{{ar-verb (old)|X|استنور|istánwara}} :: to seek enlightenment, to seek insight
   نور {{ar-verb (old)|II|نور|náwwara}}{{ar-verb (old)|IV|انار|’ánara}}{{ar-verb (old)|IV|انور|’ánwara}}{{ar-verb (old)|V|تنور|tanáwwara}}{{ar-verb (old)|X|استنور|istánwara}} :: to seek an explanation
   امر {{ar-verb (old)|I|أمر|’ámara}}{{ar-verb (old)|II|أمر|’ámmara}}{{ar-verb (old)|III|آمر|’āmara}}{{ar-verb (old)|V|تأمر|ta’ámmara}}{{ar-verb (old)|VI|تآمر|ta’āmara}}{{ar-verb (old)|VIII|ائتمر|i’támara}} :: to ask advice of, to seek the opinion of, to consult
@@ -17222,9 +17157,8 @@ Index: EN EN->AR
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to seize, grasp, clutch, grip, hold
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to grab, seize
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to take in possession, to take over, to acquire, to seize
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to seize
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to seize, to come over
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to strike, to seize, to come over
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to befall, to seize
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to possess, to seize
 ===seized===
   كلب {{ar-verb (old)|I|كلب|káliba}}{{ar-verb (old)|VI|تكالب|takālaba}}{{ar-verb (old)|X|استكلب|istáklaba}} :: to be seized by hydrophobia, to become rabid
 ===seizing===
@@ -17245,7 +17179,7 @@ Index: EN EN->AR
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: senator
 ===send===
   صدر {{ar-verb|form=2|tr=ṣáddara|impf=يصدر|impftr=yuṣaddiru}} :: to send, to send off, to dispatch, to forward
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to let precede, to make precede, to send ahead, to dispatch
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to send, to dispatch
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to send out, to dispatch
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to remit, to send, to transmit
@@ -17262,11 +17196,13 @@ Index: EN EN->AR
   شعر {{ar-verb (old)|I|شعر|šáʕara}}{{ar-verb (old)|IV|اشعر|’ášʕara}}{{ar-verb (old)|X|استشعر|istášʕara}} :: to perceive, to feel, to sense, to notice, to realize
   مصر (miSr, maSr) {f} :: Egypt or Masr (in this sense, a feminine noun)
   مصر (miSr, maSr) {f} :: Cairo (colloquial, in this sense, a feminine noun)
-  سمع (sámʕ) {m}, اسماع (’asmāʕ) {p} :: hearing, sense of hearing
+  سمع {{ar-noun|tr=samʿ|g=m|pl=اسماع|pltr=ʾasmāʿ}} :: hearing, sense of hearing
 ===senses===
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to be in one’s senses
 ===sensitive===
   هدف {{ar-verb (old)|I|هدف|hádafa}}{{ar-verb (old)|IV|اهدف|’áhdafa}}{{ar-verb (old)|V|تهدف|taháddafa}}{{ar-verb (old)|X|استهدف|istáhdafa}} :: to be susceptible, to be sensitive
+===sentence===
+  كلامٌ (kalām) {m} :: sentence, clause, phrase
 ===sentiment===
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to give to understand, to give expression to a sentiment.
   اعراب (iʕrāb) {m}اعراب{p} :: expression (of a sentiment)
@@ -17295,12 +17231,10 @@ Index: EN EN->AR
 ===session===
   مجلس {{ar-noun|g=m|head=مَجْلِس|tr=majlis|pl=مجالس|plhead=مَجالِس}} :: session, sitting
 ===set===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to produce, to set off, to trigger, to induce
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to make stand, to set up
   منظر (mánẓar) {m}, مناظر (mánāẓir) {p} :: stage setting, set, scenery
   سلك {{ar-verb (old)|I|سلك|sálaka}}{{ar-verb (old)|II|سلك|sállaka}}{{ar-verb (old)|IV|اسلك|’áslaka}} :: to set foot, to enter
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to set forth beforehand, to place at the front, to place at the head
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to provide, to set aside, to earmark, to make provision
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to set out, to get underway, to go see
   وقت {{ar-verb|form=2|head=وَقّتَ|tr=wáqqata}} :: to set a time, to appoint a time, to fix a time, to schedule.
   وقت {{ar-verb|form=2|head=وَقّتَ|tr=wáqqata}} :: to set a time-limit.
@@ -17309,11 +17243,9 @@ Index: EN EN->AR
   افنان (afnán) (noun) :: {literally} "Branches with leaves". By extension, a specific place in the heavens, a peaceful setting which is covered in shade and full of fruits.
 ===settle===
   مصر {{ar-verb (old)|II|مصر|máSSara}}{{ar-verb (old)|V|تمصر|tamáSSara}} :: to found, to build, to settle, to civilize, to colonize
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle and account, to get even
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to settle a mutual account
   بت {{ar-verb (old)|I|بت|bátta}} :: to fix, to settle, to determine, to decide
 ===settlement===
-  بت (batt) :: settlement, decision, resolution
+  بت {{ar-noun|tr=batt}} :: settlement, decision, resolution
   مهر مَهَرَ (mahara) :: to make a settlement on a wife
 ===seven===
   ٧ (sáb‘a) :: 7 (seven)
@@ -17352,7 +17284,6 @@ Index: EN EN->AR
 ===shackling===
   صبر (ṣabr) {m}صبر(ṣábir, ṣabr){m} :: fettering, shackling
 ===shade===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to shade, to blend
   افنان (afnán) (noun) :: {literally} "Branches with leaves". By extension, a specific place in the heavens, a peaceful setting which is covered in shade and full of fruits.
 ===shah===
   شاه {{ar-noun|tr=šāh|g=m}} :: shah
@@ -17439,7 +17370,6 @@ Index: EN EN->AR
   من {{ar-verb (old)|I|مَنّ|mánna}} :: to show, to grant, to confer
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to make visible, to make apparent, to show, to demonstrate, to present, to produce
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to show, to demonstrate, to expose
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to make enter, to bring in, to let in, to admit, to show in
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to appear, to be revealed, to show oneself
   نور {{ar-verb (old)|II|نور|náwwara}}{{ar-verb (old)|IV|انار|’ánara}}{{ar-verb (old)|IV|انور|’ánwara}}{{ar-verb (old)|V|تنور|tanáwwara}}{{ar-verb (old)|X|استنور|istánwara}} :: to come to light, to appear, to show, to be uncovered, to be disclosed, to be revealed
 ===shower===
@@ -17464,11 +17394,11 @@ Index: EN EN->AR
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to shy, to bolt, to stampede
   نفر {p} (nafr, núffar) (adjective form) :: shy, fearful, timid ({plural of|نافر})
 ===sibling===
-  أخت (’ukht) {f}, أخوات (’akhawāt) {p} :: sibling
+  أخت {{ar-noun|tr=ʾuxt|g=f|pl=أخوات|pltr=ʾaxawāt}} :: sibling
 ===side===
   دف {m} (daff) (noun), plural: دفوف, dufuufدف {m} (duff, daff) (noun), plural: دفوف, dufuuf :: side, lateral surface
 ===sight===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to escape, to slip, to lose sight of, to forget
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to escape, to slip, to lose sight of, to forget
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: sight
   منظر (mánẓar) {m}, مناظر (mánāẓir) {p} :: sight
   مشهد (mášhad) {m}, مشاهد (mašāhid) {p} :: view, aspect, spectacle, sight, scenery
@@ -17555,7 +17485,7 @@ Index: EN EN->AR
     شِسْمِكْ ؟ :: šismik
     What's your name? :: --
 ===sister===
-  أخت (’ukht) {f}, أخوات (’akhawāt) {p} :: sister
+  أخت {{ar-noun|tr=ʾuxt|g=f|pl=أخوات|pltr=ʾaxawāt}} :: sister
   (North Levantine Arabic) كس {m} (kiss) (noun) :: {vulgar} cunt
     كس اختك (kiss íkhtak) :: your sister’s pussy (general term of discontentment, like English fuck!)
 ===site===
@@ -17593,7 +17523,7 @@ Index: EN EN->AR
 ===skilled===
   مهر (verb) :: to be skilled
 ===skip===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to ignore, to skip, to omit
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to ignore, to skip, to omit
 ===skull===
   جمجمة (jumjúma) {f}, جماجم (jamājim) {p} :: {anatomy} skull, cranium
   (Egyptian Arabic) جمجمة {f} (gumguma) (noun), جماجم (gamaagim) {p} :: {anatomy} skull
@@ -17608,22 +17538,22 @@ Index: EN EN->AR
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to kill, to slaughter, to butcher, to massacre, to murder
   ذبح (ðabħ) {m}ذبح{m} :: slaughter, slaughtering
 ===slaughterer===
-  قصاب قَصَّاب (qaṣṣāb) {m} :: slaughterer
+  قصاب {{ar-noun|tr=qaṣṣāb|head=قَصَّاب|g=m}} :: slaughterer
 ===slaughtering===
   ذبح (ðabħ) {m}ذبح{m} :: slaughter, slaughtering
 ===slave===
   مملوك (mamlúk) {m}, مماليك (mamālik) {p} :: white slave, mameluke
 ===slay===
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to murder, to slay
-  قتل {{ar-verb (old)|I|قتل|qátala}}{{ar-verb (old)|II|قتل|qáttala}}{{ar-verb (old)|III|قاتل|qātala}}{{ar-verb (old)|VI|تقاتل|taqātala}}{{ar-verb (old)|VIII|اقتتل|iqtátala}}{{ar-verb (old)|X|استقتل|istáqtala}} :: to kill, to slay, to murder, to assassinate
+  قتل {{ar-verb|form=1|tr=qátala|impf=يقتل|impftr=}} :: to kill, to slay, to murder, to assassinate
 ===sleep===
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to sleep
   نام {{ar-verb|form=I|head=نَامَ|tr=nāma|impfhead=يَنامُ|impf=ينام|impftr=yanāmu|II=و}} :: to go to sleep
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to consummate the marriage, to cohabit, to sleep with
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to consummate the marriage, to cohabit, to sleep with
   نوم {{ar-verb|form=2|head=نَوَّمَ|tr=náwwama|II=و}} :: to lull to sleep, to put to bed, to put to sleep, to make lie down
   نوم {{ar-noun|g=m|tr=nawm|head=نَوْم}} :: sleep, slumber
 ===slip===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to escape, to slip, to lose sight of, to forget
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to escape, to slip, to lose sight of, to forget
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to break loose, to recoil, to slip away, to free oneself, to get free, to break away, to free
 ===slitting===
   ذبح {{ar-verb (old)|I|ذبح|ðábaħa}}{{ar-verb (old)|II|ذبّح|ðábbaħa}} :: to kill by slitting the throat
@@ -17688,6 +17618,8 @@ Index: EN EN->AR
 ===sofa===
   كرسي كُرْسِيّ (kursiyy) {m}, كراسي (karāsī) {p} :: sofa, couch
   تخت (taxt) {m}, تخوت (tuxūt) {p} :: sofa
+===Sofia===
+  صوفیا {ar-proper noun} :: Sofia
 ===soft===
   منخفض (munkháfiḍ) :: soft, low, subdued, muffled
 ===solar===
@@ -17703,7 +17635,7 @@ Index: EN EN->AR
 ===someone===
   برج {{ar-verb (old)|I|برج|baraja}} :: to tell someone's fortune
   شخص شَخص (šáxṣ) {m}, اشخاص (’ašxāṣ) {p}, شخوص (šuxūṣ) {p} :: someone, somebody
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to lead someone, to conduct someone, to take someone along
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to lead someone, to conduct someone, to take someone along
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to have someone seize or hold something
   قمر {{ar-verb (old)|I|قَمَرَ|qámara}}{{ar-verb (old)|I|قَمِرَ|qámira}}{{ar-verb (old)|II|قمّر|qámmara}}{{ar-verb (old)|III|قامر|qāmara}}{{ar-verb (old)|IV|اقمر|’áqmara}}{{ar-verb (old)|VI|تقامر|taqāmara}} :: to gamble (with someone)
   بات {{ar-verb (old)|I|بات|bāta}}{{ar-verb (old)|II|بات|bátta}} :: to put (someone) up for the night
@@ -17715,10 +17647,8 @@ Index: EN EN->AR
   شهيد (šahīd) {m}, شهداء (šuhadā’) {p} :: martyr, someone killed in battle with the infidels.
   حفظ {{ar-verb|form=2|tr=ħáffađ̣a|impf=يحفظ|impftr=yuħaffiđ̣u}} :: to have someone memorize
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to confide a secret, to whisper in someone’s ear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to make hear, to let hear, to give someone something to hear
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to let someone know, to tell about
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: (with من or ل) to listen to, to pay attention to, to hear someone out
+  سمع {{ar-verb|form=II|tr=sámmaʿa|impf=يسمع|impftr=yusammiʿu}} (causative) :: to make hear, to let hear, to give someone something to hear
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to make averse to, to make disinclined to, to make hateful to, to alienate from, to make someone hate
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to be frightened away, to ask someone to fight against, to call someone to go to war
 ===son===
@@ -17787,6 +17717,8 @@ Index: EN EN->AR
   كلم {{ar-verb (old)|II|كلم|kállama}}{{ar-verb (old)|III|كالم|kālama}}{{ar-verb (old)|V|تكلم|takállama}} :: to speak, to talk, to converse
   كلم {{ar-verb (old)|II|كلم|kállama}}{{ar-verb (old)|III|كالم|kālama}}{{ar-verb (old)|V|تكلم|takállama}} :: to speak, to talk
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to speak, to talk.
+===speaking===
+  كلامٌ (kalām) {m} :: talking, speaking
 ===special===
   خاص {{ar-adj|head=خاصّ|tr=xaṣṣ}} :: special
 ===species===
@@ -17807,6 +17739,8 @@ Index: EN EN->AR
   قمر {{ar-verb (old)|I|قَمَرَ|qámara}}{{ar-verb (old)|I|قَمِرَ|qámira}}{{ar-verb (old)|II|قمّر|qámmara}}{{ar-verb (old)|III|قامر|qāmara}}{{ar-verb (old)|IV|اقمر|’áqmara}}{{ar-verb (old)|VI|تقامر|taqāmara}} :: to bet on, speculate on
 ===speculum===
   منظار مِنْظار (minẓār) {m}, مناظير (manāẓir) {p} :: mirror, speculum
+===speech===
+  كلامٌ (kalām) {m} :: conversation, speech, talk, language
 ===spell===
   فقط {{ar-verb (old)|II|فقط|fáqqaṭa}} :: to spell out the numbers on an invoice.
 ===spellbind===
@@ -17833,6 +17767,9 @@ Index: EN EN->AR
   دور {{ar-verb (old)|II|دور|dáwwara}} :: to turn in a circle, to spin, to whirl, to revolve, to rotate
 ===spire===
   برج (burj) (noun), dual: برجي (barjī), plural: بروج (burūj) or ابراج (’abrāj) :: spire
+===spirits===
+  خمر (xamr) {m|f}, خمور (xumūr) {p} :: (plural) alcoholic beverages, liquor, spirits
+  كحول (kuħūl) {m} :: alcohol, spirits
 ===spiritual===
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: (title of professors and spiritual leaders) sheik, Dr., professor
 ===Spiritual===
@@ -17911,18 +17848,15 @@ Index: EN EN->AR
 ===stamping===
   مهر {{ar-noun|tr=mahr|head=مَهْر}} ({p}: مُهُور muhūr) :: stamping
 ===stand===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stand
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to make stand, to set up
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to stand
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to stand
   نفر {{ar-verb (old)|I|نفر|náfara}}{{ar-verb (old)|II|نفّر|náffara}}{{ar-verb (old)|III|نافر|nāfara}}{{ar-verb (old)|VI|تنافر|tanāfara}}{{ar-verb (old)|X|استنفر|istánfara}} :: to bulge, to swell, to jut out, to protrude, to stand out, to stick out
 ===Standard===
   ما {{ar-part|tr=mā}} :: not (dialect only or only for the past tense verb conjugations in Modern Standard Arabic)
 ===standstill===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to come to a stop, to come to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to bring to a stop, to bring to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to bring to a stop, to bring to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to come to a stop, to come to a standstill
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: stay, standstill
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to come to a stop, to come to a standstill
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to bring to a stop, to bring to a standstill
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: stay, standstill
 ===star===
   علم عَلَمٌ (ʕálam) {m}, اعلام (aʕlām) {p} :: authority, luminary, star, personage, distinguished man
   نجمة {{ar-noun|tr=nájma|g=f|pl=نجمات|pltr=najamāt}} :: star
@@ -17931,7 +17865,7 @@ Index: EN EN->AR
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to stare, to gaze
 ===start===
   صدر {{ar-noun|tr=ṣadr|g=m|pl=صدور|pltr=ṣudūr}} :: beginning, start, outset, commencement, inception
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to take up (a profession, etc.), to start
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to take up (a profession, etc.), to start
   فجر {{ar-noun|tr=fajr|g=m}} :: {figuratively} dawn, beginning, outset, start
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to start out, to leave, to depart
 ===starting===
@@ -17951,6 +17885,7 @@ Index: EN EN->AR
   حرم {{ar-verb (old)|I|حرم|ħáruma}}{{ar-verb (old)|I|حرم|ħárama}}{{ar-verb (old)|II|حرم|ħárrama}}{{ar-verb (old)|IV|احرم|’áħrama}}{{ar-verb (old)|V|تحرم|taħárrama}}{{ar-verb (old)|VIII|تحرم|iħtárama}}{{ar-verb (old)|X|استحرم|istáħrama}} :: to enter into the state of ritual consecration (of a pilgrim to Mecca)
 ===statement===
   شهادة (šahāda) {f}, شهادات (šahadāt) {p} :: statement
+  كلامٌ (kalām) {m} :: statement, remark
 ===States===
   الولايات المتحدة (al-wilayaatu al-muttáHida) {f|p} :: United States
   الولايات المتحدة الأمريكية (al-wilayātu-ul-muttáħidatu-ul-’amrikíyya) {f|p} :: United States of America
@@ -17964,13 +17899,13 @@ Index: EN EN->AR
   حال {m|f} (ḥāla) (noun), plural: أحوال, ’aḥwāl :: position, status
   وضع اجتماعي (waḍʕ ijtimāʕi) {m} :: status, legal status, social status
 ===stay===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: stay, standstill
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: stay, standstill
   ابد {{ar-verb (old)|I|ابد|’ábada}}{{ar-verb (old)|II|ابد|’ábbada}}{{ar-verb (old)|V|تأبد|ta’ábbada}} :: to stay, to linger
   بات {{ar-verb (old)|I|بات|bāta}}{{ar-verb (old)|II|بات|bátta}} :: to spend the night, to stay overnight
 ===steadfastness===
   صبر (ṣabr) {m}صبر(ṣábir, ṣabr){m} :: equanimity, steadfastness
 ===steal===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to abduct, to steal, to sweep away, to annihilate
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to abduct, to steal, to sweep away, to annihilate
   دب {{ar-verb (old)|I|دب|dábba}}{{ar-verb (old)|II|دبّ|dábba}} :: to steal, to creep
 ===steel===
   سلاح سِلاحٌ (silāħ) {m}, اسلحة (’ásliħa) {p} :: steel claw
@@ -17985,6 +17920,12 @@ Index: EN EN->AR
   ف‍- (fa-) (prefix) :: then, and then
     يومًا فيومًا (yáuman fa-yáuman) :: day after day
     شيئًا فشيئًا (šái’an fa-šái’an) :: step by step
+===stibnite===
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to rub with kohl (stibnite), to paint with kohl
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل {{ar-verb (old)|I|كحل|káħala}}{{ar-verb (old)|II|كحّل|káħħala}}{{ar-verb (old)|V|تكحّل|takáħħala}}{{ar-verb (old)|VIII|اكتحل|iktáħala}} :: to color the edges of the eyelids with kohl (stibnite)
+  كحل (kuħl) {m}, اكحال (’akħāl) {p}كحل{m} :: kohl, stibnite (pulverized antimony)
 ===stick===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to stick, cling, adhere, hang on
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to stick, cling, cleave
@@ -18016,19 +17957,13 @@ Index: EN EN->AR
   عاجمة (ʕājma) {f} (singulative), عجم (ʕájam) {m} (collective) :: stone, kernel, pit, pip, large seed
 ===stop===
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to come to a stop, to come to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stop
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to come to a stop, to come to a standstill
+  وقف {{ar-verb|form=1|tr=wáqafa|impf=يقف|impftr=yaqifu|I=و}} :: to stop
     قف (qif) &mdash; halt!, stop! :: --
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to bring to a stop, to bring to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to arrest, to halt, to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to bring to a stop, to bring to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to arrest, to halt, to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stop, to halt
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to come to a stop, to come to a standstill
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to ask to stop, to bring to a stop, to request to stop
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to stop, to halt
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to bring to a stop, to bring to a standstill
+  وقف {{ar-verb|tr=wáqqafa|form=2|I=و|impf=يوقف|impftr=yuwáqqifu}} :: to arrest, to halt, to stop
 ===stopping===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: stopping, halting
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: stopping, halting
 ===storage===
   مخازن مَخَازن (maχáːzin) (plural of مَخْزَن) :: stockrooms, storage rooms
   مخزن مَخْزَنٌ (máχzan) {m} (plural: مَخَازن) :: stockroom, storage room
@@ -18098,7 +18033,6 @@ Index: EN EN->AR
   صفر {{ar-verb (old)|I|صَفر|ṣáfara}}{{ar-verb (old)|II|صفّر|ṣáffara}} :: to chirp, to stridulate
   صفر {{ar-verb (old)|I|صَفر|ṣáfara}}{{ar-verb (old)|II|صفّر|ṣáffara}} :: to chirp, to stridulate
 ===strike===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to befall, to strike, to seize, to come over
   عجب {{ar-verb (old)|I|عجب|ʕájiba}}{{ar-verb (old)|II|عجب|ʕájjaba}} :: to strike with wonder, to strike with astonishment, to surprise
 ===string===
   سلك (silk) {m}, اسلاك (aslāk) {p} :: string (also of a musical instrument)
@@ -18121,7 +18055,7 @@ Index: EN EN->AR
 ===student===
   طالب {{ar-noun|tr=ṭā́lib|g=m|pl=طلاب|pltr=ṭullā́b|pl2=طلبة|pl2tr=ṭálaba}} :: student, scholar
 ===students===
-  فَصْل (faSl) (noun), فُصُول (fuSuul) {p} :: class (group of students)
+  فصل {{ar-noun|g=m|head=فَصْل|tr=faṣl|pl=فصول|plhead=فُصُول|pltr=fuṣūl}} :: class (group of students)
 ===study===
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to memorize, to learn, to study
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: inspection, study, perusal
@@ -18145,22 +18079,21 @@ Index: EN EN->AR
 ===subdued===
   منخفض (munkháfiḍ) :: soft, low, subdued, muffled
 ===subject===
-  أنا أنَا (’ána)ـنِيـِي :: I (subject pronoun).
+  أنا {{ar-pron|head=أنَا|tr=ʾána}}ـنِيـِي :: I (subject pronoun).
   (Egyptian Arabic) انتوا {p} (íntu) (pronoun) :: you (subject pronoun)
 ===subjunctive===
   لن (lan) :: Note: لن is used to deny the future. It governs the subjunctive of the verb.
     لن يَكْتُبَ (lan yaktúba) &mdash; he will not write :: --
 ===submission===
   اسلام إسلام (’islām) {m} :: submission, resignation, reconciliation
-  إسلام {{ar-noun|tr=’islām|g=m}} :: submission, resignation, reconciliation
   اسلام إسلام (’islām) {m} :: religious submission to God, piety, Islam
     الإسلام (al-‘islām) — Islam :: --
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ===submit===
   سلم {{ar-verb (old)|I|سَلِمَ|sálima}}{{ar-verb (old)|II|سلّم|sállama}}{{ar-verb (old)|III|سالم|sālama}}{{ar-verb (old)|IV|اسلم|’áslama}}{{ar-verb (old)|V|تسلم|tasállama}}{{ar-verb (old)|VI|تسالم|tasālama}}{{ar-verb (old)|VIII|استلم|istálama}}{{ar-verb (old)|X|استسلم|istáslama}} :: to submit
   سلم {{ar-verb (old)|I|سَلِمَ|sálima}}{{ar-verb (old)|II|سلّم|sállama}}{{ar-verb (old)|III|سالم|sālama}}{{ar-verb (old)|IV|اسلم|’áslama}}{{ar-verb (old)|V|تسلم|tasállama}}{{ar-verb (old)|VI|تسالم|tasālama}}{{ar-verb (old)|VIII|استلم|istálama}}{{ar-verb (old)|X|استسلم|istáslama}} :: to submit
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to submit, to refer, to lay before, to offer up
   قبل {{ar-verb|form=I|head=قَبِلَ|tr=qábila|impf=يقبل|impfhead=يَقبَلُ|impftr=yaqbalu}} :: to obey, to yield, to give in, to submit
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to submit, to obey
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to present, to submit
@@ -18214,7 +18147,9 @@ Index: EN EN->AR
   جمل {{ar-verb (old)|I|جمل|jámala}}{{ar-verb (old)|I|جمل|jámula}}{{ar-verb (old)|II|جمّل|jámmala}}{{ar-verb (old)|III|جامل|jāmala}}{{ar-verb (old)|IV|اجمل|’ájmala}}{{ar-verb (old)|V|تجمل|tajámmala}}{{ar-verb (old)|VI|تجامل|tajāmala}} :: to sum up, to summarize
   جمل {{ar-verb (old)|I|جمل|jámala}}{{ar-verb (old)|I|جمل|jámula}}{{ar-verb (old)|II|جمّل|jámmala}}{{ar-verb (old)|III|جامل|jāmala}}{{ar-verb (old)|IV|اجمل|’ájmala}}{{ar-verb (old)|V|تجمل|tajámmala}}{{ar-verb (old)|VI|تجامل|tajāmala}} :: to sum up, to summarize
 ===summit===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: tip, top, summit, peak, upper part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: tip, top, summit, peak, upper part
+===summon===
+  دعا {{ar-verb|III=و|form=1|tr=daʿā|impf=يدعو|impftr=yadʿū}} :: to invite, to summon
 ===sun===
   شمس {{ar-verb (old)|I|شمس|šámasa}}{{ar-verb (old)|II|شمس|šámmasa}} :: to expose to the sun, to dry in the sun
   شمس شَمْسٌ (šams) {f}, شموس (šumūs) {p} :: sun
@@ -18226,8 +18161,6 @@ Index: EN EN->AR
 ===sunny===
   شمس {{ar-verb (old)|I|شمس|šámasa}}{{ar-verb (old)|II|شمس|šámmasa}} :: to be sunny
   مشمس مُشْمِس (múšmis) :: sunny
-===superimposed===
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to be superimposed
 ===superintendent===
   مدير (mudīr) {m}, مديرون (mudīrūn) {p} :: superintendent, rector
   رئيس {{ar-noun|tr=ra’īs|g=m|pl=رؤساء|pltr=ru’asā’}} :: manager, superintendent
@@ -18243,11 +18176,9 @@ Index: EN EN->AR
   قواعد (qawaa3id) {p} (singular: قاعدة, qaa3ida) :: supports, socles, pedestals
   ظهر {{ar-verb (old)|I|ظهر|ẓáhara}}{{ar-verb (old)|II|ظهر|ẓáhhara}}{{ar-verb (old)|III|ظاهر|ẓāhara}}{{ar-verb (old)|IV|اظهر|’áẓhara}}{{ar-verb (old)|VI|تظاهر|taẓāhara}}{{ar-verb (old)|X|استظهر|istáẓhara}} :: to help, to assist, to aid, to support
 ===suppose===
-  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\8eبÙ\8e|Hasaba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8eبÙ\8f\8aحسب}}{{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}}{{ar-verb (old)|III|حاسب|ħÄ\81saba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħÄ\81saba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to assume, to think, to suppose, to believe
+  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}} :: to assume, to think, to suppose, to believe
 ===supposedly===
   صفر صَفَرٌ (ṣáfar) {m}, اصفار (’aṣfār) {p} :: Safar, the second of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Safar means "void" in Arabic, supposedly because pagan Arabs looted during this month and left the houses empty.
-===suppress===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to suppress, to ban
 ===supreme===
   ملك (mulk) {m}ملك{m}املاك{p}ملك{m}ملوك{p}املاك{p} :: rule, reign, supreme authority, dominion, dominance, sway, power
   سر (sar) {m} :: (in compounds) head, chief
@@ -18278,10 +18209,8 @@ Index: EN EN->AR
   نظر {{ar-noun|head=نَظَر|tr=náẓar|g=m|pl=أنظار|pltr=ʾanẓār}} :: supervision, control, surveillance
 ===susceptible===
   هدف {{ar-verb (old)|I|هدف|hádafa}}{{ar-verb (old)|IV|اهدف|’áhdafa}}{{ar-verb (old)|V|تهدف|taháddafa}}{{ar-verb (old)|X|استهدف|istáhdafa}} :: to be susceptible, to be sensitive
-===suspend===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to pause, to suspend, to interrupt
 ===suspension===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: discontinuation, suspension
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: discontinuation, suspension
 ===sustain===
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to keep up, to maintain, to sustain
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to preserve, to maintain, to keep up, to uphold, to sustain
@@ -18296,11 +18225,10 @@ Index: EN EN->AR
 ===swear===
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to swear an oath
 ===sweat===
-  عرق {{ar-verb|form=1|tr=ʿáriqa|impf=يعرق}} :: to sweat, to perspire
+  عرق {{ar-verb|form=1|tr=ʿáriqa|impf=يعرق|impftr=yaʿraqu}} :: to sweat, to perspire
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to make sweat, to promote perspiration
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: sweat, perspiration
 ===sweep===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to abduct, to steal, to sweep away, to annihilate
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to abduct, to steal, to sweep away, to annihilate
 ===sweet===
   بطاطة (baṭāṭa) {f} :: sweet potato, yam
   بطاطا بَطاطا (baTaaTaa) {f} :: sweet potato, yam
@@ -18350,7 +18278,7 @@ Index: EN EN->AR
   جهاز {m} (jihāz, jahāz) (noun), جهازات (jihazāt) {p}, اجهزة (’ájhiza) {p} :: (plural) system, apparatus
   نظام {{ar-noun|tr=niðʿām|g=m}} :: system
   طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: system
-  الإسلام (al-’islām) {m} :: Islam, the religious system advocated by Muhammad, Mohammedanism
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: Islam, the religious system advocated by Muhammad, Mohammedanism
 ===t===
   ت / ت‍ / ‍ت‍ / ‍ت (tā’) :: The third letter of the Arabic alphabet. Its name is تاء (tā’) and it has the sound of English t. It is preceded by ب and followed by ث.
   (Egyptian Arabic) كـ (ki-) (preposition) :: like
@@ -18389,20 +18317,16 @@ Index: EN EN->AR
 ===take===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to grab, grasp, clutch, clasp, seize, take hold
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to take (charge, control, etc.)
-  أذن {{ar-verb|form=1|tr=ʾáđina|impf=يأذن|impftr=yaʾđanu}}{{ar-verb (old)|II|أذن|’áððana}}{{ar-verb (old)|X|استأذن|istá’ðana}} :: to take leave, to say goodbye
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take into account, to take into consideration, to reckon with
+  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}} :: to take into account, to take into consideration, to reckon with
   حفظ {{ar-verb|form=1|tr=ħáfiđ̣a|impf=يحفظ|impftr=yaħfađ̣u}} :: to hold, to have in safe-keeping, to take care
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to take care, to attend, to pay attention
   سن {{ar-verb (old)|I|سن|sánna}}{{ar-verb (old)|II|سن|sánna}}{{ar-verb (old)|IV|اسن|’ásanna}}{{ar-verb (old)|VIII|استن|istánna}} :: to take, to follow
   مثل {{ar-verb (old)|I|مثل|máθala}}{{ar-verb (old)|II|مثّل|máθθala}}{{ar-verb (old)|III|ماثل|māθala}}{{ar-verb (old)|V|تمثل|tamáθθala}}{{ar-verb (old)|VI|تماثل|tamāθala}}{{ar-verb (old)|VIII|امتثل|imtáθala}} :: to take after, to follow
   عن {{ar-verb (old)|I|عَنّ|ʕánna}} :: to take shape, to form, to arise, to spring up
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to lead someone, to conduct someone, to take someone along
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to cause to go away, to make disappear, to remove, to eliminate, to take away
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to lead someone, to conduct someone, to take someone along
   حرف {{ar-verb (old)|II|حرّف|ħárrafa}}{{ar-verb (old)|V|تحرف|taħárrafa}} :: to turn off, to branch off, to take a turn
   ملك {{ar-verb (old)|I|ملك|málaka}}{{ar-verb (old)|II|ملك|mállaka}} :: to take in possession, to take over, to acquire, to seize
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to take precautions
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to take up (a profession, etc.), to start
+  دخل {{ar-verb|form=2|head=دَخَلَ|tr=dáxala|impf=يدخل|impfhead=يَدْخُلُ|impftr=yadxulu}} :: to take up (a profession, etc.), to start
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to be glad, to be happy, to be delighted, to take pleasure in
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to take as concubine
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to take as concubine
@@ -18414,7 +18338,7 @@ Index: EN EN->AR
   شغل (šuğl) {m}, اشغال (’ašğāl) {p}, شغول (šuğūl) {p} :: occupancy, filling, taking up
   غول (ğūl) {m} :: taking away, snatching, seizing, grabbing
 ===talaq===
-  طلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
+  طلاق طَلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
 ===talisman===
   طلسم طِلّسْم (ṭílasm, ṭíllasm) {m}, طلسمات (ṭilasmāt, ṭillasmāt) {p}, طلاسم (ṭalāsim) {p} :: talisman
   مطلسم مُطَلْسَم (muṭálsam) {m} :: enigma, talisman
@@ -18424,9 +18348,12 @@ Index: EN EN->AR
   كلم {{ar-verb (old)|II|كلم|kállama}}{{ar-verb (old)|III|كالم|kālama}}{{ar-verb (old)|V|تكلم|takállama}} :: to speak, to talk, to converse
   كلم {{ar-verb (old)|II|كلم|kállama}}{{ar-verb (old)|III|كالم|kālama}}{{ar-verb (old)|V|تكلم|takállama}} :: to speak, to talk
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to speak, to talk.
+  كلامٌ (kalām) {m} :: conversation, speech, talk, language
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to parley, negotiate, to have a talk.
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to remind one another, to confer together, to have a talk.
   بحث {{ar-verb (old)|I|بحث|báħaθa}}{{ar-verb (old)|III|باحث|bāħaθa}}{{ar-verb (old)|VI|تباحث|tabāħaθa}} :: to confer, to have a talk
+===talking===
+  كلامٌ (kalām) {m} :: talking, speaking
 ===tall===
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
@@ -18460,7 +18387,7 @@ Index: EN EN->AR
   وتر {{ar-verb (old)|I|وتر|wátara}}{{ar-verb (old)|II|وتر|wáttara}}{{ar-verb (old)|III|واتر|wātara}}{{ar-verb (old)|IV|اوتر|’autara}}{{ar-verb (old)|V|توتر|tawáttara}}{{ar-verb (old)|VI|تواتر|tawātara}} :: to stretch, to strain, to draw tight, to pull taut
   وتر {{ar-verb (old)|I|وتر|wátara}}{{ar-verb (old)|II|وتر|wáttara}}{{ar-verb (old)|III|واتر|wātara}}{{ar-verb (old)|IV|اوتر|’autara}}{{ar-verb (old)|V|توتر|tawáttara}}{{ar-verb (old)|VI|تواتر|tawātara}} :: to become stretched, to be strained, to be tight, to become taut
 ===tax===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: taxes, duties, charges, fees, rates
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عوائد|pltr=ʿawā́ʾid}} :: (in plural) taxes, duties, charges, fees, rates
   مال (māl) {m}, اموال (’amwāl) {p} :: (Egypt) tax, land tax
 ===تاء===
   ت / ت‍ / ‍ت‍ / ‍ت (tā’) :: The third letter of the Arabic alphabet. Its name is تاء (tā’) and it has the sound of English t. It is preceded by ب and followed by ث.
@@ -18505,7 +18432,6 @@ Index: EN EN->AR
 ===tell===
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to report, to tell, to relate.
   برج {{ar-verb (old)|I|برج|baraja}} :: to tell someone's fortune
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to let someone know, to tell about
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to tell in confidence, to confide in
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to tell under one’s breath, to whisper
   حق {{ar-verb (old)|I|حق|ħáqqa}}{{ar-verb (old)|II|حق|ħáqqa}}{{ar-verb (old)|III|حاق|ħāqqa}}{{ar-verb (old)|IV|احق|’aħáqqa}}{{ar-verb (old)|X|استحق|istaħáqqa}} :: to tell the truth, to be right
@@ -18524,7 +18450,7 @@ Index: EN EN->AR
 ===ten===
   ١٠ (‘áshara) :: 10 (ten)
 ===tender===
-  قدم {{ar-verb (old)|I|قَدَمَ|qádama}}{{ar-verb (old)|I|قَدِمَ|qádima}}{{ar-verb (old)|I|قَدُمَ|qáduma}}{{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
+  قدم {{ar-verb (old)|II|قَدّمَ|qáddama}} :: to offer, to proffer, to tender, to extend
 ===tendon===
   وتر (wátar) {m}, اوتار (’autār) {p} :: sinew, tendon
   حبل (ħabl) (noun), m, حبال (ħibāl) {p}, احبل (’áħbul) {p}, حبول (ħubūl) {p}, احبال (’aħbāl) {p} :: {anatomy} sinew, tendon
@@ -18636,10 +18562,10 @@ Index: EN EN->AR
   شيء (šæy’) {m}, أشياء (’ašyā’) {p} :: thing
   عين (ʕayn) {f}, عَيْنَانِ (ʕeynāni, dual nom.), عَيْنَيْنِ (ʕeynéyni, dual acc./gen.), عُيُون (ʕuyūn, {p}) :: The thing itself
 ===think===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to think, to believe, to hold the view, to be of the opinion
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to think, to believe, to hold the view, to be of the opinion
   ذكر {{ar-verb (old)|I|ذكر|ḏákara}}{{ar-verb (old)|II|ذكّر|ḏákkara}}{{ar-verb (old)|III|ذاكر|ḏākara}}{{ar-verb (old)|IV|أذكر|’áḏkara}}{{ar-verb (old)|V|تذكّر|taḏákkara|تذكر}}{{ar-verb (old)|VI|تذاكر|taḏākara}}{{ar-verb (old)|VIII|اذتكر|iḏḏákara}}{{ar-verb (old)|X|استذكر|istáḏkara}} :: to think.
   أمل {{ar-verb|tr=ʾámala|head=أَمَلَ|form=I|impf=يأمل|impfhead=يَأْمَلُ|impftr=yaʾmalu}}{{ar-verb|tr=ʾámmala|form=II|impf=يؤمل|impftr=yuʾammilu}}{{ar-verb (old)|V|تأمل|ta’ámmala}} :: to meditate, to think over, to ponder, to reflect
-  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\8eبÙ\8e|Hasaba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8eبÙ\8f\8aحسب}}{{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}}{{ar-verb (old)|III|حاسب|ħÄ\81saba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħÄ\81saba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to assume, to think, to suppose, to believe
+  Ø­Ø³Ø¨ {{ar-verb (old)|I|Ø­Ù\8eسÙ\90بÙ\8e|Hasiba|حسب|Ù\8aÙ\8eØ­Ù\92سÙ\8fبÙ\8f\8aحسب}} :: to assume, to think, to suppose, to believe
 ===thinking===
   حسب (ħasb) {m}حسب{m}احساب{p} :: thinking, opinion, view
 ===third===
@@ -18686,8 +18612,6 @@ Index: EN EN->AR
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to experience, to know by experience, to know well, to know thoroughly
 ===those===
   من {{ar-pron|tr=man|head=مَن}} :: {relative} who, the one who, he who, those who, everyone who
-===thou===
-  انت أنْتَ (’ínta) {m}, أنْتُم (’íntum, ’ántum) {p} :: thou
 ===thought===
   معنى {{ar-noun|head=مَعْنَى|tr=máʕnā|g=m|pl=معاني}} :: idea, thought
   سر (sirr) {m}, اسرار (’asrār) {p} :: secret, secret thought
@@ -18787,7 +18711,7 @@ Index: EN EN->AR
   دقيق (daqīq), دقاق (daqāq), ادقة (adíqqa) :: little, small, tiny, minute
   ذرة ذَرّة (ðárra) {f} (singulative), ذرات (ðarrāt) {p} :: tiny particle, speck, mote
 ===tip===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: tip, top, summit, peak, upper part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: tip, top, summit, peak, upper part
 ===title===
   سمى {{ar-verb (old)|II|سمى|sámmā}}{{ar-verb (old)|IV|اسمى|’ásmā}}{{ar-verb (old)|V|تسمى|tasámmā}} :: to title, to entitle
   سمى {{ar-verb (old)|II|سمى|sámmā}}{{ar-verb (old)|IV|اسمى|’ásmā}}{{ar-verb (old)|V|تسمى|tasámmā}} :: to title, to entitle
@@ -18820,7 +18744,7 @@ Index: EN EN->AR
   علم عَلَمٌ (ʕálam) {m}, اعلام (aʕlām) {p} :: sign, token, mark, badge
   شعار شِعَار (šiʕār) {m}, شعر (šúʕur) {p}, اشعرة (’ášʕira) {p}شِعَار(šiʕār){p} :: mark, token, sign
 ===told===
-  سمع {{ar-verb (old)|I|سمع|sámiʕa}}{{ar-verb (old)|II|سمع|sámmaʕa}}{{ar-verb (old)|IV|اسمع|’ásmaʕa}}{{ar-verb (old)|V|تسمع|tasámmaʕa}}{{ar-verb (old)|VI|تسامع|tasāmaʕa}}{{ar-verb (old)|VIII|استمع|istámaʕa}} :: to learn, to be told
+  سمع {{ar-verb|form=I|head=سَمِعَ|tr=sámiʿa|impf=يسمع|impfhead=يَسْمَعُ|impftr=yasmaʿu}} :: to learn, to be told
 ===tomato===
   بندورة {{ar-noun|tr=banaduura(t)|head=بَنَدورة|g=f}} :: tomato
 ===tomb===
@@ -18844,7 +18768,7 @@ Index: EN EN->AR
   سن (sann) {m}سِنّ{f}اسنان{p}اسنة{p}اسن{p} :: tooth
   عاجمة (ʕājma) {f} (singulative), عجم (ʕájam) {m} (collective) :: tooth
 ===top===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: tip, top, summit, peak, upper part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: tip, top, summit, peak, upper part
   ظهر {m} (ẓahr), ظهور (ẓuhūr) {p}, اظهر (’áẓhur) {p}, ظهورات (ẓuhurāt) {p}ظهر{m}(ẓuhr)اظهار(’aẓhār){p} :: deck, surface, top
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
@@ -18996,7 +18920,7 @@ Index: EN EN->AR
 ===transplant===
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to transplant
 ===travel===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to go, to travel
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to go, to travel
   شخص {{ar-verb (old)|I|شَخَصَ|šáxaṣa}}{{ar-verb (old)|II|شَخّصَ|šáxxaṣa}}{{ar-verb (old)|IV|أشخص|’ášxaṣa}}{{ar-verb (old)|V|تشخص|tašáxxaṣa}} :: to travel, to journey
   رحلة (réħla) {f}رحلة{f} :: travel, journey
   بحر {{ar-verb (old)|I|بحر|báħira}}{{ar-verb (old)|II|بحر|báħħara}} :: to travel by sea, to make a voyage
@@ -19053,7 +18977,6 @@ Index: EN EN->AR
   دقيق (daqīq), دقاق (daqāq), ادقة (adíqqa) :: paltry, petty, trivial, trifling
 ===trigger===
   سبب {{ar-verb (old)|II|سَبّبَ|sábbaba}} :: to trigger
-  دخل {{ar-verb (old)|I|دخل|dáxala}}{{ar-verb (old)|II|دخّل|dáxxala}}{{ar-verb (old)|III|داخل|dāxala}}{{ar-verb (old)|IV|ادخل|’ádxala}}{{ar-verb (old)|V|تدخل|tadáxxala}}{{ar-verb (old)|VI|تداخل|tadāxala}} :: to produce, to set off, to trigger, to induce
 ===trim===
   قط {{ar-verb (old)|I|قط|qáṭṭa}} :: to cut, to trim, to clip, to pare
   قلم {{ar-verb (old)|I|قَلَمَ|qálama}}{{ar-verb (old)|II|قلّم|qállama}} :: to cut, to clip, to pare, to prune, to trim, to lop, to truncate, to snip, to cut back, to cut down
@@ -19103,8 +19026,6 @@ Index: EN EN->AR
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to try, to test
   خبر {{ar-verb (old)|I|خبر|xábara}}{{ar-verb (old)|II|خبر|xábbara}}{{ar-verb (old)|III|خابر|xābara}}{{ar-verb (old)|IV|اخبر|’áxbara}}{{ar-verb (old)|V|تخبر|taxábbara}}{{ar-verb (old)|VI|تخابر|taxābara}}{{ar-verb (old)|VIII|اختبر|ixtábara}}{{ar-verb (old)|X|استخبر|istáxbara}} :: to test, to examine, to try
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to request, to apply, to seek, to try to obtain
-  حسب {{ar-verb (old)|I|حَسَبَ|Hasaba|حسب|يَحْسَبُ|يحسب}}{{ar-verb (old)|I|حَسِبَ|Hasiba|حسب|يَحْسُبُ|يحسب}}{{ar-verb (old)|III|حاسب|ħāsaba}}{{ar-verb (old)|V|تحسب|taħássaba}}{{ar-verb (old)|VI|تحاسب|taħāsaba}}{{ar-verb (old)|VIII|احتسب|iħtásaba}} :: to seek to know, to try to find out
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to try to retain
   سر {{ar-verb (old)|I|سر|sárra}}{{ar-verb (old)|II|سرر|sárrara}}{{ar-verb (old)|III|سار|sārra}}{{ar-verb (old)|IV|اسر|’asárra}}{{ar-verb (old)|V|تسرى|tasarrā}}{{ar-verb (old)|X|استسر|istasárra}} :: to try to hide
   نصت {{ar-verb (old)|I|نصت|náṣata}}{{ar-verb (old)|IV|انصت|’ánṣata}}{{ar-verb (old)|V|تنصت|tanáṣṣata}} :: to try to hear
 ===Tuesday===
@@ -19143,8 +19064,6 @@ Index: EN EN->AR
   وجه {{ar-verb (old)|I|وجه|wájuha}}{{ar-verb (old)|II|وجه|wájjaha}} :: to turn one’s face, to turn
 ===turned===
   حسن {{ar-adj|head=حَسَن|tr=ħásan|g=m|f=حسنة|fhead=حَسَنَة|ftr=ħásana|el=أحسن|elhead=أحْسَن|eltr=ʾaħsan}} :: well-turned
-===turns===
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
 ===tusk===
   سن (sann) {m}سِنّ{f}اسنان{p}اسنة{p}اسن{p} :: tusk
 ===tutor===
@@ -19253,8 +19172,6 @@ Index: EN EN->AR
   نور {{ar-verb (old)|II|نور|náwwara}}{{ar-verb (old)|IV|انار|’ánara}}{{ar-verb (old)|IV|انور|’ánwara}}{{ar-verb (old)|V|تنور|tanáwwara}}{{ar-verb (old)|X|استنور|istánwara}} :: to come to light, to appear, to show, to be uncovered, to be disclosed, to be revealed
 ===undaunted===
   مسك {{ar-verb (old)|I|مَسَكَ|másaka}}{{ar-verb (old)|II|مَسّكَ|mássaka}}{{ar-verb (old)|IV|أمْسَكَ|’ámsaka}}{{ar-verb (old)|V|تَمَسّكَ|tamássaka}}{{ar-verb (old)|VI|تَمَاسَكَ|tamá:saka}}{{ar-verb (old)|X|اِسْتَمْسَكَ|istámsaka}} :: to remain undaunted, remain calm, be composed
-===undecided===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to waiver, to be undecided, to hesitate
 ===undeniable===
   ثابت {{ar-adj|head=ثَابِت|tr=thābit}} :: undeniable
 ===under===
@@ -19359,7 +19276,7 @@ Index: EN EN->AR
   رحم {{ar-verb (old)|I|رحم|ráHima}}{{ar-verb (old)|II|رحّم|ráHHama}} :: to ask God to have mercy (upon), to plead for God’s mercy
 ===upper===
   علية القوم عِلْيَةُ القَوْم (ʕílyatu-l-qáum) {f} :: upper class, elite, prominent people, VIP‏s.
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: tip, top, summit, peak, upper part
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: tip, top, summit, peak, upper part
 ===upright===
   شاهد {{ar-noun|g=m|tr=šāhid|pl=شهود|pltr=šuhūd|pl2=اشهاد|pl2tr=’ašhād}}{{ar-noun|g=m|tr=šāhid|pl=شهود|pltr=šuhūd|pl2=شهد|pl2tr=šúhhad}}{{ar-noun|g=m|tr=šāhid|pl=شواهد|pltr=šawāhid}} :: upright, oblong tombstone
 ===uproot===
@@ -19376,7 +19293,7 @@ Index: EN EN->AR
     {constellation} الدب الاصغر (ad-dubb al-’áʂğar) :: Ursa Minor
     {astronomy} الدب الاكبر (ad-dubb al-’ákbar) :: Ursa Major
 ===usage===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: habit, wont, custom, usage, practice
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: habit, wont, custom, usage, practice
 ===use===
   قهوة قَهْوَة (qáhwa) {f}, قَهَوَات (qahawāt) {p}, قَهَاوِي (qahāwi) {p} :: coffee shop, café (colloquial use)
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to use desinential inflection (اعراب, iʕrāb).
@@ -19424,7 +19341,7 @@ Index: EN EN->AR
 ===ustúšhida===
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: (passive, ustúšhida) to be martyred, to die as a martyr
 ===usually===
-  عادةً (ʕá:datan) :: usually, customarily, ordinarily, habitually
+  عادة {{ar-adv|tr=ʿā́datan}}) :: usually, customarily, ordinarily, habitually
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
 ===utensil===
@@ -19462,7 +19379,7 @@ Index: EN EN->AR
   حسب (ħasb) {m}حسب{m}احساب{p} :: value
   عين (ʕayn) {f}, عَيْنَانِ (ʕeynāni, dual nom.), عَيْنَيْنِ (ʕeynéyni, dual acc./gen.), عُيُون (ʕuyūn, {p}) :: In economics: what has monetary value except money.
 ===vanish===
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to disappear, to vanish
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to disappear, to vanish
 ===vanity===
   عجب (ʕujb) {m} :: pride, vanity, conceit
 ===vanquish===
@@ -19488,8 +19405,9 @@ Index: EN EN->AR
   عربية (ʕarabíya) {f}, عربيات (ʕarabiyát) {p} :: (Egyptian Arabic) carriage, vehicle
 ===veil===
   حجاب {{ar-noun|tr=ḥijāb|g=m}} :: hijab, veil
-  برقع بُرْقُع (burqu‘) :: veil
-  برقع بَرْقَعَ (barq‘a) :: to veil
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: veil
+  برقع {{ar-verb|tr=barqaʿa|form=1|impf=يبرقع|impftr=}} :: to veil
+  خمر {{ar-verb (old)|I|خمر|xámara}}{{ar-verb (old)|II|خمّر|xámmara}}{{ar-verb (old)|III|خامر|xāmara}}{{ar-verb (old)|IV|أخمر|’áxmara}}{{ar-verb (old)|V|تخمّر|taxámmara}}{{ar-verb (old)|VI|تخامر|taxāmara}}{{ar-verb (old)|VIII|اختمر|’ixtámara}} :: to veil the head and face
 ===veils===
   طرح (ṭarḥ) {m}طرح(ṭirḥ){m}طرح(ṭúraḥ){p} :: veils ({plural of|طرحة})
 ===vein===
@@ -19511,6 +19429,7 @@ Index: EN EN->AR
   لن (lan) :: Note: لن is used to deny the future. It governs the subjunctive of the verb.
     لن يَكْتُبَ (lan yaktúba) &mdash; he will not write :: --
   ما {{ar-part|tr=mā}} :: not (dialect only or only for the past tense verb conjugations in Modern Standard Arabic)
+  يعرفه (yaʕrífuhu) :: he knows it/him, he recognizes it/him. (from the verb عرف, ʕárafa)
 ===verbal===
   مصدر {{ar-noun|tr=máṣdar|head=مَصْدَر|g=m|pl=مصادر|pltr=maṣādir}} :: {grammar} verbal noun, infinitive, gerund
   دين {m} (diin) (noun)دين {m} (diin) (noun)أديان{p} :: (verbal noun) conformism, conformance, conformity, God-fearingness, godliness, religiosity, devoutness, fealty, obedience
@@ -19532,7 +19451,7 @@ Index: EN EN->AR
 ===versus===
   عكس عَكْس (ʕaks) :: versus
 ===vertex===
-  رأس {{ar-noun|head=رَأْس|g=m|tr=ra's|pl=رؤوس|plhead=رُؤُوس}}, أرؤس (’ar’us) {p} :: vertex, apex
+  رأس {{ar-noun|head=رَأْس|g=m|tr=raʾs|pl=رؤوس|plhead=رُؤُوس|pltr=ruʾūs|pl2=أرؤس|pl2tr=ʾarʾus}} :: vertex, apex
 ===very===
   جِدًا (jíddan) (adverb) :: very
 ===vex===
@@ -19558,7 +19477,7 @@ Index: EN EN->AR
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: {{context|Islamic law}} Madh’hab, doctrine, teaching, belief, ideology, opinion, view
   مشهد (mášhad) {m}, مشاهد (mašāhid) {p} :: view, aspect, spectacle, sight, scenery
   شهد {{ar-verb (old)|I|شهد|šahida}}{{ar-verb (old)|III|شاهد|šāhada}}{{ar-verb (old)|IV|اشهد|’ášhada}}{{ar-verb (old)|X|استشهد|’istášhada}} :: to see (with one’s own eyes), to view, to inspect, to watch, to observe, to witness
-  ذهب {{ar-verb (old)|I|ذهب|ðáhaba}}{{ar-verb (old)|II|ذهب|ðáhhaba}}{{ar-verb (old)|IV|أذهب|’áðhaba}} :: to think, to believe, to hold the view, to be of the opinion
+  ذهب {{ar-verb|form=1|tr=ḏáhaba|impf=يذهب|impftr=yaḏhabu}} :: to think, to believe, to hold the view, to be of the opinion
   نظر {{ar-verb|form=I|head=نَظَرَ|tr=náẓara|impf=ينظر|impfhead=يَنْظُرُ|impftr=yanẓuru}} :: to have in mind, to have in view
 ===village===
   بلد (bálad) {m|f}, بلاد (bilād) {p}, بلدان (buldān) {p} :: place, village, community
@@ -19586,7 +19505,7 @@ Index: EN EN->AR
 ===visit===
   ذو الحجة {{ar-noun|head=ذُو الحِجّةِ|tr=ðu l-ħíjja|g=m}} :: Dhul Hijjah, the twelfth and last of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhul Hijjah means "lord of the pilgrimage" in Arabic, and this is when pilgrims visit Mecca.
 ===visitor===
-  زائر زائِر (zā’ir) {m}, زوّار (zūwār) {p} :: visitor
+  زائر {{ar-noun|tr=zāʾir|g=m|pl=زوار|pltr=zūwār}} :: visitor
 ===vizier===
   وزير (wazīr) {m}, وزراء (wuzarā’) {p} :: vizier
 ===vocabulary===
@@ -19595,7 +19514,7 @@ Index: EN EN->AR
   فعل (fiʕl) {m}, افعال (’afʕāl) {p}, فعال (fiʕāl) {p}فِعْل{m}افعالفعل{m}افاعيل :: vocation, employment
 ===voice===
   كلم {{ar-verb (old)|II|كلم|kállama}}{{ar-verb (old)|III|كالم|kālama}}{{ar-verb (old)|V|تكلم|takállama}} :: to utter, to express, to voice, to say
-  صوت {{ar-noun|head=صَوت|tr=Sawt|g=m|pl=اصوات|plhead=أَصْوات}} :: voice {l|gloss=sound uttered by the mouth}
+  صوت {{ar-noun|head=صَوت|tr=awt|g=m|pl=اصوات|plhead=أَصْوات}} :: voice {l|gloss=sound uttered by the mouth}
   (Egyptian Arabic) صوت {m} (Sawt) (noun) :: voice {l|gloss=sound uttered by the mouth}
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to utter, to voice, to proclaim, to make known, to manifest.
   هاتف (hātif) {m}, هواتف (hawātif) {p} :: voice
@@ -19607,6 +19526,8 @@ Index: EN EN->AR
   جب {{ar-verb (old)|I|جَبّ|jábba}} :: to cancel, to countermand, to controvert, to invalidate, to abrogate, to void, to abort, to rebut
   جب {{ar-verb (old)|I|جَبّ|jábba}} :: to repeal, to abate, to abolish, to frustrate, to make null and void, to call off
   صفر صَفَرٌ (ṣáfar) {m}, اصفار (’aṣfār) {p} :: Safar, the second of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Safar means "void" in Arabic, supposedly because pagan Arabs looted during this month and left the houses empty.
+===vote===
+  صوت {{ar-verb|form=2|II=و|tr=ṣawwata|impf=يصوت|imptr=yuṣawwitu}} :: to vote
 ===vowel===
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
 ===voyage===
@@ -19625,8 +19546,6 @@ Index: EN EN->AR
   عامل (ʕāmil) {m}, عوامل (ʕawāmil) {p}عامل{m}عمّال{p} :: wage earner, employee
 ===wages===
   كراء (kirā’) {m} :: wages, pay
-===waiver===
-  وقف {{ar-verb (old)|I|وقف|wáqafa}}{{ar-verb (old)|II|وقف|wáqqafa}}{{ar-verb (old)|IV|أوقف|’áwqafa}}{{ar-verb (old)|V|توقف|tawáqqafa}}{{ar-verb (old)|VI|تواقف|tawāqafa}}{{ar-verb (old)|X|استوقف|istáwqafa}} :: to waiver, to be undecided, to hesitate
 ===wake===
   صبح {{ar-verb (old)|I|صبح|ṣábaḥa}}{{ar-verb (old)|I|صبح|ṣábuḥa}}{{ar-verb (old)|II|صبح|ṣábbaḥa}}{{ar-verb (old)|III|صابح|ṣābaḥa}}{{ar-verb (old)|IV|أصبح|’áṣbaḥa}}{{ar-verb (old)|VIII|اصطبح|iṣṭábaḥa}}{{ar-verb (old)|X|استصبح|istáṣbaḥa}} :: to wake up, to awake
 ===walk===
@@ -19638,7 +19557,7 @@ Index: EN EN->AR
 ===walking===
   مار {{ar-noun|tr=mārr|g=m}} :: going by, walking past, riding past, going across, walking, transient
 ===wall===
-  نافذة (nāfiða) {f}, نوافذ (nawāfið) {p} :: opening in a wall, air hole
+  نافذة {{ar-noun|tr=nāfiḏa|g=f|pl=نوافذ|pltr=nawāfiḏ}} :: opening in a wall, air hole
 ===wan===
   صفر صُفْر (Sufr) {p} :: yellow, pale, pallid, wan ({plural of|أَصْفَر})
 ===wand===
@@ -19646,7 +19565,7 @@ Index: EN EN->AR
 ===want===
   طلب {{ar-verb|form=I|head=طَلَبَ|tr=ṭálaba|impf=يطلب|impfhead=يَطْلُبُ|impftr=yaṭlubu}} :: to want, to wish
 ===waqf===
-  وقف (waqf) {m}, اوقاف (’awqāf) {p} :: {Islam} a waqf, religious endowment, endowment fund
+  وقف {{ar-noun|g=m|tr=waqf|pl=أوقاف|pltr=ʾawqāf}} :: {Islam} a waqf, religious endowment, endowment fund
 ===war===
   حرب {{ar-verb (old)|I|حَرِبَ|Háriba|حرب|يَحْرَبُ|يحرب}}{{ar-verb (old)|III|حارَبَ|Haaraba|حارب|يُحارِبُ|يحارب}}{{ar-verb (old)|VI|تَحارَبَ|taHaaraba|تحارب|يَتَحارَبُ|يتحارب}}{{ar-verb (old)|VIII|اِحْتَرَبَ|iHtáraba|احترب|يَحْتَرِبُ|يحترب}} :: to fight, to wage war, to battle
   حرب {{ar-verb (old)|I|حَرِبَ|Háriba|حرب|يَحْرَبُ|يحرب}}{{ar-verb (old)|III|حارَبَ|Haaraba|حارب|يُحارِبُ|يحارب}}{{ar-verb (old)|VI|تَحارَبَ|taHaaraba|تحارب|يَتَحارَبُ|يتحارب}}{{ar-verb (old)|VIII|اِحْتَرَبَ|iHtáraba|احترب|يَحْتَرِبُ|يحترب}} :: to fight one another, to be engaged in war
@@ -19688,7 +19607,6 @@ Index: EN EN->AR
   شعبان {{ar-noun|head=شَعْبَانُ|tr=šaʕbān|g=m}} :: Sha'aban, the eighth of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Sha'aban means "scattered" in Arabic, and is the time when ancient people dispersed to find water.
   فجر {{ar-verb|form=2|tr=fájjara|impf=يفجر|impftr=yufajjiru}} :: to create an outlet or passage (for water)
   عرق {{ar-verb|form=2|tr=ʿárraqa|impf=يعرق|impftr=yuʿarriqu}} :: to water down, to dilute (a drink)
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
   رخ {{ar-verb (old)|I|رخ|ráxxa}} :: to dilute, to mix with water
   مشغرة {{ar-proper noun|tr=mašğara|g=f}} :: The village of Mashghara (Machghara), a Lebanese village renowned for its abundance of water, located in the Beqaa region approximately 87 kilometers from Beirut.
 ===watering===
@@ -19701,7 +19619,7 @@ Index: EN EN->AR
   شمع {{ar-verb (old)|II|شمّع|šámmaʿa}} :: to wax, to rub with wax
   شمعٌ (šámʿ, šámaʿ) {m} (collective), شمعة (šámʿa) {f} (singulative), شموع (šumūʿ) {p} :: wax
 ===way===
-  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, method, procedure, course of action
+  طريقة {f} (ṭarīqa) (noun), طرائق (ṭarā’iq) {p}, طرق (ṭúruq) {p}طريقة {f} (ṭarīqa) (noun)طريقات{p}طرق{p} :: way, path, method, procedure, course of action
   مذهب {{ar-noun|head=مَذْهَب|tr=máðhab|g=m|pl=مذاهب|pltr=maðāhib}} :: way, movement, orientation
   رشد رَشَدَ :: he has gone the right way
   حقيقة {{ar-noun|tr=ħaqīqa|g=f|pl=حقائق|pltr=ħaqā’iq}} :: {Islam} the truth or the ultimate way of the Sufis (associated with the shari'a and the tariqa)
@@ -19772,7 +19690,6 @@ Index: EN EN->AR
   ذو الحجة {{ar-noun|head=ذُو الحِجّةِ|tr=ðu l-ħíjja|g=m}} :: Dhul Hijjah, the twelfth and last of the twelve months of the Muslim lunar calendar, each beginning with a new moon. Dhul Hijjah means "lord of the pilgrimage" in Arabic, and this is when pilgrims visit Mecca.
   ﻫ (initial form of ه) (hā’) :: Normally the twenty-sixth letter of the Arabic alphabet, when this letter is used in this initial form as an enumerator, it is interpreted as the fifth letter in traditional abjad order, equivalent to our Roman numeral V or Ⅴ (see abjad numerals). It is preceded by د and followed by و.
   آلو (’ālló) :: hello (when answering the telephone)
-  عرق {{ar-noun|g=m|tr=ʿáraq}} :: arrack (a clear raisin liquor that turns cloudy when water is added)
 ===whenever===
   ما {{ar-adv|tr=mā}} :: whenever
 ===where===
@@ -19857,7 +19774,7 @@ Index: EN EN->AR
   زوج (zawj) {m}, زوجة {f}, ازواج (’azwāj) {p} :: husband, wife, mate, partner
   زوجة {{ar-noun|g=f|tr=zawja(t)|head=زَوجة|pl=زوجات|plhead=زَوجات}} :: wife
   (Egyptian Arabic) زوجة {f} (zawga(t)) (noun) :: wife
-  طلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
+  طلاق طَلاق (ṭalāq) {m} :: talaq, divorce (in Islam, initiated by the husband, not the wife)
   حرم (ħirm) {m}حرم{m}احرام{p}حرم{p} :: wife
   مهر مَهَرَ (mahara) :: to make a settlement on a wife
   جدة (jídda) {f}, جدات (jiddāt) {p} :: Eve (wife of Adam)
@@ -19887,9 +19804,10 @@ Index: EN EN->AR
   قلم {{ar-noun|head=قَلَم|tr=qálam|g=m}}, أقْلاَم (’aqlām) {p} :: window, counter
   شباك {{ar-noun|g=m|head=شُبّاك|tr=shubbaak}}, {p} شبابيك (shabaabiik) :: window
   (Egyptian Arabic) شباك {m} (shibbaak) (noun), {p} شبابيك :: window
-  نافذة (nāfiða) {f}, نوافذ (nawāfið) {p} :: window
+  نافذة {{ar-noun|tr=nāfiḏa|g=f|pl=نوافذ|pltr=nawāfiḏ}} :: window
 ===wine===
   شراب (šarāb) {m}, اشربة (’ášriba) {p}شراب{m}شراب{m}شرابات{p} :: wine
+  خمر (xamr) {m|f}, خمور (xumūr) {p} :: wine
 ===wings===
   دف {{ar-verb (old)|I|دَفّ|dáffa|دف}}{{ar-verb (old)|II|دَفّ|dáffa|دف}} :: to flap the wings (of a bird)
 ===wire===
@@ -19964,7 +19882,7 @@ Index: EN EN->AR
 ===wonderful===
   عجيب عَجِيب ('ajīb) :: wonderful
 ===wont===
-  عادة عادَة (ʕá:da) {f}, عادات (ʕadá:t) {p}, عوائد (ʕawá:’id) {p}عوائدʕawá:’id{p} :: habit, wont, custom, usage, practice
+  عادة {{ar-noun|tr=ʿā́da|g=f|pl=عادات|pltr=ʿādā́t}} :: habit, wont, custom, usage, practice
 ===wooded===
   شجرة شَجِر (šají:r) :: woody, wooded
 ===woody===
@@ -19974,12 +19892,13 @@ Index: EN EN->AR
 ===word===
   كلمة {{ar-noun|g=f|head=كَلِمة|tr=kalima|pl=كلمات|plhead=كَلِمات}} :: word
   (Egyptian Arabic) كلمة {{arz-noun|f|tr=kilma}}, {p} كلام :: word
+  كلامٌ (kalām) {m} :: words, word, saying
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
   عامل (ʕāmil) {m}, عوامل (ʕawāmil) {p}عامل{m}عمّال{p} :: {grammar} word that governs another word
   ضد {{ar-noun|head=ضِدّ|tr=Didd|g=m|pl=اضداد|plhead=أضداد}} :: word with two opposite meanings.
   فقط {{ar-verb (old)|II|فقط|fáqqaṭa}} :: to write the word فقط (only) after the total on an invoice to prevent fraudulent modifications.
-  الإسلام (al-’islām) {m} :: piety, religious submission to the monotheistic God
-    المعنى العام لكلمة الإسلام هو الاستسلام لله :: "the meaning of the word al-’islām is 'the submission to God'"
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ===words===
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
   طلسم طِلّسْم (ṭílasm, ṭíllasm) {m}, طلسمات (ṭilasmāt, ṭillasmāt) {p}, طلاسم (ṭalāsim) {p} :: seal inscribed with cryptic characters or words
@@ -20054,7 +19973,7 @@ Index: EN EN->AR
   بطاطة (baṭāṭa) {f} :: sweet potato, yam
   بطاطا بَطاطا (baTaaTaa) {f} :: sweet potato, yam
 ===yashmak===
-  برقع بُرْقُع (burqu‘) :: yashmak
+  برقع {{ar-noun|tr=burqu‘|head=بُرْقُع}} :: yashmak
 ===year===
   سنة {{ar-noun|tr=sána|g=f|pl=سنون|pltr=sinūn|pl2=سنوات|pl2tr=sanawāt}} :: year
   (Egyptian Arabic) سنة {f} (sana(t)) (noun), {p} سنين (siniin) :: year
@@ -20078,8 +19997,6 @@ Index: EN EN->AR
   طرح {{ar-verb (old)|I|طرح|ṭáraḥa}}{{ar-verb (old)|II|طرّح|ṭárraḥa}}{{ar-verb (old)|III|طارح|ṭāraḥa}}{{ar-verb (old)|V|تطرح|taṭárraḥa}}{{ar-verb (old)|VI|تطارح|taṭāraḥa}}{{ar-verb (old)|VII|انطرح|inṭáraḥa}}{{ar-verb (old)|VIII|اطرح|iṭṭáraḥa}} :: to cede, to surrender, to yield
   أطاع {{ar-verb (old)|IV|أطاعَ|’aTaa3a|اطاع|يُطيعُ|يطيع}} :: to submit, to yield, to accede
 ===you===
-  انت أنْتَ (’ínta) {m}, أنْتُم (’íntum, ’ántum) {p} :: you
-  انت أنْتِ (’ínti) {f}, أنْتُن (’íntun, ’ántun) {f|p} :: you
   (Egyptian Arabic) انت {m} (inta) (pronoun), انتي (inti) {f}, انتوا (intu) {p} :: you
   (Tunisian Arabic) اِنْتِ {m|f} (ʾinti) (pronoun) :: you
   (Egyptian Arabic) انتوا {p} (íntu) (pronoun) :: you (subject pronoun)
@@ -20098,7 +20015,7 @@ Index: EN EN->AR
   أحبك (uHíbbuka, uHíbbak) :: I love you (to a male)
   أحبك (uHíbbuki, uHíbbik) :: I love you (to a female)
   كيف حالك؟ (kaifa Haalak) :: how are you?
-  أنتم أنْتُم (’ántum) {p} :: you
+  أنتم {{ar-pron|head=أنْتُم|tr=ʾántum}} {p} :: you {p}
 ===young===
   عجل (‘ijl), plural عجول (‘ujūl) :: a calf, young cow
 ===your===
@@ -20154,15 +20071,22 @@ Index: EN EN->AR
 ===zone===
   قطر (quTr) {m}, اقطار (’aqTār) {p} :: region, quarter, district, section, zone
   منطقة {{ar-noun|tr=mintʿáqa|g=f|pl=مناطق|pltr=manātʿiq}} :: zone
+===زرد===
+  زرود (zurūd) {m|p} :: coats of chainmail (plural of زرد).
 ===ʔ===
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
 ===ء===
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
+===ʾislām===
+  الإسلام {{ar-noun|tr=al-ʾislām|g=m}} :: piety, religious submission to the monotheistic God
+    المعنى العام لكلمة الإسلام هو الاستسلام لله :: The meaning of the word al-ʾislām is 'the submission to God'.
 ===ʾism===
   (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
     مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
     He didn't choose a good title for his book :: --
+===ʕárafa===
+  يعرفه (yaʕrífuhu) :: he knows it/him, he recognizes it/him. (from the verb عرف, ʕárafa)
 ===ع===
   س / س‍ / ‍س‍ / ‍س (sīn) :: The fifteenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ن and followed by ع.
   ظ / ظ‍ / ‍ظ‍ / ‍ظ (ẓā’) :: The seventeenth letter of the Arabic alphabet. It is preceded by ط and followed by ع.
@@ -20177,6 +20101,8 @@ Index: EN EN->AR
   اعراب (iʕrāb) {m}اعراب{p} :: Arabs (Plural form of عرب).
 ===عربي===
   عربية (ʕarabíyya) {f} or {p} :: Arabic (feminine or plural form of عربي)
+===عرف===
+  يعرفه (yaʕrífuhu) :: he knows it/him, he recognizes it/him. (from the verb عرف, ʕárafa)
 ===ڢ===
   (Moroccan Arabic) ڧ / ڧ‍ / ‍ڧ‍ / ‍ڧ (qāf) :: The twenty-first letter of the Moroccan Arabic alphabet. It is preceded by ڢ and followed by ك.
 ===ڧ===
index 1fef6c91e03bb17952019221bba35e0fff4e083a..592109e38b8e080caa317097d0d1a88941dfd1ba 100644 (file)
@@ -553,9 +553,6 @@ Index: DE DE->EN
   (Old High German) bitten (verb) :: to ask
 ***bitter***
   bitter {{de-adj|comparative=bitterer|superlative=bittersten}} :: bitter
-***blast***
-  blast :: {{de-verb form of|blasen|2|p|g}}
-  blast :: {{de-verb form of|blasen|i|p}}
 ***blau***
   blau {{de-adj|blauer|blausten|superlative2=blauesten}} :: blue
   blau {{de-adj|blauer|blausten|superlative2=blauesten}} :: drunk
@@ -1000,7 +997,7 @@ Index: DE DE->EN
 ***Digitalkamera***
   Digitalkamera {{de-noun|g=f|plural=Digitalkameras}} :: digital camera.
 ***din***
-  (Old High German) din dīn :: your (singular)
+  (Old High German) dīn (pronoun) :: your (singular)
 ***dir***
   dir (pronoun form) :: {personal} dative of du; you, to you.
   dir (pronoun form) :: {reflexive} dative; yourself, to yourself.
@@ -2788,7 +2785,7 @@ Index: DE DE->EN
 ***PS***
   PS (abbreviation) :: Abbreviation of Pferdestärken (horsepower)
 ***Python***
-  Python {{de-noun|g=f|plural=Pythons}} :: python (snake)
+  Python {{de-noun|g=m|plural=Pythons}} :: python (snake)
   Python {{de-noun|g=n|pl=-|genitive=Python}} :: Python
 ***quake***
   quake :: {{de-verb form of|quaken|1|s|g}}
@@ -2840,8 +2837,8 @@ Index: DE DE->EN
     The decay of the Roman empire robbed the city of Rome of the old position as the center of all that was happening. :: --
   rauben (verb) :: to take away
 ***Räuber***
-  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: robber, thief.
-  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: pirate.
+  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: robber, thief
+  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: pirate
   Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: sucker (horticulture)
 ***Raum***
   Raum {{de-noun|g=m|genitive=Raums|genitive2=Raumes|plural=Räume}} :: room, space, chamber
@@ -8375,7 +8372,7 @@ Index: EN EN->DE
 ===pink===
   rosa (adjective) :: pink
 ===pirate===
-  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: pirate.
+  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: pirate
 ===pitch===
   Zusammenklang :: "sounding together", a pitch simultaneity, sonority, or a chord in the sense of indpendent entities sounding together.
 ===pitchfork===
@@ -8567,7 +8564,7 @@ Index: EN EN->DE
 ===put===
   geben {{de-verb-strong|gibt|gab|gegeben|class=5}} :: {transitive} To present; to put.
 ===python===
-  Python {{de-noun|g=f|plural=Pythons}} :: python (snake)
+  Python {{de-noun|g=m|plural=Pythons}} :: python (snake)
 ===Python===
   Python {{de-noun|g=n|pl=-|genitive=Python}} :: Python
 ===qualities===
@@ -8796,7 +8793,7 @@ Index: EN EN->DE
     Der Zerfall des Römerreiches raubte der Stadt Rom die alte Stellung als Mittelpunkt alles Geschehens. :: --
     The decay of the Roman empire robbed the city of Rome of the old position as the center of all that was happening. :: --
 ===robber===
-  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: robber, thief.
+  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: robber, thief
 ===rock===
   wiegen {{de-verb-weak|wiegt|wiegte|gewiegt}} :: {{transitive|or|reflexive}} to move (something) from side to side; to sway; to shake; to rock
 ===rogue===
@@ -9198,7 +9195,7 @@ Index: EN EN->DE
 ===snail===
   Kugelschnecke {{de-noun|g=f|plural=Kugelschnecken}} :: a sort of snail
 ===snake===
-  Python {{de-noun|g=f|plural=Pythons}} :: python (snake)
+  Python {{de-noun|g=m|plural=Pythons}} :: python (snake)
 ===sneeze===
   Gesundheit! (interjection) :: said to somebody who has sneezed, bless you.
 ===snow===
@@ -9740,7 +9737,7 @@ Index: EN EN->DE
 ===thick===
   dick {{de-adj|dicker|dicksten}} :: thick
 ===thief===
-  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: robber, thief.
+  Räuber {{de-noun|g=m|gen=Räubers|plural=Räuber}} :: robber, thief
 ===thing===
   er (pronoun) :: {personal} it (when the grammatical gender of the object/article/thing/animal etc., being referred to, is masculine (der)).
     Dies ist mein Hund. Er heißt Waldi. :: This is my dog. Its name is Waldi.
@@ -10555,7 +10552,7 @@ Index: EN EN->DE
   Käfer {{de-noun|g=m|genitive=Käfers|plural=Käfer}} :: {slang} young girl, wench
 ===your===
   dein {m} (pronoun), neuter: dein, feminine: deine, plural: deine :: {possessive} your (informal, friends, relatives).
-  (Old High German) din dīn :: your (singular)
+  (Old High German) dīn (pronoun) :: your (singular)
 ===yourself===
   dir (pronoun form) :: {reflexive} dative; yourself, to yourself.
 ===Youth===
index 0cf9906ef84d1bdfe8ea8d0886ca563f69fc289f..6de44b10a08235e73d6f2fd0a1b4a9c22df96d2a 100644 (file)
@@ -31,8 +31,8 @@ Index: DE DE->EN
   abdanken :: abdicate (renounce a throne) (verb)
 ***Abdankung***
   Verzicht, Abdankung {f} :: abdication (the act of abdicating; the renunciation of a high office, dignity, or trust, by its holder) (noun)
-===abdominal===
-  abdominal, also: den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
+***abdominal***
+  abdominal, den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
 ***Abduktion***
   Abduktion {f} :: abduction (physiology: movement separating limb from axis) (noun)
   Abduktion {f} :: abduction (logic: syllogism) (noun)
@@ -116,9 +116,9 @@ Index: DE DE->EN
   abschaffen :: abrogate (to annul by an authoritative act) (verb)
 ***Abschaffung***
   Abschaffung {f} :: abolishment (The act of abolishing) (noun)
-  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing) (noun)
-  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade) (noun)
-  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves) (noun)
+  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing)
+  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade)
+  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves)
 ***abscheu***
   abscheu, ekel :: abhorrence (extreme aversion) (noun)
 ***abscheulich***
@@ -260,8 +260,6 @@ Index: DE DE->EN
   alphabetisch :: alphabetical (in the sequence of the letters of the alphabet) (adjective)
 ***Alphabetismus***
   Alphabetismus {m} :: alphabetism (form of literacy) (noun)
-===also===
-  abdominal, also: den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
 ***am***
   Montag, am Montag :: Monday (on Monday) (adverb)
 ***an***
@@ -347,7 +345,7 @@ Index: DE DE->EN
 ===aufheben===
   zunichte machen, aufheben, rückgängig machen :: abrogate (to put an end to) (verb)
 ***Aufhebung***
-  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing) (noun)
+  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing)
 ***aufhetzen***
   ermutigen, aufhetzen, anstiften :: abet (to assist or encourage in crime) (verb)
 ***aufzeichnen***
@@ -450,7 +448,7 @@ Index: DE DE->EN
 ***bestrafen***
   bestrafen :: book (penalise) (verb)
 ===betreffend===
-  abdominal, also: den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
+  abdominal, den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
 ***betrunken***
   betrunken, besoffen :: pissed (Drunk) (adjective)
 ===Bett===
@@ -621,8 +619,8 @@ Index: DE DE->EN
 ===Der===
   Der Große Teich :: pond (The Atlantic Ocean) (noun)
 ===des===
-  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade) (noun)
-  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves) (noun)
+  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade)
+  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves)
 ===desto===
   je + comp., + desto + comp. :: the (the + ~comparative, the + comparative) (adverb)
 ***deutsch***
@@ -1272,6 +1270,8 @@ Index: DE DE->EN
   Jahrzehnt {n}, (archaic) Dekade {f} :: decade (a period of ten years) (noun)
 ***jämmerlich***
   erbärmlich, jämmerlich :: abysmal (extremely bad) (adjective)
+***Jannowaa***
+  (Kölsch) Jannowaa :: January (first month of the Gregorian calendar) (proper noun)
 ***januar***
   (Alemannic German) januar :: January (first month of the Gregorian calendar) (proper noun)
 ***Januar***
@@ -2029,8 +2029,8 @@ Index: DE DE->EN
 ***singulär***
   singulär :: singular (linear algebra: of matrix: having no inverse) (adjective)
 ===Sklavenhandels===
-  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade) (noun)
-  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves) (noun)
+  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade)
+  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves)
 ===smoking===
   abstinent (mostly when referring to alcohol or smoking), enthaltsam (sexually abstinent, celibate) :: abstinent (refraining from indulgence) (adjective)
 ===sniffer===
@@ -2101,7 +2101,7 @@ Index: DE DE->EN
   nullen, auf Null stellen :: zero (to set to zero) (verb)
 ***sterben***
   sterben :: absquatulate (to die) (verb)
-  sterben :: die (to stop living) (verb)
+  sterben, umkommen :: die (to stop living) (verb)
 ***Stern***
   Stern {m} :: star (luminous celestial body) (noun)
 ===storm===
@@ -2227,6 +2227,8 @@ Index: DE DE->EN
   (Low German) ümdat, dor :: because (by or for the cause that; on this account that; for the reason that) (conjunction)
 ***umgehen***
   behandeln {f}, umgehen (+ mit) :: deal (handle, manage) (verb)
+***umkommen***
+  sterben, umkommen :: die (to stop living) (verb)
 ***umsonst***
   umsonst, gratis, kostenlos :: free (obtainable without payment) (adjective)
 ***Umstandswort***
@@ -2264,7 +2266,7 @@ Index: DE DE->EN
   Unterbegriff {m}, Hyponym {n} :: hyponym (more specific word) (noun)
 ***Unterleib***
   Bauch {m}, Unterleib {m} :: abdomen (belly) (noun)
-  abdominal, also: den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
+  abdominal, den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
 ***unvollkommen***
   unvollkommen, rudimentär :: abortive (Imperfectly formed or developed; rudimentary; sterile) (adjective)
 ***unzählbar***
@@ -2723,9 +2725,9 @@ Index: EN EN->DE
   Verzicht, Abdankung {f} :: abdication (the act of abdicating; the renunciation of a high office, dignity, or trust, by its holder) (noun)
 ***abdomen***
   Bauch {m}, Unterleib {m} :: abdomen (belly) (noun)
-  abdominal, also: den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
+  abdominal, den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
 ***abdominal***
-  abdominal, also: den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
+  abdominal, den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
 ===abducing===
   Entführung {f} :: abduction (act of abducing or abducting) (noun)
 ***abduct***
@@ -2825,15 +2827,15 @@ Index: EN EN->DE
   vernichten :: abolish (to destroy) (verb)
 ===abolishing===
   Abschaffung {f} :: abolishment (The act of abolishing) (noun)
-  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing) (noun)
+  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing)
 ***abolishment***
   Abschaffung {f} :: abolishment (The act of abolishing) (noun)
 ***abolition***
-  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing) (noun)
-  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade) (noun)
-  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves) (noun)
+  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing)
+  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade)
+  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves)
 ===Abolition===
-  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade) (noun)
+  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade)
 ***abolitionism***
   Abolitionismus :: abolitionism (noun)
 ***abominable***
@@ -3077,7 +3079,7 @@ Index: EN EN->DE
   Entführung {f} :: abduction (act of abducing or abducting) (noun)
   Verweilen {n}, Warten {n} :: abode (obsolete: act of waiting) (noun)
   Abschaffung {f} :: abolishment (The act of abolishing) (noun)
-  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing) (noun)
+  Abschaffung {f}, Aufhebung {f} :: abolition (act of abolishing)
   Abtreibung {f} :: abortion (act of inducing abortion) (noun)
   Abrasion {f} :: abrasion (act of abrading) (noun)
   abschaffen :: abrogate (to annul by an authoritative act) (verb)
@@ -3602,6 +3604,7 @@ Index: EN EN->DE
   (Low German) Dezember {m}, Dezembermaand {m} :: December (twelfth month of the Gregorian calendar) (proper noun)
   (Alemannic German) januar :: January (first month of the Gregorian calendar) (proper noun)
   Januar {m} :: January (first month of the Gregorian calendar) (proper noun)
+  (Kölsch) Jannowaa :: January (first month of the Gregorian calendar) (proper noun)
   (Low German) Januor {m}, Januormaand {m} :: January (first month of the Gregorian calendar) (proper noun)
   (Alemannic German) februar :: February (second month of the Gregorian calendar) (proper noun)
   Februar {m} :: February (second month of the Gregorian calendar) (proper noun)
@@ -4237,7 +4240,7 @@ Index: EN EN->DE
   Wörterbuch {n} :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   assoziatives Datenfeld {n} :: dictionary (an associative array) (noun)
 ***die***
-  sterben :: die (to stop living) (verb)
+  sterben, umkommen :: die (to stop living) (verb)
   Würfel {m} :: die (polyhedron used in games of chance) (noun)
   (Low German) terling {m}, wörpelterling {m}, dubbelsten {m}, wörpel {m} :: die (polyhedron used in games of chance) (noun)
   sterben :: absquatulate (to die) (verb)
@@ -4426,7 +4429,7 @@ Index: EN EN->DE
 ===elliptical===
   sein :: be (elliptical form of "be here", or similar) (verb)
 ===emancipation===
-  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves) (noun)
+  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves)
 ===embarrass===
   beschämen :: abash (to make ashamed, to embarrass) (verb)
 ===embarrassed===
@@ -4664,6 +4667,7 @@ Index: EN EN->DE
   Vorname {m} :: first name (name chosen by parents) (noun)
   (Alemannic German) januar :: January (first month of the Gregorian calendar) (proper noun)
   Januar {m} :: January (first month of the Gregorian calendar) (proper noun)
+  (Kölsch) Jannowaa :: January (first month of the Gregorian calendar) (proper noun)
   (Low German) Januor {m}, Januormaand {m} :: January (first month of the Gregorian calendar) (proper noun)
   Abszisse {f} :: abscissa (first of two coordinates) (noun)
   zweiter {m} :: second (that which comes after the first) (adjective)
@@ -4916,6 +4920,7 @@ Index: EN EN->DE
   (Low German) Dezember {m}, Dezembermaand {m} :: December (twelfth month of the Gregorian calendar) (proper noun)
   (Alemannic German) januar :: January (first month of the Gregorian calendar) (proper noun)
   Januar {m} :: January (first month of the Gregorian calendar) (proper noun)
+  (Kölsch) Jannowaa :: January (first month of the Gregorian calendar) (proper noun)
   (Low German) Januor {m}, Januormaand {m} :: January (first month of the Gregorian calendar) (proper noun)
   (Alemannic German) februar :: February (second month of the Gregorian calendar) (proper noun)
   Februar {m} :: February (second month of the Gregorian calendar) (proper noun)
@@ -5272,6 +5277,7 @@ Index: EN EN->DE
 ***January***
   (Alemannic German) januar :: January (first month of the Gregorian calendar) (proper noun)
   Januar {m} :: January (first month of the Gregorian calendar) (proper noun)
+  (Kölsch) Jannowaa :: January (first month of the Gregorian calendar) (proper noun)
   (Low German) Januor {m}, Januormaand {m} :: January (first month of the Gregorian calendar) (proper noun)
 ***Japan***
   Japan :: Japan (A Far East country in Asia) (proper noun)
@@ -5446,7 +5452,7 @@ Index: EN EN->DE
 ===little===
   Null {f}, Nichts {n}, Niemand {m} :: zero (person of little importance) (noun)
 ===living===
-  sterben :: die (to stop living) (verb)
+  sterben, umkommen :: die (to stop living) (verb)
 ===loathsome===
   Ekel {n} :: abhorrence (loathsome person or thing) (noun)
   verabscheuungswürdig, verhasst, abscheulich :: abominable (hateful; detestable; loathsome) (adjective)
@@ -5724,6 +5730,7 @@ Index: EN EN->DE
   (Low German) Dezember {m}, Dezembermaand {m} :: December (twelfth month of the Gregorian calendar) (proper noun)
   (Alemannic German) januar :: January (first month of the Gregorian calendar) (proper noun)
   Januar {m} :: January (first month of the Gregorian calendar) (proper noun)
+  (Kölsch) Jannowaa :: January (first month of the Gregorian calendar) (proper noun)
   (Low German) Januor {m}, Januormaand {m} :: January (first month of the Gregorian calendar) (proper noun)
   (Alemannic German) februar :: February (second month of the Gregorian calendar) (proper noun)
   Februar {m} :: February (second month of the Gregorian calendar) (proper noun)
@@ -6247,7 +6254,7 @@ Index: EN EN->DE
   Verkörperung {f} :: avatar (The physical embodiment of an idea or concept; a personification) (noun)
 ===pertaining===
   Aaronisch :: Aaronic (pertaining to Aaron) (adjective)
-  abdominal, also: den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
+  abdominal, den Unterleib betreffend :: abdominal (of or pertaining to the abdomen) (adjective)
   anormal, abnormal :: abnormal (of or pertaining to behaviour that deviates from norms) (adjective)
   englisch :: English (of or pertaining to the English language) (adjective)
   englisch :: English (of or pertaining to England) (adjective)
@@ -6965,9 +6972,9 @@ Index: EN EN->DE
 ===slaughterhouse===
   Schlachthaus {n}, Schlachthof {m} :: abattoir (public slaughterhouse) (noun)
 ===slave===
-  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade) (noun)
+  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade)
 ===slaves===
-  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves) (noun)
+  Abschaffung des Sklavenhandels :: abolition (emancipation of slaves)
 ***sleep***
   Tiefschlaf {m} :: deep sleep (state of sleep) (noun)
 ===slightly===
@@ -7130,7 +7137,7 @@ Index: EN EN->DE
   Brühe {f} :: stock (broth) (noun)
   vorrätig, verfügbar :: stock (normally available for purchase) (adjective)
 ===stop===
-  sterben :: die (to stop living) (verb)
+  sterben, umkommen :: die (to stop living) (verb)
   Punkt {m} :: point (full stop) (noun)
 ===storage===
   Bit {n} :: bit (smallest unit of storage) (noun)
@@ -7441,7 +7448,7 @@ Index: EN EN->DE
   Handel {m} :: trade (instance of buying or selling) (noun)
   Gewerkschaft {f} :: trade union (organization) (noun)
   handeln :: deal (trade) (verb)
-  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade) (noun)
+  Abschaffung des Sklavenhandels :: abolition (Abolition of slave trade)
 ===traditional===
   traditionelles Chinesisch {n}, Langzeichen {n} :: Traditional Chinese (Chinese written using traditional characters) (proper noun)
 ***Traditional***
index ea100bc336c0538525c0308ba03dec12f8729e5e..460d5b32b44e0793b24dc14d3b0fc0a1ff5ea80f 100644 (file)
@@ -122,7 +122,7 @@ Index: FR FR->EN
 ***abdomen***
   abdomen {{fr-noun|m}} :: abdomen
 ***abdominal***
-  abdominal {{fr-adj|mp=abdominaux}} :: Abdominal; of the abdomen.
+  abdominal {{fr-adj|mp=abdominaux}} :: abdominal; of the abdomen.
   abdominales {{fr-adj-form|f|p}} :: {feminine plural of|abdominal}
     douleurs abdominales :: abdominal pains
 ***abdominales***
@@ -346,6 +346,8 @@ Index: FR FR->EN
   abyme {{fr-noun|m}} :: {archaic} {alternative form of|abime}
 ***abyssal***
   abyssal {{fr-adj-al|abyss}} :: abyssal
+***acacia***
+  acacia {{fr-noun|f}} :: acacia
 ***acajou***
   acajou {{fr-noun|m}} :: cashew tree; also, its fruit
   acajou {{fr-noun|m}} :: mahogany tree; also, its timber
@@ -1249,14 +1251,10 @@ Index: FR FR->EN
 ***carne***
   carne {{fr-noun|f}} :: {informal} meat (usually of bad quality)
   carne {{fr-noun|f}} :: nag (old useless horse)
-***casa***
-  casa {fr-verb-form} :: {conjugation of|caser|3|s|past historic}
 ***case***
   case {{fr-noun|f}} :: hut, cabin, shack
   case {{fr-noun|f}} :: box (on form)
   case {{fr-noun|f}} :: square (on boardgame)
-===caser===
-  casa {fr-verb-form} :: {conjugation of|caser|3|s|past historic}
 ***Catalan***
   Catalan {{fr-noun|m|f=Catalane}} :: A Catalonian person.
 ***catch***
@@ -1264,7 +1262,17 @@ Index: FR FR->EN
 ***cause***
   cause {{fr-noun|f}} :: cause
   cause {{fr-noun|f}} :: case (a legal proceeding)
-  cause :: Third person singular indicative of causer
+  cause {fr-verb-form} :: {conjugation of|causer|1|s|pres|ind}
+  cause {fr-verb-form} :: {conjugation of|causer|3|s|pres|ind}
+  cause {fr-verb-form} :: {conjugation of|causer|1|s|pres|sub}
+  cause {fr-verb-form} :: {conjugation of|causer|3|s|pres|sub}
+  cause {fr-verb-form} :: {conjugation of|causer|2|s|imp}
+===causer===
+  cause {fr-verb-form} :: {conjugation of|causer|1|s|pres|ind}
+  cause {fr-verb-form} :: {conjugation of|causer|3|s|pres|ind}
+  cause {fr-verb-form} :: {conjugation of|causer|1|s|pres|sub}
+  cause {fr-verb-form} :: {conjugation of|causer|3|s|pres|sub}
+  cause {fr-verb-form} :: {conjugation of|causer|2|s|imp}
 ***CD***
   CD {{fr-noun-inv|m}} :: CD (compact disk)
 ===ce===
@@ -1994,7 +2002,9 @@ Index: FR FR->EN
 ***due***
   due {f} :: {feminine past participle of|devoir}
 ***duel***
-  duel {m} (adjective) :: dual (having two components)
+  duel {{fr-adj|f=duelle}} :: dual (having two components)
+  duel {{fr-noun|m}} :: dual (battle)
+  duel {{fr-noun|m}} :: {grammar} dual
   (Old French) duel {{fro-noun|m|dueus|dueus}} :: sadness; grief; sorrow
     circa 1170, {{w|Chrétien de Troyes}}, Érec et Énide: :: --
     Son plor et son duel demenant :: --
@@ -2133,6 +2143,8 @@ Index: FR FR->EN
     en détresse :: in distress
     en bonne humeur :: in a good mood
   (Old French) en (preposition) :: in; inside
+  (Old French) en (preposition) :: on; upon
+    {{quote-book|year=12<sup>th</sup> Century|title=Raoul de Cambrai|author=Unknown|passage=qi en la crois fu mis|translation=[He] who was put on the cross}} :: --
 ===En===
   de {fr-prep} :: of (expresses belonging)
     1837 Louis Viardot, L’Ingénieux Hidalgo Don Quichotte de la Manche<sup>fr.Wikisource</sup>, translation of El ingenioso hidalgo Don Quijote de la Mancha by Miguel de Cervantes Saavedra, Chapter I: :: --
@@ -3222,7 +3234,7 @@ Index: FR FR->EN
     Je lui ai donné le livre. :: I gave the book to him/her.
 ===Jean===
   lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
+    Jean lit très souvent. :: Jean reads very often.
 ***jerk***
   jerk {{fr-noun|m}} :: jerk (dance)
 ***jeudi***
@@ -3444,12 +3456,13 @@ Index: FR FR->EN
   lifting {{fr-noun|m}} :: facelift
 ===lire===
   lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
+    Jean lit très souvent. :: Jean reads very often.
 ***lit***
   lit {{fr-noun|m}} :: bed
     Où est-il? Il dort dans son lit. :: Where is he? He's sleeping in his bed.
+  (Old French) lit {{fro-noun|m|liz|liz}} :: bed
   lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
+    Jean lit très souvent. :: Jean reads very often.
 ***livre***
   livre {{fr-noun|m}} :: book
   livre {{fr-noun|f}} :: pound (unit of weight)
@@ -3563,9 +3576,7 @@ Index: FR FR->EN
     Martin a trois sandwichs, mais j'en ai seulement deux. :: Martin has sandwiches, but I have only two (of them).
     Il y en a combien ? :: How many of them are there?
     Je bois de l'alcool parce que j'en ai besoin :: I drink alcohol because I need (of) it.
-***maison***
-  maison {{fr-noun|f}} :: house
-  (Middle French) maison {{frm-noun|f}} :: house
+===maison===
   y (pronoun), adverbial :: there (at a place)
     Il est dans la maison. Il y est. :: “He is in the house. He is there.”
 ===majorité===
@@ -4201,7 +4212,7 @@ Index: FR FR->EN
 ***Palestine***
   Palestine {{fr-proper noun|f}} :: Palestine
 ***palpable***
-  palpable {{fr-adj|feminine=palpable}} :: palpable
+  palpable {fr-adj-mf} :: palpable
 ***pamphlet***
   pamphlet {{fr-noun|m}} :: lampoon (written attack)
   pamphlet {{fr-noun|m}} :: {Quebec} pamphlet (small booklet)
@@ -4350,6 +4361,11 @@ Index: FR FR->EN
   passage {fr-verb-form} :: {conjugation of|passager|2|s|imp}
 ***patronage***
   patronage {{fr-noun|m}} :: Patronage
+***Paulo***
+  São Paulo {{fr-proper noun|m}} :: São Paulo
+    1955, {{w|Claude Lévi-Strauss}}, Tristes Tropiques, 1993 ed., {{w|Plon (publisher)|Plon}}, ISBN 978-2-259-00359-1, chap. X,I p. 108 :: --
+    Et pourtant São Paulo ne m'a jamais paru laide : c'était une ville sauvage comme le sont toutes les villes américaines, à l'exception peut-être de Washington, D.C., [...] :: --
+    — And yet I never thought that São Paulo was ugly: it was a‘wild’ town, as are all American towns, with the possible exception of Washington, D.C., [...] — 1973, John & Doreen Weightman (trans.), {{w|Tristes Tropiques}}, 2011 ed., {{w|Penguin Books}}, ISBN 978-0-14-197073-8 :: --
 ***pavement***
   pavement {{fr-noun|m}} :: paving
   pavement {{fr-noun|m}} :: tiled floor
@@ -4965,6 +4981,11 @@ Index: FR FR->EN
 ===sans===
   c :: {text messaging} {Informal spelling|c'est}
     C nul ici sans George :: It's rubbish here without George
+***São***
+  São Paulo {{fr-proper noun|m}} :: São Paulo
+    1955, {{w|Claude Lévi-Strauss}}, Tristes Tropiques, 1993 ed., {{w|Plon (publisher)|Plon}}, ISBN 978-2-259-00359-1, chap. X,I p. 108 :: --
+    Et pourtant São Paulo ne m'a jamais paru laide : c'était une ville sauvage comme le sont toutes les villes américaines, à l'exception peut-être de Washington, D.C., [...] :: --
+    — And yet I never thought that São Paulo was ugly: it was a‘wild’ town, as are all American towns, with the possible exception of Washington, D.C., [...] — 1973, John & Doreen Weightman (trans.), {{w|Tristes Tropiques}}, 2011 ed., {{w|Penguin Books}}, ISBN 978-0-14-197073-8 :: --
 ***Sarthe***
   Condé-sur-Sarthe :: Small town near Alençon in France
 ***Saskatchewan***
@@ -5136,7 +5157,7 @@ Index: FR FR->EN
     Il a souri quand j'ai mis la main entre ses cuisses et je me suis mis à frotter sa grosse bite. :: He smiled when I put my hand between his thighs and started to rub his big stick.
 ===souvent===
   lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
+    Jean lit très souvent. :: Jean reads very often.
 ===sport===
   de {fr-prep} :: {{context|used attributively, often translated into English as a compound noun}}
     jus de pomme :: apple juice
@@ -5385,7 +5406,7 @@ Index: FR FR->EN
   treize (cardinal number) :: thirteen
 ===très===
   lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
+    Jean lit très souvent. :: Jean reads very often.
 ***triangle***
   triangle {{fr-noun|m}} :: triangle (polygon)
   triangle {{fr-noun|m}} :: triangle (percussion instrument)
@@ -5941,13 +5962,12 @@ Index: EN EN->FR
   abdication {{fr-noun|f}} :: abdication
 ===abdomen===
   abdomen {{fr-noun|m}} :: abdomen
-  abdominal {{fr-adj|mp=abdominaux}} :: Abdominal; of the abdomen.
+  abdominal {{fr-adj|mp=abdominaux}} :: abdominal; of the abdomen.
 ===abdominal===
+  abdominal {{fr-adj|mp=abdominaux}} :: abdominal; of the abdomen.
   abdo {{fr-noun|m}} :: {{rare|_|in the singular}} ab (abdominal muscle)
   abdominales {{fr-adj-form|f|p}} :: {feminine plural of|abdominal}
     douleurs abdominales :: abdominal pains
-===Abdominal===
-  abdominal {{fr-adj|mp=abdominaux}} :: Abdominal; of the abdomen.
 ===abduction===
   abduction {{fr-noun|f}} :: {physiology} Abductive movement; abduction.
   abduction {{fr-noun|f}} :: {{logic|computing}} Abductive reasoning; abduction.
@@ -6054,6 +6074,8 @@ Index: EN EN->FR
   (Old French) abusion {{fro-noun|f}} :: abuse
 ===abyssal===
   abyssal {{fr-adj-al|abyss}} :: abyssal
+===acacia===
+  acacia {{fr-noun|f}} :: acacia
 ===Accent===
   accent {{fr-noun|m}} :: Accent (one's manner of speaking)
   accent {{fr-noun|m}} :: Accent (the symbol on a character)
@@ -6704,6 +6726,8 @@ Index: EN EN->FR
   basket {{fr-noun|m|pl=basket}} :: basketball
   panier {{fr-noun|m}} :: goal scored in basketball
   panier {{fr-noun|m}} :: basketball hoop
+===battle===
+  duel {{fr-noun|m}} :: dual (battle)
 ===bay===
   bai {fr-adj} :: bay
 ===beam===
@@ -6743,6 +6767,7 @@ Index: EN EN->FR
 ===bed===
   lit {{fr-noun|m}} :: bed
     Où est-il? Il dort dans son lit. :: Where is he? He's sleeping in his bed.
+  (Old French) lit {{fro-noun|m|liz|liz}} :: bed
 ===bee===
   abeille {{fr-noun|f}}A honey bee (''abeille'' 1) collecting pollenA solitary bee (''abeille'' 2) :: A common honey bee (Apis mellifera); a social insect that carries a stinger and is often domesticated for the production of honey and beeswax
     Elle s’est fait piquer par une abeille. :: She was stung by a bee.
@@ -7232,8 +7257,6 @@ Index: EN EN->FR
   cause {{fr-noun|f}} :: cause
 ===caused===
   ablactation {{fr-noun|f}} :: {medicine} Interruption in secretion of breast milk, usually caused by a hormonal imbalance.
-===causer===
-  cause :: Third person singular indicative of causer
 ===causeway===
   boulevard {{fr-noun|m}} :: A causeway
 ===caution===
@@ -7543,7 +7566,7 @@ Index: EN EN->FR
   (Middle French) sentence {{frm-noun|f|s}} :: sentence (grammatically complete series of words)
     {{quote-book|year=1552|title=Le Tiers Livre|author=François Rabelais|passage=tant a cause des amphibologies, equivocques, & obscuritez des motz, que de la briefveté des sentences|translation=}} :: --
 ===components===
-  duel {m} (adjective) :: dual (having two components)
+  duel {{fr-adj|f=duelle}} :: dual (having two components)
 ===composition===
   en {fr-prep} :: of, made of (used to describe composition)
     Une chaise en hêtre :: a chair made of beech/a beech chair
@@ -8066,7 +8089,9 @@ Index: EN EN->FR
   bien (adverb), comparative and superlative: mieux :: (+ de, des, du) a lot of
     Macy Gray a traversé bien des épreuves. :: Macy Gray got through a lot of ordeals.
 ===dual===
-  duel {m} (adjective) :: dual (having two components)
+  duel {{fr-adj|f=duelle}} :: dual (having two components)
+  duel {{fr-noun|m}} :: dual (battle)
+  duel {{fr-noun|m}} :: {grammar} dual
 ===Dual===
   trail {{fr-noun|f}} :: Dual-sport motorcycle
 ===dubbed===
@@ -9196,7 +9221,7 @@ Index: EN EN->FR
     Il n'a pas de crayon. :: He hasn't got a pencil.
     Je n'ai pas de temps. :: I haven't got any time.
 ===having===
-  duel {m} (adjective) :: dual (having two components)
+  duel {{fr-adj|f=duelle}} :: dual (having two components)
   être {{fr-verb|type=auxiliary}} :: {auxiliary} Used to form the perfect and pluperfect tense of certain verbs (including all reflexive verbs)
     Après être allé au yoga, je suis rentré chez moi. :: After having gone to yoga, I came back home.
 ===he===
@@ -9441,8 +9466,6 @@ Index: EN EN->FR
 ===house===
   house {{fr-noun-unc|f}} :: house music, house
   full {{fr-noun|m}} :: {poker} full house
-  maison {{fr-noun|f}} :: house
-  (Middle French) maison {{frm-noun|f}} :: house
   y (pronoun), adverbial :: there (at a place)
     Il est dans la maison. Il y est. :: “He is in the house. He is there.”
 ===How===
@@ -9606,7 +9629,6 @@ Index: EN EN->FR
   suit :: third-person singular present indicative form of suivre
   fit {fr-verb-form} :: third-person singular indicative past historic of faire
   met (verb form) :: third-person singular indicative present of "mettre", puts
-  cause :: Third person singular indicative of causer
   rate {fr-verb-form} :: first-person singular indicative present form of rater
   rate {fr-verb-form} :: third-person singular indicative present form of rater
 ===indirect===
@@ -9781,15 +9803,15 @@ Index: EN EN->FR
     Whites and greens, blues and yellows. :: --
 ===javelin===
   (Old French) dart {{fro-noun|m|darz|darz|dart}} :: weapon similar to a javelin
+===Jean===
+  lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
+    Jean lit très souvent. :: Jean reads very often.
 ===jeopardy===
   danger {{fr-noun|m}} :: jeopardy (danger of loss, harm, or failure)
 ===jerk===
   jerk {{fr-noun|m}} :: jerk (dance)
 ===job===
   livrer {fr-verb} :: {reflexive} (with à) to practise (a sport); be engaged in (a job, research); set up (an enquiry)
-===John===
-  lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
 ===joint===
   article {{fr-noun|m}} :: joint, articulation
 ===Jordan===
@@ -10955,7 +10977,7 @@ Index: EN EN->FR
     abeilles sauvages et abeilles domestiques :: wild bees and domesticated bees
     essaim d’abeilles :: swarm of bees
   lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
+    Jean lit très souvent. :: Jean reads very often.
 ===ogre===
   ogre {{fr-noun|m|f=ogresse}} :: {mythology} ogre
 ===oh===
@@ -11121,7 +11143,7 @@ Index: EN EN->FR
 ===Palestine===
   Palestine {{fr-proper noun|f}} :: Palestine
 ===palpable===
-  palpable {{fr-adj|feminine=palpable}} :: palpable
+  palpable {fr-adj-mf} :: palpable
 ===pamphlet===
   pamphlet {{fr-noun|m}} :: {Quebec} pamphlet (small booklet)
 ===pane===
@@ -11201,6 +11223,11 @@ Index: EN EN->FR
     Il peut être battu ce soir. :: He could be beaten this evening.
 ===Patronage===
   patronage {{fr-noun|m}} :: Patronage
+===Paulo===
+  São Paulo {{fr-proper noun|m}} :: São Paulo
+    1955, {{w|Claude Lévi-Strauss}}, Tristes Tropiques, 1993 ed., {{w|Plon (publisher)|Plon}}, ISBN 978-2-259-00359-1, chap. X,I p. 108 :: --
+    Et pourtant São Paulo ne m'a jamais paru laide : c'était une ville sauvage comme le sont toutes les villes américaines, à l'exception peut-être de Washington, D.C., [...] :: --
+    — And yet I never thought that São Paulo was ugly: it was a‘wild’ town, as are all American towns, with the possible exception of Washington, D.C., [...] — 1973, John & Doreen Weightman (trans.), {{w|Tristes Tropiques}}, 2011 ed., {{w|Penguin Books}}, ISBN 978-0-14-197073-8 :: --
 ===pauper===
   (Old French) simple {m|f} (adjective), plural: simples :: peasant, pauper (attibutive)
 ===pause===
@@ -11808,7 +11835,7 @@ Index: EN EN->FR
   cœur {{fr-noun|m}} :: {physics} the core of a nuclear reactor
 ===reads===
   lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
+    Jean lit très souvent. :: Jean reads very often.
 ===really===
   massacrer {fr-verb} :: {figuratively} to do something badly
     Il a massacré cette chanson :: he sung that song really badly (lit. "he massacred that song")
@@ -12050,6 +12077,11 @@ Index: EN EN->FR
     Martin a trois sandwichs, mais j'en ai seulement deux. :: Martin has sandwiches, but I have only two (of them).
     Il y en a combien ? :: How many of them are there?
     Je bois de l'alcool parce que j'en ai besoin :: I drink alcohol because I need (of) it.
+===São===
+  São Paulo {{fr-proper noun|m}} :: São Paulo
+    1955, {{w|Claude Lévi-Strauss}}, Tristes Tropiques, 1993 ed., {{w|Plon (publisher)|Plon}}, ISBN 978-2-259-00359-1, chap. X,I p. 108 :: --
+    Et pourtant São Paulo ne m'a jamais paru laide : c'était une ville sauvage comme le sont toutes les villes américaines, à l'exception peut-être de Washington, D.C., [...] :: --
+    — And yet I never thought that São Paulo was ugly: it was a‘wild’ town, as are all American towns, with the possible exception of Washington, D.C., [...] — 1973, John & Doreen Weightman (trans.), {{w|Tristes Tropiques}}, 2011 ed., {{w|Penguin Books}}, ISBN 978-0-14-197073-8 :: --
 ===Saskatchewan===
   Saskatchewan {{fr-proper noun|f}} :: Saskatchewan
 ===satisfied===
@@ -13054,7 +13086,6 @@ Index: EN EN->FR
     Je lui ai donné le livre. :: I gave the book to him/her.
 ===Third===
   percent (verb form) :: Third-person plural present of percer.
-  cause :: Third person singular indicative of causer
 ===thirteen===
   treize (cardinal number) :: thirteen
 ===this===
@@ -13322,7 +13353,7 @@ Index: EN EN->FR
   {{cardinalbox|fr|1|2|3|un|trois|ord=deuxième|wplink=Deux}}deux (cardinal number) :: two
   deux {{fr-noun|m|pl=deux}} :: two
   (Middle French) deux (noun) {m|inv} :: two
-  duel {m} (adjective) :: dual (having two components)
+  duel {{fr-adj|f=duelle}} :: dual (having two components)
   brick {{fr-noun|m}} :: {nautical} A brig, a two-masted vessel type.
   duo {{fr-noun|m}} :: duo (combination of two things)
   duo {{fr-noun|m}} :: duet (a musical composition for two performers)
@@ -13392,6 +13423,9 @@ Index: EN EN->FR
     {{quote-book|circa 1250|title=Ci encoumence la desputizons dou croisie et dou descroisie.|author=Rutebeuf|passage=Tu dis si grant abusion<br>Que nus ne la porroit descrire[.]|translation=You say such lies<br>That no-one could describe them}} :: --
 ===unusual===
   original {{fr-noun|m}} {m} :: An unusual or eccentric person
+===upon===
+  (Old French) en (preposition) :: on; upon
+    {{quote-book|year=12<sup>th</sup> Century|title=Raoul de Cambrai|author=Unknown|passage=qi en la crois fu mis|translation=[He] who was put on the cross}} :: --
 ===Uruguay===
   Uruguay {{fr-proper noun|m}} :: Uruguay
 ===US===
@@ -13583,7 +13617,7 @@ Index: EN EN->FR
 ===very===
   neuf {{fr-adj|f=neuve}} :: brand new, very new
   lit {fr-verb-form} :: {conjugation of|lire|3|s|pres|ind}
-    Jean lit très souvent. :: John reads very often.
+    Jean lit très souvent. :: Jean reads very often.
 ===Very===
   plate {{fr-noun|f}} :: Very small flat boat.
 ===verz===
index efa74142477920748fdb2548c88d917f5a41c26b..3b6f946cbcacd09ffe2663442112f66bcbf21c12 100644 (file)
@@ -1754,11 +1754,13 @@ Index: IT IT->EN
   gratuito {{it-adj|gratuit}} :: free, free of charge, gratis
   gratuito {{it-adj|gratuit}} :: gratuitous, unjustified
 ===grazia===
-  grazie {f} :: {plural of|grazia}
+  grazie {m}, grazie {pl}{f} :: {plural of|grazia}
 ***grazie***
   grazie (interjection) :: thank you, thanks!
-  grazie {f} :: thanks to, because of
-  grazie {f} :: {plural of|grazia}
+  grazie {m}, grazie {pl}{f} :: thanks
+  grazie {m}, grazie {pl}{f} :: gratitude
+  grazie {m}, grazie {pl}{f} :: thanks to, because of
+  grazie {m}, grazie {pl}{f} :: {plural of|grazia}
 ***Grenada***
   Grenada {f} :: Grenada
 ***Grosseto***
@@ -3118,9 +3120,9 @@ Index: IT IT->EN
 ***Python***
   Python {{it-proper noun|g=m}} :: Python programming language
 ***q***
-  q (letter) {m|f|inv} :: See under Q
+  q (letter) {m|f|inv} :: {lowercase form|Q}
 ===Q===
-  q (letter) {m|f|inv} :: See under Q
+  q (letter) {m|f|inv} :: {lowercase form|Q}
 ***Qatar***
   Qatar {f} :: Qatar
 ***qua***
@@ -4629,7 +4631,7 @@ Index: EN EN->IT
 ===beauty===
   apollo {m}, apolli {pl} :: A man of great beauty
 ===because===
-  grazie {f} :: thanks to, because of
+  grazie {m}, grazie {pl}{f} :: thanks to, because of
 ===bedroom===
   camera {f}, camere {pl} :: bedroom
 ===bee===
@@ -5869,6 +5871,8 @@ Index: EN EN->IT
 ===gratis===
   gratis :: gratis
   gratuito {{it-adj|gratuit}} :: free, free of charge, gratis
+===gratitude===
+  grazie {m}, grazie {pl}{f} :: gratitude
 ===grato===
   grate {f} :: Feminine plural form of grato
 ===gratuitous===
@@ -7791,7 +7795,6 @@ Index: EN EN->IT
   m (letter) {m|f|inv} :: See under M
   n (letter) {m|f|inv} :: See under N
   p (letter) {m|f|inv} :: See under P
-  q (letter) {m|f|inv} :: See under Q
   r (letter) {m|f|inv} :: See under R
   s (letter) {m|f|inv} :: See under S
   t (letter) {m|f|inv} :: See under T
@@ -8277,7 +8280,8 @@ Index: EN EN->IT
   grazie (interjection) :: thank you, thanks!
 ===thanks===
   grazie (interjection) :: thank you, thanks!
-  grazie {f} :: thanks to, because of
+  grazie {m}, grazie {pl}{f} :: thanks
+  grazie {m}, grazie {pl}{f} :: thanks to, because of
 ===theatrical===
   play {m|inv} :: play (theatrical performance; start key)
 ===them===
@@ -8620,7 +8624,6 @@ Index: EN EN->IT
   m (letter) {m|f|inv} :: See under M
   n (letter) {m|f|inv} :: See under N
   p (letter) {m|f|inv} :: See under P
-  q (letter) {m|f|inv} :: See under Q
   r (letter) {m|f|inv} :: See under R
   s (letter) {m|f|inv} :: See under S
   t (letter) {m|f|inv} :: See under T
index 9277fb748790169355305aaf22664f09291cc89e..63351c71125ac2e246711fe3f2cec2d7c1373fcb 100644 (file)
@@ -37,6 +37,8 @@ Index: ZH ZH->EN
 ===àn===
   弄暗 (nòng'àn) :: obfuscate (make dark) (verb)
   港 (gǎng), 港口 (gǎngkǒu), 口岸 (kǒu'àn), 港埠 (gǎngbù) :: port (dock or harbour) (noun)
+***ян***
+  (Dungan) фон-ян :: dialect (variety of a language) (noun)
 ===bā===
   (Standard Chinese (Mandarin)) 八 (bā) (numeral: 捌) :: eight (cardinal number 8) (cardinal number)
 ===bǎ===
@@ -796,6 +798,8 @@ Index: ZH ZH->EN
   分鐘, 分钟 (fēnzhōng) :: minute (unit of time) (noun)
 ***分鐘***
   分鐘, 分钟 (fēnzhōng) :: minute (unit of time) (noun)
+***фон***
+  (Dungan) фон-ян :: dialect (variety of a language) (noun)
 ===fù===
   腹部 (fùbù), 腹 (fù) :: abdomen (belly) (noun)
 ***腹***
@@ -1087,6 +1091,10 @@ Index: ZH ZH->EN
   方言 (fāngyán), (suffix) 話, 话 (-huà) :: dialect (variety of a language) (noun)
 ***話***
   方言 (fāngyán), (suffix) 話, 话 (-huà) :: dialect (variety of a language) (noun)
+***хуадян***
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
+===huadyan===
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
 ===huan===
   我很喜歡你, 我很喜欢你 (wǒ hěn xǐ huan nǐ) :: I love you (platonic expression of inclination or liking) (phrase)
 ===huàshēn===
@@ -1997,6 +2005,8 @@ Index: ZH ZH->EN
   國外, 国外 (guówài), 海外 (hǎiwài) (overseas) :: abroad (in foreign countries) (adverb)
 ===pa===
   (Xiang) 八 (pa) :: eight (cardinal number 8) (cardinal number)
+===paak3===
+  (Cantonese) 拍拖 (paak3 to1) :: date (to take (someone) on a series of dates) (verb)
 ===pái===
   餡餅, 馅饼 (xiànbǐng), 排 (pái), 派 (pài) :: pie (type of pastry) (noun)
 ===pài===
@@ -2009,6 +2019,8 @@ Index: ZH ZH->EN
   餡餅, 馅饼 (xiànbǐng), 排 (pái), 派 (pài) :: pie (type of pastry) (noun)
 ===paik===
   (Eastern Hokkien (Min Dong)) 八 (paik) :: eight (cardinal number 8) (cardinal number)
+***拍拖***
+  (Cantonese) 拍拖 (paak3 to1) :: date (to take (someone) on a series of dates) (verb)
 ===pat===
   (Gan) 八 (pat) :: eight (cardinal number 8) (cardinal number)
 ===pì===
@@ -2290,6 +2302,10 @@ Index: ZH ZH->EN
   三 (sān) (numeral: 參) :: three (cardinal number 3) (cardinal number)
 ===sǎn===
   傘, 伞 (sǎn), 雨傘, 雨伞 (yǔsǎn) :: umbrella (cloth-covered frame used for protection against rain or sun) (noun)
+===san===
+  (Dungan) сан (san) :: three (cardinal number 3) (cardinal number)
+***сан***
+  (Dungan) сан (san) :: three (cardinal number 3) (cardinal number)
 ===三===
   (Cantonese) 三 (sam1) :: three (cardinal number 3) (cardinal number)
   (Eastern Hokkien (Min Dong)) 三 (sang) :: three (cardinal number 3) (cardinal number)
@@ -2307,6 +2323,7 @@ Index: ZH ZH->EN
   (Cantonese) 十 (sap6) :: ten (the cardinal number occurring after 9 and before 11) (cardinal number)
 ===sè===
   色 (sè), 顏色, 颜色 (yánsè) :: color (spectral composition of visible light) (noun)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
   填色 (tián sè), 上色 (shàng sè), 著色 (zhuó sè) :: color (give something color) (verb)
 ===se===
   (Wu) 三 (se) :: three (cardinal number 3) (cardinal number)
@@ -2314,6 +2331,7 @@ Index: ZH ZH->EN
   (Cantonese) 閪 (hai1), 屄 ( bei1, hai1) :: cunt (genitalia) (noun)
 ***色***
   色 (sè), 顏色, 颜色 (yánsè) :: color (spectral composition of visible light) (noun)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
 ===See===
   See Mandarin :: definition (statement of the meaning of a word or word group or a sign or symbol) (noun)
   See Mandarin :: definition (statement expressing the essential nature of something) (noun)
@@ -2514,12 +2532,11 @@ Index: ZH ZH->EN
 ***時鐘***
   鐘, 钟 (zhōng), 時鐘, 时钟 (shízhōng) :: clock (instrument to measure or keep track of time) (noun)
 ===shǒufēngqín===
-  (Simplified) 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-  (Traditional) 手風琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-===手风琴===
-  (Simplified) 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-===手風琴===
-  (Traditional) 手風琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+***手风琴***
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+***手風琴***
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
 ===shū===
   書, 书 (shū) :: book (collection of sheets of paper bound together containing printed or written material) (noun)
 ===shǔ===
@@ -2692,6 +2709,8 @@ Index: ZH ZH->EN
   (Cantonese) 今日 (gam<sup>1</sup>yat<sup>6</sup>) :: today (today (noun)) (noun)
   (Cantonese) 秋季 (cau<sup>1</sup>gwai<sup>3</sup>) :: autumn (season) (noun)
   (Cantonese) Taap<sup>3</sup>naap<sup>6</sup>tok<sup>3</sup>si<sup>1</sup> :: Thanatos (Thanatos, the god of death) (noun)
+***сы***
+  (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
 ***t***
   (Hakka) Me̍t-sî-kô :: Mexico (country) (proper noun)
   (Min Nan) 日本 (Ji̍t-pún) :: Japan (A Far East country in Asia) (proper noun)
@@ -2793,6 +2812,8 @@ Index: ZH ZH->EN
   (Cantonese) 天時冷 (tin1 si4 laang) :: winter (fourth season, marked by short days and lowest temperatures) (noun)
 ===to===
   (no verb to indicate age: subject + number of years + ) + 歲, 岁 (suì) :: be (used to indicate age) (verb)
+===to1===
+  (Cantonese) 拍拖 (paak3 to1) :: date (to take (someone) on a series of dates) (verb)
 ===tok===
   (Cantonese) Taap<sup>3</sup>naap<sup>6</sup>tok<sup>3</sup>si<sup>1</sup> :: Thanatos (Thanatos, the god of death) (noun)
 ===tōng===
@@ -2868,6 +2889,8 @@ Index: ZH ZH->EN
   土豚 (tǔtún) :: aardvark (mammal) (noun)
 ===u===
   (the adjectives are in a dictionary form) 越……越…… (yuè...yuè...) (example: 越<u>热</u>越<u>好</u> yuè rè yuè hǎo "the hotter the better"), 愈……愈…… (yù...yù...) :: the (the + ~comparative, the + comparative) (adverb)
+***ю***
+  (Dungan) ю, зэ :: be (exist) (verb)
 ===verb===
   被 (bèi) + verb (particle) :: be (used to form the passive voice) (verb)
   在 (zài), 正在 (zhèngzài); verb + 著 / 着 (zhe) :: be (used to form the continuous forms of various tenses) (verb)
@@ -3102,6 +3125,27 @@ Index: ZH ZH->EN
 ***星***
   恆星, 恒星 (héngxīng), 明星 (míngxīng), 星 (xīng) :: star (luminous celestial body) (noun)
   星 (xīng) :: star (celebrity) (noun)
+===xíngjìn===
+  行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
+***行进***
+  行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
+***行進***
+  行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
+===xíngjìnqū===
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
+***行进曲***
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
+***行進曲***
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
+===xíngjūn===
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
+***行军***
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
+***行軍***
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
 ===xīngqī===
   星期 (xīngqī), 周 (zhōu), 禮拜, 礼拜 (lǐbài) :: week (period of seven days) (noun)
   星期一 (xīngqī yī) :: Monday (day of the week) (noun)
@@ -3210,10 +3254,13 @@ Index: ZH ZH->EN
   言論自由, 言论自由 (yánlùnzìyóu) :: freedom of speech (right to speak without fear of harm) (noun)
 ===yánsè===
   色 (sè), 顏色, 颜色 (yánsè) :: color (spectral composition of visible light) (noun)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
 ***颜色***
   色 (sè), 顏色, 颜色 (yánsè) :: color (spectral composition of visible light) (noun)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
 ***顏色***
   色 (sè), 顏色, 颜色 (yánsè) :: color (spectral composition of visible light) (noun)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
 ===yào===
   药 (yào), 药材 (yàocái), 藥物 (yàowù), 药物 (yàowù), 经方 (jīngfāng) :: medicine (substance which promotes healing) (noun)
 ===药===
@@ -3576,6 +3623,9 @@ Index: ZH ZH->EN
   棗兒, 枣儿 (zǎor), 金棗, 金枣 (jīnzǎo) :: date (fruit of the date palm) (noun)
 ===ze===
   (Wu) 十 (ze) :: ten (the cardinal number occurring after 9 and before 11) (cardinal number)
+***зэ***
+  (Dungan) зэ :: be (occupy a place) (verb)
+  (Dungan) ю, зэ :: be (exist) (verb)
 ===zêg8===
   (Teochew) 一 (ik4, zêg8) :: one (cardinal number 1) (cardinal number)
 ===zěnyàng===
@@ -3796,6 +3846,7 @@ Index: EN EN->ZH
   日 (rì), 天 (tiān) :: day (period of 24 hours) (noun)
 ===3===
   (Cantonese) 三 (sam1) :: three (cardinal number 3) (cardinal number)
+  (Dungan) сан (san) :: three (cardinal number 3) (cardinal number)
   (Eastern Hokkien (Min Dong)) 三 (sang) :: three (cardinal number 3) (cardinal number)
   三 (sān) (numeral: 參) :: three (cardinal number 3) (cardinal number)
   (Teochew) san1, sam1 :: three (cardinal number 3) (cardinal number)
@@ -3962,8 +4013,7 @@ Index: EN EN->ZH
 ***accord***
   条约 {tiáoyuē}, 协议 {xiéyì} :: accord (an agreement) (noun)
 ***accordion***
-  (Simplified) 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-  (Traditional) 手風琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
 ===account===
   詞源, 词源 (cíyuán), 語源, 语源 (yǔyuán), 字源 (zìyuán) :: etymology (account of the origin and historical development of a word) (noun)
   因為, 因为 (yīnwèi) :: because (on account) (adverb)
@@ -4104,6 +4154,7 @@ Index: EN EN->ZH
   See Mandarin :: definition (bodybuilding: the degree to which individual muscles are distinct) (noun)
   清晰度, 清晰度 (qīngxīdù) :: definition (bodybuilding: the degree to which individual muscles are distinct) (noun)
   (Cantonese) 是 (si4) (formal and written), 係 (hai6) (vernacular) :: be (used to indicate that the subject and object are the same) (verb)
+  (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the values on either side of an equation are the same) (verb)
   端口 (duānkǒu) :: port (computing: logical or physical construct into and from which data are transferred) (noun)
@@ -4169,11 +4220,14 @@ Index: EN EN->ZH
 ***BC***
   公元前 (gōngyuánqián) :: BC (before Christ) ({{initialism}})
 ***be***
+  (Dungan) зэ :: be (occupy a place) (verb)
   在 (zài) :: be (occupy a place) (verb)
   在 (zài), 有 (yǒu) :: be (occur, take place) (verb)
+  (Dungan) ю, зэ :: be (exist) (verb)
   是 (shì), 有 (yǒu) :: be (exist) (verb)
   是 (shì), 有 (yǒu), 在 (zài), 來, 来 (lái) :: be (elliptical form of "be here", or similar) (verb)
   (Cantonese) 是 (si4) (formal and written), 係 (hai6) (vernacular) :: be (used to indicate that the subject and object are the same) (verb)
+  (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the values on either side of an equation are the same) (verb)
   是 (shì), (absent with adjectives) :: be (used to indicate that the subject plays the role of the predicate nominative) (verb)
@@ -4341,6 +4395,7 @@ Index: EN EN->ZH
   (Teochew) 一 (ik4, zêg8) :: one (cardinal number 1) (cardinal number)
   (Wu) 一 (ye) :: one (cardinal number 1) (cardinal number)
   (Cantonese) 三 (sam1) :: three (cardinal number 3) (cardinal number)
+  (Dungan) сан (san) :: three (cardinal number 3) (cardinal number)
   (Eastern Hokkien (Min Dong)) 三 (sang) :: three (cardinal number 3) (cardinal number)
   三 (sān) (numeral: 參) :: three (cardinal number 3) (cardinal number)
   (Teochew) san1, sam1 :: three (cardinal number 3) (cardinal number)
@@ -4483,6 +4538,7 @@ Index: EN EN->ZH
   雞巴, 鸡巴 (jība), 屌 (diǎo), (euphemism) 鳥, 鸟 (diǎo) :: dick (colloquial: penis) (noun)
 ***color***
   色 (sè), 顏色, 颜色 (yánsè) :: color (spectral composition of visible light) (noun)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
   彩色 (cǎisè) :: color (conveying color) (adjective)
   填色 (tián sè), 上色 (shàng sè), 著色 (zhuó sè) :: color (give something color) (verb)
 ===colour===
@@ -4630,9 +4686,11 @@ Index: EN EN->ZH
   日期 (rìqī) :: date (point of time at which a transaction or event takes place) (noun)
   約會, 约会 (yuēhuì) :: date (pre-arranged social meeting) (noun)
   約會, 约会 (yuēhuì), 幽會, 幽会 (yōuhuì) :: date (meeting with a lover or potential lover; a person so met) (noun)
+  (Cantonese) 拍拖 (paak3 to1) :: date (to take (someone) on a series of dates) (verb)
   約會, 约会 (yuēhuì) :: date (to take (someone) on a series of dates) (verb)
   (not used) :: be (used to indicate time of day, day of the week, or date) (verb)
 ===dates===
+  (Cantonese) 拍拖 (paak3 to1) :: date (to take (someone) on a series of dates) (verb)
   約會, 约会 (yuēhuì) :: date (to take (someone) on a series of dates) (verb)
 ***day***
   (Cantonese) 日 (jat6) :: day (period of 24 hours) (noun)
@@ -4760,6 +4818,7 @@ Index: EN EN->ZH
 ===device===
   弹簧, 发条 (fātiáo) :: spring (device made of flexible material) (noun)
 ***dialect***
+  (Dungan) фон-ян :: dialect (variety of a language) (noun)
   方言 (fāngyán), (suffix) 話, 话 (-huà) :: dialect (variety of a language) (noun)
 ***dick***
   (Cantonese) 屌/𨳒 [⿵門小] (diu2), 𨳊 [⿵門九] (gau1), 𨶙 [⿵門能] (lan2), 𨳍 [⿵門七] (cat6) :: dick (colloquial: penis) (noun)
@@ -4767,6 +4826,7 @@ Index: EN EN->ZH
 ===dictionaries===
   詞典學, 词典学 (cídiǎnxué), 辭書學, 辞书学 (císhūxué), 詞典編輯, 词典编辑 (cídiǎn biānjí) :: lexicography (art or craft of writing dictionaries) (noun)
 ***dictionary***
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   字典 (zìdiǎn) (character dictionary); 詞典, 词典 (cídiǎn) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   (Wu (Suzhou dialect)) zïtip :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   词典编纂者 :: lexicographer (one who writes or compiles a dictionary) (noun)
@@ -4971,6 +5031,7 @@ Index: EN EN->ZH
 ===exchange===
   貿易, 贸易 (màoyì), 交易 (jiāoyì) :: trade (exchange) (noun)
 ===exist===
+  (Dungan) ю, зэ :: be (exist) (verb)
   是 (shì), 有 (yǒu) :: be (exist) (verb)
 ===existence===
   多神教 (duōshénjiào) :: polytheism (belief of existence of many gods) (noun)
@@ -4978,6 +5039,7 @@ Index: EN EN->ZH
   See Mandarin :: definition (action or power of describing, explaining, or making definite) (noun)
   下定意, 下定意 (xiàdìngyì) :: definition (action or power of describing, explaining, or making definite) (noun)
 ===explains===
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   字典 (zìdiǎn) (character dictionary); 詞典, 词典 (cídiǎn) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   (Wu (Suzhou dialect)) zïtip :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
 ===exposition===
@@ -5088,6 +5150,8 @@ Index: EN EN->ZH
   外國人, 外国人 (wàiguórén), 外人 (wàirén), 老外 (lǎowài) (colloquial) :: alien (foreigner) (noun)
 ===foreigners===
   外債, 外债 (wàizhài), 對外債務, 对外债务 (duìwài zhàiwù) :: foreign debt (a debt owed to foreigners) (noun)
+===formal===
+  行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
 ===formed===
   縮寫, 缩写 (suōxiě), 縮略詞, 缩略词 (suōlüècí), 略語, 略语 (lüèyǔ) :: acronym (word formed by initial letters) (noun)
 ===forms===
@@ -5158,6 +5222,8 @@ Index: EN EN->ZH
 ===genitalia===
   (Cantonese) 閪 (hai1), 屄 ( bei1, hai1) :: cunt (genitalia) (noun)
   屄 (bī) :: cunt (genitalia) (noun)
+===genre===
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
 ===genuine===
   假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
 ===genus===
@@ -5323,6 +5389,7 @@ Index: EN EN->ZH
   (subjectless clauses are used), 人人 (rénrén), (when talking about self) 自己 (zìjǐ) :: one (indefinite personal pronoun) (pronoun)
 ===indicate===
   (Cantonese) 是 (si4) (formal and written), 係 (hai6) (vernacular) :: be (used to indicate that the subject and object are the same) (verb)
+  (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the values on either side of an equation are the same) (verb)
   是 (shì), (absent with adjectives) :: be (used to indicate that the subject plays the role of the predicate nominative) (verb)
@@ -5358,8 +5425,7 @@ Index: EN EN->ZH
 ===instance===
   貿易, 贸易 (màoyì) :: trade (instance of buying or selling) (noun)
 ===instrument===
-  (Simplified) 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-  (Traditional) 手風琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
   鐘, 钟 (zhōng), 時鐘, 时钟 (shízhōng) :: clock (instrument to measure or keep track of time) (noun)
   长笛 (cháng dí) :: flute (woodwind instrument) (noun)
   武器 (wǔqì), 兵器 (bīngqì) :: weapon (instrument of attack or defense in combat) (noun)
@@ -5402,8 +5468,7 @@ Index: EN EN->ZH
 ===keep===
   鐘, 钟 (zhōng), 時鐘, 时钟 (shízhōng) :: clock (instrument to measure or keep track of time) (noun)
 ===keyed===
-  (Simplified) 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-  (Traditional) 手風琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
 ***KGB***
   克格勃 (kègébó) :: KGB (Soviet KGB) (proper noun)
 ===lake===
@@ -5419,6 +5484,7 @@ Index: EN EN->ZH
   語言, 语言 (yǔyán), 用語, 用语 (yòngyǔ), 詞語, 词语 (cíyǔ) :: language (vocabulary of a particular field) (noun)
   語言, 语言 (yǔyán), 用語, 用语 (yòngyǔ), 詞語, 词语 (cíyǔ) :: language (particular words used) (noun)
   詞 (cí), 词 (cí), 單詞 (dāncí), 单词 (dāncí) :: word (unit of language) (noun)
+  (Dungan) фон-ян :: dialect (variety of a language) (noun)
   方言 (fāngyán), (suffix) 話, 话 (-huà) :: dialect (variety of a language) (noun)
   (Simplified) 英语的 (Yīngyǔ de), 英文的 (Yīngwén de) :: English (of or pertaining to the English language) (adjective)
   (Traditional) 英語的 (Yīngyǔ de), 英文的 (Yīngwén de) :: English (of or pertaining to the English language) (adjective)
@@ -5505,6 +5571,7 @@ Index: EN EN->ZH
 ===liquids===
   罐頭, 罐头 (guàn tóu) :: can (a more or less cylindrical vessel for liquids) (noun)
 ===list===
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   字典 (zìdiǎn) (character dictionary); 詞典, 词典 (cídiǎn) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   (Wu (Suzhou dialect)) zïtip :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   監視列表, 监视列表 (jiānshì lièbiǎo) :: watchlist (list for special attention) (noun)
@@ -5515,6 +5582,8 @@ Index: EN EN->ZH
   跳躍, 跳跃 (tiàoyuè), 飛躍, 飞跃 (fēiyuè) :: leap (to jump from one location to another) (verb)
 ===logical===
   端口 (duānkǒu) :: port (computing: logical or physical construct into and from which data are transferred) (noun)
+===long===
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
 ***love***
   (Cantonese) 我愛你, 我爱你 (ngo5 oi3 nei5, o5 oi3 lei5) (formal, written), 我好鍾意你 (ngo5 hou2 zung1 yi4 nei5) (colloquial) :: I love you (affirmation of affection or deep caring) (phrase)
   我愛你, 我爱你 (wǒ ài nǐ) :: I love you (affirmation of affection or deep caring) (phrase)
@@ -5573,6 +5642,12 @@ Index: EN EN->ZH
   絕對地, 绝对地 (juéduìde), 完全地 (wánquánde) :: absolutely (in an absolute manner) (adverb)
 ===many===
   多神教 (duōshénjiào) :: polytheism (belief of existence of many gods) (noun)
+***march***
+  行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
+===marching===
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
 ===marine===
   鱈魚, 鳕鱼 (xuěyú) :: cod (marine fish of the family Gadidae) (noun)
 ===mark===
@@ -5604,6 +5679,7 @@ Index: EN EN->ZH
 ===meaningless===
   廢話, 废话 (fèihuà), 胡說, 胡说 (húshuō), 胡言 (húyán), (vulgar) 狗屁 (gǒupì) :: nonsense (meaningless words) (noun)
 ===meanings===
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   字典 (zìdiǎn) (character dictionary); 詞典, 词典 (cídiǎn) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   (Wu (Suzhou dialect)) zïtip :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
 ===means===
@@ -5720,6 +5796,7 @@ Index: EN EN->ZH
   See Mandarin :: definition (bodybuilding: the degree to which individual muscles are distinct) (noun)
   清晰度, 清晰度 (qīngxīdù) :: definition (bodybuilding: the degree to which individual muscles are distinct) (noun)
 ===music===
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
   音樂家, 音乐家 (yīnyuèjiā) :: musician (person who performs or writes music) (noun)
 ===musical===
   See Mandarin :: definition (clarity, especially of musical sound in reproduction) (noun)
@@ -5848,6 +5925,7 @@ Index: EN EN->ZH
   (Teochew) 一 (ik4, zêg8) :: one (cardinal number 1) (cardinal number)
   (Wu) 一 (ye) :: one (cardinal number 1) (cardinal number)
   (Cantonese) 三 (sam1) :: three (cardinal number 3) (cardinal number)
+  (Dungan) сан (san) :: three (cardinal number 3) (cardinal number)
   (Eastern Hokkien (Min Dong)) 三 (sang) :: three (cardinal number 3) (cardinal number)
   三 (sān) (numeral: 參) :: three (cardinal number 3) (cardinal number)
   (Teochew) san1, sam1 :: three (cardinal number 3) (cardinal number)
@@ -5906,6 +5984,7 @@ Index: EN EN->ZH
   (of gratitude) 人情債, 人情债 (rénqíngzhài) :: debt (action, state of mind, or object one has an obligation to perform for another) (noun)
   点 (diǎn) :: point (geometry: zero-dimensional object) (noun)
   (Cantonese) 是 (si4) (formal and written), 係 (hai6) (vernacular) :: be (used to indicate that the subject and object are the same) (verb)
+  (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the subject and object are the same) (verb)
   及物動詞, 及物动词 (jíwù dòngcí), 他動詞, 他动词 (tādòngcí) :: transitive verb (a verb that is accompanied by a direct object) (noun)
   及物 (jíwù) :: transitive (in grammar: of a verb, that takes an object or objects) (adjective)
@@ -5920,6 +5999,7 @@ Index: EN EN->ZH
 ===obtainable===
   免費的, 免费的 (miǎnfèi de) :: free (obtainable without payment) (adjective)
 ===occupy===
+  (Dungan) зэ :: be (occupy a place) (verb)
   在 (zài) :: be (occupy a place) (verb)
 ===occur===
   在 (zài), 有 (yǒu) :: be (occur, take place) (verb)
@@ -5973,6 +6053,7 @@ Index: EN EN->ZH
 ===orbiting===
   行星 (xíngxīng) :: planet (rocky or gaseous spherical bodies orbiting the Sun) (noun)
 ===ordered===
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   字典 (zìdiǎn) (character dictionary); 詞典, 词典 (cídiǎn) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   (Wu (Suzhou dialect)) zïtip :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   字母 (zìmǔ) :: alphabet (an ordered set of letters used in a language) (noun)
@@ -6031,6 +6112,7 @@ Index: EN EN->ZH
   噢 (ō), 喔 (ō) :: o (vocative particle to mark direct address) (interjection)
 ===particular===
   名 (míng), 名字 (míngzì) :: name (word or phrase indicating a particular person, place, class or thing) (noun)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
   專有名詞, 专有名词 (zhuānyǒu míngcí), 固有名詞, 固有名词 (gùyǒu míngcí) :: proper noun (The name of a particular person, place, organization or other individual entity) (noun)
   語言, 语言 (yǔyán), 用語, 用语 (yòngyǔ), 詞語, 词语 (cíyǔ) :: language (vocabulary of a particular field) (noun)
   語言, 语言 (yǔyán), 用語, 用语 (yòngyǔ), 詞語, 词语 (cíyǔ) :: language (particular words used) (noun)
@@ -6120,6 +6202,7 @@ Index: EN EN->ZH
   上面 (zài...shàngmiàn) :: above (in or to a higher place) (preposition)
   缺席 (quēxí) :: absent (being away from a place) (adjective)
   專有名詞, 专有名词 (zhuānyǒu míngcí), 固有名詞, 固有名词 (gùyǒu míngcí) :: proper noun (The name of a particular person, place, organization or other individual entity) (noun)
+  (Dungan) зэ :: be (occupy a place) (verb)
   在 (zài) :: be (occupy a place) (verb)
   在 (zài), 有 (yǒu) :: be (occur, take place) (verb)
   日期 (rìqī) :: date (point of time at which a transaction or event takes place) (noun)
@@ -6186,8 +6269,7 @@ Index: EN EN->ZH
   港市 (gǎngshì) :: port (town or city with a dock or harbour) (noun)
   端口 (duānkǒu) :: port (computing: logical or physical construct into and from which data are transferred) (noun)
 ===portable===
-  (Simplified) 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-  (Traditional) 手風琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
 ===position===
   權貴, 权贵 (quánguì) :: quality (archaic: social position) (noun)
 ===positioned===
@@ -6257,6 +6339,7 @@ Index: EN EN->ZH
 ***pseudo***
   假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
 ===publication===
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   字典 (zìdiǎn) (character dictionary); 詞典, 词典 (cídiǎn) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   (Wu (Suzhou dialect)) zïtip :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
 ***pumpkin***
@@ -6344,6 +6427,7 @@ Index: EN EN->ZH
 ===region===
   宇宙 (yǔzhòu), 太空 (tàikōng), 外層空間, 外层空间 (wàicéng kōngjiān) :: outer space (region) (noun)
 ===regular===
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
   世博會, 世博会 (shìbó-huì), 世界博覽會, 世界博览会 (shìjìe bólǎnhuì) :: World Exposition (a regular international exposition) (noun)
 ===reject===
   拒絕, 拒绝 (jùjué) :: abdicate (reject) (verb)
@@ -6388,6 +6472,8 @@ Index: EN EN->ZH
   (Min Nan) 日頭 (ji̍t-thâu, li̍t-thâu) :: sun (the star around which the Earth revolves) (proper noun)
 ===reward===
   成就 (chéngjiù) :: achievement (a reward in video games) (noun)
+===rhythmic===
+  行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
 ===right===
   言論自由, 言论自由 (yánlùnzìyóu) :: freedom of speech (right to speak without fear of harm) (noun)
 ***robot***
@@ -6413,6 +6499,7 @@ Index: EN EN->ZH
   同義詞, 同义词 (tóngyìcí), 代名詞, 代名词 (dàimíngcí), (near-synonym) 近義詞, 近义词 (jìnyìcí) :: synonym (word with same meaning as another) (noun)
   內債, 内债 (nèizhài) :: domestic debt (debt owed to creditors resident in the same country as debtor) (noun)
   (Cantonese) 是 (si4) (formal and written), 係 (hai6) (vernacular) :: be (used to indicate that the subject and object are the same) (verb)
+  (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the values on either side of an equation are the same) (verb)
 ***Saturday***
@@ -6456,9 +6543,11 @@ Index: EN EN->ZH
 ===sequence===
   號碼, 号码 (hàomǎ), 號, 号 (hào) :: number (used to show the rank of something in a list or sequence) (noun)
 ===series===
+  (Cantonese) 拍拖 (paak3 to1) :: date (to take (someone) on a series of dates) (verb)
   約會, 约会 (yuēhuì) :: date (to take (someone) on a series of dates) (verb)
 ===set===
   使免除 (shǐ miǎnchú) :: absolve (set free) (verb)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
   字母 (zìmǔ) :: alphabet (an ordered set of letters used in a language) (noun)
 ***seven***
   (Standard Chinese (Mandarin)) 七 (qī) (numeral: 柒) :: seven (cardinal number 7) (cardinal number)
@@ -6561,8 +6650,7 @@ Index: EN EN->ZH
   射 (shè), 射精 (shèjīng), (slang) 出水 (chūshuǐ) :: cum (slang: have an orgasm; ejaculate) (verb)
 ===small===
   池塘 (chítáng), 池 (chí) :: pond (small lake) (noun)
-  (Simplified) 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-  (Traditional) 手風琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
   少 (shǎo) :: few (small number) (determiner)
 ===smallest===
   位 (wèi), 比特 (bǐtè), 位元 (wèiyuán) :: bit (smallest unit of storage) (noun)
@@ -6581,7 +6669,10 @@ Index: EN EN->ZH
 ===some===
   寓言 (yùyán) :: fable (fictitious narration to enforce some useful truth or precept) (noun)
 ===someone===
+  (Cantonese) 拍拖 (paak3 to1) :: date (to take (someone) on a series of dates) (verb)
   約會, 约会 (yuēhuì) :: date (to take (someone) on a series of dates) (verb)
+===song===
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
 ===sort===
   (Cantonese) 肉 (juk6) :: meat (any sort of flesh) (noun)
   肉 (ròu) :: meat (any sort of flesh) (noun)
@@ -6611,6 +6702,8 @@ Index: EN EN->ZH
   日期 (rìqī) :: date (that which specifies the time of writing, inscription etc.) (noun)
 ===spectral===
   色 (sè), 顏色, 颜色 (yánsè) :: color (spectral composition of visible light) (noun)
+===spectrum===
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
 ***speech***
   言論自由, 言论自由 (yánlùnzìyóu) :: freedom of speech (right to speak without fear of harm) (noun)
   矛盾修飾法, 矛盾修饰法 (máodùn xiūshìfǎ), 矛盾語, 矛盾语 (máodùnyǔ) :: oxymoron (figure of speech) (noun)
@@ -6659,6 +6752,8 @@ Index: EN EN->ZH
   奇怪 (qí quài) :: odd (strange) (adjective)
 ===strength===
   减轻 (jian qing), 减弱 (jian ruo) :: abate (to decrease or become less in strength) (verb)
+===strides===
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
 ===strong===
   跟腱 (gēnjiàn) :: Achilles tendon (strong tendon in the calf of the leg) (noun)
 ===structure===
@@ -6669,6 +6764,7 @@ Index: EN EN->ZH
   醫學, 医学 (yīxué), 方剂学 (fāngjìxué) :: medicine (field of study) (noun)
 ===subject===
   (Cantonese) 是 (si4) (formal and written), 係 (hai6) (vernacular) :: be (used to indicate that the subject and object are the same) (verb)
+  (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì), (absent with adjectives) :: be (used to indicate that the subject plays the role of the predicate nominative) (verb)
   是 (shì) :: be (used to indicate that the subject has the qualities described by a noun or noun phrase) (verb)
@@ -6726,6 +6822,7 @@ Index: EN EN->ZH
   鐵路, 铁路 (tiělù), 鐵道, 铁道 (tiědào) :: railway (transport system using these rails) (noun)
 ===take===
   在 (zài), 有 (yǒu) :: be (occur, take place) (verb)
+  (Cantonese) 拍拖 (paak3 to1) :: date (to take (someone) on a series of dates) (verb)
   約會, 约会 (yuēhuì) :: date (to take (someone) on a series of dates) (verb)
 ===takes===
   年 (nián), (colloquial) 年頭, 年头 (niántóu) :: year (time it takes for the Earth to complete one revolution of the Sun) (noun)
@@ -6794,6 +6891,7 @@ Index: EN EN->ZH
   毫秒 :: millisecond (one one-thousandth of a second) (noun)
 ***three***
   (Cantonese) 三 (sam1) :: three (cardinal number 3) (cardinal number)
+  (Dungan) сан (san) :: three (cardinal number 3) (cardinal number)
   (Eastern Hokkien (Min Dong)) 三 (sang) :: three (cardinal number 3) (cardinal number)
   三 (sān) (numeral: 參) :: three (cardinal number 3) (cardinal number)
   (Teochew) san1, sam1 :: three (cardinal number 3) (cardinal number)
@@ -6921,6 +7019,7 @@ Index: EN EN->ZH
   肉 (ròu) :: meat (animal flesh used as food) (noun)
   傘, 伞 (sǎn), 雨傘, 雨伞 (yǔsǎn) :: umbrella (cloth-covered frame used for protection against rain or sun) (noun)
   (Cantonese) 是 (si4) (formal and written), 係 (hai6) (vernacular) :: be (used to indicate that the subject and object are the same) (verb)
+  (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the subject and object are the same) (verb)
   是 (shì) :: be (used to indicate that the values on either side of an equation are the same) (verb)
   是 (shì), (absent with adjectives) :: be (used to indicate that the subject plays the role of the predicate nominative) (verb)
@@ -6953,6 +7052,7 @@ Index: EN EN->ZH
 ***van***
   貨車, 货车 (huòchē) :: van (A (covered) vehicle used for carrying goods) (noun)
 ===variety===
+  (Dungan) фон-ян :: dialect (variety of a language) (noun)
   方言 (fāngyán), (suffix) 話, 话 (-huà) :: dialect (variety of a language) (noun)
 ===various===
   在 (zài), 正在 (zhèngzài); verb + 著 / 着 (zhe) :: be (used to form the continuous forms of various tenses) (verb)
@@ -6977,6 +7077,7 @@ Index: EN EN->ZH
   化身 (huàshēn) :: avatar (The earthly incarnation of a deity, particularly Vishnu) (noun)
 ===visible===
   色 (sè), 顏色, 颜色 (yánsè) :: color (spectral composition of visible light) (noun)
+  色 (sè), 顏色, 颜色 (yánsè) :: color (particular set of the visible spectrum) (noun)
 ===visual===
   See Mandarin :: definition (clarity of visual presentation, distinctness of outline or detail) (noun)
   清晰, 清晰 (qīngxī) :: definition (clarity of visual presentation, distinctness of outline or detail) (noun)
@@ -6986,11 +7087,17 @@ Index: EN EN->ZH
   噢 (ō), 喔 (ō) :: o (vocative particle to mark direct address) (interjection)
 ===voice===
   被 (bèi) + verb (particle) :: be (used to form the passive voice) (verb)
+===walk===
+  行軍, 行军 (xíngjūn), 行進, 行进 (xíngjìn) :: march (walk with long, regular strides) (verb)
+===walking===
+  行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
 ***watchlist***
   監視列表, 监视列表 (jiānshì lièbiǎo) :: watchlist (list for special attention) (noun)
 ===water===
   泉 (quán), 源泉 (yuán quán) :: spring (water source) (noun)
   容器, 容器 (róng qì) :: can (a container used to carry and dispense water for plants) (noun)
+===way===
+  行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
 ***weapon***
   武器 (wǔqì), 兵器 (bīngqì) :: weapon (instrument of attack or defense in combat) (noun)
 ===weather===
@@ -7040,8 +7147,7 @@ Index: EN EN->ZH
 ***white***
   白領, 白领 (báilǐng) :: white-collar (of or pertaining to office work and workers) (adjective)
 ===wind===
-  (Simplified) 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
-  (Traditional) 手風琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
+  手風琴, 手风琴 (shǒufēngqín) :: accordion (A small, portable, keyed wind instrument) (noun)
 ***winter***
   (Cantonese) 天時冷 (tin1 si4 laang) :: winter (fourth season, marked by short days and lowest temperatures) (noun)
   冬天 (dōngtiān), 冬季 (dōngjì) :: winter (fourth season, marked by short days and lowest temperatures) (noun)
@@ -7073,6 +7179,7 @@ Index: EN EN->ZH
   單數, 单数 (dānshù) :: singular (grammar: form of a word that refers to only one thing) (noun)
   縮寫, 缩写 (suōxiě), 縮略詞, 缩略词 (suōlüècí), 略語, 略语 (lüèyǔ) :: acronym (word formed by initial letters) (noun)
 ===words===
+  (Dungan) хуадян (huadyan) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   字典 (zìdiǎn) (character dictionary); 詞典, 词典 (cídiǎn) :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   (Wu (Suzhou dialect)) zïtip :: dictionary (publication that explains the meanings of an ordered list of words) (noun)
   廢話, 废话 (fèihuà), 胡說, 胡说 (húshuō), 胡言 (húyán), (vulgar) 狗屁 (gǒupì) :: nonsense (meaningless words) (noun)
@@ -7104,6 +7211,7 @@ Index: EN EN->ZH
 ===written===
   (Cantonese) 書, 书 (suè) :: book (collection of sheets of paper bound together containing printed or written material) (noun)
   書, 书 (shū) :: book (collection of sheets of paper bound together containing printed or written material) (noun)
+  行進曲, 行进曲 (xíngjìnqū) :: march (song in the genre of music written for marching) (noun)
   (Traditional) 簡體字 :: Simplified Chinese (Chinese written using simplified characters) (proper noun)
   (Simplified) 简体字 :: Simplified Chinese (Chinese written using simplified characters) (proper noun)
   (Cantonese) 簡體字, 简体字 :: Simplified Chinese (Chinese written using simplified characters) (proper noun)
index de357986670c66b1f2fdd792e1a66f88abbadcfa..45382cd90b4726ba9694c98fd3bce52150fe8f84 100644 (file)
@@ -381,6 +381,7 @@ Index: ZH ZH->EN
     「70%咖啡 OK 嗎?」 :: --
     {{Hant|OK嗎?}}(trad.) / {{Hans|OK吗?}}(simpl.) :: OK ma?
     Is it OK? :: --
+  OK (interjection) :: OK
 ===盆===
   雨 {{cmn-noun|ts|pin=yǔ|pint=yu3|rs=雨00}} :: rain
     傾盆大雨。 (trad.) :: --
@@ -1522,6 +1523,7 @@ Index: EN EN->ZH
 ===oi2===
   (Cantonese) 愛 {{yue-hanzi|jyut=oi3|y=ngoi3, oi3|sim=爱}} :: CantonPinyin: oi2
 ===OK===
+  OK (interjection) :: OK
   OK (adjective) :: all right
     [http://books.google.co.uk/books?id=iMpJGrutbcYC&pg=PA90&dq=%22OK%E5%90%97%22&hl=en&ei=VPqJTuWrIomgOo3dhdUB&sa=X&oi=book_result&ct=result&resnum=1&ved=0CC0Q6AEwAA#v=onepage&q=%22OK%E5%90%97%22&f=false 11樓 - Page 90] :: --
     「70%咖啡 OK 嗎?」 :: --