Skip to content

Commit

Permalink
control: Do not set the formating part in translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
TurboGit committed Feb 24, 2025
1 parent 2c7cf5c commit 11dacee
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/control/control.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,11 @@ void dt_control_quit()

// We test pending jobs vs 1 as we always accept one DT_JOB_QUEUE_SYSTEM_FG job
if(dt_control_jobs_pending() > 1)
dt_control_log(_("<span foreground='#FF0000' background='#000000'>"
"darktable will be locked until background work has been done"
"</span>"));
{
dt_control_log("<span foreground='#FF0000' background='#000000'>%s</span>",
_("darktable will be locked until background work has been done"));
}

for(int i = 0; i < 50 && (dt_control_jobs_pending() > 1); i++)
{
g_usleep(100000);
Expand Down

0 comments on commit 11dacee

Please sign in to comment.