Skip to content

Commit 8d8e6e4

Browse files
committed
Separated volume keybind labels for translations
1 parent d6937e8 commit 8d8e6e4

File tree

6 files changed

+10
-2
lines changed

6 files changed

+10
-2
lines changed
-69 KB
Binary file not shown.

assets/languages/en/Options.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
</group>
5151

5252
<str id="category.volume">Volume</str>
53+
<str id="volume.up">Up</str>
54+
<str id="volume.down">Down</str>
5355
<str id="volume.mute">Mute</str>
5456

5557
<str id="category.developer">Developer</str>

assets/languages/es/Options.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949
</group>
5050

5151
<str id="category.volume">Volumen</str>
52+
<str id="volume.up">Arriba</str>
53+
<str id="volume.down">Abajo</str>
5254
<str id="volume.mute">mutear</str>
5355

5456
<str id="category.developer">Desarrollador</str>

assets/languages/it/Options.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848
<str id="switchMod">Cambia Mod</str>
4949
</group>
5050

51+
<str id="volume.up">Su</str>
52+
<str id="volume.down">Giù</str>
5153
<str id="volume.mute">Muto</str>
5254

5355
<str id="category.developer">Sviluppatore</str>

assets/languages/pl/Options.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
</group>
4747

4848
<str id="category.volume">Głośność</str>
49+
<str id="volume.up">Głóśniej</str>
50+
<str id="volume.down">Ciszej</str>
4951
<str id="volume.mute">Wycisz</str>
5052

5153
<str id="category.developer">Deweloper</str>

source/funkin/options/keybinds/KeybindsOptions.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ class KeybindsOptions extends MusicBeatSubstate {
103103
name: translate("category.volume"),
104104
settings: [
105105
{
106-
name: translate("up"),
106+
name: translate("volume.up"),
107107
control: 'VOLUME_UP'
108108
},
109109
{
110-
name: translate("down"),
110+
name: translate("volume.down"),
111111
control: 'VOLUME_DOWN'
112112
},
113113
{

0 commit comments

Comments
 (0)