*** empty log message ***
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
index 865cb36..6deba16 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
@@ -378,7 +378,7 @@
 HistoryView.comment=Comment
 HistoryView.refreshLabel=&Refresh View
 HistoryView.refresh=Refresh View
-HistoryView.linkWithLabel=Link with &Editor
+HistoryView.linkWithLabel=Link with Editor
 HistoryView.selectAll=Select &All
 HistoryView.showComment=Show Comment Viewer
 HistoryView.showTags=Show Tag Viewer
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizard.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizard.java
index ff534a5..467bb4e 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizard.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizard.java
@@ -256,7 +256,7 @@
 	}
 
 	private boolean promptToKeepMapping() {
-		return (MessageDialog.openQuestion(getShell(), "Keep Sharing?", "Project {0} has been mapped to a remote module. Should this mapping be kept?" + project.getName()));
+		return (MessageDialog.openQuestion(getShell(), Policy.bind("SharingWizard.26"), Policy.bind("SharingWizard.27", project.getName()))); //$NON-NLS-1$ //$NON-NLS-2$
 	}
 
 	private void reconcileProject(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardSyncPage.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardSyncPage.java
index 63c9458..94a26a7 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardSyncPage.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardSyncPage.java
@@ -96,15 +96,15 @@
 	
 	private Control createNoChangesPage(PageBook pageBook) {
 		Composite composite = createComposite(pageBook, 1);
-		createWrappingLabel(composite, "The resources of project {0} are in-sync with the repository." + project.getName(), 0);
+		createWrappingLabel(composite, Policy.bind("SharingWizardSyncPage.3", project.getName()), 0); //$NON-NLS-1$
 		return composite;
 	}
 	
 	private Control createErrorPage(PageBook pageBook) {
 		Composite composite = createComposite(pageBook, 1);
-		createWrappingLabel(composite, "An error has occurred populating this view.", 0);
+		createWrappingLabel(composite, Policy.bind("SharingWizardSyncPage.4"), 0); //$NON-NLS-1$
 		Button showErrors = new Button(composite, SWT.PUSH);
-		showErrors.setText("Show Errors");
+		showErrors.setText(Policy.bind("SharingWizardSyncPage.5")); //$NON-NLS-1$
 		showErrors.addSelectionListener(new SelectionAdapter() {
 			public void widgetSelected(SelectionEvent e) {
 				showErrors();