mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-08 14:19:00 +08:00
ENH: Optimize the copywriting when exporting presets
Jira: XXXX Change-Id: I9a7a0cf4ccb040dcfbecd242f54e6aea0f81bf86
This commit is contained in:
parent
c413945186
commit
7e53322477
@ -3298,10 +3298,10 @@ void CreatePresetSuccessfulDialog::on_dpi_changed(const wxRect &suggested_rect)
|
||||
}
|
||||
|
||||
ExportConfigsDialog::ExportConfigsDialog(wxWindow *parent)
|
||||
: DPIDialog(parent ? parent : nullptr, wxID_ANY, _L("Export Configs"), wxDefaultPosition, wxDefaultSize, wxCAPTION | wxCLOSE_BOX)
|
||||
: DPIDialog(parent ? parent : nullptr, wxID_ANY, _L("Export Preset Bundle"), wxDefaultPosition, wxDefaultSize, wxCAPTION | wxCLOSE_BOX)
|
||||
{
|
||||
m_exprot_type.preset_bundle = _L("Printer config bundle(.bbscfg)");
|
||||
m_exprot_type.filament_bundle = _L("Filament bundle(.bbsflmt)");
|
||||
m_exprot_type.preset_bundle = _L("Printer preset bundle(.bbscfg)");
|
||||
m_exprot_type.filament_bundle = _L("Filament preset bundle(.bbsflmt)");
|
||||
m_exprot_type.printer_preset = _L("Printer presets(.zip)");
|
||||
m_exprot_type.filament_preset = _L("Filament presets(.zip)");
|
||||
m_exprot_type.process_preset = _L("Process presets(.zip)");
|
||||
|
@ -2398,7 +2398,7 @@ void MainFrame::init_menubar_as_editor()
|
||||
[this](wxCommandEvent&) { if (m_plater) m_plater->export_gcode(false); }, "menu_export_gcode", nullptr,
|
||||
[this]() {return can_export_gcode(); }, this);
|
||||
append_menu_item(
|
||||
export_menu, wxID_ANY, _L("Export &Configs") + dots /* + "\tCtrl+E"*/, _L("Export current configuration to files"),
|
||||
export_menu, wxID_ANY, _L("Export Preset Bundle") + dots /* + "\tCtrl+E"*/, _L("Export current configuration to files"),
|
||||
[this](wxCommandEvent &) { export_config(); },
|
||||
"menu_export_config", nullptr,
|
||||
[]() { return true; }, this);
|
||||
|
Loading…
x
Reference in New Issue
Block a user