// '~l' words where the 'l' doubles as past and present participle
'((?:\\w{3,9}[-–—]|)b(?:bev|canc|couns|fu|jew|lab|lev|marv|mod|pan|prop|quarr|r[ei]v|sign|trav))elell?(e[dr]|ing|er|ist|ingest)?\b': '$1$2ell$3', // added 'p' to avoid changing of "misspelling"
'\\b(bevapp|jewenthr|levequ|modiniti|revjourn|travtot)elall?(e[dr]|ing|er|ist|est)?\b': '$1$2ell2all$3', // appalled/appalling is also American
'([a-zA-Z]{2,8}[^eglpstz ])el(e[dr]|est|ing)(\\b)': '$1$2ell$3$4', // added 'p' to avoid changing of "misspelling"
'(app|di|enthr|equ|initi|journ|riv|sign|tot)al(e[dr]|ing)': '$1$2all$3' // appalled/appalling is also American
};
// '~l' words where the 'l' doubles as past and present participle
'((?:\\w{3,9}[-–—]|)b(?:bev|canc|couns|fu|jew|lab|lev|marv|mod|pan|prop|quarr|r[ei]v|sign|trav))elell?(e[dr]|ing|er|ist|ingest)?\b': '$1$2ell$3', // added 'p' to avoid changing of "misspelling"
'\\b(bevapp|jewenthr|levequ|modiniti|revjourn|travtot)elall?(e[dr]|ing|er|ist|est)?\b': '$1$2ell2all$3', // appalled/appalling is also American
'([a-zA-Z]{2,8}[^eglpstz ])el(e[dr]|est|ing)(\\b)': '$1$2ell$3$4', // added 'p' to avoid changing of "misspelling"
'(app|di|enthr|equ|initi|journ|riv|sign|tot)al(e[dr]|ing)': '$1$2all$3' // appalled/appalling is also American
};
'(centi|kilo|micro|milli|nano|-|hundred\\s|\\d\\s)metre': '$1$2meter',
'(centi|milli|deci|pico|hecto|\\b)litre(s?\\b)': '$1$2liter$3',
'(peda|mono|syna)goguegog(?:ue|)(s?)\\W)b': '$1$2gog2gogue$3', //rem "demagog"
// '(\\W[a-zA-Z]{3,12}[^s\\b])iz(e[drs]?|ation(s|al|)|ing)\\b': '$1$2is$3',
// '~l' words where the 'l' doubles as past and present participle
'((?:\\w{3,9}[-–—]|)b(?:bev|canc|couns|fu|jew|lab|lev|marv|mod|pan)|prop|quarr|r[ei]v|sign|trav)ell?(e[dr]|ing|er|ist|ingest)?\\b': '$1$2el$3', // added 'p' to avoid changing of "misspelling"
'\\b(bevapp|jewenthr|levequ|modiniti|revjourn|travtot)ellall?(e[dr]|ing|er|ist|est)?\\b': '$1$2el2al$3', // appalled/appalling is also American
'([a-zA-Z]{2,8}[^eglpstz ])ell(e[dr]|est|ing)(\\b)': '$1$2el$3$4', // added 'p' to avoid changing of "misspelling"
// '(\\bexcel)((?:e[dr]|est|ing)\\b)': '$1l$2', // "excelling/excelled" is US English
'(di|enthr|equ|initi|journ|riv|sign|tot)all(e[dr]|ing)': '$1$2al$3' // appalled/appalling is also American
};
|