Fix casing issues on the original english strings (#9513)

* Use lowercase after comma

* Use uppercase after period
This commit is contained in:
Alexandre Folle de Menezes 2025-06-01 08:31:55 -03:00 committed by GitHub
parent be7312f153
commit a2f87dc980
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 431 additions and 522 deletions

View file

@ -378,7 +378,7 @@ void MediaPlayCtrl::Stop(wxString const &msg, wxString const &msg2)
else if (m_failed_code) {
auto iter = error_messages.find(m_failed_code);
auto msg2 = iter == error_messages.end()
? _L("Please check the network and try again, You can restart or update the printer if the issue persists.")
? _L("Please check the network and try again. You can restart or update the printer if the issue persists.")
: _L(iter->second.c_str());
if (m_failed_code == 1) {
if (m_last_state == wxMEDIASTATE_PLAYING)