]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
Stoplist, more languages...
authorThad Hughes <thad.hughes@gmail.com>
Mon, 30 Jan 2012 06:08:52 +0000 (22:08 -0800)
committerThad Hughes <thad.hughes@gmail.com>
Mon, 30 Jan 2012 06:08:52 +0000 (22:08 -0800)
18 files changed:
data/inputs/stoplists/de.txt
data/inputs/stoplists/en.txt
src/com/hughes/android/dictionary/engine/DictionaryBuilder.java
src/com/hughes/android/dictionary/engine/DictionaryTest.java
src/com/hughes/android/dictionary/engine/IndexBuilder.java
src/com/hughes/android/dictionary/engine/LanguageTest.java
src/com/hughes/android/dictionary/parser/enwiktionary/EnWiktionaryLangs.java
src/com/hughes/android/dictionary/parser/enwiktionary/EnWiktionaryXmlParser.java
src/com/hughes/android/dictionary/parser/enwiktionary/FunctionCallbacksDefault.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_en.quickdic.text
testdata/goldens/wiktionary.it_it.quickdic.text
testdata/goldens/wiktionary.zh_en.quickdic.text
testdata/goldens/wiktionary.zh_zh.quickdic.text
todo.txt

index b78eeff3cf2419d40ee253a06bfda2250d038005..41a060bfe4e75bb834c160ff19fe7602b77f7878 100644 (file)
@@ -46,7 +46,6 @@ einer
 hat
 Ich
 sie
-sport
 er
 ab
 aus
index c11bb7e7763a494e4b465190f3be59637027a991..b23066a662f7e60acaf415167addabc0401f6031 100644 (file)
@@ -1,31 +1,23 @@
 of
-form
 and
 Compound
 Plural
 To
 plural
 to
-Feminine
 or
 a
 the
 in
 gerund
 person
-lo
-la
-le
-li
 A
-ne
 imperative
 s
 with
 one
 an
 for
-female
 attributive
 be
 Variant
@@ -35,7 +27,6 @@ from
 that
 by
 on
-gli
 singular
 something
 up
@@ -47,7 +38,6 @@ being
 as
 who
 second
-tu
 is
 I
 Br
index 8051a9028c695a3862f403afff3d52c3a475a06f..5fd6fc10ed29a41044457c1c2bfced85445fd073 100644 (file)
@@ -20,7 +20,6 @@ import java.io.PrintStream;
 import java.io.RandomAccessFile;
 import java.nio.charset.Charset;
 import java.util.ArrayList;
-import java.util.Arrays;
 import java.util.LinkedHashSet;
 import java.util.List;
 import java.util.Map;
index f766e0ab50ace5d74ece89b47618f6dbb2fbaa72..c3f4c4ee45f9696763f755b92683c2cd041f5423 100644 (file)
@@ -178,16 +178,32 @@ public class DictionaryTest extends TestCase {
   }
 
   public void testMultiSearchBig() throws IOException {
-    final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "EN-IT_enwiktionary.quickdic", "r");
+    final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "DE-EN_chemnitz_enwiktionary.quickdic", "r");
     final Dictionary dict = new Dictionary(raf);
-    final Index enIndex = dict.indices.get(0);
+    final Index enIndex = dict.indices.get(1);
 
     {
-    final List<RowBase> rows = enIndex.multiWordSearch(Arrays.asList("space", "station"), new AtomicBoolean(false));
+    final List<RowBase> rows = enIndex.multiWordSearch(Arrays.asList("train", "station"), new AtomicBoolean(false));
     System.out.println(CollectionUtil.join(rows, "\n  "));
     assertTrue(rows.toString(), rows.size() > 0);
+    assertEquals("Bahnhof {{de-noun|g=m|genitive=Bahnhofs|genitive2=Bahnhofes|plural=Bahnhöfe}}\ttrain station", rows.get(0).toString());
     }
-    
+
+    {
+    final List<RowBase> rows = enIndex.multiWordSearch(Arrays.asList("a", "train", "station"), new AtomicBoolean(false));
+    System.out.println(CollectionUtil.join(rows, "\n  "));
+    assertTrue(rows.toString(), rows.size() > 0);
+    assertEquals("Bahnhofsuhr {{de-noun|g=f|plural=Bahnhofsuhren}}\tstation clock (at a train station)", rows.get(0).toString());
+    }
+
+    {
+    final List<RowBase> rows = enIndex.multiWordSearch(Arrays.asList("a", "station"), new AtomicBoolean(false));
+    // TODO: bug, "a" isn't in stoplist for now...
+    System.out.println(CollectionUtil.join(rows, "\n  "));
+    assertTrue(rows.toString(), rows.size() == 0);
+    //assertEquals("Bahnhofsuhr {{de-noun|g=f|plural=Bahnhofsuhren}}\tstation clock (at a train station)", rows.get(0).toString());
+    }
+
     raf.close();
   }
 
