FullscreenUI: More localization fixes

This commit is contained in:
Stenzek
2023-11-29 23:11:28 +10:00
parent 4ac4388b08
commit dfb27c14be
3 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,7 @@ with open(src_file, "r") as f:
full_source = f.read()
strings = set()
for token in ["FSUI_STR", "FSUI_CSTR", "FSUI_FSTR", "FSUI_NSTR", "FSUI_ICONSTR"]:
for token in ["FSUI_STR", "FSUI_CSTR", "FSUI_FSTR", "FSUI_NSTR", "FSUI_ICONSTR", "FSUI_VSTR"]:
token_len = len(token)
last_pos = 0
while True: