antigon-char

This commit is contained in:
Untone 2024-09-26 21:53:26 +03:00
parent 4068184a87
commit e4f867d64a

View File

@ -24,6 +24,20 @@ def normalize(text):
.replace('m', 'м')
.replace('u', 'и')
.replace('n', 'п')
.replace('p', 'р'))
.replace('p', 'р')
.replace('t', 'т')
.replace('y', 'у')
.replace('h', 'н')
.replace('p', 'р')
.replace('i', 'й')
.replace('c', 'с')
.replace('k', 'к')
.replace('b', 'в')
.replace('3', 'з')
.replace('4', 'ч')
.replace('0', 'о')
.replace('e', 'е')
.replace('d', 'д')
)
return text