From e6a9adabcb26892672eb9ce6e4bc1021511eefab Mon Sep 17 00:00:00 2001 From: Stone Li Date: Wed, 18 Oct 2023 10:42:03 +0800 Subject: [PATCH] ENH: fix a translation error JIRA: STUDIO-3997 Change-Id: I88cd74524deac72465833dfdc18e4c5905cb1a6c Signed-off-by: Stone Li --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 1cbe1b707..7360ced58 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1564,7 +1564,7 @@ void PrintConfigDef::init_fff_params() def = this->add("accel_to_decel_factor", coPercent); def->label = L("accel_to_decel"); - def->tooltip = L("Klipper's max_accel_to_decel will be adjusted to this % of acceleration"); + def->tooltip = L("Klipper's max_accel_to_decel will be adjusted to this percent of acceleration"); def->sidetext = L("%"); def->min = 1; def->max = 100;