Localization : Next phrases corrections and update for PrusaSlicer.pot

This commit is contained in:
YuSanka 2020-11-06 11:47:28 +01:00
parent 8f31f404a3
commit 1492bc9cd5
6 changed files with 29 additions and 27 deletions

View file

@ -36,16 +36,16 @@ void GLGizmoPainterBase::activate_internal_undo_redo_stack(bool activate)
{
if (activate && ! m_internal_stack_active) {
wxString str = get_painter_type() == PainterGizmoType::FDM_SUPPORTS
? _L("Supports gizmo turned on")
: _L("Paint-on seams on");
? _L("Entering Paint-on supports")
: _L("Entering Seam painting");
Plater::TakeSnapshot(wxGetApp().plater(), str);
wxGetApp().plater()->enter_gizmos_stack();
m_internal_stack_active = true;
}
if (! activate && m_internal_stack_active) {
wxString str = get_painter_type() == PainterGizmoType::SEAM
? _L("Paint-on seams off")
: _L("Supports gizmo turned off");
? _L("Leaving Seam painting")
: _L("Leaving Paint-on supports");
wxGetApp().plater()->leave_gizmos_stack();
Plater::TakeSnapshot(wxGetApp().plater(), str);
m_internal_stack_active = false;