Fix english strings consistency (#8881)

* "non zero" -> "non-zero"

* "Z hop" -> "Z-hop"

* "works" -> "is working"

* "version at least x" -> "version x or higher"

* "printing job" -> "print job"
"to print on" -> "printing on"

* "is not find" -> "was not found"

* "boundary of plate" -> "plate boundaries"

* "toolchange" -> "tool change"

* "colour" -> "color"

* "cancelled" -> "canceled"

* "can not" -> "cannot"

* "gcode" -> "G-code"
This commit is contained in:
Alexandre Folle de Menezes
2025-04-26 08:59:49 -03:00
committed by GitHub
parent e787666605
commit d37f1b6a81
64 changed files with 6118 additions and 7409 deletions

View File

@@ -2343,7 +2343,7 @@ void GCodeViewer::load_toolpaths(const GCodeProcessorResult& gcode_result, const
static const unsigned int progress_threshold = 1000;
//BBS: add only gcode mode
ProgressDialog * progress_dialog = m_only_gcode_in_preview ?
new ProgressDialog(_L("Loading G-codes"), "...",
new ProgressDialog(_L("Loading G-code"), "...",
100, wxGetApp().mainframe, wxPD_AUTO_HIDE | wxPD_APP_MODAL) : nullptr;
wxBusyCursor busy;
@@ -5503,7 +5503,7 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv
}
}
}
// Custom g-code overview
// Custom G-code overview
std::vector<CustomGCode::Item> custom_gcode_per_print_z = wxGetApp().is_editor() ?
wxGetApp().plater()->model().get_curr_plate_custom_gcodes().gcodes :
m_custom_gcode_per_print_z;
@@ -5511,13 +5511,13 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv
float max_len = window_padding + 2 * ImGui::GetStyle().ItemSpacing.x;
ImGui::Spacing();
// Title Line
std::string cgcode_title_str = _u8L("Custom g-code");
std::string cgcode_title_str = _u8L("Custom G-code");
std::string cgcode_layer_str = _u8L("Layer");
std::string cgcode_time_str = _u8L("Time");
// Types of custom gcode
std::string cgcode_pause_str = _u8L("Pause");
std::string cgcode_template_str= _u8L("Template");
std::string cgcode_toolchange_str = _u8L("ToolChange");
std::string cgcode_toolchange_str = _u8L("Tool Change");
std::string cgcode_custom_str = _u8L("Custom");
std::string cgcode_unknown_str = _u8L("Unknown");