Skip to content

Commit

Permalink
* Make strings avialable for i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Bezborodov committed Oct 30, 2024
1 parent 230aa1c commit f41848f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions LiteEditor/BuildTab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ void BuildTab::OnBuildStarted(clBuildEvent& e)
clDEBUG() << "Compiler not selected in the workspace build settings or not available" << endl;

// toolchain not selected in build configuration or unavailable
m_view->AppendItem(wxT("\n"));
m_view->AppendItem(WrapLineInColour(wxT("> WARNING: No toolchain selected. Build log highlighting will not be available!\n"), AnsiColours::Yellow()));
m_view->AppendItem(WrapLineInColour(wxT(" Check toolchain properly selected in the workspace build settings.\n"), AnsiColours::Yellow()));
m_view->AppendItem(wxT("\n"));
m_view->AppendItem(_("\n"));
m_view->AppendItem(WrapLineInColour(_("> WARNING: No toolchain selected. Build log highlighting will not be available!\n"), AnsiColours::Yellow()));
m_view->AppendItem(WrapLineInColour(_(" Check toolchain properly selected in the workspace build settings.\n"), AnsiColours::Yellow()));
m_view->AppendItem(_("\n"));
}

// notify the plugins that the build had started
Expand Down

0 comments on commit f41848f

Please sign in to comment.