Skip to content
Snippets Groups Projects
Commit 4666d9af authored by Alexander Schwinn's avatar Alexander Schwinn
Browse files

Use wording "queued" instead of "frozen" for jobs (Issue #511)

parent 0683c2e2
No related branches found
No related tags found
No related merge requests found
......@@ -571,7 +571,7 @@ thunar_progress_view_frozen (ThunarProgressView *view,
/* update the UI */
gtk_widget_hide (view->pause_button);
gtk_widget_show (view->unpause_button);
gtk_label_set_text (GTK_LABEL (view->progress_label), _("Frozen by another job on same device"));
gtk_label_set_text (GTK_LABEL (view->progress_label), _("Job queued"));
}
}
......@@ -590,7 +590,7 @@ thunar_progress_view_unfrozen (ThunarProgressView *view,
/* update the UI */
gtk_widget_hide (view->unpause_button);
gtk_widget_show (view->pause_button);
gtk_label_set_text (GTK_LABEL (view->progress_label), _("Unfreezing..."));
gtk_label_set_text (GTK_LABEL (view->progress_label), _("Resuming job ..."));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment