diff options
author | 0neGal <mail@0negal.com> | 2023-02-02 16:32:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 16:32:38 +0100 |
commit | 2e655b7ee5a9ad66e64dee94c8e22ad800ef38e2 (patch) | |
tree | 43f63f4831fd31503bca50494869eabf6dc1ba4c /src/app/js/mods.js | |
parent | 4703574ebf54e269c19a0c4c8a5061e35b9727c6 (diff) | |
parent | 195319b09a18c2dcc0885950dfba622ade645acd (diff) | |
download | Viper-2e655b7ee5a9ad66e64dee94c8e22ad800ef38e2.tar.gz Viper-2e655b7ee5a9ad66e64dee94c8e22ad800ef38e2.zip |
Merge pull request #171 from 0neGal/modlist-localization
feat: Localize revamped modlist
Diffstat (limited to 'src/app/js/mods.js')
-rw-r--r-- | src/app/js/mods.js | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/app/js/mods.js b/src/app/js/mods.js index c80221b..fd900a2 100644 --- a/src/app/js/mods.js +++ b/src/app/js/mods.js @@ -35,10 +35,18 @@ mods.load = (mods_obj) => { <div class="title">${mod.Name}</div> <div class="description">${mod.Description}</div> <button class="switch on orange"></button> - <button class="update bg-blue">${lang("gui.browser.update")}</button> - <button class="bg-red" onclick="mods.remove('${mod.Name}')">Remove</button> + <button class="update bg-blue"> + ${lang("gui.browser.update")} + </button> + <button class="bg-red" onclick="mods.remove('${mod.Name}')"> + ${lang("gui.mods.remove")} + </button> + <button class="visual">${mod.Version}</button> - <button class="visual">by ${mod.Author || "Unknown"}</button> + <button class="visual"> + ${lang("gui.browser.madeby")} + ${mod.Author || lang("gui.mods.unknown_author")} + </button> </div> `; |