Fixed missing i18n key

This commit is contained in:
Willem Cazander 2022-03-28 02:12:42 +02:00
parent e06fad0edd
commit 5b8e40be87

View file

@ -16,7 +16,6 @@ import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
import love.distributedrebirth.gdxapp4d.app.tosamp.music.MusicManager; import love.distributedrebirth.gdxapp4d.app.tosamp.music.MusicManager;
import love.distributedrebirth.gdxapp4d.app.tosamp.music.MusicSong; import love.distributedrebirth.gdxapp4d.app.tosamp.music.MusicSong;
import love.distributedrebirth.gdxapp4d.tos4.service.SystemWarpShip; import love.distributedrebirth.gdxapp4d.tos4.service.SystemWarpShip;
import love.distributedrebirth.gdxapp4d.vrgem4.FontAwesomeIcons;
import love.distributedrebirth.gdxapp4d.vrgem4.service.deskapp.AbstractDeskApp; import love.distributedrebirth.gdxapp4d.vrgem4.service.deskapp.AbstractDeskApp;
import love.distributedrebirth.gdxapp4d.vrgem4.service.deskapp.DeskAppContourSection; import love.distributedrebirth.gdxapp4d.vrgem4.service.deskapp.DeskAppContourSection;
import love.distributedrebirth.gdxapp4d.vrgem4.service.deskapp.DeskAppRenderer; import love.distributedrebirth.gdxapp4d.vrgem4.service.deskapp.DeskAppRenderer;
@ -71,7 +70,7 @@ public class TosAmpDeskApp extends AbstractDeskApp implements DeskAppRenderer {
} }
ImGui.separator(); ImGui.separator();
if (currentSong != null) { if (currentSong != null) {
if (ImGui.button(getTxt("play"))) { if (ImGui.button(getTxt("actionPlay"))) {
music.play(currentSong); music.play(currentSong);
} }
} else { } else {