Wiktionary:Parsing:Translations

Hello, you have come here looking for the meaning of the word Wiktionary:Parsing:Translations. In DICTIOUS you will not only get to know all the dictionary meanings for the word Wiktionary:Parsing:Translations, but we will also tell you about its etymology, its characteristics and you will know how to say Wiktionary:Parsing:Translations in singular and plural. Everything you need to know about the word Wiktionary:Parsing:Translations you have here. The definition of the word Wiktionary:Parsing:Translations will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofWiktionary:Parsing:Translations, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

Basic EBNF grammar


translation-section   = entry , { entry } ;

entry                 = language-name , ":" , translations | translation-request ;

language-name         = plain-language-name | linked-language-name | special-language-name ;

plain-language-name   = letter-string ;

linked-language-name  = start-link , plain-language-name , end-link ;

special-language-name = start-ttbc , plain-language-name , end-ttbc ;

translations          = translation , { "," | ";" , translation } ;

translation-request   = start-trreq , plain-language-name , end-trreq ;

translation           = term ,  ,  ,  ;

term                  = plain-term | linked-term ;

plain-term            = letter-string ;

linked-term           = start-link , plain-term , end-link ;

inline-interwiki      = start-sup , "(" , language-code , ")" , end-sup ;

transliteration       = "(" , letter-string , ")" ;

gender                = "m" | "f" | "n" | "c" ,  ;

letter-string         = letter , { letter } ;

letter                = all letters in all scripts including han characters but excluding most punctuation

start-link
 (wikitext)           = "[[" ;
 (HTML/DOM)           = <a> ;

end-link
 (wikitext)           = "]]" ;
 (HTML/DOM)           = </a> ;

start-ttbc
 (wikitext)           = "{{ttbc|" ;
 (HTML/DOM)           = <span class="ttbc"> ;

end-ttbc
 (wikitext)           = "}}" ;
 (HTML/DOM)           = </span> ;

start-trreq
 (wikitext)           = "{{trreq|" ;
 (HTML/DOM)           = <span class="trreq"> ;

end-trreq
 (wikitext)           = "}}" ;
 (HTML/DOM)           = </span> ;

start-sup
 (HTML/DOM)           = <sup> ;

end-sup
 (HTML/DOM)           = </sup> ;