index 62cdcd7336d508f83105deda9e588f0250d2730e..95a6b07243e17e9afae7297a20877f2ea4813c6b 100644 (file)
@@ -38,7 +38,7 @@ public class IndexBuilder {
 
   IndexBuilder(final DictionaryBuilder dictionaryBuilder, final String shortName, final String longName, final Language language, final String normalizerRules, final Set<String> stoplist, final boolean swapPairEntries) {
     this.dictionaryBuilder = dictionaryBuilder;
-    index = new Index(dictionaryBuilder.dictionary, shortName, longName, language, normalizerRules, swapPairEntries);
+    index = new Index(dictionaryBuilder.dictionary, shortName, longName, language, normalizerRules, swapPairEntries, stoplist);
     tokenToData = new TreeMap<String, TokenData>(new NormalizeComparator(index.normalizer(), language.getCollator()));
     this.stoplist = stoplist;
   }
index 37ea2e5c6d2292ab3e6ca4e16d8e8643450bdeeb..f729b224a8fa7a3fd2eb4dd99a2c78632deb60b2 100644 (file)
@@ -160,7 +160,11 @@ public class LanguageTest extends TestCase {
     assertEquals("haswb", transliterator.transliterate("حاسوب"));
     assertEquals("kmbywtr", transliterator.transliterate("كمبيوتر"));
 
-    assertEquals("{\u200eكمبيوتر\u200e}", Language.fixBidiText("{كمبيوتر}"));
+    assertEquals("{\u200e كمبيوتر \u200e}", Language.fixBidiText("{كمبيوتر}"));
+    assertEquals("{a=\u200e كمبيوتر \u200e}", Language.fixBidiText("{a=كمبيوتر}"));
+    assertEquals("(\u200e كمبيوتر \u200e)", Language.fixBidiText("(كمبيوتر)"));
+    assertEquals("أنثى أنْثَى (’únθā) {f}, إناث (’ināθ) {p}, اناثى (’anāθā) {p}", Language.fixBidiText("أنثى أنْثَى (’únθā) {f}, إناث (’ināθ) {p}, اناثى (’anāθā) {p}"));
+       
   }
 
   public void testEnWiktionaryNames() {
index e81695a57134cd9e4a04fdf25087e9312b411d14..0b48d11564c4cd2afa95af20a4a041f313737f6d 100644 (file)
@@ -36,7 +36,7 @@ public class EnWiktionaryLangs {
     isoCodeToWikiName.put("HU", "Hungarian");
     isoCodeToWikiName.put("IS", "Icelandic");
     isoCodeToWikiName.put("ID", "Indonesian");
-    isoCodeToWikiName.put("GA", "Irish");
+    isoCodeToWikiName.put("GA", "Gaelic");
     isoCodeToWikiName.put("IT", "Italian");
     isoCodeToWikiName.put("LA", "Latin");
     isoCodeToWikiName.put("LV", "Latvian");
@@ -73,6 +73,20 @@ public class EnWiktionaryLangs {
     isoCodeToWikiName.put("CI", "Welsh");
     isoCodeToWikiName.put("YI", "Yiddish");
     isoCodeToWikiName.put("ZU", "Zulu");
+
+    
+    isoCodeToWikiName.put("AZ", "Azeri");
+    isoCodeToWikiName.put("EU", "Basque");
+    isoCodeToWikiName.put("BR", "Breton");
+    isoCodeToWikiName.put("MR", "Burmese");
+    isoCodeToWikiName.put("FO", "Faroese");
+    isoCodeToWikiName.put("GL", "Galician");
+    isoCodeToWikiName.put("KA", "Georgian");
+    isoCodeToWikiName.put("HT", "Haitian Creole");
+    isoCodeToWikiName.put("LB", "Luxembourgish");
+    isoCodeToWikiName.put("MK", "Macedonian");
+    
+    
   }
 
 
index 62aa430a4f09840172f4c14d4279015e8d3f3617..27246cd42f1fab8d8385a83984f71b63fa50e94a 100644 (file)
@@ -23,10 +23,12 @@ import java.io.IOException;
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collection;
+import java.util.LinkedHashMap;
 import java.util.LinkedHashSet;
 import java.util.List;
 import java.util.Map;
 import java.util.Set;
+import java.util.concurrent.atomic.AtomicInteger;
 import java.util.logging.Level;
 import java.util.logging.Logger;
 import java.util.regex.Pattern;
@@ -119,6 +121,9 @@ public class EnWiktionaryXmlParser {
       System.out.println("lang Counts: " + appendAndIndexWikiCallback.langCodeToTCount);
       appendAndIndexWikiCallback.langCodeToTCount.keySet().removeAll(EnWiktionaryLangs.isoCodeToWikiName.keySet());
       System.out.println("unused Counts: " + appendAndIndexWikiCallback.langCodeToTCount);
+      System.out.println("lang Counts: " + langNameToTCount);
+      langNameToTCount.keySet().removeAll(EnWiktionaryLangs.isoCodeToWikiName.values());
+      System.out.println("unknown counts: " + langNameToTCount);
     }
   }
   
@@ -190,6 +195,8 @@ public class EnWiktionaryXmlParser {
     appendAndIndexWikiCallback.functionCallbacks.putAll(FunctionCallbacksDefault.DEFAULT);
   }
   
+  final Map<String,AtomicInteger> langNameToTCount = new LinkedHashMap<String, AtomicInteger>();
+  
   private void doTranslations(final WikiTokenizer wikiTokenizer, final String pos) {
     if (title.equals("absolutely")) {
       //System.out.println();
@@ -240,9 +247,9 @@ public class EnWiktionaryXmlParser {
         final String line = wikiTokenizer.listItemWikiText();
         // This line could produce an output...
         
-        if (line.contains("ich hoan dich gear")) {
-          //System.out.println();
-        }
+//        if (line.contains("ich hoan dich gear")) {
+//          //System.out.println();
+//        }
         
         // First strip the language and check whether it matches.
         // And hold onto it for sub-lines.
@@ -252,6 +259,10 @@ public class EnWiktionaryXmlParser {
         }
         
         final String lang = trim(WikiTokenizer.toPlainText(line.substring(0, colonIndex)));
+        if (!langNameToTCount.containsKey(lang)) {
+          langNameToTCount.put(lang, new AtomicInteger());
+        }
+        langNameToTCount.get(lang).incrementAndGet();
         final boolean appendLang;
         if (wikiTokenizer.listItemPrefix().length() == 1) {
           topLevelLang = lang;
index b9fc2a28f932dc605742ea853f6aa436c513f148..a50e34c6ee3d2a4265eb9b96bc25f20130448baf 100644 (file)
@@ -15,6 +15,7 @@
 package com.hughes.android.dictionary.parser.enwiktionary;
 
 import java.util.Arrays;
+import java.util.Collections;
 import java.util.LinkedHashMap;
 import java.util.LinkedHashSet;
 import java.util.List;
@@ -115,7 +116,9 @@ public final class FunctionCallbacksDefault {
         final Map<String, String> namedArgs, final EnWiktionaryXmlParser parser,
         final AppendAndIndexWikiCallback appendAndIndexWikiCallback) {
       
-      appendAndIndexWikiCallback.builder.append(name);
+      if (name != null) {
+        appendAndIndexWikiCallback.builder.append(name);
+      }
       for (int i = 0; i < args.size(); ++i) {
         if (args.get(i).length() > 0) {
           appendAndIndexWikiCallback.builder.append("|");
@@ -128,7 +131,7 @@ public final class FunctionCallbacksDefault {
   }
   static NameAndArgs NAME_AND_ARGS = new NameAndArgs();
 
-  private static void appendNamedArgs(final Map<String, String> namedArgs,
+  static void appendNamedArgs(final Map<String, String> namedArgs,
       final AppendAndIndexWikiCallback appendAndIndexWikiCallback) {
     for (final Map.Entry<String, String> entry : namedArgs.entrySet()) {
       appendAndIndexWikiCallback.builder.append("|");
@@ -155,6 +158,7 @@ public final class FunctionCallbacksDefault {
         final AppendAndIndexWikiCallback appendAndIndexWikiCallback) {
 
       final String transliteration = namedArgs.remove("tr");
+      final String alt = namedArgs.remove("alt");
       namedArgs.keySet().removeAll(EnWiktionaryXmlParser.USELESS_WIKI_ARGS);
       if (args.size() < 2) {
         LOG.warning("{{t...}} with wrong args: title=" + parser.title);
@@ -166,19 +170,41 @@ public final class FunctionCallbacksDefault {
       }
       appendAndIndexWikiCallback.langCodeToTCount.get(langCode).incrementAndGet();
       final String word = ListUtil.get(args, 1);
-      final String gender = ListUtil.get(args, 2);
-      // TODO: deal with second (and third...) gender, and alt.
-      
-      appendAndIndexWikiCallback.dispatch(word, EntryTypeName.WIKTIONARY_TITLE_MULTI);
-      
-      if (gender != null) {
-        appendAndIndexWikiCallback.builder.append(String.format(" {%s}", gender));
+      appendAndIndexWikiCallback.dispatch(alt != null ? alt : word, EntryTypeName.WIKTIONARY_TITLE_MULTI);
+
+      // Genders...
+      if (args.size() > 2) {
+        appendAndIndexWikiCallback.builder.append(" {");
+        for (int i = 2; i < args.size(); ++i) {
+          if (i > 2) {
+            appendAndIndexWikiCallback.builder.append("|");
+          }
+          appendAndIndexWikiCallback.builder.append(args.get(i));
+        }
+        appendAndIndexWikiCallback.builder.append("}");
       }
+
       if (transliteration != null) {
         appendAndIndexWikiCallback.builder.append(" (");
         appendAndIndexWikiCallback.dispatch(transliteration, EntryTypeName.WIKTIONARY_TRANSLITERATION);
         appendAndIndexWikiCallback.builder.append(")");
       }
+      
+      if (alt != null) {
+        // If alt wasn't null, we appended alt instead of the actual word
+        // we're filing under..
+        appendAndIndexWikiCallback.builder.append(" (");
+        appendAndIndexWikiCallback.dispatch(word, EntryTypeName.WIKTIONARY_TITLE_MULTI);
+        appendAndIndexWikiCallback.builder.append(")");
+      }
+
+      // Catch-all for anything else...
+      if (!namedArgs.isEmpty()) {
+        appendAndIndexWikiCallback.builder.append(" {");
+        FunctionCallbacksDefault.appendNamedArgs(namedArgs, appendAndIndexWikiCallback);
+        appendAndIndexWikiCallback.builder.append("}");
+      }
+      
       return true;
     }
     
index 1fdaa338293522cbbc03d900e4612394b73fd794..fbefea1713f59eb10bed61e20d0d72e76174acaa 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.arabic 13363
+EntrySource: enwiktionary.arabic 13381
 
 Index: AR AR->EN
 ***أ***
@@ -10419,6 +10419,14 @@ Index: EN EN->AR
   بلدي بَلَدِيّ (baladiyy) {m} :: fellow citizen, compatriot, countryman
 ===felon===
   جان {{ar-noun|head=جانٍ|tr=jānin|pl=جناة}} :: perpetrator, offender, delinquent, criminal, culprit, felon, evildoer
+===female===
+  أنثى أنْثَى (’únθā) {f}, إناث (’ināθ) {p}, اناثى (’anāθā) {p} :: female
+  أنثى أنْثَى (’únθā) {f}, إناث (’ināθ) {p}, اناثى (’anāθā) {p} :: female (of animals)
+    الانثيان (al-’unθayān) :: the testicles
+  مدرسة {{ar-noun|g=f|head=مُدَرِّسَة|tr=mudárrisa|pl=مدرسات|plhead=مُدَرِّسَات|pltr=mudárrisāt}} :: (female) teacher
+  جنس (jins) {m}, أجناس (ajnās) {p} :: sex (male or female)
+  أحبك (uHíbbuki, uHíbbik) :: I love you (to a female)
+  اتان أتُانٌ (’atān) {f}, آتُن (’ātun) {p}, أتُن (’útun, ’utn) {p} :: she ass, female donkey, jenny
 ===feminine===
   أنثى أنْثَى (’únθā) {f}, إناث (’ināθ) {p}, اناثى (’anāθā) {p} :: feminine
   مصر (miSr, maSr) {f} :: Egypt or Masr (in this sense, a feminine noun)
@@ -10782,6 +10790,20 @@ Index: EN EN->AR
 ===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
+===form===
+  سن {{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
+  عن {{ar-verb (old)|I|عَنّ|ʕánna}} :: to take shape, to form, to arise, to spring up
+  قطر {{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)
+  عربية (ʕarabíyya) {f} or {p} :: Arabic (feminine or plural form of عربي)
+  ﻫ (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 و.
+  عرب {{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 Arabicize, Arabize; to give an Arabic form.
+  زبر (zúbar) {p} :: Plural form of زبرة.
+  ازهر أزْهُر (’áz-hur) :: flowers, blossoms (Plural form of زهر)
+  اعراب (iʕrāb) {m}اعراب{p} :: Arabs (Plural form of عرب).
+  بن (bin, ibn) {m}, بنت (bint) {f}, ابناء (abnā’) {p}, بنون (banūn) {p} :: son, base form of ابن (ibn) (same as Hebrew בֵּן).
+    بني (bunáiya) — my little son :: --
 ===formal===
   فتوى (fatwā) {f}, فتاو (fatāwin) {p}, فتاوى (fatāwā) {p} :: fatwa, formal legal opinion
 ===formerly===
index 7b90d256a0171d6590f6bf46c695822cf96dc773..77504a29d9f188aba19b62a307b5e2a98dd69a64 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.german 5303
+EntrySource: enwiktionary.german 5342
 
 Index: DE DE->EN
 ===001===
@@ -6097,6 +6097,10 @@ Index: EN EN->DE
     1787 CE: Johann Wolfgang von Goethe, Egmont :: --
     Und konnte ich fürchten, daß diese unglückliche Liebe das kluge Klärchen so bald hinreißen würde? Ich muß es nun tragen, daß meine Tochter-- :: --
     And could I imagine, that this unhappy love would so soon carry away the prudent little Klara? I must endure it now, that my daughter-- :: --
+===female===
+  Ärztin {{de-noun|g=f|plural=Ärztinnen}} :: female doctor or physician.
+  Freundin {{de-noun|g=f|plural=Freundinnen}} :: a female friend
+  Bache {{de-noun|g=f|plural=Bachen}} :: A wild sow; female wild boar. Generic term is Wildschwein.
 ===feminine===
   ne :: {colloquial} shorthand of the feminine indefinite article eine (“an; a”)
     Möchtest du ne Flasche Bier? :: “Would you like a bottle of beer?”
@@ -6106,6 +6110,8 @@ Index: EN EN->DE
   englische :: accusative singular feminine and neuter form of englisch (English) used after the definite article.
   englische :: accusative singular feminine form of englisch (English) used after the indefinite article.
   Claudia (proper noun) :: {{given name|female}} from the Latin feminine form of Claudius; quite popular from the 1960s to the 1980s.
+===Feminine===
+  meine {f/pl} (pronoun form) :: {possessive} Feminine nominative and accusative singular form of mein.
 ===ferment===
   arbeiten {de-verb} :: {intransitive} to ferment
 ===fermented===
@@ -6204,6 +6210,50 @@ Index: EN EN->DE
   (Old High German) wat {{goh-noun|g=n}} :: ford
 ===fork===
   Gabel {{de-noun|g=f|plural=Gabeln}} :: fork
+===form===
+  biegen {de-verb} :: {{transitive|auxiliary: “haben”}} to bend; to form (something) into a curve.
+  (Low German) was (verb form) :: wash; apocoped form of wasse, singular imperative of wassen; mainly used in the Netherlands, equivalent to other dialekts' wasche/waske
+  (Low German) was (verb form) :: wax; apocoped form of wasse, singular imperative of wassen
+  (Low German) was (verb form) :: grow; apocoped form of wasse, singular imperative of wassen
+  deutscher {m} (adjective form) :: male form of deutsch
+    ein deutscher Wein :: --
+  (Middle Low German) sîn (pronoun) :: {possessive} his; possessive form of he
+  (Middle Low German) sîn (pronoun) :: of his; genitive form of he
+    lohant ret her Zeno hen na Verona to dem vader sin. :: --
+    John rode Sir Zeno to Verona, to the father of his. :: --
+  (Middle Low German) sîn (pronoun) :: sometimes used to form the genitive
+    Deme könnink sin land, dat is: des könninges land. :: --
+    The king his land, that is: the king's land. :: --
+  (Middle Low German) sîn (pronoun) :: {possessive} its; possessive form of it
+  (Middle Low German) sîn (pronoun) :: of it; genitive form of it
+  deutsche (adjective form) :: form of deutsch after a definite article
+    die deutsche Sprache; der deutsche Bundespräsident; das deutsche Gesundheitssystem :: --
+  meine {f/pl} (pronoun form) :: {possessive} Feminine nominative and accusative singular form of mein.
+  meine {f/pl} (pronoun form) :: {possessive} Nominative and accusative plural form of mein.
+  meine (verb form) :: First-person singular indicative present form of meinen.
+  meine (verb form) :: First-person singular subjunctive present form of meinen.
+  meine (verb form) :: Third-person singular subjunctive present form of meinen.
+  meine (verb form) :: Second-person singular imperative form of meinen.
+  grub (verb form) :: singular past imperfect form of graben
+  esse (verb form) :: First-person singular indicative present form of essen.
+  esse (verb form) :: First-person singular subjunctive present form of essen.
+  esse (verb form) :: Third-person singular subjunctive present form of essen.
+  -er (suffix) :: Forming agent nouns from verbs with the sense of ‘person or thing which does’, suffixed to the first-person singular indicative present form from which the E is dropped.
+    arbeiten 'to work'; (ich) arbeit(<u>e</u>) + -er '-er' -> Arbeiter 'worker' :: --
+  englische :: nominative singular form of englisch (English) used after the definite article.
+  englische :: nominative singular feminine form of englisch (English) used after the indefinite article.
+  englische :: accusative singular feminine and neuter form of englisch (English) used after the definite article.
+  englische :: accusative singular feminine form of englisch (English) used after the indefinite article.
+  ward (verb form) :: {archaic} First-person singular indicative past form of werden.
+  ward (verb form) :: {archaic} Third-person singular indicative past form of werden.
+    Und Gott sprach: »Es werde Licht!« Und es ward Licht. [http://www.bibledbdata.org/onlinebibles/german_l/01_001.htm] :: And God said: "Let there be light." And there was light.
+  sorg :: imperative singular form of sorgen (‘to worry’, ‘to care’)
+  Claudia (proper noun) :: {{given name|female}} from the Latin feminine form of Claudius; quite popular from the 1960s to the 1980s.
+  junges (adjective form) :: Neuter form of jung.
+  Adam (proper noun) :: {{given name|male}}. Pet form: Adi
+  jeden :: each (masculine accusative singular form of jeder)
+  jeden :: each (a masculine genitive singular form of jeder)
+  jeden :: each (a neuter genitive singular form of jeder)
 ===formal===
   sie (pl.) :: {personal} you, used to refer to any number of persons in formal conversations
 ===former===
index e09ae8e227a0c175b46420c09b72cce2be82d32a..beafadf2cbf8a8c92d336c50bc5fa4500e0aa8a8 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.english 4965
+EntrySource: enwiktionary.english 4982
 
 Index: DE DE->EN
 ===2===
@@ -322,7 +322,7 @@ Index: DE DE->EN
 ***aro***
   (Old High German) arn {m}, aro {m} :: eagle (Any of several large carnivorous birds in the family Accipitridae) (noun)
 ***Arschbacken***
-  Arschbacken {f}, Pobacken {f} :: can (buttocks) (noun)
+  Arschbacken {f}, Pobacken {f|p} :: can (buttocks) (noun)
 ***Arschloch***
   Wichser, Arschloch, Drecksau, Mutterficker (rare) :: motherfucker (generic term of abuse) (noun)
 ***Arznei***
@@ -427,7 +427,7 @@ Index: DE DE->EN
 ===Beiklang===
   Konnotation, Nebenbedeutung, Beiklang, Beigeschmack :: connotation (suggested or implied meaning) (noun)
 ***Bein***
-  Knochen {m}, Gebeine {f}, (dated) Bein {n} :: bone (material) (noun)
+  Knochen {m}, Gebeine {f|p}, (dated) Bein {n} :: bone (material) (noun)
   (Low German) (east) Bein {n}, (west) Been {n} :: bone (material) (noun)
 ===bellboy===
   Hotelpage (either bellboy or bellgirl) :: bellgirl (a female bellhop) (noun)
@@ -516,7 +516,7 @@ Index: DE DE->EN
 ***buchen***
   buchen, reservieren :: book (reserve) (verb)
 ***Bücher***
-  Bücher {n} :: book (usually in plural: records of the accounts of a business) (noun)
+  Bücher {n|p} :: book (usually in plural: records of the accounts of a business) (noun)
 ***Buchstabe***
   Buchstabe {m} :: letter (letter of the alphabet) (noun)
 ***Buntstift***
@@ -557,7 +557,7 @@ Index: DE DE->EN
   der {m}, die {f}, das {n}, die {p} :: the (with a superlative) (article)
   der {m}, die {f}, das {n}, die {p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ***dat***
-  (Low German) dat {n}, de {m}, dei {m} :: the (article) (article)
+  (Low German) dat {n}, de {m|f}, dei {m|f} :: the (article) (article)
 ***Date***
   Rendezvous {n}, Date {n}, Verabredung {n}, Stelldichein {n} :: date (meeting with a lover or potential lover; a person so met) (noun)
 ***daten***
@@ -577,7 +577,7 @@ Index: DE DE->EN
   fliehen, fortlaufen, davonmachen :: absquatulate (to leave quickly or in a hurry; to take oneself off; to decamp; to depart) (verb)
   sich davonmachen :: abscond (to depart secretly) (verb)
 ***de***
-  (Low German) dat {n}, de {m}, dei {m} :: the (article) (article)
+  (Low German) dat {n}, de {m|f}, dei {m|f} :: the (article) (article)
   Informatik {f} (de) :: computer science (study of computers and their architecture) (noun)
 ***Deal***
   Handel {m}, Deal {m} (Econ.) :: deal (instance of buying or selling) (noun)
@@ -594,7 +594,7 @@ Index: DE DE->EN
   Definition {f} :: definition (action or power of describing, explaining, or making definite) (noun)
   Definition {f} :: definition (bodybuilding: the degree to which individual muscles are distinct) (noun)
 ***dei***
-  (Low German) dat {n}, de {m}, dei {m} :: the (article) (article)
+  (Low German) dat {n}, de {m|f}, dei {m|f} :: the (article) (article)
 ***Deitscha***
   (Alemannic German) Deitscha :: German (the German language) (proper noun)
 ***Dekade***
@@ -902,7 +902,7 @@ Index: DE DE->EN
 ***feuern***
   kündigen, feuern, rausschmeißen :: can (to fire or dismiss an employee) (verb)
 ***Fieber***
-  täglich Fieber :: quotidian (quotidian fever) (noun)
+  tägliches (täglich) Fieber :: quotidian (quotidian fever) (noun)
 ===finger===
   Finger (finger), Zeh (toe) :: digit (finger or toe) (noun)
 ===Finger===
@@ -996,7 +996,7 @@ Index: DE DE->EN
 ***gebeine***
   (Middle High German) gebeine {n} :: bone (material) (noun)
 ***Gebeine***
-  Knochen {m}, Gebeine {f}, (dated) Bein {n} :: bone (material) (noun)
+  Knochen {m}, Gebeine {f|p}, (dated) Bein {n} :: bone (material) (noun)
 ***geben***
   austeilen, geben :: deal (distribute (cards)) (verb)
 ***Gebiss***
@@ -1122,9 +1122,9 @@ Index: DE DE->EN
   Avatar {m}, Avatara {m}, Herabkunft {f}, Inkarnation {f} :: avatar (The earthly incarnation of a deity, particularly Vishnu) (noun)
 ***Herbst***
   Herbst {m} :: autumn (season) (noun)
-  Herbst, herbstlich :: autumn (of or relating to autumn) (adjective)
+  Herbst- (Herbst), herbstlich :: autumn (of or relating to autumn) (adjective)
 ***herbstlich***
-  Herbst, herbstlich :: autumn (of or relating to autumn) (adjective)
+  Herbst- (Herbst), herbstlich :: autumn (of or relating to autumn) (adjective)
 ***herein***
   herein, hinein :: in (moving to the interior) (adverb)
 ***Herr***
@@ -1171,7 +1171,7 @@ Index: DE DE->EN
 ***höher***
   höher, oben, darüber :: above (in a higher place) (adverb)
 ***Holland***
-  Holland {n}, die Niederlande {n} :: Netherlands (country in northwestern Europe) (proper noun)
+  Holland {n}, die Niederlande {n|p} :: Netherlands (country in northwestern Europe) (proper noun)
 ***Holländer***
   Niederländer, Holländer :: Dutch (people from the Netherlands) (proper noun)
 ***holländisch***
@@ -1340,7 +1340,7 @@ Index: DE DE->EN
 ***Knaken***
   (Low German) Knaken {m} :: bone (component of a skeleton) (noun)
 ***Knochen***
-  Knochen {m}, Gebeine {f}, (dated) Bein {n} :: bone (material) (noun)
+  Knochen {m}, Gebeine {f|p}, (dated) Bein {n} :: bone (material) (noun)
   Knochen {m} :: bone (component of a skeleton) (noun)
 ***Koffer***
   Koffer {m} :: portmanteau (case) (noun)
@@ -1634,7 +1634,7 @@ Index: DE DE->EN
 ***Nichts***
   Null {f}, Nichts {n}, Niemand {m} :: zero (person of little importance) (noun)
 ***Niederlande***
-  Holland {n}, die Niederlande {n} :: Netherlands (country in northwestern Europe) (proper noun)
+  Holland {n}, die Niederlande {n|p} :: Netherlands (country in northwestern Europe) (proper noun)
 ***Niederländer***
   Niederländer, Holländer :: Dutch (people from the Netherlands) (proper noun)
 ===niederlandisch===
@@ -1758,7 +1758,7 @@ Index: DE DE->EN
 ===pluralisch===
   Plural-, pluralisch :: plural (more than one) (adjective)
 ***Pobacken***
-  Arschbacken {f}, Pobacken {f} :: can (buttocks) (noun)
+  Arschbacken {f}, Pobacken {f|p} :: can (buttocks) (noun)
 ***polnisch***
   polnisch :: Polish (of Poland or its language) (adjective)
 ***Polnisch***
@@ -2068,7 +2068,9 @@ Index: DE DE->EN
 ***Sprachen***
   Sprache {f}, Sprachen {p} :: language (computer language) (noun)
 ***sprahha***
-  (Old High German) sprahha :: language (system of communication using words or symbols) (noun)
+  (Old High German) sprāhha (sprahha) :: language (system of communication using words or symbols) (noun)
+***sprāhha***
+  (Old High German) sprāhha (sprahha) :: language (system of communication using words or symbols) (noun)
 ***springen***
   springen :: spring (jump or leap) (verb)
   springen, einen Satz machen, hüpfen :: leap (to jump from one location to another) (verb)
@@ -2145,7 +2147,9 @@ Index: DE DE->EN
 ***täglich***
   alltäglich wiederkehrend, täglich wiederkehrend :: quotidian (daily) (adjective)
   das Alltägliche, das täglich Wiederkehrende :: quotidian (common, mundane) (adjective)
-  täglich Fieber :: quotidian (quotidian fever) (noun)
+  tägliches (täglich) Fieber :: quotidian (quotidian fever) (noun)
+***tägliches***
+  tägliches (täglich) Fieber :: quotidian (quotidian fever) (noun)
 ***Taktsignal***
   Taktsignal {n} :: clock (electrical signal) (noun)
 ***taufen***
@@ -3047,7 +3051,7 @@ Index: EN EN->DE
 ===accounting===
   abgegrenzte Schulden {f}, Abgrenzungsposten {m}, Rechnungsabgrenzungsposten {m} :: accrual (an accounting charge) (noun)
 ===accounts===
-  Bücher {n} :: book (usually in plural: records of the accounts of a business) (noun)
+  Bücher {n|p} :: book (usually in plural: records of the accounts of a business) (noun)
 ***accrual***
   Zuwachs {m} :: accrual (an increase) (noun)
   abgegrenzte Schulden {f}, Abgrenzungsposten {m}, Rechnungsabgrenzungsposten {m} :: accrual (an accounting charge) (noun)
@@ -3312,7 +3316,7 @@ Index: EN EN->DE
   Komitologie :: comitology (art of resolving issues by committees) (noun)
 ===article===
   (nominative case) der {m}, (nominative case) die {f}, (nominative case) das {n}, (nominative case) die {p}, ... :: the (article) (article)
-  (Low German) dat {n}, de {m}, dei {m} :: the (article) (article)
+  (Low German) dat {n}, de {m|f}, dei {m|f} :: the (article) (article)
 ===articles===
   Enzyklopädie {f} :: encyclopedia (comprehensive reference with articles on a range of topic) (noun)
 ===ashamed===
@@ -3361,7 +3365,7 @@ Index: EN EN->DE
   Verwahrstelle {f} :: pound (place for detention of automobiles) (noun)
 ***autumn***
   Herbst {m} :: autumn (season) (noun)
-  Herbst, herbstlich :: autumn (of or relating to autumn) (adjective)
+  Herbst- (Herbst), herbstlich :: autumn (of or relating to autumn) (adjective)
 ===auxiliary===
   Esperanto {n} :: Esperanto (auxiliary language) (proper noun)
 ===available===
@@ -3530,7 +3534,7 @@ Index: EN EN->DE
 ===bodybuilding===
   Definition {f} :: definition (bodybuilding: the degree to which individual muscles are distinct) (noun)
 ***bone***
-  Knochen {m}, Gebeine {f}, (dated) Bein {n} :: bone (material) (noun)
+  Knochen {m}, Gebeine {f|p}, (dated) Bein {n} :: bone (material) (noun)
   (Middle High German) gebeine {n} :: bone (material) (noun)
   (Low German) (east) Bein {n}, (west) Been {n} :: bone (material) (noun)
   Knochen {m} :: bone (component of a skeleton) (noun)
@@ -3544,7 +3548,7 @@ Index: EN EN->DE
   Buch {n} :: book (collection of sheets of paper bound together containing printed or written material) (noun)
   Wettliste {f} :: book (record of betting) (noun)
   Album {n} :: book (convenient collection of small paper items, such as stamps) (noun)
-  Bücher {n} :: book (usually in plural: records of the accounts of a business) (noun)
+  Bücher {n|p} :: book (usually in plural: records of the accounts of a business) (noun)
   E-Book {n} :: book (ebook) (noun)
   buchen, reservieren :: book (reserve) (verb)
   bestrafen :: book (penalise) (verb)
@@ -3589,11 +3593,11 @@ Index: EN EN->DE
 ===bush===
   Weißdornblüte {f} :: may (the hawthorn bush or its blossom) (noun)
 ===business===
-  Bücher {n} :: book (usually in plural: records of the accounts of a business) (noun)
+  Bücher {n|p} :: book (usually in plural: records of the accounts of a business) (noun)
 ===but===
   Moment {m}, :: minute (short but unspecified period of time) (noun)
 ===buttocks===
-  Arschbacken {f}, Pobacken {f} :: can (buttocks) (noun)
+  Arschbacken {f}, Pobacken {f|p} :: can (buttocks) (noun)
 ===buying===
   Handel {m} :: trade (instance of buying or selling) (noun)
   Handel {m}, Deal {m} (Econ.) :: deal (instance of buying or selling) (noun)
@@ -3635,7 +3639,7 @@ Index: EN EN->DE
   Gießkanne {f} :: can (a container used to carry and dispense water for plants) (noun)
   Dose {f}, Konservendose {f} :: can (a tin-plate canister) (noun)
   Toilette {f}, WC {n}, Klo {n} :: can (toilet) (noun)
-  Arschbacken {f}, Pobacken {f} :: can (buttocks) (noun)
+  Arschbacken {f}, Pobacken {f|p} :: can (buttocks) (noun)
   einmachen :: can (to preserve) (verb)
   abbrechen :: can (to discard) (verb)
   die Klappe halten, den Mund halten :: can (to shut up) (verb)
@@ -3849,7 +3853,7 @@ Index: EN EN->DE
   Sprache {f} :: language (the ability to communicate using words) (noun)
 ===communication===
   Sprache {f} :: language (system of communication using words or symbols) (noun)
-  (Old High German) sprahha :: language (system of communication using words or symbols) (noun)
+  (Old High German) sprāhha (sprahha) :: language (system of communication using words or symbols) (noun)
   Sprache {f} :: language (nonverbal communication) (noun)
 ===companion===
   Verabredung {f} (colloquial, arbitrary gender) :: date (companion when one is partaking in a social occasion) (noun)
@@ -3968,7 +3972,7 @@ Index: EN EN->DE
   (Palatinate German) Mexiko {n} :: Mexico (country) (proper noun)
   (Low German) Mexiko {n} :: Mexico (country) (proper noun)
   Japan :: Japan (A Far East country in Asia) (proper noun)
-  Holland {n}, die Niederlande {n} :: Netherlands (country in northwestern Europe) (proper noun)
+  Holland {n}, die Niederlande {n|p} :: Netherlands (country in northwestern Europe) (proper noun)
 ===cover===
   Gras {n} :: grass (ground cover plant) (noun)
 ===covered===
@@ -4514,7 +4518,7 @@ Index: EN EN->DE
   Etymologie {f} :: etymology (study of the historical development of languages, particularly of individual words) (noun)
   Etymologie {f} :: etymology (account of the origin and historical development of a word) (noun)
 ===Europe===
-  Holland {n}, die Niederlande {n} :: Netherlands (country in northwestern Europe) (proper noun)
+  Holland {n}, die Niederlande {n|p} :: Netherlands (country in northwestern Europe) (proper noun)
 ===event===
   Zeitwort {n}, Verb {n}, Verbum {n} :: verb ((grammar) a word that indicates an action, event, or a state) (noun)
   Punkt {m}, Zeitpunkt {m} :: point (particular moment in an event or occurrence) (noun)
@@ -4631,9 +4635,13 @@ Index: EN EN->DE
   erniedrigen :: abase (to lower so as to hurt feelings) (verb)
 ===Felidae===
   Katze {f} :: cat (member of Felidae) (noun)
+===female===
+  Äbtissin {f}, Äbtin {f}, Oberin {f} (Reverend Mother) :: abbess (female superior of a nunnery) (noun)
+  Fanny :: Fanny (female given name) (proper noun)
+  Hotelpage (either bellboy or bellgirl) :: bellgirl (a female bellhop) (noun)
 ===fever===
   abbrechen :: abortive (Cutting short; as, abortive treatment of typhoid fever.) (adjective)
-  täglich Fieber :: quotidian (quotidian fever) (noun)
+  tägliches (täglich) Fieber :: quotidian (quotidian fever) (noun)
 ***few***
   wenig :: few (indefinite, usually small number) (determiner)
   frei :: free (software: with very few limitations on distribution or improvement) (adjective)
@@ -4730,6 +4738,19 @@ Index: EN EN->DE
   Haupt- :: head (foremost in rank or importance) (adjective)
 ===forgiven===
   Absolution {f} :: absolution (Exercise of priestly jurisdiction in the sacrament of penance, by which Catholics believe the sins of the truly penitent are forgiven) (noun)
+===form===
+  Abkürzung {f}, Kurzbezeichnung {f}, Kürzel {n}, Kurzform {f} :: abbreviation (shortened or contracted form of a word or phrase) (noun)
+  Plural {m}, Mehrzahl {f} :: plural (word in plural form) (noun)
+  Außerirdischer {m}, Außerirdische {f} :: alien (life form of non-Earth origin) (noun)
+  Alphabetismus {m} :: alphabetism (form of literacy) (noun)
+  sein :: be (elliptical form of "be here", or similar) (verb)
+  werden :: be (used to form the passive voice) (verb)
+  sein :: be (used to form the continuous forms of various tenses) (verb)
+  sein :: be ((archaic) used to form the perfect aspect with certain intransitive verbs) (verb)
+  sein :: be (used to form future tenses, especially the future subjunctive) (verb)
+  -ität {f} :: -ity (Used to form nouns from adjectives.) (suffix)
+  qualitativ :: qualitative ((chemistry) of a form of analysis that yields the identity of a compound) (adjective)
+  Einzahl {f}, Singular {m} :: singular (grammar: form of a word that refers to only one thing) (noun)
 ===formal===
   Marsch {m} :: march (formal, rhythmic way of walking) (noun)
 ===formed===
@@ -5326,7 +5347,7 @@ Index: EN EN->DE
   Ausland {n} :: abroad (countries or lands abroad) (noun)
 ***language***
   Sprache {f} :: language (system of communication using words or symbols) (noun)
-  (Old High German) sprahha :: language (system of communication using words or symbols) (noun)
+  (Old High German) sprāhha (sprahha) :: language (system of communication using words or symbols) (noun)
   Sprache {f} :: language (the ability to communicate using words) (noun)
   Sprache {f} :: language (nonverbal communication) (noun)
   Sprache {f}, Sprachen {p} :: language (computer language) (noun)
@@ -5574,7 +5595,7 @@ Index: EN EN->DE
   einzeln :: odd (not having a mate) (adjective)
 ===material===
   Buch {n} :: book (collection of sheets of paper bound together containing printed or written material) (noun)
-  Knochen {m}, Gebeine {f}, (dated) Bein {n} :: bone (material) (noun)
+  Knochen {m}, Gebeine {f|p}, (dated) Bein {n} :: bone (material) (noun)
   (Middle High German) gebeine {n} :: bone (material) (noun)
   (Low German) (east) Bein {n}, (west) Been {n} :: bone (material) (noun)
   Sprungfeder {f}, Feder {f} :: spring (device made of flexible material) (noun)
@@ -5849,7 +5870,7 @@ Index: EN EN->DE
 ===negro===
   Neger {m} :: nigger (negro person) (noun)
 ***Netherlands***
-  Holland {n}, die Niederlande {n} :: Netherlands (country in northwestern Europe) (proper noun)
+  Holland {n}, die Niederlande {n|p} :: Netherlands (country in northwestern Europe) (proper noun)
   niederlandisch, holländisch :: Netherlands (pertaining to the Netherlands) (adjective)
   niederländisch, holländisch :: Dutch (of the Netherlands, people, or language) (adjective)
   Niederländer, Holländer :: Dutch (people from the Netherlands) (proper noun)
@@ -5885,7 +5906,7 @@ Index: EN EN->DE
 ===norms===
   anormal, abnormal :: abnormal (of or pertaining to behaviour that deviates from norms) (adjective)
 ===northwestern===
-  Holland {n}, die Niederlande {n} :: Netherlands (country in northwestern Europe) (proper noun)
+  Holland {n}, die Niederlande {n|p} :: Netherlands (country in northwestern Europe) (proper noun)
 ===not===
   frei, ungebunden :: free (not imprisoned) (adjective)
   unnormal, ungewöhnlich :: abnormal (not conforming to rule or system) (adjective)
@@ -6548,7 +6569,7 @@ Index: EN EN->DE
 ***quotidian***
   alltäglich wiederkehrend, täglich wiederkehrend :: quotidian (daily) (adjective)
   das Alltägliche, das täglich Wiederkehrende :: quotidian (common, mundane) (adjective)
-  täglich Fieber :: quotidian (quotidian fever) (noun)
+  tägliches (täglich) Fieber :: quotidian (quotidian fever) (noun)
   Alltag {m} :: quotidian (quotidian, daily thing) (noun)
   das Alltägliche :: quotidian (used in art criticism) (noun)
 ===race===
@@ -6606,7 +6627,7 @@ Index: EN EN->DE
 ===record===
   Wettliste {f} :: book (record of betting) (noun)
 ===records===
-  Bücher {n} :: book (usually in plural: records of the accounts of a business) (noun)
+  Bücher {n|p} :: book (usually in plural: records of the accounts of a business) (noun)
   biblisch :: biblical (exceeding previous records) (adjective)
 ===rectitude===
   Abweichung {f} :: aberrance (state of being aberrant; a wandering from the right way; deviation from truth, rectitude) (noun)
@@ -6647,7 +6668,7 @@ Index: EN EN->DE
 ===relating===
   adjektivisch, Adjektiv- :: adjectival (of or relating to or functioning as an adjective) (adjective)
   Kopf- :: head (of, relating to, or intended for the head) (adjective)
-  Herbst, herbstlich :: autumn (of or relating to autumn) (adjective)
+  Herbst- (Herbst), herbstlich :: autumn (of or relating to autumn) (adjective)
   polytheistisch :: polytheistic (of or relating to polytheism) (adjective)
   deutsch :: German (of or relating to the country of Germany) (adjective)
   deutsch :: German (of or relating to the German people) (adjective)
@@ -7253,7 +7274,7 @@ Index: EN EN->DE
   Zahl {f}, Ziffer {f} :: numeral (word or symbol representing a number) (noun)
 ===symbols===
   Sprache {f} :: language (system of communication using words or symbols) (noun)
-  (Old High German) sprahha :: language (system of communication using words or symbols) (noun)
+  (Old High German) sprāhha (sprahha) :: language (system of communication using words or symbols) (noun)
 ***synonym***
   Synonym {n} :: synonym (word with same meaning as another) (noun)
 ===synonyms===
@@ -7263,7 +7284,7 @@ Index: EN EN->DE
   Kalender {m} :: calendar (system by which time is divided) (noun)
   metrisch :: metric (relating to metric system) (adjective)
   Sprache {f} :: language (system of communication using words or symbols) (noun)
-  (Old High German) sprahha :: language (system of communication using words or symbols) (noun)
+  (Old High German) sprāhha (sprahha) :: language (system of communication using words or symbols) (noun)
   Eisenbahn {f}, Bahn {f} :: railway (transport system using these rails) (noun)
 ===tact===
   roh, grob :: crude (lacking tact or taste) (adjective)
@@ -7333,7 +7354,7 @@ Index: EN EN->DE
   Abort {m}, Abtreibung {f}, Interruptio {n} :: abortive (That which is born or brought forth prematurely; an abortion) (noun)
 ***the***
   (nominative case) der {m}, (nominative case) die {f}, (nominative case) das {n}, (nominative case) die {p}, ... :: the (article) (article)
-  (Low German) dat {n}, de {m}, dei {m} :: the (article) (article)
+  (Low German) dat {n}, de {m|f}, dei {m|f} :: the (article) (article)
   der {m}, die {f}, das {n}, die {p} :: the (stressed, indicating that the object in question is the only one worthy of attention) (article)
   der {m}, die {f}, das {n}, die {p} :: the (with a superlative) (article)
   der {m}, die {f}, das {n}, die {p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
@@ -7622,11 +7643,11 @@ Index: EN EN->DE
   vereinfachtes Chinesisch {n}, Kurzzeichen {n} :: Simplified Chinese (Chinese written using simplified characters) (proper noun)
   ausmalen :: color (draw using crayons) (verb)
   Sprache {f} :: language (system of communication using words or symbols) (noun)
-  (Old High German) sprahha :: language (system of communication using words or symbols) (noun)
+  (Old High German) sprāhha (sprahha) :: language (system of communication using words or symbols) (noun)
   Sprache {f} :: language (the ability to communicate using words) (noun)
   Eisenbahn {f}, Bahn {f} :: railway (transport system using these rails) (noun)
 ===usually===
-  Bücher {n} :: book (usually in plural: records of the accounts of a business) (noun)
+  Bücher {n|p} :: book (usually in plural: records of the accounts of a business) (noun)
   wenig :: few (indefinite, usually small number) (determiner)
 ===utter===
   jauchzen :: crow (To utter a sound of joy) (verb)
@@ -7810,7 +7831,7 @@ Index: EN EN->DE
   Kofferwort {n} :: portmanteau word (a word formed which combines the meaning of two words) (noun)
   verkürzen :: abridge (to shorten or contract by using fewer words) (verb)
   Sprache {f} :: language (system of communication using words or symbols) (noun)
-  (Old High German) sprahha :: language (system of communication using words or symbols) (noun)
+  (Old High German) sprāhha (sprahha) :: language (system of communication using words or symbols) (noun)
   Sprache {f} :: language (the ability to communicate using words) (noun)
   Sprache {f} :: language (particular words used) (noun)
 ===work===
index 05a19c570b644357e50e766219b6cd2f8f914db7..93aedeb77a16d35bf480600cc87408f4df3c26cd 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.french 6667
+EntrySource: enwiktionary.french 6703
 
 Index: FR FR->EN
 ===00===
@@ -8449,6 +8449,12 @@ Index: EN EN->FR
   pipe {{fr-noun|f}} :: {vulgar} fellatio.
     Faire une pipe. :: --
     Tailler une pipe. :: --
+===female===
+  cane {{fr-noun|f}} :: duck (female duck)
+  blonde {{fr-noun|f}} :: blonde, female with blonde hair
+  rate {{fr-noun|f}} :: (female) rat
+  (Middle French) femme {{frm-noun|f|s}} :: woman (female adult human being)
+  (Old French) con {{fro-noun|m}} :: {vulgar} cunt (human female genitalia)
 ===feminine===
   abstruse (adjective) :: feminine inflection of abstrus
   close {fr-verb-form} :: feminine of clos
@@ -8617,6 +8623,30 @@ Index: EN EN->FR
   en {fr-prep} :: of, made of (used to describe composition)
     Une chaise en hêtre :: a chair made of beech/a beech chair
     une fourchette en métal :: a fork made of metal, a metal fork
+===form===
+  former {fr-verb} :: to form (generic sense)
+  Fanny {fr-proper noun} :: {{given name|female}} borrowed from English; also used as a pet form of Stéphanie.
+  case {{fr-noun|f}} :: box (on form)
+  carmine {fr-verb-form} :: a singular present imperfect form of carminer
+  rata :: third-person singular past historic form of rater
+  vomit :: third-person singular present indicative form of vomir
+  vomit :: third-person singular past historic form of vomir
+  rate {fr-verb-form} :: first-person singular indicative present form of rater
+  rate {fr-verb-form} :: third-person singular indicative present form of rater
+  rate {fr-verb-form} :: first-person singular subjunctive present form of rater
+  rate {fr-verb-form} :: third-person singular subjunctive present form of rater
+  suit :: third-person singular present indicative form of suivre
+  ê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.
+  être {{fr-verb|type=auxiliary}} :: {auxiliary} to be (Used to form the passive voice)
+    Il peut être battu ce soir. :: He could be beaten this evening.
+  avoir {{fr-verb|type=auxiliary}} :: {{context|auxiliary}} to have (auxiliary verb to form compound past tenses of most verbs)
+    j'ai parlé :: I have spoken
+  (Middle French) avoir (verb) :: {{context|auxiliary verb}} to have (verb used to form the perfect tense)
+  (Old French) avoir (verb) :: {{context|auxiliary verb}} to have (verb used to form the perfect tense)
+  dame {{fr-noun|f}} :: A polite form of address for a woman.
+  arbre {{fr-noun|m}} :: tree (plant, diagram, anything in the form of a tree)
+  coke {{fr-noun|m}} :: coke (form of carbon)
 ===Form===
   bel {fr-adj-form} :: Form of beau to be used before masculine nouns starting with a vowel.
   quatre-vingt {{fr-noun-inv|m}} :: {France} Form of quatre-vingts (eighty) used in compounds (the numbers 81 to 99, larger numbers ending in numbers from 81 to 99, and the ordinal numbers corresponding to any of these numbers).
@@ -9905,6 +9935,18 @@ Index: EN EN->FR
   koala {{fr-noun|m}} :: koala
 ===Kong===
   Hong Kong {fr-proper noun} :: Hong Kong
+===la===
+  sol {{fr-noun|m}} :: {music} sol, the fifth step in the solfège scale of C, preceded by fa and followed by la.
+  en (pronoun) :: Adverbial preposition indicating movement away from a place already mentioned. En replaces the partitive article (du, de la, etc.)
+    Est-ce qu'elle vient de Barcelone ? Oui, elle en vient. :: Does she come from Barcelona? Yes, she does.
+  Zaïre {{fr-proper noun|m}} :: Zaire, former name of the Democratic Republic of the Congo, la République du Zaïre
+  (Old French) face {{fro-noun|f}} :: {anatomy} face
+    circa 1170, {{w|Chrétien de Troyes}}, Érec et Énide: :: Le chief li desarme et la face.
+    He exposed his head and his face. :: --
+  (Old French) sale {{fro-noun|f}} :: room (subsection of a building)
+    circa 1170, {{w|Chrétien de Troyes}}, Érec et Énide: :: ... que la soe amie<br>Est la plus bele de la sale[.]
+    -... The his wife :: --
+    Is the most beautiful in the room :: --
 ===La===
   (Old French) ermine {{fro-noun|f}} :: ermine (fabric)
     circa 1170, {{w|Chrétien de Troyes}}, Érec et Énide: :: La pane fu de blanc ermine
@@ -9990,6 +10032,13 @@ Index: EN EN->FR
   robin {{fr-noun|m}} :: {{archaic|pejorative| lang=fr}} lawyer
 ===lay===
   civil {fr-adj} :: {politics} lay
+===le===
+  (Old French) al (contraction) :: contraction of a + le (to the)
+  (Old French) del (contraction) :: contraction of de + le (of the)
+  du (contraction) :: contraction of de + le (of the).
+  du (contraction) :: contraction of de + le, forms the partitive article.
+    The partitive article signifies "some", but it often is not translated in English, Dutch, or German. :: --
+  (Old French) du (contraction) :: contraction of de + le (of the)
 ===Le===
   (Old French) face {{fro-noun|f}} :: {anatomy} face
     circa 1170, {{w|Chrétien de Troyes}}, Érec et Énide: :: Le chief li desarme et la face.
@@ -10058,6 +10107,10 @@ Index: EN EN->FR
     circa 1170, {{w|Chrétien de Troyes}}, Érec et Énide: :: quel haste avez,<br />Qui a tel ore vos levez?
     What haste do you have :: --
     That wakes up at this time of day? :: --
+===li===
+  (Old French) face {{fro-noun|f}} :: {anatomy} face
+    circa 1170, {{w|Chrétien de Troyes}}, Érec et Énide: :: Le chief li desarme et la face.
+    He exposed his head and his face. :: --
 ===liberty===
   libre {fr-adj-mf} :: free, at liberty
     Un homme libre. :: A free man.
index 0e488b7fb339ec209e5f5528b71eab169499ef00..bdcc56871fbb9be527f4bebe1e89d5b5bb173332 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.english 3462
+EntrySource: enwiktionary.english 3472
 
 Index: IT IT->EN
 ===15===
@@ -516,7 +516,7 @@ Index: IT IT->EN
   torta {f}, crostata {f} :: pie (type of pastry) (noun)
 ***crudo***
   ovvio, crudo :: crude (lacking concealing elements) (adjective)
-  volgare {m}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
+  volgare {m|f}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
 ***crusca***
   crusca {f} :: crap (husk of grain) (noun)
 ***dado***
@@ -715,7 +715,7 @@ Index: IT IT->EN
 ***fisarmonica***
   fisarmonica {f} :: accordion (A small, portable, keyed wind instrument) (noun)
 ***fisarmonicista***
-  fisarmonicista {m} :: accordionist (player of the accordion) (noun)
+  fisarmonicista {m|f} :: accordionist (player of the accordion) (noun)
 ***flatulente***
   flatulente :: flatulent (affected by gas in the intestine) (adjective)
 ***flauto***
@@ -774,11 +774,11 @@ Index: IT IT->EN
 ***glande***
   glande {m}, cappella {f} :: dickhead ((slang) glans penis) (noun)
 ***gli***
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (article) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
-  il {m}, lo {m}, la {f}; i {m}, gli {m}, le {f} :: the (with a superlative) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (article) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  il {m}, lo {m}, la {f}; i {m|p}, gli {m|p}, le {f|p} :: the (with a superlative) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ***googlare***
   googlare, guglare :: google (to search for on the Internet) (verb)
 ***graminacea***
@@ -795,7 +795,7 @@ Index: IT IT->EN
   greggio {m}, grezzo {m} :: crude (any substance in its natural state) (noun)
 ***grezzo***
   greggio {m}, grezzo :: crude (being in a natural state) (adjective)
-  volgare {m}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
+  volgare {m|f}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
   greggio {m}, grezzo {m} :: crude (any substance in its natural state) (noun)
 ***groccare***
   groccare :: grok (to have an intuitive understanding) (verb)
@@ -809,20 +809,20 @@ Index: IT IT->EN
 ===He===
   forse, può essere che + subjunctive; He may be lying — Forse sta mentendo, Può essere che stia mentendo :: may (possibly, but not certainly) (verb)
 ***i***
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (article) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
-  il {m}, lo {m}, la {f}; i {m}, gli {m}, le {f} :: the (with a superlative) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (article) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  il {m}, lo {m}, la {f}; i {m|p}, gli {m|p}, le {f|p} :: the (with a superlative) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ***identificare***
   identificare :: name (publicly implicate) (verb)
 ===idrico===
   bacino idrico :: pound (part of canal) (noun)
 ***il***
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (article) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
-  il {m}, lo {m}, la {f}; i {m}, gli {m}, le {f} :: the (with a superlative) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (article) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}; i {m|p}, gli {m|p}, le {f|p} :: the (with a superlative) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ***improvvisamente***
   improvvisamente :: abruptly (precipitously) (adverb)
 ***in***
@@ -874,10 +874,10 @@ Index: IT IT->EN
 ***ità***
   -ità {f} :: -ity (Used to form nouns from adjectives.) (suffix)
 ***la***
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (article) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
-  il {m}, lo {m}, la {f}; i {m}, gli {m}, le {f} :: the (with a superlative) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (article) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}; i {m|p}, gli {m|p}, le {f|p} :: the (with a superlative) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ***lasciare***
   abbandonare, lasciare, mollare :: abandon (to give up) (verb)
 ***latrina***
@@ -887,11 +887,11 @@ Index: IT IT->EN
 ***lattina***
   lattina {f} :: can (a more or less cylindrical vessel for liquids) (noun)
 ***le***
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (article) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
-  il {m}, lo {m}, la {f}; i {m}, gli {m}, le {f} :: the (with a superlative) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (article) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  il {m}, lo {m}, la {f}; i {m|p}, gli {m|p}, le {f|p} :: the (with a superlative) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ***lente***
   lentille {f}, lente {f} :: lens (object focusing or defocusing the light passing through it) (noun)
 ***lenticchia***
@@ -937,10 +937,10 @@ Index: IT IT->EN
 ===livello===
   livello di definizione :: definition (action or power of describing, explaining, or making definite) (noun)
 ***lo***
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (article) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
-  il {m}, lo {m}, la {f}; i {m}, gli {m}, le {f} :: the (with a superlative) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (article) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}; i {m|p}, gli {m|p}, le {f|p} :: the (with a superlative) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ===luce===
   velocità della luce {f} :: lightspeed (the speed of light) (noun)
 ***luglio***
@@ -1038,9 +1038,9 @@ Index: IT IT->EN
 ***morso***
   morso {m}, freno :: bit (metal in horse's mouth) (noun)
 ***musicista***
-  musicista {m}, musico {m} :: musician (person who performs or writes music) (noun)
+  musicista {m|f}, musico {m} :: musician (person who performs or writes music) (noun)
 ***musico***
-  musicista {m}, musico {m} :: musician (person who performs or writes music) (noun)
+  musicista {m|f}, musico {m} :: musician (person who performs or writes music) (noun)
 ***nascere***
   nascere, generarsi, formarsi :: spring (start to exist) (verb)
 ***nascita***
@@ -1101,11 +1101,11 @@ Index: IT IT->EN
 ***Olanda***
   Paesi Bassi {m|p}, Olanda {f} :: Netherlands (country in northwestern Europe) (proper noun)
 ***olandese***
-  olandese {m}, olandesi {m} :: Dutch (of the Netherlands, people, or language) (adjective)
+  olandese {m|f}, olandesi {m|f|p} :: Dutch (of the Netherlands, people, or language) (adjective)
   nederlandese, olandese :: Dutch (the Dutch language) (proper noun)
   olandese :: Netherlands (pertaining to the Netherlands) (adjective)
 ***olandesi***
-  olandese {m}, olandesi {m} :: Dutch (of the Netherlands, people, or language) (adjective)
+  olandese {m|f}, olandesi {m|f|p} :: Dutch (of the Netherlands, people, or language) (adjective)
 ***ombrello***
   ombrello {m}, parapioggia :: umbrella (cloth-covered frame used for protection against rain or sun) (noun)
 ===or===
@@ -1412,7 +1412,7 @@ Index: IT IT->EN
 ***sei***
   sei :: six (cardinal number) (cardinal number)
 ***semplice***
-  volgare {m}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
+  volgare {m|f}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
 ===semplificato===
   cinese semplificato {m} :: Simplified Chinese (Chinese written using simplified characters) (proper noun)
 ===senses===
@@ -1648,7 +1648,7 @@ Index: IT IT->EN
   Ti voglio bene (informal singular), Vi voglio bene (plural or formal) :: I love you (affirmation of affection or deep caring) (phrase)
   Ti voglio bene (singular informal), Vi voglio bene (plural or formal) :: I love you (platonic expression of inclination or liking) (phrase)
 ***volgare***
-  volgare {m}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
+  volgare {m|f}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
 ***word***
   word {m} :: word (computing: fixed-size group of bits handled as a unit) (noun)
 ***zero***
@@ -1975,9 +1975,9 @@ Index: EN EN->IT
   accordo {m} :: accord (agreement or concurrence of opinion) (noun)
 ***accordion***
   fisarmonica {f} :: accordion (A small, portable, keyed wind instrument) (noun)
-  fisarmonicista {m} :: accordionist (player of the accordion) (noun)
+  fisarmonicista {m|f} :: accordionist (player of the accordion) (noun)
 ***accordionist***
-  fisarmonicista {m} :: accordionist (player of the accordion) (noun)
+  fisarmonicista {m|f} :: accordionist (player of the accordion) (noun)
 ===account===
   etimologia {f} :: etymology (account of the origin and historical development of a word) (noun)
   perché :: because (by or for the cause that; on this account that; for the reason that) (conjunction)
@@ -2025,7 +2025,7 @@ Index: EN EN->IT
 ***AD***
   d.C. (dopo Cristo) :: AD (anno Domini) ({{initialism}})
 ===adjectival===
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
 ***adjective***
   aggettivale :: adjective (functioning as an adjective) (adjective)
   aggettivo {m} :: adjective ((grammar) a word that modifies a noun or describes a noun’s referent) (noun)
@@ -2083,7 +2083,7 @@ Index: EN EN->IT
   cane {m} :: dog (morally reprehensible person, See also scoundrel) (noun)
   al traverso :: abreast (nautical: side by side; also, opposite; over against; on a line with the vessel's beam) (adverb)
 ===alternative===
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
 ===amount===
   dose {f} :: deal (large number or amount or extent) (noun)
   prodotto {m} :: product (amount created by a process) (noun)
@@ -2166,7 +2166,7 @@ Index: EN EN->IT
   lessicografia {f} :: lexicography (art or craft of writing dictionaries) (noun)
   comitologia {f} :: comitology (art of resolving issues by committees) (noun)
 ===article===
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (article) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (article) (article)
 ===articles===
   enciclopedia {f} :: encyclopedia (comprehensive reference with articles on a range of topic) (noun)
 ===Asia===
@@ -2253,7 +2253,7 @@ Index: EN EN->IT
   birra {f} :: beer (alcoholic drink made of malt) (noun)
 ===before===
   suddetto, succitato :: above-mentioned (mentioned or named before; aforesaid) (adjective)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
   zero {m} :: zero (cardinal number before 1, denoting nothing) (cardinal number)
   precolombiano :: pre-Columbian (before Christopher Columbus) (adjective)
   a.C. (avanti Cristo) :: BC (before Christ) ({{initialism}})
@@ -2316,7 +2316,7 @@ Index: EN EN->IT
   pianeta {m} :: planet (rocky or gaseous spherical bodies orbiting the Sun) (noun)
 ===body===
   testa {f}, capo {m} :: head (part of the body) (noun)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
   pianeta {m} :: planet (similar body in orbit around a star) (noun)
   stella {f} :: star (luminous celestial body) (noun)
   anno {m} :: year (time it takes for any planetary body to make one revolution around another body) (noun)
@@ -2509,7 +2509,7 @@ Index: EN EN->IT
   definizione {f} :: definition (clarity, especially of musical sound in reproduction) (noun)
 ===class===
   nome {m} :: name (word or phrase indicating a particular person, place, class or thing) (noun)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ===cleansing===
   abluzione {f} :: ablution (the act of washing or cleansing) (noun)
 ***clock***
@@ -2690,7 +2690,7 @@ Index: EN EN->IT
   greggio {m}, grezzo :: crude (being in a natural state) (adjective)
   rustico, raffazzonato :: crude (characterized by simplicity) (adjective)
   ovvio, crudo :: crude (lacking concealing elements) (adjective)
-  volgare {m}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
+  volgare {m|f}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
   raffazzonato :: crude (statistics: in an unanalyzed form) (adjective)
   acerbo :: crude (immature or unripe) (adjective)
   greggio {m}, grezzo {m} :: crude (any substance in its natural state) (noun)
@@ -2951,7 +2951,7 @@ Index: EN EN->IT
 ===during===
   (not translated) :: on (sometime during the day of) (preposition)
 ***Dutch***
-  olandese {m}, olandesi {m} :: Dutch (of the Netherlands, people, or language) (adjective)
+  olandese {m|f}, olandesi {m|f|p} :: Dutch (of the Netherlands, people, or language) (adjective)
   nederlandese, olandese :: Dutch (the Dutch language) (proper noun)
 ===dwell===
   vivere, abitare, risiedere, dimorare :: abide (to dwell) (verb)
@@ -3120,6 +3120,8 @@ Index: EN EN->IT
   ti amo (informal singular), vi amo (plural or formal) :: I love you (affirmation of romantic feeling) (phrase)
 ===Felidae===
   felino {m}, felina {f} :: cat (member of Felidae) (noun)
+===female===
+  badessa :: abbess (female superior of a nunnery) (noun)
 ***few***
   poco :: few (indefinite, usually small number) (determiner)
   pochi :: few (small number) (determiner)
@@ -3195,6 +3197,16 @@ Index: EN EN->IT
   stupro {m}, violento {m} :: rape (act of forcing sexual activity) (noun)
 ===foreigner===
   straniero {m}, forestiero {m} :: alien (foreigner) (noun)
+===form===
+  abbreviazione {f} :: abbreviation (shortened or contracted form of a word or phrase) (noun)
+  plurale {m} :: plural (word in plural form) (noun)
+  extraterrestre, alieno :: alien (life form of non-Earth origin) (noun)
+  raffazzonato :: crude (statistics: in an unanalyzed form) (adjective)
+  andare, venire :: be (elliptical form of "be here", or similar) (verb)
+  essere :: be (used to form the passive voice) (verb)
+  stare :: be (used to form the continuous forms of various tenses) (verb)
+  -ità {f} :: -ity (Used to form nouns from adjectives.) (suffix)
+  singolare {m} :: singular (grammar: form of a word that refers to only one thing) (noun)
 ===formal===
   marcia {f} :: march (formal, rhythmic way of walking) (noun)
 ===formed===
@@ -3466,7 +3478,7 @@ Index: EN EN->IT
   uomo {m} :: man (adult male human) (noun)
   uomo :: man (human) (noun)
 ===hungry===
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
 ===husk===
   crusca {f} :: crap (husk of grain) (noun)
 ***hyponym***
@@ -3610,7 +3622,7 @@ Index: EN EN->IT
   numerare :: number (label with numbers; assign numbers to) (verb)
 ===lacking===
   ovvio, crudo :: crude (lacking concealing elements) (adjective)
-  volgare {m}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
+  volgare {m|f}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
 ===lake===
   stagno {m} :: pond (small lake) (noun)
 ***language***
@@ -3631,7 +3643,7 @@ Index: EN EN->IT
   irlandese {m}, gaelico {m} :: Irish (the language) (proper noun)
   irlandese :: Irish (pertaining to the language) (adjective)
   esperanto :: Esperanto (auxiliary language) (proper noun)
-  olandese {m}, olandesi {m} :: Dutch (of the Netherlands, people, or language) (adjective)
+  olandese {m|f}, olandesi {m|f|p} :: Dutch (of the Netherlands, people, or language) (adjective)
   nederlandese, olandese :: Dutch (the Dutch language) (proper noun)
 ===languages===
   etimologia {f} :: etymology (study of the historical development of languages, particularly of individual words) (noun)
@@ -3820,7 +3832,7 @@ Index: EN EN->IT
   biancospino {m} :: may (the hawthorn bush or its blossom) (noun)
   potere :: can (may) (verb)
 ===mean===
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
 ===meaning===
   antonimo {m} :: antonym (word which has the opposite meaning) (noun)
   sinonimo {m} :: synonym (word with same meaning as another) (noun)
@@ -3856,7 +3868,7 @@ Index: EN EN->IT
   felino {m}, felina {f} :: cat (member of Felidae) (noun)
   abaco {m} :: abacus (uppermost member of the capital of a column) (noun)
   abecedariano :: abecedarian ( a member of a XVI° century sect) (noun)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
   accademico {m} :: academian (member of an academy) (noun)
 ===mention===
   scegliere, eleggere :: name (mention, specify, choose) (verb)
@@ -3955,13 +3967,13 @@ Index: EN EN->IT
 ===music===
   marcia {f} :: march (song in the genre of music written for marching) (noun)
   abbreviazione :: abbreviation (music: one or more dashes through the stem of a note) (noun)
-  musicista {m}, musico {m} :: musician (person who performs or writes music) (noun)
+  musicista {m|f}, musico {m} :: musician (person who performs or writes music) (noun)
 ===musical===
   definizione {f} :: definition (clarity, especially of musical sound in reproduction) (noun)
   metrico :: metric (relating to musical meter) (adjective)
   aria {f} :: aria (type of musical piece) (noun)
 ***musician***
-  musicista {m}, musico {m} :: musician (person who performs or writes music) (noun)
+  musicista {m|f}, musico {m} :: musician (person who performs or writes music) (noun)
 ===n===
   enne {f} :: en (name of the letter N, n) (noun)
 ===N===
@@ -3976,7 +3988,7 @@ Index: EN EN->IT
   nominare :: name (designate for a role) (verb)
   nome {m} :: first name (name chosen by parents) (noun)
   Fabiano :: Fabian (male given name) (proper noun)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
   enne {f} :: en (name of the letter N, n) (noun)
   nome proprio :: proper noun (The name of a particular person, place, organization or other individual entity) (noun)
   Edoardo, Eduardo :: Edward (male given name) (proper noun)
@@ -4005,7 +4017,7 @@ Index: EN EN->IT
 ***Netherlands***
   Paesi Bassi {m|p}, Olanda {f} :: Netherlands (country in northwestern Europe) (proper noun)
   olandese :: Netherlands (pertaining to the Netherlands) (adjective)
-  olandese {m}, olandesi {m} :: Dutch (of the Netherlands, people, or language) (adjective)
+  olandese {m|f}, olandesi {m|f|p} :: Dutch (of the Netherlands, people, or language) (adjective)
 ===next===
   discontinuo, discontinua, sconnesso, sconnessa :: abrupt (having sudden transitions from one state to next) (adjective)
 ***nigger***
@@ -4055,7 +4067,7 @@ Index: EN EN->IT
   aggettivo {m} :: adjective ((grammar) a word that modifies a noun or describes a noun’s referent) (noun)
   ablativo {m} :: ablative (applied to one of the cases of the noun in other language) (adjective)
   oggi :: today (today (noun)) (noun)
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
   essere :: be (used to connect a noun to an adjective that describes it) (verb)
   essere :: be (used to indicate that the subject has the qualities described by a noun or noun phrase) (verb)
   non numerabile :: uncountable (linguistics: about a noun which cannot be counted) (adjective)
@@ -4247,7 +4259,7 @@ Index: EN EN->IT
   etimologia {f} :: etymology (study of the historical development of languages, particularly of individual words) (noun)
   avatar {m}, incarnazione :: avatar (The earthly incarnation of a deity, particularly Vishnu) (noun)
 ===parts===
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
   quarto {m} :: quarter (one of four equal parts) (noun)
 ===passing===
   lentille {f}, lente {f} :: lens (object focusing or defocusing the light passing through it) (noun)
@@ -4273,15 +4285,15 @@ Index: EN EN->IT
   pisello {m}, cazzo {m}, uccello {m}, minchia {f} :: dick (colloquial: penis) (noun)
   glande {m}, cappella {f} :: dickhead ((slang) glans penis) (noun)
 ===people===
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
   ciascuno :: everybody (all people) (pronoun)
-  olandese {m}, olandesi {m} :: Dutch (of the Netherlands, people, or language) (adjective)
+  olandese {m|f}, olandesi {m|f|p} :: Dutch (of the Netherlands, people, or language) (adjective)
 ===perform===
   debito {m} :: debt (action, state of mind, or object one has an obligation to perform for another) (noun)
 ===performance===
   numero {m} :: number (performance) (noun)
 ===performs===
-  musicista {m}, musico {m} :: musician (person who performs or writes music) (noun)
+  musicista {m|f}, musico {m} :: musician (person who performs or writes music) (noun)
 ===period===
   mese {m} :: month (period into which a year is divided) (noun)
   giorno {m} :: day (period of 24 hours) (noun)
@@ -4357,7 +4369,7 @@ Index: EN EN->IT
 ===platonic===
   Ti voglio bene (singular informal), Vi voglio bene (plural or formal) :: I love you (platonic expression of inclination or liking) (phrase)
 ===player===
-  fisarmonicista {m} :: accordionist (player of the accordion) (noun)
+  fisarmonicista {m|f} :: accordionist (player of the accordion) (noun)
 ===plays===
   essere :: be (used to indicate that the subject plays the role of the predicate nominative) (verb)
 ===plentiful===
@@ -4410,7 +4422,7 @@ Index: EN EN->IT
 ===positioned===
   su :: on (positioned at the upper surface of) (preposition)
 ===possessive===
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
 ===possibly===
   forse, può essere che + subjunctive; He may be lying — Forse sta mentendo, Può essere che stia mentendo :: may (possibly, but not certainly) (verb)
 ===potential===
@@ -4482,7 +4494,7 @@ Index: EN EN->IT
 ===promotes===
   medicina {f} :: medicine (substance which promotes healing) (noun)
 ===pronoun===
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
 ===pronounce===
   assolvere :: absolve (pronounce free or give absolution) (verb)
   assolvere :: absolve (theology: pronounce free or give absolution from sin) (verb)
@@ -4587,7 +4599,7 @@ Index: EN EN->IT
 ===reducing===
   abbreviazione :: abbreviation (act or result of shortening or reducing) (noun)
 ===refer===
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ===reference===
   enciclopedia {f} :: encyclopedia (comprehensive reference with articles on a range of topic) (noun)
   enciclopedia {f} :: encyclopaedia (reference book) (noun)
@@ -5068,7 +5080,7 @@ Index: EN EN->IT
   badessa :: abbess (female superior of a nunnery) (noun)
   abate :: abbot (superior or head of an abbey or monastery) (noun)
 ===superlative===
-  il {m}, lo {m}, la {f}; i {m}, gli {m}, le {f} :: the (with a superlative) (article)
+  il {m}, lo {m}, la {f}; i {m|p}, gli {m|p}, le {f|p} :: the (with a superlative) (article)
 ===supplied===
   abbondare, essere abbondante :: abound (to be copiously supplied) (verb)
 ===supply===
@@ -5100,7 +5112,7 @@ Index: EN EN->IT
   lingua {f} :: language (system of communication using words or symbols) (noun)
   ferrovia {f} :: railway (transport system using these rails) (noun)
 ===tact===
-  volgare {m}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
+  volgare {m|f}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
 ===take===
   sottrarre, sequestrare, rapire (people) :: abduct (to take away) (verb)
   essere :: be (occur, take place) (verb)
@@ -5115,7 +5127,7 @@ Index: EN EN->IT
   prodotto {m}, frutto {m} :: product (any tangible output) (noun)
 ===taste===
   acido {m} :: acid (sour, sharp, or biting to the taste) (adjective)
-  volgare {m}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
+  volgare {m|f}, crudo, semplice, grezzo :: crude (lacking tact or taste) (adjective)
 ===teachings===
   dottrina {f} :: doctrine (body of beliefs or teachings) (noun)
 ===tediously===
@@ -5151,11 +5163,11 @@ Index: EN EN->IT
 ***Thanatos***
   Tanato {m} :: Thanatos (Thanatos, the god of death) (noun)
 ***the***
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (article) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
-  i {m}, gli {m}, le {f} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
-  il {m}, lo {m}, la {f}; i {m}, gli {m}, le {f} :: the (with a superlative) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (article) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  i {m|p}, gli {m|p}, le {f|p} :: the (with an adjectival noun, as in “the hungry” to mean “hungry people”) (article)
+  il {m}, lo {m}, la {f}; i {m|p}, gli {m|p}, le {f|p} :: the (with a superlative) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
 ===their===
   informatica {f} :: computer science (study of computers and their architecture) (noun)
 ===theology===
@@ -5172,7 +5184,7 @@ Index: EN EN->IT
   singolare :: singular (grammar: referring to only one thing) (adjective)
   singolare {m} :: singular (grammar: form of a word that refers to only one thing) (noun)
 ===things===
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
   decina {f} :: decade (a series of ten things) (noun)
 ===this===
   zucca {f} :: pumpkin (fruit of this plant) (noun)
@@ -5350,8 +5362,8 @@ Index: EN EN->IT
   addestrare, allenare, acclimatare :: season (to make fit for any use by time or habit) (verb)
   stock {m}, partita {f} :: stock (supply of anything ready for use) (noun)
 ===used===
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used as an alternative to a possessive pronoun before body parts) (article)
-  il {m}, lo {m}, la {f}, i {m}, gli {m}, le {f} :: the (used with the name of a member of a class to refer to all things in that class) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used as an alternative to a possessive pronoun before body parts) (article)
+  il {m}, lo {m}, la {f}, i {m|p}, gli {m|p}, le {f|p} :: the (used with the name of a member of a class to refer to all things in that class) (article)
   furgone {m} :: van (A (covered) vehicle used for carrying goods) (noun)
   dado {m} :: die (polyhedron used in games of chance) (noun)
   conio {m} :: die (embossed device used in stamping) (noun)
@@ -5526,7 +5538,7 @@ Index: EN EN->IT
 ===worthy===
   accettabile :: acceptable (capable, worthy or sure of being accepted) (adjective)
 ===writes===
-  musicista {m}, musico {m} :: musician (person who performs or writes music) (noun)
+  musicista {m|f}, musico {m} :: musician (person who performs or writes music) (noun)
 ===writing===
   lessicografia {f} :: lexicography (art or craft of writing dictionaries) (noun)
   data {f} :: date (that which specifies the time of writing, inscription etc.) (noun)
index 9c755bb904dfdf576081b10c91edea64b52e051a..ec5a86770d98e8ca71554e642308e06b195901f4 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.italian 5146
+EntrySource: enwiktionary.italian 5247
 
 Index: IT IT->EN
 ===1963===
@@ -5570,6 +5570,8 @@ Index: EN EN->IT
   don {m} (noun), inv :: Father (a title given to priests)
 ===feeler===
   antenna {f}, antenne {pl} :: feeler organ on the head of an insect: antenna
+===female===
+  tigre {f}, tigri {pl} :: tigress (female)
 ===feminine===
   lente (adjective form) {f}{p} :: (feminine plural form of lento) slow
   crude f plural :: feminine plural of crudo
@@ -5585,6 +5587,50 @@ Index: EN EN->IT
   morose (adjective form) :: feminine plural of moroso
   incarcerate :: feminine plural past participle of incarcerare
   latina f :: feminine of latino
+===Feminine===
+  pie {f} :: Feminine plural form of pio
+  ablative {f} :: Feminine plural form of ablativo
+  abortive {f} :: Feminine plural form of abortivo.
+  abrasive {f} :: Feminine plural form of abrasivo
+  abrogative {f} :: Feminine plural form of abrogativo
+  abusive {f} :: Feminine plural form of abusivo
+  premature :: Feminine plural form of prematuro
+  qualitative {f} :: Feminine plural form of qualitativo
+  transfinite {f} :: Feminine plural form of transfinito
+  accentuate {f} :: Feminine plural form of accentuato
+  derivative {f} :: Feminine plural form of derivativo
+  cube {f} (adjective form) :: Feminine plural form of cubo
+  nominative {f} :: Feminine plural form of nominativo.
+  vocative {f} :: Feminine plural form of vocativo
+  quadruple {f} :: Feminine plural form of quadruplo
+  rose :: Feminine plural past participle of rodere.
+  ultramarine {f} :: Feminine plural form of ultramarino
+  scalene {f} :: Feminine plural form of scaleno
+  dissociative {f} :: Feminine plural form of dissociativo
+  trite {f} :: Feminine plural form of trito
+  simulate {f} :: Feminine plural form of simulato
+  fricative {f} :: Feminine plural form of fricativo
+  delegate {f} :: Feminine plural form of delegato
+  obsolete {{{f|p}}} (adjective form), feminine plural form of: obsoleto :: Feminine plural form of obsoleto
+  locative {f} :: Feminine plural form of locativo
+  asinine {f} :: Feminine plural form of asinino
+  discrete {f} (adjective form) :: Feminine plural form of discreto
+  accelerative {f} :: Feminine plural form of accelerativo
+  argentine {f} :: Feminine plural form of argentino
+  generative {f} :: Feminine plural form of generativo
+  laureate {f} :: Feminine plural form of laureato
+  secure {f} :: Feminine plural form of securo
+  obtrusive {f} :: Feminine plural form of obtrusivo
+  secrete {f} :: Feminine plural form of secreto
+  acetose {f} :: Feminine plural form of acetoso
+  furtive {f} :: Feminine plural form of furtivo
+  associative {f} :: Feminine plural form of associativo
+  porcine {f} :: Feminine plural form of porcino
+  erudite {f} :: Feminine plural form of erudito
+  grate {f} :: Feminine plural form of grato
+  nude {f} :: Feminine plural form of nudo
+  creole {f} :: Feminine plural form of creolo
+  ubique {f} :: Feminine plural form of ubiquo
 ===femto===
   femto- (prefix) :: femto-
 ===Ferrara===
@@ -5691,6 +5737,69 @@ Index: EN EN->IT
   Forli {it-proper noun} :: Forli (town)
 ===Forlì===
   Forlì-Cesena {it-proper noun} :: Forlì-Cesena
+===form===
+  pie {f} :: Feminine plural form of pio
+  fa (verb form) :: Third-person singular indicative present form of fare.
+  fa (verb form) :: Second-person singular imperative form of fare.
+  ablative {f} :: Feminine plural form of ablativo
+  abortive {f} :: Feminine plural form of abortivo.
+  abrasive {f} :: Feminine plural form of abrasivo
+  abrogative {f} :: Feminine plural form of abrogativo
+  lente (adjective form) {f}{p} :: (feminine plural form of lento) slow
+  abusive {f} :: Feminine plural form of abusivo
+  premature :: Feminine plural form of prematuro
+  qualitative {f} :: Feminine plural form of qualitativo
+  transfinite {f} :: Feminine plural form of transfinito
+  accentuate {f} :: Feminine plural form of accentuato
+  derivative {f} :: Feminine plural form of derivativo
+  cube {f} (adjective form) :: Feminine plural form of cubo
+  nominative {f} :: Feminine plural form of nominativo.
+  vocative {f} :: Feminine plural form of vocativo
+  quadruple {f} :: Feminine plural form of quadruplo
+  ultramarine {f} :: Feminine plural form of ultramarino
+  scalene {f} :: Feminine plural form of scaleno
+  ben {it-adv} :: Short form of bene.
+    ben fatto :: well done
+  Alberta {{it-proper noun|g=f}} :: {{given name|female}}, feminine form of Alberto.
+  dissociative {f} :: Feminine plural form of dissociativo
+  trite {f} :: Feminine plural form of trito
+  simulate {f} :: Feminine plural form of simulato
+  fricative {f} :: Feminine plural form of fricativo
+  dark {inv} :: dark (used especially to describe a form of punk music)
+  none {f} (adjective), plural :: (feminine plural form of nono) ninth
+  none {f} (noun), plural :: (feminine plural form of nono) ninth (the one in the ninth position; fraction)
+  venturi {m} :: Plural form of venturo
+  delegate {f} :: Feminine plural form of delegato
+  obsolete {{{f|p}}} (adjective form), feminine plural form of: obsoleto :: Feminine plural form of obsoleto
+  locative {f} :: Feminine plural form of locativo
+  lui (pronoun) :: him (indirect form of lui used after a preposition)
+  asinine {f} :: Feminine plural form of asinino
+  sei (verb form) :: second-person singular indicative present form of essere
+  discrete {f} (adjective form) :: Feminine plural form of discreto
+  accelerative {f} :: Feminine plural form of accelerativo
+  si (pronoun) :: (the so-called si passivante, used to form the passive voice of a verb) it (but also see note below)
+    Example: Si dice che Maria voleva uccidere Giovanni (It is said that Maria wanted to kill Giovanni). :: --
+    Note: In this sense, verb + si is often translated as become or get + past participle in English. :: --
+    Examples: :: --
+    Ci vuole un po’ di tempo per abituarsi (It takes a while to become accustomed) :: --
+    A Luca piace ubriacarsi (Luca likes to get drunk) :: --
+  meri {m} :: Plural form of mero
+  argentine {f} :: Feminine plural form of argentino
+  info {m} {inv} :: {informal} Short form of informazione.
+  generative {f} :: Feminine plural form of generativo
+  laureate {f} :: Feminine plural form of laureato
+  secure {f} :: Feminine plural form of securo
+  obtrusive {f} :: Feminine plural form of obtrusivo
+  secrete {f} :: Feminine plural form of secreto
+  acetose {f} :: Feminine plural form of acetoso
+  furtive {f} :: Feminine plural form of furtivo
+  associative {f} :: Feminine plural form of associativo
+  porcine {f} :: Feminine plural form of porcino
+  erudite {f} :: Feminine plural form of erudito
+  grate {f} :: Feminine plural form of grato
+  nude {f} :: Feminine plural form of nudo
+  creole {f} :: Feminine plural form of creolo
+  ubique {f} :: Feminine plural form of ubiquo
 ===former===
   Ragusa {{it-proper noun|g=f}} :: former name, before 1918, of Dubrovnik
 ===formula===
@@ -6316,6 +6425,8 @@ Index: EN EN->IT
   L'Aquila {{it-proper noun|g=f}} :: L'Aquila (province)
   L'Aquila {{it-proper noun|g=f}} :: L'Aquila (town)
   Livorno {{it-proper noun|g=f}} :: The letter L in the Italian phonetic alphabet
+===la===
+  {{wikipedia|La (nota)}}la {{{m|inv}}} (noun) :: {music} la (musical note)
 ===La===
   La Spezia {{it-proper noun|g=f}} :: La Spezia (province)
   La Spezia {{it-proper noun|g=f}} :: La Spezia (town)
index 48ae74d6c7ff248ef3f39b59c4e3adeae395c033..43b3c7cb5c8cc0cba1cd7c8ce25caa3a0c3139f5 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.english 4579
+EntrySource: enwiktionary.english 4601
 
 Index: ZH ZH->EN
 ===1===
@@ -35,7 +35,7 @@ Index: ZH ZH->EN
 ***愛德華***
   愛德華 (Aidéhuá) :: Edward (male given name) (proper noun)
 ===also===
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ===àn===
   弄暗 (nòng'àn) :: obfuscate (make dark) (verb)
   港 (gǎng), 港口 (gǎngkǒu), 口岸 (kǒu'àn), 港埠 (gǎngbù) :: port (dock or harbour) (noun)
@@ -466,15 +466,15 @@ Index: ZH ZH->EN
 ===大象===
   象 (xiàng), 大象 (dàxiàng) :: elephant (mammal) (noun)
 ===Dé===
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
 ===de===
-  上述 (shàngshù de) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
-  亞伯拉罕, 亚伯拉罕 (Yàbólāhǎn de) :: Abrahamic (pertaining to Abraham) (adjective)
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
   波蘭的, 波兰的 (Bōlán de) :: Polish (of Poland or its language) (adjective)
   (measure words are used), (adjectives with) 的 (de) :: one (impersonal pronoun) (pronoun)
-  假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
-  荷蘭, 荷兰 (Hélán-de) :: Dutch (of the Netherlands, people, or language) (adjective)
-  荷蘭, 荷兰 (Hélán de) :: Netherlands (pertaining to the Netherlands) (adjective)
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán de) (荷兰) :: Netherlands (pertaining to the Netherlands) (adjective)
   自由的, 自由的 (zìyóu de) :: free (not imprisoned) (adjective)
   免費的, 免费的 (miǎnfèi de) :: free (obtainable without payment) (adjective)
   自由的, 自由的 (zìyóu de) :: free (unconstrained) (adjective)
@@ -487,7 +487,7 @@ Index: ZH ZH->EN
   (Simplified) 英格兰的 (Yīnggélán de) :: English (of or pertaining to England) (adjective)
   可接受的 (kě jiēshòu de) :: acceptable (capable, worthy or sure of being accepted) (adjective)
 ***德***
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
 ===的===
   把某東西看作是無價值的, 把某东西看作是无价值的 (bǎ mǒu dōngxi kànzuò shì wú jiàzhí de) :: floccinaucinihilipilification (act or habit of describing or regarding something as unimportant) (noun)
   (Simplified) 英语的 (Yīngyǔ de), 英文的 (Yīngwén de) :: English (of or pertaining to the English language) (adjective)
@@ -503,11 +503,11 @@ Index: ZH ZH->EN
   (Traditional) 英格蘭的 :: English (of or pertaining to England) (adjective)
   (measure words are used), (adjectives with) 的 (de) :: one (impersonal pronoun) (pronoun)
 ===Déguó===
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
 ***德国***
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
 ***德國***
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
 ===Déguórén===
   德國人, 德国人 (Déguórén) :: German (German person) (noun)
 ***德国人***
@@ -1028,19 +1028,25 @@ Index: ZH ZH->EN
 ***黑鬼***
   黑鬼 (hēiguǐ) :: nigger (negro person) (noun)
 ===Hélán===
-  荷蘭, 荷兰 (Hélán-de) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
   荷蘭語, 荷兰语 (Hélán-yǔ) :: Dutch (the Dutch language) (proper noun)
   荷蘭人, 荷兰人 (Hélán-rén) :: Dutch (people from the Netherlands) (proper noun)
   荷蘭, 荷兰 (Hélán) :: Netherlands (country in northwestern Europe) (proper noun)
-  荷蘭, 荷兰 (Hélán de) :: Netherlands (pertaining to the Netherlands) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán de) (荷兰) :: Netherlands (pertaining to the Netherlands) (adjective)
 ***荷兰***
-  荷蘭, 荷兰 (Hélán-de) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
   荷蘭, 荷兰 (Hélán) :: Netherlands (country in northwestern Europe) (proper noun)
-  荷蘭, 荷兰 (Hélán de) :: Netherlands (pertaining to the Netherlands) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán de) (荷兰) :: Netherlands (pertaining to the Netherlands) (adjective)
 ***荷蘭***
-  荷蘭, 荷兰 (Hélán-de) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
   荷蘭, 荷兰 (Hélán) :: Netherlands (country in northwestern Europe) (proper noun)
-  荷蘭, 荷兰 (Hélán de) :: Netherlands (pertaining to the Netherlands) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán de) (荷兰) :: Netherlands (pertaining to the Netherlands) (adjective)
+***荷兰的***
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán de) (荷兰) :: Netherlands (pertaining to the Netherlands) (adjective)
+***荷蘭的***
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán de) (荷兰) :: Netherlands (pertaining to the Netherlands) (adjective)
 ***荷兰人***
   荷蘭人, 荷兰人 (Hélán-rén) :: Dutch (people from the Netherlands) (proper noun)
 ***荷蘭人***
@@ -1194,9 +1200,11 @@ Index: ZH ZH->EN
   (Cantonese) 主席 (zyu2 zik6) 議長 (ji5 zoeng2) :: chairman (person presiding over a meeting) (noun)
 ===jiǎ===
   偽友, 伪友 (wěi yǒu), 假友 (jiǎ yǒu), 假等義, 假等义 (jiǎ děngyì) :: false friend (false friend) (noun)
-  假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
 ***假***
-  假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
+***假的***
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
 ***假等义***
   偽友, 伪友 (wěi yǒu), 假友 (jiǎ yǒu), 假等義, 假等义 (jiǎ děngyì) :: false friend (false friend) (noun)
 ***假等義***
@@ -1575,21 +1583,21 @@ Index: ZH ZH->EN
 ===leng5===
   (Teochew) kang3, leng5 :: zero (cardinal number before 1, denoting nothing) (cardinal number)
 ===lǐ===
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ===lì===
   日曆, 日历 (rìlì), 曆 (lì), 历 (lì), 曆法, 历法 (lìfǎ), (colloquial) 月份牌 (yuèfènpái) :: calendar (system by which time is divided) (noun)
 ===li===
   (Min Nan) 日頭 (ji̍t-thâu, li̍t-thâu) :: sun (the star around which the Earth revolves) (proper noun)
 ***里***
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ***裏***
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ***历***
   日曆, 日历 (rìlì), 曆 (lì), 历 (lì), 曆法, 历法 (lìfǎ), (colloquial) 月份牌 (yuèfènpái) :: calendar (system by which time is divided) (noun)
 ***曆***
   日曆, 日历 (rìlì), 曆 (lì), 历 (lì), 曆法, 历法 (lìfǎ), (colloquial) 月份牌 (yuèfènpái) :: calendar (system by which time is divided) (noun)
 ***裡***
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ===lia===
   (Wu) 二 (lia) :: two (one plus one) (cardinal number)
 ===liǎng===
@@ -2362,10 +2370,10 @@ Index: ZH ZH->EN
 ===shàng===
   (board a car, train) 上車, 上车 (shàngchē), (boat, ship) 上船 (shàngchuán), (aeroplane) 上飛機, 上飞机 (shàng fēijī) :: aboard (on board) (adverb)
   (board a car, train) 上車, 上车 (shàngchē), (boat, ship) 上船 (shàngchuán), (aeroplane) 上飛機, 上飞机 (shàng fēijī) :: aboard (on board of) (preposition)
-  上 (...shàng) :: on (positioned at the upper surface of) (preposition)
+  ...上 (...shàng) (上) :: on (positioned at the upper surface of) (preposition)
   填色 (tián sè), 上色 (shàng sè), 著色 (zhuó sè) :: color (give something color) (verb)
 ***上***
-  上 (...shàng) :: on (positioned at the upper surface of) (preposition)
+  ...上 (...shàng) (上) :: on (positioned at the upper surface of) (preposition)
 ===shàngchē===
   (board a car, train) 上車, 上车 (shàngchē), (boat, ship) 上船 (shàngchuán), (aeroplane) 上飛機, 上飞机 (shàng fēijī) :: aboard (on board) (adverb)
   (board a car, train) 上車, 上车 (shàngchē), (boat, ship) 上船 (shàngchuán), (aeroplane) 上飛機, 上飞机 (shàng fēijī) :: aboard (on board of) (preposition)
@@ -2388,15 +2396,17 @@ Index: ZH ZH->EN
   (board a car, train) 上車, 上车 (shàngchē), (boat, ship) 上船 (shàngchuán), (aeroplane) 上飛機, 上飞机 (shàng fēijī) :: aboard (on board) (adverb)
   (board a car, train) 上車, 上车 (shàngchē), (boat, ship) 上船 (shàngchuán), (aeroplane) 上飛機, 上飞机 (shàng fēijī) :: aboard (on board of) (preposition)
 ===shàngmiàn===
-  上面 (zài...shàngmiàn) :: above (in or to a higher place) (preposition)
+  在...上面 (zài...shàngmiàn) (上面) :: above (in or to a higher place) (preposition)
 ***上面***
-  上面 (zài...shàngmiàn) :: above (in or to a higher place) (preposition)
+  在...上面 (zài...shàngmiàn) (上面) :: above (in or to a higher place) (preposition)
 ===上色===
   填色 (tián sè), 上色 (shàng sè), 著色 (zhuó sè) :: color (give something color) (verb)
 ===shàngshù===
-  上述 (shàngshù de) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
 ***上述***
-  上述 (shàngshù de) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+***上述的***
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
 ===shāngyè===
   貿易, 贸易 (màoyì), 商業, 商业 (shāngyè) :: trade (business) (noun)
 ***商业***
@@ -2866,7 +2876,7 @@ Index: ZH ZH->EN
 ***骰子***
   骰子 (tóuzi), 色子 (shǎizi) :: die (polyhedron used in games of chance) (noun)
 ===traditional===
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ===tshiu===
   (Xiang) 七 (tshiu) :: seven (cardinal number 7) (cardinal number)
 ===tuìchū===
@@ -3228,18 +3238,26 @@ Index: ZH ZH->EN
 ***鱈魚***
   鱈魚, 鳕鱼 (xuěyú) :: cod (marine fish of the family Gadidae) (noun)
 ===xūnǐ===
-  假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
 ***虚拟***
-  假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
 ***虛擬***
-  假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
+***虚拟的***
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
+***虛擬的***
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
 ===Yàbólāhǎn===
-  亞伯拉罕, 亚伯拉罕 (Yàbólāhǎn de) :: Abrahamic (pertaining to Abraham) (adjective)
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
   亞伯拉罕諸教, 亚伯拉罕诸教 (Yàbólāhǎn zhūjiào), 亞伯拉罕宗教, 亚伯拉罕宗教 (Yàbólāhǎn zōngjiào) :: Abrahamic (pertaining to Abrahamic religions) (adjective)
 ***亚伯拉罕***
-  亞伯拉罕, 亚伯拉罕 (Yàbólāhǎn de) :: Abrahamic (pertaining to Abraham) (adjective)
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
 ***亞伯拉罕***
-  亞伯拉罕, 亚伯拉罕 (Yàbólāhǎn de) :: Abrahamic (pertaining to Abraham) (adjective)
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
+***亚伯拉罕的***
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
+***亞伯拉罕的***
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
 ***亚伯拉罕诸教***
   亞伯拉罕諸教, 亚伯拉罕诸教 (Yàbólāhǎn zhūjiào), 亞伯拉罕宗教, 亚伯拉罕宗教 (Yàbólāhǎn zōngjiào) :: Abrahamic (pertaining to Abrahamic religions) (adjective)
 ***亞伯拉罕諸教***
@@ -3603,18 +3621,19 @@ Index: ZH ZH->EN
 ===zab8===
   (Teochew) zab8 :: ten (the cardinal number occurring after 9 and before 11) (cardinal number)
 ===zài===
-  上面 (zài...shàngmiàn) :: above (in or to a higher place) (preposition)
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在...上面 (zài...shàngmiàn) (上面) :: above (in or to a higher place) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
   在 (zài) :: be (occupy a place) (verb)
   在 (zài), 有 (yǒu) :: be (occur, take place) (verb)
   是 (shì), 有 (yǒu), 在 (zài), 來, 来 (lái) :: be (elliptical form of "be here", or similar) (verb)
   在 (zài), 正在 (zhèngzài); verb + 著 / 着 (zhe) :: be (used to form the continuous forms of various tenses) (verb)
 ***在***
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
   在 (zài) :: be (occupy a place) (verb)
   在 (zài), 有 (yǒu) :: be (occur, take place) (verb)
   是 (shì), 有 (yǒu), 在 (zài), 來, 来 (lái) :: be (elliptical form of "be here", or similar) (verb)
   在 (zài), 正在 (zhèngzài); verb + 著 / 着 (zhe) :: be (used to form the continuous forms of various tenses) (verb)
+  在...上面 (zài...shàngmiàn) (上面) :: above (in or to a higher place) (preposition)
 ***早產***
   (Traditional Chinese) 流產, 墮胎, 早產 :: abort (A miscarriage) (noun)
 ***枣儿***
@@ -3966,13 +3985,13 @@ Index: EN EN->ZH
   關於, 关于 (guānyú), 對於, 对于 (duìyú) :: about (concerning) (preposition)
   不可數, 不可数 (bùkěshǔ) :: uncountable (linguistics: about a noun which cannot be counted) (adjective)
 ***above***
-  上面 (zài...shàngmiàn) :: above (in or to a higher place) (preposition)
-  上述 (shàngshù de) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+  在...上面 (zài...shàngmiàn) (上面) :: above (in or to a higher place) (preposition)
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
   天空 (tiānkōng) :: sky (atmosphere above a point) (noun)
 ===Abraham===
-  亞伯拉罕, 亚伯拉罕 (Yàbólāhǎn de) :: Abrahamic (pertaining to Abraham) (adjective)
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
 ***Abrahamic***
-  亞伯拉罕, 亚伯拉罕 (Yàbólāhǎn de) :: Abrahamic (pertaining to Abraham) (adjective)
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
   亞伯拉罕諸教, 亚伯拉罕诸教 (Yàbólāhǎn zhūjiào), 亞伯拉罕宗教, 亚伯拉罕宗教 (Yàbólāhǎn zōngjiào) :: Abrahamic (pertaining to Abrahamic religions) (adjective)
 ***abroad***
   國外, 国外 (guówài), 海外 (hǎiwài) (overseas) :: abroad (in foreign countries) (adverb)
@@ -4080,7 +4099,7 @@ Index: EN EN->ZH
   我愛你, 我爱你 (wǒ ài nǐ) :: I love you (affirmation of romantic feeling) (phrase)
   (Wu) 我爱侬 (wo ei non, ngu ei non) :: I love you (affirmation of romantic feeling) (phrase)
 ===aforesaid===
-  上述 (shàngshù de) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
 ===after===
   (afternoon) 下午 (xiàwǔ), (evening, night) 晚上 (wǎnshang) :: PM (after 12:00:00) ({{initialism}})
   (Standard Chinese (Mandarin)) 十 (shí) (numeral: 拾) :: ten (the cardinal number occurring after 9 and before 11) (cardinal number)
@@ -4253,7 +4272,7 @@ Index: EN EN->ZH
   啤酒 (píjiǔ) :: beer (alcoholic drink made of malt) (noun)
   (Min Nan) 啤酒 (bih-luh), 麥仔酒 (be̍h-á-chiú), 米仔酒 (bí-á-chiú) :: beer (alcoholic drink made of malt) (noun)
 ===before===
-  上述 (shàngshù de) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
   零 (líng) (numeral: 〇, 零) :: zero (cardinal number before 1, denoting nothing) (cardinal number)
   (Min Nan) 空 (khòng) :: zero (cardinal number before 1, denoting nothing) (cardinal number)
   (Teochew) kang3, leng5 :: zero (cardinal number before 1, denoting nothing) (cardinal number)
@@ -4604,7 +4623,7 @@ Index: EN EN->ZH
 ===construct===
   端口 (duānkǒu) :: port (computing: logical or physical construct into and from which data are transferred) (noun)
 ===contained===
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ===container===
   容器, 容器 (róng qì) :: can (a container used to carry and dispense water for plants) (noun)
 ===containing===
@@ -4627,7 +4646,7 @@ Index: EN EN->ZH
   海外 (hǎiwài), 國外, 国外 (guówài) :: abroad (countries or lands abroad) (noun)
 ===country===
   內債, 内债 (nèizhài) :: domestic debt (debt owed to creditors resident in the same country as debtor) (noun)
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
   (Cantonese) 墨西哥 :: Mexico (country) (proper noun)
   (Gan) 墨西哥 :: Mexico (country) (proper noun)
   (Hakka) Me̍t-sî-kô :: Mexico (country) (proper noun)
@@ -4900,7 +4919,7 @@ Index: EN EN->ZH
   啤酒 (píjiǔ) :: beer (alcoholic drink made of malt) (noun)
   (Min Nan) 啤酒 (bih-luh), 麥仔酒 (be̍h-á-chiú), 米仔酒 (bí-á-chiú) :: beer (alcoholic drink made of malt) (noun)
 ***Dutch***
-  荷蘭, 荷兰 (Hélán-de) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
   (Hakka) Hò-làn-ngî :: Dutch (the Dutch language) (proper noun)
   荷蘭語, 荷兰语 (Hélán-yǔ) :: Dutch (the Dutch language) (proper noun)
   (Min Nan) 低地語 (kē-tē-gú) :: Dutch (the Dutch language) (proper noun)
@@ -5086,6 +5105,9 @@ Index: EN EN->ZH
   (Wu) 我爱侬 (wo ei non, ngu ei non) :: I love you (affirmation of romantic feeling) (phrase)
 ===Felidae===
   貓, 猫 (māo) :: cat (member of Felidae) (noun)
+===female===
+  女性服务生 (nuxing fuwu-sheng) :: bellgirl (a female bellhop) (noun)
+  潮吹 (cháochuī), 淫水 (yǐnshuǐ), (slang) 出水 (chūshuǐ) :: cum (slang: female ejaculatory discharge) (noun)
 ***few***
   少 (shǎo) :: few (small number) (determiner)
   自由的, 自由的 (zìyóu de) :: free (software: with very few limitations on distribution or improvement) (adjective)
@@ -5152,6 +5174,16 @@ 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)
+===form===
+  縮寫, 缩写 (suōxiě); 簡寫, 简写 (jiǎnxiě); 略語, 略语 (lüèyǔ) :: abbreviation (shortened or contracted form of a word or phrase) (noun)
+  複數, 复数 (fùshù), 眾數, 众数 (zhòngshù) :: plural (word in plural form) (noun)
+  外星人 (wàixīngrén), 宇宙人 (yǔzhòurén) :: alien (life form of non-Earth origin) (noun)
+  是 (shì), 有 (yǒu), 在 (zài), 來, 来 (lái) :: be (elliptical form of "be here", or similar) (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)
+  (not used) :: be ((archaic) used to form the perfect aspect with certain intransitive verbs) (verb)
+  (not used) :: be (used to form future tenses, especially the future subjunctive) (verb)
+  單數, 单数 (dānshù) :: singular (grammar: form of a word that refers to only one thing) (noun)
 ===formal===
   行進, 行进 (xíngjìn) :: march (formal, rhythmic way of walking) (noun)
 ===formed===
@@ -5227,7 +5259,7 @@ Index: EN EN->ZH
 ===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)
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
 ===genus===
   烏鴉, 乌鸦 (wūyā) :: crow (any bird of the genus Corvus) (noun)
 ===geometry===
@@ -5238,9 +5270,9 @@ Index: EN EN->ZH
   德語, 德语 (Déyǔ) :: German (the German language) (proper noun)
   (Min Dong) Dáik-ngṳ̄ :: German (the German language) (proper noun)
   (Min Nan) tek-gí :: German (the German language) (proper noun)
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
 ===Germany===
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
 ===give===
   命名 (mìngmíng) :: name (give a name to) (verb)
   放棄, 放弃 (fàngqì) :: abandon (to give up) (verb)
@@ -5336,7 +5368,7 @@ Index: EN EN->ZH
 ===here===
   是 (shì), 有 (yǒu), 在 (zài), 來, 来 (lái) :: be (elliptical form of "be here", or similar) (verb)
 ===higher===
-  上面 (zài...shàngmiàn) :: above (in or to a higher place) (preposition)
+  在...上面 (zài...shàngmiàn) (上面) :: above (in or to a higher place) (preposition)
 ===historical===
   (Gan) 語源學, 语源学 (ngi3 ngion4 hok6) :: etymology (study of the historical development of languages, particularly of individual words) (noun)
   語源學, 语源学 (yǔyuánxué) :: etymology (study of the historical development of languages, particularly of individual words) (noun)
@@ -5379,7 +5411,7 @@ Index: EN EN->ZH
 ===improvement===
   自由的, 自由的 (zìyóu de) :: free (software: with very few limitations on distribution or improvement) (adjective)
 ***in***
-  在 (zài), 里 (...lǐ) (traditional also: 裡, 裏) :: in (contained by) (preposition)
+  在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ===inattentive===
   缺席 (quēxí) :: absent (inattentive) (adjective)
 ===incarnation===
@@ -5504,7 +5536,7 @@ Index: EN EN->ZH
   (Min Dong) Dáik-ngṳ̄ :: German (the German language) (proper noun)
   (Min Nan) tek-gí :: German (the German language) (proper noun)
   世界語, 世界语 (Shìjièyǔ) :: Esperanto (auxiliary language) (proper noun)
-  荷蘭, 荷兰 (Hélán-de) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
   (Hakka) Hò-làn-ngî :: Dutch (the Dutch language) (proper noun)
   荷蘭語, 荷兰语 (Hélán-yǔ) :: Dutch (the Dutch language) (proper noun)
   (Min Nan) 低地語 (kē-tē-gú) :: Dutch (the Dutch language) (proper noun)
@@ -5717,7 +5749,7 @@ Index: EN EN->ZH
 ===mentally===
   打败 (da bai), 击倒 (ji dao) :: abate (to bring down a person physically or mentally) (verb)
 ===mentioned===
-  上述 (shàngshù de) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
 ***merchandise***
   產品, 产品 (chǎnpǐn), 貨物, 货物 (huòwù), 物品 (wùpǐn), 製品, 制品, (zhìpǐn), 製品, 制品 (zhìpǐn) :: merchandise (commodities offered for sale) (noun)
 ===message===
@@ -5826,7 +5858,7 @@ Index: EN EN->ZH
   (English letter names are called as in English, no other standard Mandarin name exists) :: i (name of the letter I, i) (noun)
   愛德華 (Aidéhuá) :: Edward (male given name) (proper noun)
 ===named===
-  上述 (shàngshù de) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
+  上述的 (shàngshù de) (上述) :: above-mentioned (mentioned or named before; aforesaid) (adjective)
 ===narration===
   寓言 (yùyán) :: fable (fictitious narration to enforce some useful truth or precept) (noun)
 ***NASA***
@@ -5843,8 +5875,8 @@ Index: EN EN->ZH
 ***Netherlands***
   荷蘭, 荷兰 (Hélán) :: Netherlands (country in northwestern Europe) (proper noun)
   (Min Nan) Kē-tē-kok :: Netherlands (country in northwestern Europe) (proper noun)
-  荷蘭, 荷兰 (Hélán de) :: Netherlands (pertaining to the Netherlands) (adjective)
-  荷蘭, 荷兰 (Hélán-de) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán de) (荷兰) :: Netherlands (pertaining to the Netherlands) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
   荷蘭人, 荷兰人 (Hélán-rén) :: Dutch (people from the Netherlands) (proper noun)
 ***nigger***
   黑鬼 (hēiguǐ) :: nigger (negro person) (noun)
@@ -5878,7 +5910,7 @@ Index: EN EN->ZH
   自由的, 自由的 (zìyóu de) :: free (not imprisoned) (adjective)
   可能 (kěnéng) may be, possible :: may (possibly, but not certainly) (verb)
   无论如何, wúlùnrúhé :: whatever (indicating the matter is not worthy of further discussion) (interjection)
-  假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
+  假的- (jiǎ de-) (假), 虛擬的- (虛擬), 虚拟的- (xūnǐ de-) (虚拟) :: pseudo- (not genuine) (prefix)
 ===nothing===
   零 (líng) (numeral: 〇, 零) :: zero (cardinal number before 1, denoting nothing) (cardinal number)
   (Min Nan) 空 (khòng) :: zero (cardinal number before 1, denoting nothing) (cardinal number)
@@ -6028,7 +6060,7 @@ Index: EN EN->ZH
 ===omit===
   减少 (jian shao), 省略 (sheng lüe) :: abate (to deduct, to omit) (verb)
 ***on***
-  上 (...shàng) :: on (positioned at the upper surface of) (preposition)
+  ...上 (...shàng) (上) :: on (positioned at the upper surface of) (preposition)
 ***one***
   (Cantonese) 一 (yat1) :: one (cardinal number 1) (cardinal number)
   一, 壹 (yī) :: one (cardinal number 1) (cardinal number)
@@ -6141,7 +6173,7 @@ Index: EN EN->ZH
   雞巴, 鸡巴 (jība), 屌 (diǎo), (euphemism) 鳥, 鸟 (diǎo) :: dick (colloquial: penis) (noun)
 ===people===
   大家 (dàjiā) :: everybody (all people) (pronoun)
-  荷蘭, 荷兰 (Hélán-de) :: Dutch (of the Netherlands, people, or language) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán-de) (荷兰) :: Dutch (of the Netherlands, people, or language) (adjective)
   荷蘭人, 荷兰人 (Hélán-rén) :: Dutch (people from the Netherlands) (proper noun)
 ===perfect===
   (not used) :: be ((archaic) used to form the perfect aspect with certain intransitive verbs) (verb)
@@ -6174,14 +6206,14 @@ Index: EN EN->ZH
 ===personification===
   化身 (huàshēn) :: avatar (The physical embodiment of an idea or concept; a personification) (noun)
 ===pertaining===
-  亞伯拉罕, 亚伯拉罕 (Yàbólāhǎn de) :: Abrahamic (pertaining to Abraham) (adjective)
+  亞伯拉罕的 (亞伯拉罕), 亚伯拉罕的 (Yàbólāhǎn de) (亚伯拉罕) :: Abrahamic (pertaining to Abraham) (adjective)
   亞伯拉罕諸教, 亚伯拉罕诸教 (Yàbólāhǎn zhūjiào), 亞伯拉罕宗教, 亚伯拉罕宗教 (Yàbólāhǎn zōngjiào) :: Abrahamic (pertaining to Abrahamic religions) (adjective)
   (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)
   (Simplified) 英格兰的 (Yīnggélán de) :: English (of or pertaining to England) (adjective)
   (Traditional) 英格蘭的 :: English (of or pertaining to England) (adjective)
   白領, 白领 (báilǐng) :: white-collar (of or pertaining to office work and workers) (adjective)
-  荷蘭, 荷兰 (Hélán de) :: Netherlands (pertaining to the Netherlands) (adjective)
+  荷蘭的 (荷蘭), 荷兰的 (Hélán de) (荷兰) :: Netherlands (pertaining to the Netherlands) (adjective)
 ***peso***
   比索 (bǐsuǒ) :: peso (currency) (noun)
 ===philosophy===
@@ -6201,7 +6233,7 @@ Index: EN EN->ZH
   詠嘆調, 咏叹调 (yǒngtàndiào), 唱段 (chàngduàn), (North China, Yuan dynasty) 北曲 (běiqǔ) :: aria (type of musical piece) (noun)
 ===place===
   名 (míng), 名字 (míngzì) :: name (word or phrase indicating a particular person, place, class or thing) (noun)
-  上面 (zài...shàngmiàn) :: above (in or to a higher place) (preposition)
+  在...上面 (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)
@@ -6275,7 +6307,7 @@ Index: EN EN->ZH
 ===position===
   權貴, 权贵 (quánguì) :: quality (archaic: social position) (noun)
 ===positioned===
-  上 (...shàng) :: on (positioned at the upper surface of) (preposition)
+  ...上 (...shàng) (上) :: on (positioned at the upper surface of) (preposition)
 ===possibly===
   可能 (kěnéng) may be, possible :: may (possibly, but not certainly) (verb)
 ===posterior===
@@ -6339,7 +6371,7 @@ Index: EN EN->ZH
 ===Proteles===
   土狼 (tǔláng) :: aardwolf (the mammal species Proteles cristatus) (noun)
 ***pseudo***
-  假 (jiǎ de-), 虛擬, 虚拟 (xūnǐ de-) :: pseudo- (not genuine) (prefix)
+  假的- (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)
@@ -6434,7 +6466,7 @@ Index: EN EN->ZH
 ===reject===
   拒絕, 拒绝 (jùjué) :: abdicate (reject) (verb)
 ===relating===
-  德國, 德国 (Déguó), 德 (Dé-) :: German (of or relating to the country of Germany) (adjective)
+  德國, 德国 (Déguó), 德- (Dé-) (德) :: German (of or relating to the country of Germany) (adjective)
 ===relative===
   行星 (xíngxīng) :: planet (each of the seven major bodies which move relative to the fixed stars in the night sky) (noun)
   (Min Nan) 行星 (hêng-seng) :: planet (each of the seven major bodies which move relative to the fixed stars in the night sky) (noun)
@@ -6801,7 +6833,7 @@ Index: EN EN->ZH
 ===sure===
   可接受的 (kě jiēshòu de) :: acceptable (capable, worthy or sure of being accepted) (adjective)
 ===surface===
-  上 (...shàng) :: on (positioned at the upper surface of) (preposition)
+  ...上 (...shàng) (上) :: on (positioned at the upper surface of) (preposition)
 ===surrender===
   (give up throne) 禪讓, 禅让 (shànràng), (leave any position) 退位 (tuìwèi), 退出 (tuìchū) :: abdicate (surrender or relinquish) (verb)
 ===symbol===
@@ -7009,7 +7041,7 @@ Index: EN EN->ZH
 ===untrue===
   廢話, 废话 (fèihuà), 胡說, 胡说 (húshuō), 胡言 (húyán), 狗屁 (gǒupì) (vulgar) :: nonsense (untrue statement) (noun)
 ===upper===
-  上 (...shàng) :: on (positioned at the upper surface of) (preposition)
+  ...上 (...shàng) (上) :: on (positioned at the upper surface of) (preposition)
 ===used===
   (Traditional Chinese) 中斷, 放棄 :: abort (The function used to abort a process) (noun)
   貨車, 货车 (huòchē) :: van (A (covered) vehicle used for carrying goods) (noun)
index 9e7ff175a694b5c66bcfb2321bc8413a260e60db..fd64b02b93cec1e7a11c8e09013dbb9112881ec5 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.chinese 628
+EntrySource: enwiktionary.chinese 631
 
 Index: ZH ZH->EN
 ===3===
@@ -1199,6 +1199,9 @@ Index: EN EN->ZH
   五 {{cmn-car-num|ts|pin=wǔ|pint=wu3|rs=二02}} :: five
 ===fond===
   愛 {{cmn-verb|t|pin=ài|pint=ai4|tra=愛|sim=爱|rs=心09}} :: {{Beginning Mandarin|script=traditional|skey=心09}} to love; to be fond of
+===form===
+  书 {{cmn-hanzi|tra=書|pin=qián (qian2), shū (shu1)|wg=ch'ien<sup>2</sup>, shu<sup>1</sup>}} :: form of a written or printed character;script
+  円 (yuán) :: archaic form of 圆
 ===four===
   四 {{cmn-car-num|ts|pin=sì|pint=si4|rs=囗02}} :: four
 ===fourth===
@@ -1338,6 +1341,8 @@ Index: EN EN->ZH
   安心 {{cmn-verb|ts|pin=ānxīn|pint=an1xin1|rs=宀03}} :: {{Elementary Mandarin|skey=宀03}} to keep one's mind on something
 ===Kyōto===
   京都 {{cmn-proper noun|ts|pin=Jīngdū|pint=jing1du1|rs=亠06}} :: Kyōto
+===la===
+  四 {{cmn-noun|ts|pin=sì|pint=si4|rs=囗02}} :: (musical note) la
 ===language===
   文 {{cmn-noun|ts|pin=wén|pint=wen2|rs=文00}} :: language, culture
   中文 {{cmn-proper noun|ts|pin=Zhōngwén|pint=zhong1wen2|rs=丨03}} :: The Chinese spoken language 普通话/Pǔtōnghuà/Standard Mandarin.
index 7565fac6f7fe17779da2996f988e7ba8ceba4b12..1ba238d204614e38a384cc9505ce6409f6d1eb7e 100644 (file)
--- a/todo.txt
+++ b/todo.txt
@@ -1,20 +1,15 @@
 For next release:
-fix \n in info
-help screen
+downloads
 about dict dialog
 history dialog
-num words in UI.
-eng_urdu
 fix up dictionary manager:
   thread that handles unzipping, downloading for the life of the application (so screen changes don't screw it up).
   check over UI.
 check arabic UI fix
 handle examples like "asdf (asdf)"
 random word jump
-multiword find.
 italian verbs... (show conjugation, pulled from a linked place....--would lower size a lot!)
 better example splitting
-! enter should hide keyboard
 
 Handle other sections:
   Pronunciation
@@ -93,3 +88,13 @@ refactor wiki parsing.
 new dictionary version: with links!
 parse dictionary_info file in client to show default dictionaries.
 black/blue background title rows, gray side pane for other language side
+faster search
+show "no search results"
+fix {t}
+add langs
+fix \n in info
+help screen
+num words in UI.
+multiword find.
+! enter should hide keyboard
+eng_urdu