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::drawNotes() {
nextWindow=GUI_WINDOW_NOTHING;
}
if (!notesOpen) return;
if (ImGui::Begin("Song Comments",&notesOpen,globalWinFlags)) {
if (ImGui::Begin("Song Comments",&notesOpen,globalWinFlags,_("Song Comments"))) {
if (ImGui::InputTextMultiline("##SongNotes",&e->song.notes,ImGui::GetContentRegionAvail(),ImGuiInputTextFlags_UndoRedo)) {
MARK_MODIFIED;
}