From 22f584bdc1bd3cf68d3c375888a13676aa3ced2f Mon Sep 17 00:00:00 2001 From: thadh Date: Tue, 18 Sep 2012 11:11:24 -0700 Subject: [PATCH] Got rid of Category:. --- .../dictionary/engine/DictionaryBuilder.java | 3 +- .../engine/DictionaryBuilderTest.java | 9 +- .../wiktionary/WholeSectionToHtmlParser.java | 36 +++++- .../wiktionary.WholeSection.DE.quickdic.text | 108 +++++++++--------- .../wiktionary.WholeSection.EN.quickdic.text | 98 ++++++++-------- .../wiktionary.WholeSection.IT.quickdic.text | 102 ++++++++--------- 6 files changed, 193 insertions(+), 163 deletions(-) diff --git a/src/com/hughes/android/dictionary/engine/DictionaryBuilder.java b/src/com/hughes/android/dictionary/engine/DictionaryBuilder.java index 8d7f484..7c1c275 100644 --- a/src/com/hughes/android/dictionary/engine/DictionaryBuilder.java +++ b/src/com/hughes/android/dictionary/engine/DictionaryBuilder.java @@ -178,7 +178,8 @@ public class DictionaryBuilder { new EnTranslationToTranslationParser(dictionaryBuilder.indexBuilders, new Pattern[] {codePattern1, codePattern2}).parse(file, entrySource, pageLimit); } else if (WholeSectionToHtmlParser.NAME.equals(inputFormat)) { final int titleIndex = Integer.parseInt(keyValueArgs.remove(prefix + "TitleIndex")) - 1; - new WholeSectionToHtmlParser(dictionaryBuilder.indexBuilders.get(titleIndex)).parse(file, entrySource, pageLimit); + final String wiktionaryLang = keyValueArgs.remove(prefix + "WiktionaryLang"); + new WholeSectionToHtmlParser(dictionaryBuilder.indexBuilders.get(titleIndex), wiktionaryLang).parse(file, entrySource, pageLimit); } else { fatalError("Invalid or missing input format: " + inputFormat); } diff --git a/src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java b/src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java index c19a1b3..21a0016 100644 --- a/src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java +++ b/src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java @@ -29,7 +29,7 @@ import junit.framework.TestCase; public class DictionaryBuilderTest extends TestCase { public static final String TEST_INPUTS = "testdata/inputs/"; - public static final String WIKISPLIT = "data/inputs/wikiSplit/en/"; + public static final String WIKISPLIT_EN = "data/inputs/wikiSplit/en/"; public static final String STOPLISTS = "data/inputs/stoplists/"; public static final String GOLDENS = "testdata/goldens/"; @@ -78,7 +78,7 @@ public class DictionaryBuilderTest extends TestCase { "--lang2Stoplist=" + STOPLISTS + "empty.txt", "--dictInfo=SomeWikiDataTrans2Trans", - "--input4=" + WIKISPLIT + "EN.data", + "--input4=" + WIKISPLIT_EN + "EN.data", "--input4Name=" + name, "--input4Format=" + EnTranslationToTranslationParser.NAME, "--input4LangPattern1=" + lang1, @@ -114,9 +114,10 @@ public class DictionaryBuilderTest extends TestCase { "--lang2Stoplist=" + STOPLISTS + "empty.txt", "--dictInfo=SomeWikiDataWholeSection", - "--input4=" + WIKISPLIT + langCode + ".data", + "--input4=" + WIKISPLIT_EN + langCode + ".data", "--input4Name=" + name, "--input4Format=" + WholeSectionToHtmlParser.NAME, + "--input4WiktionaryLang=EN", "--input4TitleIndex=" + "1", "--input4PageLimit=100", @@ -194,7 +195,7 @@ public class DictionaryBuilderTest extends TestCase { "--lang2Stoplist=" + STOPLISTS + "en.txt", "--dictInfo=SomeWikiData", - "--input4=" + WIKISPLIT + data, + "--input4=" + WIKISPLIT_EN + data, "--input4Name=" + dictName, "--input4Format=enwiktionary", "--input4WiktionaryType=" + type, diff --git a/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java b/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java index 53104fc..ceeb4c2 100644 --- a/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java +++ b/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java @@ -10,20 +10,45 @@ import com.hughes.android.dictionary.parser.WikiTokenizer; import org.apache.commons.lang3.StringEscapeUtils; import java.util.ArrayList; +import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.regex.Pattern; public class WholeSectionToHtmlParser extends AbstractWiktionaryParser { + + interface LangConfig { + boolean skipSection(final String name); + boolean skipWikiLink(final WikiTokenizer wikiTokenizer); + } + static final Map isoToLangConfig = new LinkedHashMap(); + static { + final Pattern enSkipSections = Pattern.compile(".*Translations.*"); + isoToLangConfig.put("EN", new LangConfig() { + @Override + public boolean skipSection(String headingText) { + return enSkipSections.matcher(headingText).matches(); + } + + @Override + public boolean skipWikiLink(WikiTokenizer wikiTokenizer) { + final String wikiText = wikiTokenizer.wikiLinkText(); + if (wikiText.startsWith("Category:")) { + return true; + } + return false; + }}); + } public static final String NAME = "WholeSectionToHtmlParser"; - public static final Pattern skipSections = Pattern.compile(".*Translations.*"); final IndexBuilder titleIndexBuilder; + final LangConfig langConfig; - public WholeSectionToHtmlParser(final IndexBuilder titleIndexBuilder) { + public WholeSectionToHtmlParser(final IndexBuilder titleIndexBuilder, final String wiktionaryIso) { this.titleIndexBuilder = titleIndexBuilder; - + assert isoToLangConfig.containsKey(wiktionaryIso): wiktionaryIso; + this.langConfig = isoToLangConfig.get(wiktionaryIso); } @Override @@ -69,6 +94,9 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser { // Skips wikilinks like: [[en::dick]] return; } + if (langConfig.skipWikiLink(wikiTokenizer)) { + return; + } super.onWikiLink(wikiTokenizer); } @@ -91,7 +119,7 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser { public void onHeading(WikiTokenizer wikiTokenizer) { final String headingText = wikiTokenizer.headingWikiText(); final int depth = wikiTokenizer.headingDepth(); - if (skipSections.matcher(headingText).matches()) { + if (langConfig.skipSection(headingText)) { while ((wikiTokenizer = wikiTokenizer.nextToken()) != null) { if (wikiTokenizer.isHeading() && wikiTokenizer.headingDepth() <= depth) { wikiTokenizer.returnToLineStart(); diff --git a/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text b/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text index bda7efe..146c91a 100644 --- a/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text +++ b/testdata/goldens/wiktionary.WholeSection.DE.quickdic.text @@ -44,7 +44,7 @@ From {{etyl|goh|de}} {{term|ab|lang=goh}}, from {{proto|Germanic|ab|lang=de}}.

Derived terms

  • ab und zu
-Category:2000 German basic words---->>> +---->>> HtmlEntry: ab <<<

Etymology

From {{proto|Germanic|ab|lang=goh}}. @@ -170,7 +170,7 @@ HtmlEntry: Afghanistan <<<{{wikipedia|lang=de}}

Derived terms

  • Afghane, Afghani, Afghanin, afghanisch
-Category:German proper nounsCategory:de:Countries---->>> +---->>> ===also=== HtmlEntry: also <<<

Pronunciation

@@ -187,7 +187,7 @@ HtmlEntry: also <<<
  1. so
  2. thus
-Category:2000 German basic wordsCategory:German adverbsCategory:German interjections---->>> +---->>> ===Andorra=== HtmlEntry: Andorra <<<{{wikipedia|lang=de}}

Pronunciation

@@ -203,7 +203,7 @@ HtmlEntry: Andorra <<<{{wikipedia|lang=de}}
  • Andorraner / Andorranerin
  • andorranisch
-Category:de:Countries---->>> +---->>> ===Angola=== HtmlEntry: Angola <<<

Pronunciation

@@ -214,7 +214,7 @@ HtmlEntry: Angola <<< {{head|de|proper noun}}
  1. {{l|en|Angola}}
-Category:de:Countries---->>> +---->>> ===April=== HtmlEntry: April <<<

Pronunciation

@@ -225,14 +225,14 @@ HtmlEntry: April <<< {{head|de|noun|g=m}}
  1. {{l|en|April}}
-Category:2000 German basic wordsCategory:de:Months---->>> +---->>> ===Bahamas=== HtmlEntry: Bahamas <<<

Proper noun

{de-proper noun} {p}
  1. {{l|en|Bahamas}}
-Category:de:Countries---->>> +---->>> ===Bahrain=== HtmlEntry: Bahrain <<<

Proper noun

@@ -244,14 +244,14 @@ HtmlEntry: Bahrain <<<
  • {{l|de|Bahrainer}}
  • {{l|de|Bahrainerin}}
-Category:de:Countries---->>> +---->>> ===Bangladesh=== HtmlEntry: Bangladesh <<<

Proper noun

{{head|de|proper noun}} no gender
  1. {{alternative spelling of|Bangladesch|lang=de}}
-Category:de:Countries---->>> +---->>> ===Belize=== HtmlEntry: Belize <<<{{wikipedia|lang=de}}

Proper noun

@@ -264,7 +264,7 @@ HtmlEntry: Belize <<<{{wikipedia|lang=de}}
  • {{l|de|Belizerin}}
  • {{l|de|belizisch}}
  • -Category:de:Countries---->>> +---->>> ===Bhutan=== HtmlEntry: Bhutan <<<{{wikipedia|lang=de}}

    Pronunciation

    @@ -282,7 +282,7 @@ HtmlEntry: Bhutan <<<{{wikipedia|lang=de}}
  • {{l|de|Bhutaner}}
  • {{l|de|Bhutanerin}}
  • -Category:de:Countries---->>> +---->>> ===blood=== HtmlEntry: blood <<<

    Noun

    @@ -304,14 +304,14 @@ HtmlEntry: Burundi <<<{{wikipedia|lang=de}} {{head|de|proper noun|g=n}}
    1. {{l|en|Burundi}}
    -Category:de:Countries---->>> +---->>> ===Chile=== HtmlEntry: Chile <<<

    Proper noun

    {{head|de|proper noun|g=n}}
    1. Chile
    -Category:de:Countries---->>> +---->>> ===China=== HtmlEntry: China <<<{{wikipedia|lang=de}}

    Pronunciation

    @@ -325,7 +325,7 @@ HtmlEntry: China <<<{{wikipedia|lang=de}} {{head|de|proper noun|g=n}}
    1. {{l|en|China}} {{gloss|country}}
    -Category:de:Countries---->>> +---->>> ===dat=== HtmlEntry: dat <<<

    Etymology

    @@ -449,7 +449,7 @@ HtmlEntry: Dezember <<< {{head|de|noun}}
    1. December
    -Category:de:Months---->>> +---->>> ===dick=== HtmlEntry: dick <<<

    Etymology

    @@ -519,7 +519,7 @@ A shortening of dieses dies
    1. this
    -Category:German pronouns---->>> +---->>> ===digital=== HtmlEntry: digital <<<

    Pronunciation

    @@ -548,7 +548,7 @@ HtmlEntry: Ecuador <<<{{wikipedia|lang=de}}
  • Ecuadorianerin
  • ecuadorianisch
  • -Category:German proper nounsCategory:de:Countries---->>> +---->>> ===een=== HtmlEntry: een <<<

    Alternative forms

    @@ -611,7 +611,7 @@ HtmlEntry: Esperanto <<< {{head|de|noun|g=n}}
    1. Esperanto
    -Category:de:Languages---->>> +---->>> ===Fabian=== HtmlEntry: Fabian <<<

    Proper noun

    @@ -677,7 +677,7 @@ HtmlEntry: Gambia <<<{{wikipedia|lang=de}}
  • gambisch
  • Senegambia
  • -Category:de:Countries---->>> +---->>> ===Ghana=== HtmlEntry: Ghana <<<{{wikipedia|lang=de}}

    Pronunciation

    @@ -696,7 +696,7 @@ HtmlEntry: Ghana <<<{{wikipedia|lang=de}}
  • Ghanese
  • Ghanesin
  • -Category:de:Countries---->>> +---->>> ===global=== HtmlEntry: global <<<

    Adjective

    @@ -728,7 +728,7 @@ HtmlEntry: gratis <<< gratis
    1. free, without charge
    -Category:German adverbs---->>> +---->>> ===Guatemala=== HtmlEntry: Guatemala <<<

    Proper noun

    @@ -741,7 +741,7 @@ HtmlEntry: Guatemala <<<
  • {{l|de|Guatemaltekin}}
  • {{l|de|guatemaltekisch}}
  • -Category:de:Countries---->>> +---->>> ===Guyana=== HtmlEntry: Guyana <<<{{wikipedia|lang=de}}

    Proper noun

    @@ -755,7 +755,7 @@ HtmlEntry: Guyana <<<{{wikipedia|lang=de}}
  • Guyanerin
  • guyanisch
  • -Category:German proper nounsCategory:de:Countries---->>> +---->>> ===Haiti=== HtmlEntry: Haiti <<<{{wikipedia|lang=de}}

    Pronunciation

    @@ -772,7 +772,7 @@ HtmlEntry: Haiti <<<{{wikipedia|lang=de}}
  • {{l|de|Haitianerin}}
  • {{l|de|haitianisch}}
  • -Category:de:Countries---->>> +---->>> ===Haus=== HtmlEntry: Haus <<<

    Etymology

    @@ -823,7 +823,7 @@ HtmlEntry: Honduras <<<{{wikipedia|lang=de}}
  • Honduranerin
  • honduranisch
  • -Category:German proper nounsCategory:de:Countries---->>> +---->>> ===ik=== HtmlEntry: ik <<<

    Alternative forms

    @@ -916,7 +916,7 @@ The article (der) is often used with the name of the country, thus one
  • Persien
  • Persisch
  • -Category:de:Countries---->>> +---->>> ===is=== HtmlEntry: is <<<

    Etymology

    @@ -925,7 +925,7 @@ From {{proto|Germanic|Ä«san|lang=goh}} Ä«s
    1. ice
    -Category:Old High German nouns---->>> +---->>> ===Israel=== HtmlEntry: Israel <<<

    Pronunciation

    @@ -944,7 +944,7 @@ HtmlEntry: Israel <<<
  • Israelitin
  • Israeli
  • -Category:de:Countries---->>> +---->>> ===Japan=== HtmlEntry: Japan <<<

    Pronunciation

    @@ -963,7 +963,7 @@ HtmlEntry: Japan <<<
  • Japanisch
  • japanisch
  • -Category:de:CountriesCategory:de:Exonyms---->>> +---->>> ===Kiribati=== HtmlEntry: Kiribati <<<{{wikipedia|lang=de}}

    Proper noun

    @@ -974,7 +974,7 @@ HtmlEntry: Kiribati <<<{{wikipedia|lang=de}}

    Derived terms

    • {{l|de|kiribatisch}}
    -Category:de:Countries---->>> +---->>> ===Kuwait=== HtmlEntry: Kuwait <<<{{wikipedia|lang=de}}

    Proper noun

    @@ -987,7 +987,7 @@ HtmlEntry: Kuwait <<<{{wikipedia|lang=de}}
  • {{l|de|Kuwaiterin}}
  • {{l|de|kuwaitisch}}
  • -Category:de:Countries---->>> +---->>> ===Laos=== HtmlEntry: Laos <<<{{wikipedia|lang=de}}

    Proper noun

    @@ -1000,7 +1000,7 @@ HtmlEntry: Laos <<<{{wikipedia|lang=de}}
  • Laotin
  • laotisch
  • -Category:de:CountriesCategory:de:Exonyms---->>> +---->>> ===last=== HtmlEntry: last <<<

    Verb

    @@ -1025,7 +1025,7 @@ HtmlEntry: Liberia <<<{{wikipedia|lang=de}}
  • {{l|de|Liberianerin}}
  • {{l|de|liberianisch}}
  • -Category:de:Countries---->>> +---->>> ===Liechtenstein=== HtmlEntry: Liechtenstein <<<{{wikipedia|lang=de}}

    Pronunciation

    @@ -1043,7 +1043,7 @@ HtmlEntry: Liechtenstein <<<{{wikipedia|lang=de}}
  • {{l|de|Liechtensteinerin}}
  • {{l|de|liechtensteinisch}}
  • -Category:de:Countries---->>> +---->>> ===Malawi=== HtmlEntry: Malawi <<<{{wikipedia|lang=de}}

    Proper noun

    @@ -1056,14 +1056,14 @@ HtmlEntry: Malawi <<<{{wikipedia|lang=de}}
  • Malawierin
  • malawisch
  • -Category:German proper nounsCategory:de:Countries---->>> +---->>> ===Malaysia=== HtmlEntry: Malaysia <<<{{wikipedia|lang=de}}

    Proper noun

    {{head|de|proper noun|g=n}}
    1. Malaysia
    -Category:de:Countries---->>> +---->>> ===Mali=== HtmlEntry: Mali <<<{{wikipedia|lang=de}}

    Pronunciation

    @@ -1080,7 +1080,7 @@ HtmlEntry: Mali <<<{{wikipedia|lang=de}}
  • Malierin
  • malisch
  • -Category:German proper nounsCategory:de:Countries---->>> +---->>> ===Malta=== HtmlEntry: Malta <<<{{wikipedia|lang=de}}

    Proper noun

    @@ -1093,7 +1093,7 @@ HtmlEntry: Malta <<<{{wikipedia|lang=de}}
  • Malteser
  • Malteserin
  • -Category:de:CountriesCategory:de:Islands---->>> +---->>> ===man=== HtmlEntry: man <<<

    Etymology

    @@ -1154,14 +1154,14 @@ HtmlEntry: Mauritius <<<{{wikipedia|lang=de}}
  • Mauritierin
  • mauritisch
  • -Category:de:Countries---->>> +---->>> ===Monaco=== HtmlEntry: Monaco <<<

    Proper noun

    {{head|de|proper noun}}
    1. {{l|en|Monaco}}
    -Category:de:Countries---->>> +---->>> ===most=== HtmlEntry: most <<<

    Etymology

    @@ -1187,7 +1187,7 @@ HtmlEntry: Namibia <<<{{wikipedia|lang=de}}
  • {{l|de|Namibierin}}
  • {{l|de|namibisch}}
  • -Category:de:Countries---->>> +---->>> ===Niger=== HtmlEntry: Niger <<<{{wikipedia|lang=de}}

    Proper noun

    @@ -1202,7 +1202,7 @@ HtmlEntry: Niger <<<{{wikipedia|lang=de}}
  • Nigrerin
  • nigrisch
  • -Category:de:CountriesCategory:de:Rivers---->>> +---->>> ===Nigeria=== HtmlEntry: Nigeria <<<{{wikipedia|lang=de}}

    Pronunciation

    @@ -1219,7 +1219,7 @@ HtmlEntry: Nigeria <<<{{wikipedia|lang=de}}
  • Nigerianerin
  • nigerianisch
  • -Category:de:Countries---->>> +---->>> ===nine=== HtmlEntry: nine <<<

    Alternative forms

    @@ -1246,7 +1246,7 @@ HtmlEntry: November <<< {{head|de|noun|g=m}}
    1. {{l|en|November}}
    -Category:de:Months---->>> +---->>> ===nu=== HtmlEntry: nu <<<

    Interjection

    @@ -1291,7 +1291,7 @@ Ultimately cognate to {{etyl|de|-}} und. -Category:Low German conjunctions---->>> +---->>> ===orange=== HtmlEntry: orange <<<

    Etymology

    @@ -1304,7 +1304,7 @@ From the noun {{term|Orange|lang=de}} {{de-adj|-}}
    1. orange-coloured
    -Category:de:ColorsCategory:de:Colors of the rainbow---->>> +---->>> ===planet=== HtmlEntry: planet <<<

    Verb

    @@ -1336,7 +1336,7 @@ HtmlEntry: September <<< {{head|de|noun|g=m}}
    1. {{l|en|September}}
    -Category:de:Months---->>> +---->>> ===SMS=== HtmlEntry: SMS <<<

    {{initialism|German}}

    @@ -1345,7 +1345,7 @@ HtmlEntry: SMS <<<

    Usage notes

    -Used for naval ships of the Austro-Hungarian Empire and the Second Reich of Imperial Germany, for the Kaiserliche und Königliche Kriegsmarine and Kaiserliche Marine, respectively.Category:de:Ship prefixes>>> +Used for naval ships of the Austro-Hungarian Empire and the Second Reich of Imperial Germany, for the Kaiserliche und Königliche Kriegsmarine and Kaiserliche Marine, respectively.>>> ===spring=== HtmlEntry: spring <<<

    Pronunciation

    @@ -1364,14 +1364,14 @@ HtmlEntry: synonym <<< {{de-adj|-}}
    1. synonymous
    -Category:de:Semantics---->>> +---->>> ===UdSSR=== HtmlEntry: UdSSR <<<

    {{abbreviation|German}}

    UdSSR {f} (abbreviation of Union der Sozialistischen Sowjet-Republiken)
    1. USSR
    -Category:German abbreviations>>> +>>> ===Uhr=== HtmlEntry: Uhr <<<

    Pronunciation

    @@ -1450,7 +1450,7 @@ HtmlEntry: umsonst <<<
    • frei
    • kostenlos
    -Category:German adverbs>>> +>>> ===urban=== HtmlEntry: urban <<<

    Pronunciation

    @@ -1519,14 +1519,14 @@ HtmlEntry: war <<< wār
    1. true
    -Category:Old High German adjectives---->>> +---->>> ===wolf=== HtmlEntry: wolf <<<

    Noun

    wolf {m}
    1. wolf
    -Category:Middle High German nounsCategory:gmh:Mammals---->>> +---->>> ===zwei=== HtmlEntry: zwei <<<

    Number

    @@ -1555,7 +1555,7 @@ From {{etyl|goh|de}} {{term|zwene|zwēne|lang=goh}}.
    • zwanzig
    • zwölf
    -Category:German cardinal numbers>>> +>>> Index: EN EN->DE diff --git a/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text b/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text index 80e51d1..9f6f1b9 100644 --- a/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text +++ b/testdata/goldens/wiktionary.WholeSection.EN.quickdic.text @@ -285,7 +285,7 @@ From {{confix|anti|disestablishmentarian|ism}}.
  • pneumonoultramicroscopicsilicovolcanoconiosis
  • supercalifragilisticexpialidocious
  • -Category:English nouns ending in "-ism"Category:Long English words>>> +>>> ===antonym=== HtmlEntry: antonym <<<

    Etymology

    @@ -782,7 +782,7 @@ A hard-cover book{en-noun}

    References

    -<references/>Category:1000 English basic wordsCategory:en:Poker---->>> +<references/>---->>> HtmlEntry: book <<<

    Etymology

    {{etyl|ang|enm}} {{term|boc|bōc|lang=ang}} @@ -892,7 +892,7 @@ HtmlEntry: brown <<<{wikipedia}Various shades of brown.Brown is a common hair co
    • golding
    • Appendix:Colors
    -Category:1000 English basic wordsCategory:en:BrownsCategory:en:Colors>>> +>>> ===business deal=== HtmlEntry: business deal <<<

    Noun

    @@ -1142,7 +1142,7 @@ This usage is common in speech but rarely appears in writing.
  • tac, TAC
  • TCA
  • -Category:1000 English basic wordsCategory:English terms with multiple etymologiesCategory:en:CatsCategory:en:Mammals---->>> +---->>> ===connotation=== HtmlEntry: connotation <<<

    Pronunciation

    @@ -1177,7 +1177,7 @@ HtmlEntry: connotation <<<

    External links

    -Category:en:Semantics>>> +>>> ===craft=== HtmlEntry: craft <<<{{wikipedia|craft|dab=craft (disambiguation)}}

    Etymology

    @@ -1260,7 +1260,7 @@ From {{etyl|enm|en}}, from {{etyl|ang|en}} {{term|cræft|physical strength,

    References

    • Krueger, Dennis (December 1982). "Why On Earth Do They Call It Throwing?" Studio Potter Vol. 11, Number 1.[http://www.studiopotter.org/articles/?art=art0001]
    -Category:English invariant nouns>>> +>>> ===crow=== HtmlEntry: crow <<American crow{wikipedia}

    Pronunciation

    @@ -1469,7 +1469,7 @@ From {{etyl|enm}} {{term|day|lang=enm}}, from {{etyl|ang}} {{term|dæg|d&ae
    • d'ya
    • yad
    -Category:200 English basic wordsCategory:en:Time---->>> +---->>> HtmlEntry: day <<<

    Etymology

    {{etyl|ang|enm}} {{term|dæg|dæÄ¡|lang=ang}} @@ -1672,7 +1672,7 @@ From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|dælan|
  • lade
  • lead
  • -Category:English irregular verbsCategory:English terms with multiple etymologies---->>> +---->>> ===December=== HtmlEntry: December <<<

    Alternative forms

    @@ -1846,7 +1846,7 @@ HtmlEntry: dictionary <<<{{wikipedia|Dictionary|dab=Dictionary (disambiguation)}

    Anagrams

    • indicatory
    -Category:en:Reference works +

    Verb

    {{en-verb|dictionar|i|ed}}
    1. {transitive} To look up in a dictionary
    2. @@ -2402,7 +2402,7 @@ From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound,

      Anagrams

      • god, God
      -Category:1000 English basic wordsCategory:English three-letter words Category:en:Mammals---->>> + ---->>> ===eagle=== HtmlEntry: eagle <<Etymology @@ -2462,7 +2462,7 @@ HtmlEntry: eagle <<Anagrams
      • aglee
      -Category:en:Birds*Category:en:Golf---->>> +*---->>> ===elephant=== HtmlEntry: elephant <<<

      Etymology

      @@ -2622,7 +2622,7 @@ HtmlEntry: elephant <<<
      • {pedia}
      • {{pedia|Elephant (disambiguation)}}
      -Category:Paper sizes*---->>> +*---->>> ===encyclopaedia=== HtmlEntry: encyclopaedia <<<

      Alternative forms

      @@ -2732,7 +2732,7 @@ From {{etyl|enm}} {{term|etimologie|lang=enm}}, from {{etyl|fro}} {{term|ethimol
    3. {{R:Dictionary.com|etymology}}
    4. {{R:WordNet 2003|etymology}}
    5. -Category:English words suffixed with -ologyCategory:en:Linguistics>>> +>>> ===f=== HtmlEntry: f <<<

      Etymology 1

      @@ -2791,7 +2791,7 @@ Anglo-Saxon Futhorc letter ᚠ, which was replaced by Latin ‘f’ {{etyl|ang}}
    6. m
    7. n
    8. -Category:Paper sizes---->>> +---->>> ===fa=== HtmlEntry: fa <<<

      Alternative forms

      @@ -2825,7 +2825,7 @@ From the first syllable of the Latin word {{term|famuli}}, extracted of the poem

      Anagrams

      • AF
      -Category:English two-letter words---->>> +---->>> ===false friend=== HtmlEntry: false friend <<<{{was wotd|2007|May|4}}{wikipedia}

      Pronunciation

      @@ -3096,7 +3096,7 @@ A sign advertising free beer (obtainable without payment).A "buy one
      • {{l|en|fere}}
      • {{l|en|reef}}
      -Category:1000 English basic wordsCategory:Entries which need Hebrew vowelsCategory:en:Money>>> +>>> ===freedom of speech=== HtmlEntry: freedom of speech <<<{{wikipedia|Freedom of speech}}{{wikinews|Category:Free speech}}{{commons|Category:Freedom of speech}}{{wikiquote|Freedom of speech}}

      Etymology

      @@ -3134,7 +3134,7 @@ HtmlEntry: freedom of speech <<<{{wikipedia|Freedom of speech}}{{wikinews|Catego

      See also

      • {pedia}
      -Category:en:Freedom of speech>>> +>>> ===Friday=== HtmlEntry: Friday <<<

      Etymology

      @@ -3289,7 +3289,7 @@ From {{etyl|la}} gratis.

      See also

      • libre
      -Category:English terms derived from LatinCategory:en:Economics---->>> +---->>> ===head=== HtmlEntry: head <<<{{wikipedia|Head|dab=Head (disambiguation)}}{{rfc|still missing some basic dictionary definitions: see talk page}}

      Alternative forms

      @@ -3599,7 +3599,7 @@ From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|la

      Anagrams

      • DHEA, hade
      -Category:1000 English basic wordsCategory:en:Anatomy---->>> +---->>> ===hour=== HtmlEntry: hour <<<

      Alternative forms

      @@ -3682,7 +3682,7 @@ HtmlEntry: hour <<<

      Statistics

      • {{rank|thousand|looking|John|366|hour|air|reason|feel}}
      -Category:1000 English basic wordsCategory:en:Time>>> +>>> ===hyponym=== HtmlEntry: hyponym <<<

      Etymology

      @@ -3760,7 +3760,7 @@ Re-Latinized from {{etyl|enm}} {{term|Ieneuer|lang=enm}}, from {{etyl|xno}} {{te

      See also

      • {{list|en|Gregorian calendar months}}
      -Category:English eponyms>>> +>>> ===July=== HtmlEntry: July <<<

      Etymology

      @@ -3808,7 +3808,7 @@ HtmlEntry: July <<<
    9. July-flower
    10. {{list|en|Gregorian calendar months}}
    11. -Category:English eponyms>>> +>>> ===June=== HtmlEntry: June <<<

      Etymology

      @@ -4119,7 +4119,7 @@ From {{etyl|enm}} {{term|marche|tract of land along a country's border|lang=enm}

      Anagrams

      • charm
      -Category:English ergative verbsCategory:English terms with multiple etymologiesCategory:en:Gaits---->>> +---->>> ===may=== HtmlEntry: may <<<{{slim-wikipedia|May (disambiguation)}}

      Pronunciation

      @@ -4243,7 +4243,7 @@ HtmlEntry: may <<<{{slim-wikipedia|May (disambiguation)}}

      Anagrams

      • Amy, MYA, Mya, mya, yam
      -Category:100 English basic wordsCategory:English auxiliary verbsCategory:English defective verbsCategory:English irregular verbsCategory:English terms with multiple etymologiesCategory:en:Trees---->>> +---->>> ===merchandise=== HtmlEntry: merchandise <<<

      Alternative forms

      @@ -4385,7 +4385,7 @@ From {{etyl|la}} {{term|minutus|minūtus|small", "petty|lang=la}}, per
      • minuet
      • untime
      -Category:1000 English basic wordsCategory:English heteronymsCategory:en:TimeCategory:en:Units of measure---->>> +---->>> ===Monday=== HtmlEntry: Monday <<<

      Etymology

      @@ -4518,7 +4518,7 @@ From {{etyl|enm}} {{term|month|lang=enm}}, {{term|moneth|lang=enm}}, from {{etyl

      Statistics

      • {{rank|original|provide|determined|819|month|news|prepared|support}}
      -Category:1000 English basic wordsCategory:en:Time>>> +>>> ===multiculturalism=== HtmlEntry: multiculturalism <<<{{was wotd|2011|April|24}}{wikipedia}

      Etymology

      @@ -4551,7 +4551,7 @@ From {{suffix|multicultural|ism}}.

      See also

      • cosmopolitan
      -Category:en:Culture>>> +>>> ===name=== HtmlEntry: name <<<{{was wotd|2006|May|6}}{{wikipedia|name|dab=name (disambiguation)}}

      Etymology

      @@ -4687,7 +4687,7 @@ From {{etyl|ang}} {{term|nama|lang=ang}}, from {{proto|Germanic|namô}}, fr

      Anagrams

      • Amen, amen, mane, mean, MENA, NEMA, NMEA
      -Category:200 English basic wordsCategory:en:Onomastics---->>> +---->>> HtmlEntry: name <<<

      Noun

      {enm-noun} @@ -4844,7 +4844,7 @@ From {{etyl|xno}} {{term|noun|lang=xno}}, {{term|non|lang=xno}}, {{term|nom|lang

      Anagrams

      • non-U
      -Category:English autological termsCategory:en:Parts of speech---->>> +---->>> ===November=== HtmlEntry: November <<<

      Alternative forms

      @@ -5076,7 +5076,7 @@ From {{etyl|hi}} {{term|पाई|quarter|tr=pāī}}, from {{etyl|sa}} {{term|

      Anagrams

      • EIP, ipe, ipé, PEI
      -Category:English terms with unknown etymologiesCategory:en:CurrencyCategory:en:FoodsCategory:en:Pies---->>> +---->>> ===pies=== HtmlEntry: pies <<<

      Pronunciation

      @@ -5164,7 +5164,7 @@ Coined by Everett K Smith, President of the National Puzzlers’ League, at thei {rel-bottom}

      References

      -<references/>Category:Long English wordsCategory:English words suffixed with -osis>>> +<references/>>>> ===polysemic=== HtmlEntry: polysemic <<<

      Adjective

      @@ -5249,7 +5249,7 @@ Unknown. Presumably named after Pope Julius II, the Warrior Pope.
    12. {{quote-book|year={{circa2|1596}}|author=Sir John Harington|title=A Treatise on Playe|quoted_in=Nugae antiquae|year_published=1804|passage=Pope Julio (if I fail not in the name, and sure I am that there is a game of the cards after his name) was a great and wary player, a great vertue in a man of his profession}}
    -Category:en:Card games>>> +>>> ===portmanteau=== HtmlEntry: portmanteau <<<{{was wotd|2007|March|8}}{wikipedia}

    Alternative forms

    @@ -5311,7 +5311,7 @@ Coined by Lewis Carroll in Through The Looking Glass to describe the words he co
    • List of portmanteau words defined in Wiktionary
    • Wikipedia article on portmanteaus (cases and words)
    -Category:English autological terms>>> +>>> ===portmanteau word=== HtmlEntry: portmanteau word <<<

    Etymology

    @@ -5329,14 +5329,14 @@ Coined by Lewis Carroll in 1872, based on the concept of two words packed togeth

    See also

    -
    • Category:Portmanteaus
    • +

      External links

      • {pedia}
      • {{pedia|List of portmanteaus}}
      -Category:English autological terms>>> +>>> ===pound=== HtmlEntry: pound <<<

      Pronunciation

      @@ -5437,7 +5437,7 @@ From {{etyl|enm}} {{term|pounden|lang=enm}}, alteration of {{term|pounen|lang=en {en-noun}
      1. A hard blow.
      -Category:en:CanalsCategory:en:CurrencyCategory:en:Units of measure>>> +>>> ===product=== HtmlEntry: product <<<

      Etymology

      @@ -5556,7 +5556,7 @@ From {{etyl|frm}} {{term|pompon|lang=frm}}, from {{etyl|la}} {{term|pepo|pepō|l
    • marrow
    • squash
    -Category:en:ColorsCategory:en:Terms of endearment>>> +>>> ===quid pro quo=== HtmlEntry: quid pro quo <<<{{was wotd|2009|August|17}}{rfc}

    Etymology

    @@ -5600,7 +5600,7 @@ From {{etyl|la|en}} : "what for what" . See quid, pro, and quo

    Anagrams

    • quo pro quid
    -Category:English borrowed terms>>> +>>> ===rain cats and dogs=== HtmlEntry: rain cats and dogs <<<

    Etymology

    @@ -5693,7 +5693,7 @@ From {{etyl|fro}} {{term|raviner|rush, seize by force|lang=fro}}, itself from {{

    Anagrams

    • Verna
    -Category:English adjectives ending in -enCategory:English heteronymsCategory:en:Birds---->>> +---->>> ===Saturday=== HtmlEntry: Saturday <<<

    Etymology

    @@ -5798,7 +5798,7 @@ HtmlEntry: semantics <<<{wikipedia}

    External links

    • {R:OneLook}
    -Category:en:Philosophy>>> +>>> ===September=== HtmlEntry: September <<<

    Alternative forms

    @@ -6154,7 +6154,7 @@ Uncertain, probably from imitative origin.
  • wasp
  • WSPA
  • -Category:Trading---->>> +---->>> ===swop=== HtmlEntry: swop <<<

    Noun

    @@ -6262,7 +6262,7 @@ HtmlEntry: thesaurus <<<{wikipedia}
  • {R:Century 1911}
  • Roget's Thesaurus can be found at: http://www.bartleby.com/thesauri
  • -Category:en:Reference works---->>> +---->>> ===Thursday=== HtmlEntry: Thursday <<<

    Etymology

    @@ -6324,7 +6324,7 @@ From {{etyl|enm}}, from {{etyl|ang}} {{term|þursdæg|þursd&aeli

    See also

    • {{list|en|days of the week}}
    -Category:en:Time>>> +>>> ===trade=== HtmlEntry: trade <<<{{wikipedia|trade|dab=trade (disambiguation)}}

    Etymology

    @@ -6490,7 +6490,7 @@ From {{etyl|enm|en}} {{term|trade|path, course of conduct|lang=enm}}, cognate wi

    Anagrams

    • adret, dater, derat, drate, rated, tared, tread
    -Category:1000 English basic words---->>> +---->>> ===trade wind=== HtmlEntry: trade wind <<<

    Alternative forms

    @@ -6515,7 +6515,7 @@ HtmlEntry: trade wind <<<

    Antonyms

    • easterly
    -Category:en:Wind>>> +>>> ===Tuesday=== HtmlEntry: Tuesday <<<

    Etymology

    @@ -6675,7 +6675,7 @@ Verbs compose a fundamental category of words in most languages. In an English
    • v.
    • copula
    -Category:English autological termsCategory:en:Parts of speechCategory:en:Verbs---->>> +---->>> ===wares=== HtmlEntry: wares <<<

    Pronunciation

    @@ -6706,7 +6706,7 @@ HtmlEntry: wares <<<
  • swear
  • wears
  • -Category:English terms with homophones>>> +>>> ===Wednesday=== HtmlEntry: Wednesday <<<{{wikipedia|wednesday|dab=wednesday (disambiguation)}}

    Etymology

    @@ -6959,7 +6959,7 @@ From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word,

    Anagrams

    • drow
    -Category:1000 English basic wordsCategory:English autological termsCategory:en:CommunicationCategory:en:Semantics---->>> +---->>> HtmlEntry: word <<<

    Alternative forms

    • Æ¿ord
    • @@ -6979,7 +6979,7 @@ From {{proto|Germanic|wurdan|lang=ang}}, from {{proto|Indo-European|werdÊ°o-|wor
    • news, information, rumour
    • command, request
    • -Category:ang:Grammar---->>> +---->>> Index: EN EN->EN diff --git a/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text b/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text index 1c3c881..b173d3c 100644 --- a/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text +++ b/testdata/goldens/wiktionary.WholeSection.IT.quickdic.text @@ -19,7 +19,7 @@ HtmlEntry: A <<<{{wikipedia|lang=it}}
      • {{list|it|Latin script letters}}
      • {{pedialite|Italian alphabet}}
      -Category:Italian nouns---->>> +---->>> ===a-=== HtmlEntry: a- <<<{{wikipedia|a (prefisso)|lang=it}}

      Etymology 1

      @@ -50,7 +50,7 @@ HtmlEntry: abalienate <<<
    • {{conjugation of|abalienare|2|p|imp|lang=it}}
    • {{form of|Feminine plural|abalienato}}
    • -Category:Italian past participle formsCategory:Italian verb forms---->>> +---->>> ===abate=== HtmlEntry: abate <<<

      Etymology

      @@ -86,7 +86,7 @@ HtmlEntry: abbreviate <<<

      Anagrams

      • abbeverati
      -Category:Italian verb forms---->>> +---->>> ===abdicate=== HtmlEntry: abdicate <<<

      Verb form

      @@ -94,14 +94,14 @@ HtmlEntry: abdicate <<<
      1. second-person plural present tense of abdicare
      2. second-person plural imperative of abdicare
      -Category:Italian verb forms---->>> +---->>> ===abduce=== HtmlEntry: abduce <<<

      Verb

      abduce
      1. {{conjugation of|abdurre|3|s|pres|ind|lang=it}}
      -Category:Italian verb forms---->>> +---->>> ===aberrate=== HtmlEntry: aberrate <<<

      Verb

      @@ -110,14 +110,14 @@ HtmlEntry: aberrate <<<
    • {{conjugation of|aberrare|2|p|imp|lang=it}}
    • {{form of|Feminine plural|aberrato}}
    • -Category:Italian past participle formsCategory:Italian verb forms---->>> +---->>> ===ablative=== HtmlEntry: ablative <<<

      Adjective

      ablative {f}
      1. Feminine plural form of ablativo
      -Category:Italian adjective forms---->>> +---->>> ===abominate=== HtmlEntry: abominate <<<

      Verb

      @@ -126,7 +126,7 @@ HtmlEntry: abominate <<<
    • {{conjugation of|abominare|2|p|imp|lang=it}}
    • {{form of|Feminine plural|abominato}}
    • -Category:Italian past participle formsCategory:Italian verb forms---->>> +---->>> ===abortive=== HtmlEntry: abortive <<<

      Adjective

      @@ -149,7 +149,7 @@ HtmlEntry: abrade <<<
      • badare
      • baderà
      -Category:Italian verb forms---->>> +---->>> ===abrase=== HtmlEntry: abrase <<<

      Verb

      @@ -164,7 +164,7 @@ HtmlEntry: abrase <<<
      • basare
      • baserà
      -Category:Italian past participle formsCategory:Italian verb forms---->>> +---->>> ===abrasive=== HtmlEntry: abrasive <<<

      Adjective

      @@ -176,7 +176,7 @@ HtmlEntry: abrasive <<<
      • bavaresi
      • sbaverai
      -Category:Italian adjective forms>>> +>>> ===abrogate=== HtmlEntry: abrogate <<<

      Verb

      @@ -185,21 +185,21 @@ HtmlEntry: abrogate <<<
    • {{conjugation of|abrogare|2|p|imp|lang=it}}
    • {{form of|Feminine plural|abrogato}}
    • -Category:Italian past participle formsCategory:Italian verb forms---->>> +---->>> ===abrogative=== HtmlEntry: abrogative <<<

      Adjective

      abrogative {f}
      1. Feminine plural form of abrogativo
      -Category:Italian adjective forms>>> +>>> ===abusive=== HtmlEntry: abusive <<<

      Adjective

      abusive {f}
      1. Feminine plural form of abusivo
      -Category:Italian adjective forms---->>> +---->>> ===acacia=== HtmlEntry: acacia <<<

      Noun

      @@ -226,7 +226,7 @@ HtmlEntry: acclimate <<<

      Anagrams

      • malaticce
      -Category:Italian past participle formsCategory:Italian verb forms>>> +>>> ===acclive=== HtmlEntry: acclive <<<

      Adjective

      @@ -249,7 +249,7 @@ HtmlEntry: accresce <<< accresce
      1. {{conjugation of|accrescere|3|s|pres|ind|lang=it}}
      -Category:Italian verb forms---->>> +---->>> ===accurate=== HtmlEntry: accurate <<<

      Adjective

      @@ -271,7 +271,7 @@ HtmlEntry: AD <<<

      Anagrams

      • da, da', dà
      -Category:Italian initialisms---->>> +---->>> ===Afghanistan=== HtmlEntry: Afghanistan <<<{{wikipedia|lang=it}}

      Pronunciation

      @@ -290,7 +290,7 @@ HtmlEntry: Afghanistan <<<{{wikipedia|lang=it}}

      Derived terms

      • afgano, afghano
      -Category:Italian proper nounsCategory:it:Countries---->>> +---->>> ===Albania=== HtmlEntry: Albania <<<{{wikipedia|lang=it}}

      Pronunciation

      @@ -305,7 +305,7 @@ HtmlEntry: Albania <<<{{wikipedia|lang=it}}

      Derived terms

      • albanese
      -Category:it:Countries---->>> +---->>> ===Algeria=== HtmlEntry: Algeria <<<{{wikipedia|lang=it}}

      Pronunciation

      @@ -325,7 +325,7 @@ HtmlEntry: Algeria <<<{{wikipedia|lang=it}}
      • regalai
      • regalia
      -Category:it:Countries>>> +>>> ===andante=== HtmlEntry: andante <<<

      Verb

      @@ -353,7 +353,7 @@ HtmlEntry: Andorra <<<{{wikipedia|lang=it}}

      Derived terms

      • andorrano
      -Category:it:Countries---->>> +---->>> ===Angola=== HtmlEntry: Angola <<<{{wikipedia|lang=it}}

      Pronunciation

      @@ -368,7 +368,7 @@ HtmlEntry: Angola <<<{{wikipedia|lang=it}}

      Derived terms

      • angolano
      -Category:Italian proper nounsCategory:it:Countries---->>> +---->>> ===aquila=== HtmlEntry: aquila <<<

      Etymology

      @@ -397,7 +397,7 @@ From the {{etyl|la|it}} {{term|aquila|lang=la}}.
    • aquila spiegata
    • aquila urlatrice
    -{bottom}Category:it:Birds---->>> +{bottom}---->>> ===are=== HtmlEntry: are <<<

    Noun

    @@ -428,7 +428,7 @@ HtmlEntry: Argentina <<<
  • ingranate
  • rinnegata
  • -Category:it:Countries---->>> +---->>> ===aria=== HtmlEntry: aria <<<{{wikipedia|lang=it}}

    Etymology

    @@ -493,7 +493,7 @@ HtmlEntry: Armenia <<<{{wikipedia|lang=it}}
  • maniera
  • mariane
  • -Category:it:CountriesCategory:it:Exonyms---->>> +---->>> ===Austria=== HtmlEntry: Austria <<<{{wikipedia|lang=it}}

    Pronunciation

    @@ -514,7 +514,7 @@ HtmlEntry: Austria <<<{{wikipedia|lang=it}}
  • saturai
  • Taurasi
  • -Category:it:CountriesCategory:it:Exonyms---->>> +---->>> ===avatar=== HtmlEntry: avatar <<<

    Noun

    @@ -532,7 +532,7 @@ HtmlEntry: Bahrain <<<{{wikipedia|lang=it}} {{head|it|proper noun|g=m}}
    1. {{l|en|Bahrain}}
    -Category:it:Countries---->>> +---->>> ===Bangladesh=== HtmlEntry: Bangladesh <<<{{wikipedia|lang=it}}

    Proper noun

    @@ -544,7 +544,7 @@ HtmlEntry: Bangladesh <<<{{wikipedia|lang=it}}
    • bengalese
    • bengali
    -Category:it:Countries---->>> +---->>> ===BCE=== HtmlEntry: BCE <<<

    Etymology

    @@ -568,7 +568,7 @@ HtmlEntry: bone <<< bone {f}
    1. {{form of|Feminine plural form|bono}}
    -Category:Italian adjective forms---->>> +---->>> ===Bulgaria=== HtmlEntry: Bulgaria <<<{{wikipedia|lang=it}}

    Pronunciation

    @@ -583,7 +583,7 @@ HtmlEntry: Bulgaria <<<{{wikipedia|lang=it}}

    Related terms

    • bulgaro
    -Category:it:Countries---->>> +---->>> ===Burundi=== HtmlEntry: Burundi <<<{{wikipedia|lang=it}}

    Proper noun

    @@ -594,7 +594,7 @@ HtmlEntry: Burundi <<<{{wikipedia|lang=it}}

    Derived terms

    • burundese
    -Category:it:Countries---->>> +---->>> ===can=== HtmlEntry: can <<<

    Noun

    @@ -682,7 +682,7 @@ HtmlEntry: crude <<<

    Anagrams

    • curde
    -Category:Italian adjective forms---->>> +---->>> ===date=== HtmlEntry: date <<<

    Noun

    @@ -696,7 +696,7 @@ HtmlEntry: date <<<
  • second-person plural imperative of dare
  • feminine plural of dato, past participle of dare
  • -Category:Italian past participle formsCategory:Italian verb forms---->>> +---->>> ===de=== HtmlEntry: de <<<

    Contraction

    @@ -738,7 +738,7 @@ HtmlEntry: decade <<<

    Anagrams

    • deceda
    -Category:Italian verb formsCategory:it:Time---->>> +---->>> ===deficit=== HtmlEntry: deficit <<<

    Etymology

    @@ -780,14 +780,14 @@ HtmlEntry: Estonia <<<{{wikipedia|lang=it}}
  • esitano
  • soniate
  • -Category:it:CountriesCategory:it:Exonyms---->>> +---->>> ===euro=== HtmlEntry: euro <<<{{wikipedia|lang=it}}

    Noun

    {{it-noun|eur|m|o|o}}
    1. euro {{gloss|currency}}
    -Category:it:Currency---->>> +---->>> ===f=== HtmlEntry: f <<<

    Noun

    @@ -922,7 +922,7 @@ Reduced form of {{term|gli|lang=it}}.<ref>{{reference-book| last = Patota

    References

    -<references/>Category:it:Latin letter names---->>> +<references/>---->>> ===in=== HtmlEntry: in <<<

    Pronunciation

    @@ -956,7 +956,7 @@ HtmlEntry: Iraq <<<{{wikipedia|lang=it}}

    Derived terms

    • iracheno
    -Category:it:Countries---->>> +---->>> ===langue=== HtmlEntry: langue <<<

    Verb

    @@ -967,7 +967,7 @@ HtmlEntry: langue <<<

    Anagrams

    • lagune
    -Category:Italian verb forms---->>> +---->>> ===lente=== HtmlEntry: lente <<<

    Etymology 1

    @@ -1179,7 +1179,7 @@ HtmlEntry: osteo- <<< osteo-
    1. {{anatomy|lang=it}} osteo-
    -Category:Italian prefixes>>> +>>> ===parole=== HtmlEntry: parole <<<

    Pronunciation

    @@ -1235,7 +1235,7 @@ From {{etyl|la|it}} {{term|pensum|lang=la}}.

    Anagrams

    • pose
    -Category:Italian verb forms---->>> +---->>> ===pie=== HtmlEntry: pie <<<

    Adjective

    @@ -1246,7 +1246,7 @@ HtmlEntry: pie <<<

    Anagrams

    • pei
    -Category:Italian adjective forms---->>> +---->>> ===premature=== HtmlEntry: premature <<<

    Adjective

    @@ -1257,7 +1257,7 @@ HtmlEntry: premature <<<

    Anagrams

    • premurate
    -Category:Italian adjective forms>>> +>>> ===pseudo-=== HtmlEntry: pseudo- <<<

    Prefix

    @@ -1271,7 +1271,7 @@ HtmlEntry: qualitative <<< qualitative {f}
    1. Feminine plural form of qualitativo
    -Category:Italian adjective forms>>> +>>> ===quiz=== HtmlEntry: quiz <<<

    Noun

    @@ -1326,7 +1326,7 @@ Borrowed from {{etyl|la|it}} radius.
  • rioda
  • rodai
  • -Category:Italian nouns with irregular genderCategory:it:Chemical elements---->>> +---->>> ===rape=== HtmlEntry: rape <<<

    Pronunciation

    @@ -1356,7 +1356,7 @@ HtmlEntry: relegate <<<
  • {{conjugation of|relegare|2|p|imp|lang=it}}
  • {{form of|Feminine plural|relegato}}
  • -Category:Italian past participle formsCategory:Italian verb forms---->>> +---->>> ===robot=== HtmlEntry: robot <<<

    Noun

    @@ -1391,7 +1391,7 @@ From {{etyl|la|it}} sabbatum, from {{etyl|grc|it}} {{term|σάββατ

    Anagrams

    • basato, sabota
    -Category:it:Days of the week>>> +>>> ===seme=== HtmlEntry: seme <<<{{wikipedia|lang=it}}

    Pronunciation

    @@ -1476,7 +1476,7 @@ HtmlEntry: transfinite <<< transfinite {f}
    1. Feminine plural form of transfinito
    -Category:Italian adjective forms>>> +>>> ===transitive=== HtmlEntry: transitive <<<

    Adjective

    @@ -1487,7 +1487,7 @@ HtmlEntry: transitive <<<

    Anagrams

    • {{l|it|intervista}}, {{l|it|intestarvi}}, {{l|it|intraviste}}, {{l|it|rinvestita}}, {{l|it|rinvitaste}}, {{l|it|strinatevi}}, {{l|it|vetrinista}}
    -Category:Italian adjective forms---->>> +---->>> ===Tunisia=== HtmlEntry: Tunisia <<<{{wikipedia|lang=it}}

    Proper noun

    @@ -1498,7 +1498,7 @@ HtmlEntry: Tunisia <<<{{wikipedia|lang=it}}

    Derived terms

    • tunisino
    -Category:Italian proper nounsCategory:it:Countries---->>> +---->>> ===wireless=== HtmlEntry: wireless <<<

    Etymology

    @@ -1549,7 +1549,7 @@ HtmlEntry: zero <<<{{cardinalbox|it|0|1|uno|ord=zeresimo}}

    See also

    • Appendix:Italian numbers
    -Category:Italian cardinal numbers---->>> +---->>> Index: EN EN->IT -- 2.43.0