mirror of
https://github.com/minetest/minetest.git
synced 2025-02-18 10:53:47 +01:00
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:
committed by
sfan5
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
|
||||
|
||||
|
Reference in New Issue
Block a user