Use better job labels

Job labels are visible in the progress view and status bar. They should
not contain the term "job", since that is an Eclipse internal technical
term which is not show anywhere else in the UI.

Change-Id: I1c1d2a061ad175001dde4eb8e44611d49bfff834
Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TasksUiPlugin.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TasksUiPlugin.java
index bb9702d..f902a8c 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TasksUiPlugin.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TasksUiPlugin.java
@@ -650,11 +650,11 @@
 			return;
 		}
 		// Use a UI job to ensure the UI has loaded
-		new UIJob("Credential Migration UI Job") { //$NON-NLS-1$
+		new UIJob("Credentials Migration") { //$NON-NLS-1$
 			@Override
 			public IStatus runInUIThread(IProgressMonitor monitor) {
 				// use a Job to ensure we do not access the secure store on the UI thread
-				new Job("Credential Migration") { //$NON-NLS-1$
+				new Job("Credentials Migration") { //$NON-NLS-1$
 					@Override
 					protected IStatus run(IProgressMonitor monitor) {
 						if (force) {
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskScheduleContentProvider.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskScheduleContentProvider.java
index be006dc..65b91f2 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskScheduleContentProvider.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskScheduleContentProvider.java
@@ -376,7 +376,7 @@
 	private class RolloverCheck extends Job {
 
 		public RolloverCheck() {
-			super("Calendar Rollover Job"); //$NON-NLS-1$
+			super("Calendar Rollover"); //$NON-NLS-1$
 		}
 
 		@Override