File tree Expand file tree Collapse file tree
org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -310,6 +310,7 @@ public class DebugUIMessages extends NLS {
310310 public static String DetailFormatterDialog_Detail_formatter__code_snippet__1 ;
311311 public static String DetailFormatterDialog_17 ;
312312 public static String DetailFormatterPrimitiveSelect ;
313+ public static String DetailFormatterPrimitiveSelectionTitle ;
313314 public static String DetailFormatterPrimitiveSelectionLabel ;
314315
315316 public static String No_type_with_the_given_name_found_in_the_workspace__1 ;
Original file line number Diff line number Diff line change @@ -249,14 +249,15 @@ DetailFormatterDialog_Could_not_open_type_selection_dialog_for_detail_formatters
249249DetailFormatterDialog_Select_type_8 =Select Type
250250DetailFormatterDialog_Select_type_9 =Browse Type
251251DetailFormatterDialog_Select_type_10 =In order to browse a type, a project needs to be present and accessible.
252- DetailFormatterDialog_Select_a_type_to_format_when_displaying_its_detail_9 =&Select a type to format when displaying its detail :
252+ DetailFormatterDialog_Select_a_type_to_format_when_displaying_its_detail_9 =&Select a type to format when displaying its details :
253253DetailFormatterDialog_Edit_Detail_Formatter_1 =Edit Detail Formatter
254254DetailFormatterDialog_Add_Detail_Formatter_2 =Add Detail Formatter
255255DetailFormatterDialog_Associated_code_must_not_be_empty_3 =Detail formatter code snippet must not be empty
256256DetailFormatterDialog_Detail_formatter__code_snippet__1 =Detail formatter &code snippet:
257257DetailFormatterDialog_17 =Detail formatter &code snippet ({0} for code assist):
258- DetailFormatterPrimitiveSelect =Select primitives
259- DetailFormatterPrimitiveSelectionLabel =Choose a primitive
258+ DetailFormatterPrimitiveSelect =Select &Primitive...
259+ DetailFormatterPrimitiveSelectionTitle =Select Primitive
260+ DetailFormatterPrimitiveSelectionLabel =&Select a primitive or an array of primitives to format when displaying its details:
260261
261262No_type_with_the_given_name_found_in_the_workspace__1 =No type with the given name found in the workspace.
262263JavaDetailFormattersManager_Detail_formatter_error___1 =Detail formatter error:
Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ private void selectType() {
351351 private void selectPrimitiveType () {
352352 Shell shell = getShell ();
353353 ListDialog listDialog = new ListDialog (shell );
354- listDialog .setTitle (DebugUIMessages .DetailFormatterDialog_Select_type_8 );
354+ listDialog .setTitle (DebugUIMessages .DetailFormatterPrimitiveSelectionTitle );
355355 listDialog .setMessage (DebugUIMessages .DetailFormatterPrimitiveSelectionLabel );
356356 listDialog .setInput (getPrimitiveTypes ().toArray ());
357357 listDialog .setContentProvider (ArrayContentProvider .getInstance ());
You can’t perform that action at this time.
0 commit comments