From 47e1445a67bcf4fa49303ddb3d3d6019a7d410d5 Mon Sep 17 00:00:00 2001 From: Oleg Krasilnikov Date: Mon, 12 Mar 2007 16:29:24 +0000 Subject: [PATCH] Bug 177011] NLS33:label truncations and un-externalized strings on C/C++ Prefs pages --- .../src/org/eclipse/cdt/ui/newui/BinaryParsTab.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/BinaryParsTab.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/BinaryParsTab.java index 8e1c131a5ed..70ba4da0d53 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/BinaryParsTab.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/BinaryParsTab.java @@ -109,7 +109,7 @@ public class BinaryParsTab extends AbstractCPropertyTab { PlatformUI.getWorkbench().getHelpSystem().setHelp(usercomp, ICHelpContextIds.BINARY_PARSER_PAGE); usercomp.setLayout(new GridLayout(2, false)); - setupLabel(usercomp, "Binary parser :", 2, GridData.FILL_HORIZONTAL); //$NON-NLS-1$ + setupLabel(usercomp, NewUIMessages.getResourceString("BinaryParsTab.0"), 2, GridData.FILL_HORIZONTAL); //$NON-NLS-1$ table = new Table(usercomp, SWT.BORDER | SWT.CHECK | SWT.SINGLE); table.setLayoutData(new GridData(GridData.FILL_BOTH)); table.addSelectionListener(new SelectionAdapter() {