mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 13:33:32 -04:00
games-util/input-remapper: 2.2.0: Fix translation file paths
Learned from current 9999 build, mo file installation path was missing LC_MESSAGES subfolder. Tested and working now. Signed-off-by: Erica Nebula <EricaNebula@Proton.me>
This commit is contained in:
17
games-util/input-remapper/files/fix-translations.patch
Normal file
17
games-util/input-remapper/files/fix-translations.patch
Normal file
@@ -0,0 +1,17 @@
|
||||
diff --git a/setup.py b/setup.py
|
||||
index bf9094b..baabcb9 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -80,10 +80,10 @@ def make_lang():
|
||||
os.makedirs("mo", exist_ok=True)
|
||||
for po_file in glob.glob(PO_FILES):
|
||||
lang = splitext(basename(po_file))[0]
|
||||
- os.makedirs(join("mo", lang), exist_ok=True)
|
||||
+ os.makedirs(join("mo", lang, "LC_MESSAGES"), exist_ok=True)
|
||||
print(f"generating translation for {lang}")
|
||||
subprocess.run(
|
||||
- ["msgfmt", "-o", join("mo", lang, "input-remapper.mo"), str(po_file)],
|
||||
+ ["msgfmt", "-o", join("mo", lang, "LC_MESSAGES", "input-remapper.mo"), str(po_file)],
|
||||
check=True,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user