mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-26 18:31:11 +00:00
Fix misc. errors on GUI strings (#15468)
* Fix misc. errors on GUI strings * Adding context to single-letter unit strings * Fix duplicate strings on po files
This commit is contained in:
@@ -226,7 +226,7 @@ TroubleshootDialog::TroubleshootDialog()
|
||||
};
|
||||
|
||||
auto info_desc_1 = create_info_line(_L("We need information for diagnosing source of the issue. Check wiki page for detailed guide."));
|
||||
auto info_desc_2 = create_info_line(_L("Pack button collects project file and logs of current session onto a zip file."));
|
||||
auto info_desc_2 = create_info_line(_L("Pack button collects project file and logs of current session onto a ZIP archive."));
|
||||
auto info_desc_3 = create_info_line(_L("Any additional visual examples like images or screen recordings might be helpful while reporting the issue."));
|
||||
wxBoxSizer *info_desc_sizer = new wxBoxSizer(wxVERTICAL);
|
||||
info_desc_sizer->Add(info_desc_1, 0, wxEXPAND | wxBOTTOM, FromDIP(8));
|
||||
@@ -292,7 +292,7 @@ TroubleshootDialog::TroubleshootDialog()
|
||||
auto log_level_szr = create_label(_L("Log level"), "");
|
||||
log_level_szr->Add(create_item_log_level_combo(), 0, wxALIGN_CENTER_VERTICAL);
|
||||
|
||||
auto log_pack_szr = create_label(_L("Stored logs"), _L("Packs all stored logs onto a zip file."));
|
||||
auto log_pack_szr = create_label(_L("Stored logs"), _L("Packs all stored logs onto a ZIP archive."));
|
||||
auto log_pack_btn = create_btn(_L("Pack") + "...", "");
|
||||
log_pack_btn->Bind(wxEVT_BUTTON, [this](wxCommandEvent &e) {
|
||||
auto data_dir = boost::filesystem::path(Slic3r::data_dir());
|
||||
|
||||
Reference in New Issue
Block a user