10,735
edits
TheNightAvl (talk | contribs) No edit summary |
TheNightAvl (talk | contribs) No edit summary |
||
Line 5: | Line 5: | ||
-- %u = any language name (different to %l) | -- %u = any language name (different to %l) | ||
-- %c = any language code | -- %c = any language code | ||
-- %p = any part of speech | -- %p = any part of speech | ||
-- %s = any string | -- %s = any string | ||
------------------------- | ------------------------- | ||
Line 13: | Line 13: | ||
-- matched against first. | -- matched against first. | ||
------------------------- | ------------------------- | ||
local pos = { | |||
"adjectives", | |||
"adverbs", | |||
"articles", | |||
"conjunctions", | |||
"determiners", | |||
"interjections", | |||
"nouns", | |||
"numerals", | |||
"particles", | |||
"phrases", | |||
"postpositions", | |||
"prepositions", | |||
"pronouns", | |||
"proper nouns", | |||
"symbols", | |||
"verbs", | |||
} | |||
local cats = { | |||
-- Languages | -- Languages | ||
{"All languages", {"Fundamental"}}, | {"All languages", {"Fundamental"}}, | ||
Line 385: | Line 404: | ||
{"%l modules", {"Modules by language"}}, | {"%l modules", {"Modules by language"}}, | ||
} | } | ||
return cats, pos |