Add files via upload

This commit is contained in:
RVC-Boss 2024-02-03 00:47:57 +08:00 committed by GitHub
parent dba1a74ccb
commit 9286a27ad3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,9 @@ special = [
def clean_text(text, language):
if(language not in language_module_map):
language="en"
text=" "
for special_s, special_l, target_symbol in special:
if special_s in text and language == special_l:
return clean_special(text, language, special_s, target_symbol)