[UPD] another table update and ня fix
This commit is contained in:
@@ -20,7 +20,7 @@ class NekoSpeakModule(loader.Module):
|
|||||||
new_words = []
|
new_words = []
|
||||||
for word in words:
|
for word in words:
|
||||||
if word.lower().startswith("н") and len(word) > 1:
|
if word.lower().startswith("н") and len(word) > 1:
|
||||||
word = "ня" + word[1:]
|
word = "ня" + word[2:]
|
||||||
new_words.append(word)
|
new_words.append(word)
|
||||||
text = " ".join(new_words)
|
text = " ".join(new_words)
|
||||||
|
|
||||||
@@ -43,7 +43,8 @@ class NekoSpeakModule(loader.Module):
|
|||||||
"хорошо":"мяу-ряско",
|
"хорошо":"мяу-ряско",
|
||||||
"плохо":"мяу-чалька",
|
"плохо":"мяу-чалька",
|
||||||
"пиздец":"Мря!",
|
"пиздец":"Мря!",
|
||||||
"блять":"Мяр!"
|
"блять":"Мяр!",
|
||||||
|
"замечательных":"замуррчательных"
|
||||||
}
|
}
|
||||||
for key, value in replacements.items():
|
for key, value in replacements.items():
|
||||||
text = text.replace(key, value)
|
text = text.replace(key, value)
|
||||||
|
|||||||
Reference in New Issue
Block a user