Rename local(s) to locale(s) (#1008)

This commit is contained in:
Henry Ruhs
2025-12-17 18:37:51 +01:00
committed by GitHub
parent 666c15f9da
commit a7f3de3dbc
16 changed files with 42 additions and 42 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
from facefusion import translator
from facefusion.locals import LOCALS
from facefusion.locales import LOCALES
def test_load() -> None:
translator.load(LOCALS, __name__)
translator.load(LOCALES, __name__)
assert __name__ in translator.LOCAL_POOL_SET
assert __name__ in translator.LOCALE_POOL_SET
def test_get() -> None: