mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-27 19:01:02 +00:00
Localization update (#12572)
* Update OrcaSlicer_es.po * ? added in code * Spanish Update * save your filament profile. * Downward machines settings * type and color. * Update OrcaSlicer_es.po * illegal characters * which layer being ironed. * Update OrcaSlicer_es.po * by chosen filament count." * unnecessary bridges." * Update OrcaSlicer_es.po * Spanish Pressure advance restore * bandeja -> cama * RU: Restore Pressure Advance * Calibration text Co-Authored-By: Felix14_v2 <75726196+Felix14-v2@users.noreply.github.com> * Updated Localization * Input Shaping test * Suggestion wrapper * Added embossJob * Updated all * Emboss missing marks * Missing preset values * Action Required --------- Co-authored-by: Felix14_v2 <75726196+Felix14-v2@users.noreply.github.com> Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
co-authored by
Felix14_v2
SoftFever
parent
d8f3950059
commit
ee52b83217
@@ -299,7 +299,7 @@ CreateObjectJob::CreateObjectJob(DataCreateObject &&input): m_input(std::move(in
|
||||
void CreateObjectJob::process(Ctl &ctl)
|
||||
{
|
||||
if (!check(m_input))
|
||||
throw JobException("Bad input data for EmbossCreateObjectJob.");
|
||||
throw JobException(_u8L("Bad input data for EmbossCreateObjectJob."));
|
||||
|
||||
// can't create new object with using surface
|
||||
if (m_input.base->shape.projection.use_surface)
|
||||
@@ -398,13 +398,13 @@ UpdateJob::UpdateJob(DataUpdate&& input): m_input(std::move(input)){ assert(chec
|
||||
void UpdateJob::process(Ctl &ctl)
|
||||
{
|
||||
if (!check(m_input))
|
||||
throw JobException("Bad input data for EmbossUpdateJob.");
|
||||
throw JobException(_u8L("Bad input data for EmbossUpdateJob."));
|
||||
|
||||
auto was_canceled = ::was_canceled(ctl, *m_input.base);
|
||||
m_result = ::try_create_mesh(*m_input.base, was_canceled);
|
||||
if (was_canceled()) return;
|
||||
if (m_result.its.empty())
|
||||
throw JobException("Created text volume is empty. Change text or font.");
|
||||
throw JobException(_u8L("Created text volume is empty. Change text or font."));
|
||||
}
|
||||
|
||||
void UpdateJob::finalize(bool canceled, std::exception_ptr &eptr)
|
||||
@@ -462,7 +462,7 @@ CreateSurfaceVolumeJob::CreateSurfaceVolumeJob(CreateSurfaceVolumeData &&input)
|
||||
|
||||
void CreateSurfaceVolumeJob::process(Ctl &ctl) {
|
||||
if (!check(m_input))
|
||||
throw JobException("Bad input data for CreateSurfaceVolumeJob.");
|
||||
throw JobException(_u8L("Bad input data for CreateSurfaceVolumeJob."));
|
||||
m_result = cut_surface(*m_input.base, m_input, was_canceled(ctl, *m_input.base));
|
||||
}
|
||||
|
||||
@@ -484,7 +484,7 @@ UpdateSurfaceVolumeJob::UpdateSurfaceVolumeJob(UpdateSurfaceVolumeData &&input)
|
||||
void UpdateSurfaceVolumeJob::process(Ctl &ctl)
|
||||
{
|
||||
if (!check(m_input))
|
||||
throw JobException("Bad input data for UseSurfaceJob.");
|
||||
throw JobException(_u8L("Bad input data for UseSurfaceJob."));
|
||||
m_result = cut_surface(*m_input.base, m_input, was_canceled(ctl, *m_input.base));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user