Skip to content

Commit

Permalink
Rename global en-us reference base file symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
NCBM authored and DetachHead committed Aug 31, 2024
1 parent 3fa9db3 commit 07806f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions based_build/localization_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def get_locfile(language: str = "en-us"):
return LOCFILES_BASE / f"package.nls.{language}.json"


with get_locfile().open(encoding="utf8") as f:
LOCDATA_EN_US: dict[str, LocMessages] = json.load(f)
with get_locfile().open(encoding="utf8") as compare_base:
LOCDATA_EN_US: dict[str, LocMessages] = json.load(compare_base)


def diff_keys(orig: dict[str, Any], comp: dict[str, Any]):
Expand Down

0 comments on commit 07806f8

Please sign in to comment.