Use forward-slash (/) for path separator in translation files

The lstrip (left trim) call is to make sure that there are no slashes at the beginning of file paths.
This commit is contained in:
Muhammad Rifqi Priyo Susanto 2024-02-21 19:00:00 +07:00 committed by sfan5
parent 0d4b489545
commit 87fa4de59c
1 changed files with 1 additions and 0 deletions

View File

@ -425,6 +425,7 @@ def generate_template(folder, mod_name):
sources = sorted(list(sources), key=str.lower)
newSources = []
for i in sources:
i = "/".join(os.path.split(i)).lstrip("/")
newSources.append(f"{symbol_source_prefix} {i} {symbol_source_suffix}")
dOut[d] = newSources