localize window names

This commit is contained in:
tildearrow 2024-05-27 17:53:46 -05:00
parent 5f16edd0df
commit 3197e73b2c
36 changed files with 44 additions and 44 deletions

View file

@ -29,7 +29,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) {
nextWindow=GUI_WINDOW_NOTHING;
}
if (!songInfoOpen && !asChild) return;
bool began=asChild?ImGui::BeginChild("Song Info##Song Information"):ImGui::Begin("Song Info##Song Information",&songInfoOpen,globalWinFlags);
bool began=asChild?ImGui::BeginChild("Song Info##Song Information"):ImGui::Begin("Song Info##Song Information",&songInfoOpen,globalWinFlags,_("Song Info##Song Information"));
if (began) {
if (ImGui::BeginTable("NameAuthor",2,ImGuiTableFlags_SizingStretchProp)) {
ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,0.0);