forked from Mirrorlandia_minetest/minetest
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:
parent
0d4b489545
commit
87fa4de59c
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user