mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-13 13:45:46 -04:00
FullscreenUI: Allow changing UI language
This commit is contained in:
@ -81,7 +81,7 @@ def get_pairs(tokens):
|
||||
with open(dst_file, "r") as f:
|
||||
original = f.read()
|
||||
updated = re.sub(out_pattern, "\\1 " + get_pairs(tokens) + " \\2", original)
|
||||
updated = re.sub(out_pf_pattern, "\\1 " + get_pairs(pf_tokens) + " \\2", original)
|
||||
updated = re.sub(out_pf_pattern, "\\1 " + get_pairs(pf_tokens) + " \\2", updated)
|
||||
if original != updated:
|
||||
with open(dst_file, "w") as f:
|
||||
f.write(updated)
|
||||
|
Reference in New Issue
Block a user