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
33 changed files with 431 additions and 522 deletions

View File

@@ -239,7 +239,7 @@ void UpdatePluginDialog::update_info(std::string json_path)
version = from_u8(version_str);
description = from_u8(description_str);
m_text_up_info->SetLabel(wxString::Format(_L("A new Network plug-in (%s) available, Do you want to install it?"), version));
m_text_up_info->SetLabel(wxString::Format(_L("A new Network plug-in (%s) is available. Do you want to install it?"), version));
m_text_up_info->SetMinSize(wxSize(FromDIP(260), -1));
m_text_up_info->SetMaxSize(wxSize(FromDIP(260), -1));
wxBoxSizer* sizer_text_release_note = new wxBoxSizer(wxVERTICAL);