Module:lfv-IPA/affixes: Difference between revisions
Jump to navigation
Jump to search
TheNightAvl (talk | contribs) No edit summary |
No edit summary |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
local prefixes = { --only for prefixes which engender secondary stress afterwards | local prefixes = { --only for prefixes which engender secondary stress afterwards | ||
"ompu", | |||
"impu", | |||
"jampu", | |||
"þempu", | |||
"fimpu", | |||
"lumpu", | |||
"ampu", | |||
"sômpu", | |||
"lampu", | |||
"ympu", | |||
"añgi", | |||
"ažži", | |||
} | } | ||
local suffixes = { --only for suffixes which engender secondary stress beforehand | local suffixes = { --only for suffixes which engender secondary stress beforehand | ||
"sellens", | |||
"sell·ja", | |||
"sellji", | |||
"selljewa", | |||
"fiðent", | |||
"sênnent", | |||
} | } | ||
table.sort(prefixes, function(a, b) return a > b end) | |||
table.sort(suffixes, function(a, b) return a > b end) | |||
return { | return { |
Latest revision as of 21:19, 1 August 2024
Data module for Laefevian affixes which inform automatic placement of secondary stress.
local prefixes = { --only for prefixes which engender secondary stress afterwards
"ompu",
"impu",
"jampu",
"þempu",
"fimpu",
"lumpu",
"ampu",
"sômpu",
"lampu",
"ympu",
"añgi",
"ažži",
}
local suffixes = { --only for suffixes which engender secondary stress beforehand
"sellens",
"sell·ja",
"sellji",
"selljewa",
"fiðent",
"sênnent",
}
table.sort(prefixes, function(a, b) return a > b end)
table.sort(suffixes, function(a, b) return a > b end)
return {
prefixes = prefixes,
suffixes = suffixes
}