stable-diffusion-webui/modules/localization.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
951 B
Python
Raw Normal View History

2022-10-17 12:15:32 -06:00
import json
import os
from modules import errors, scripts
2022-10-17 12:15:32 -06:00
localizations = {}
def list_localizations(dirname):
localizations.clear()
for file in os.listdir(dirname):
fn, ext = os.path.splitext(file)
if ext.lower() != ".json":
continue
localizations[fn] = os.path.join(dirname, file)
for file in scripts.list_scripts("localizations", ".json"):
fn, ext = os.path.splitext(file.filename)
localizations[fn] = file.path
2022-10-17 12:15:32 -06:00
def localization_js(current_localization_name: str) -> str:
2022-10-17 12:15:32 -06:00
fn = localizations.get(current_localization_name, None)
data = {}
if fn is not None:
try:
with open(fn, "r", encoding="utf8") as file:
data = json.load(file)
except Exception:
errors.report(f"Error loading localization from {fn}", exc_info=True)
2022-10-17 12:15:32 -06:00
return f"window.localization = {json.dumps(data)}"