Module:lfv-IPA/affixes: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 11: | Line 11: | ||
"ympu", | "ympu", | ||
"añgi", | "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", | "sellens", | ||
"sell·ja", | |||
"sellji", | |||
"selljewa", | |||
"fiðent", | |||
"sênnent", | |||
} | } | ||
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
}