diff --git a/src/org/nschmidt/ldparteditor/shells/editor3d/Editor3DDesign.java b/src/org/nschmidt/ldparteditor/shells/editor3d/Editor3DDesign.java index eacf1fbf0..12c5330d3 100644 --- a/src/org/nschmidt/ldparteditor/shells/editor3d/Editor3DDesign.java +++ b/src/org/nschmidt/ldparteditor/shells/editor3d/Editor3DDesign.java @@ -1696,7 +1696,7 @@ private ToolItem createToolItemMiscClick(String label) { { Button btn_RoundSelection = new Button(toolItem_MiscClick, SWT.NONE); this.btn_RoundSelection[0] = btn_RoundSelection; - btn_RoundSelection.setToolTipText(I18n.E3D_Round); + btn_RoundSelection.setToolTipText(I18n.E3D_Round + I18n.E3D_ControlClickModify); btn_RoundSelection.setImage(ResourceManager.getImage("icon16_round.png")); //$NON-NLS-1$ } { @@ -2833,7 +2833,7 @@ private void addColorButton(ToolItem toolItem_Colours, GColour gColour, final in Object[] messageArguments = {num, View.getLDConfigColourName(num)}; MessageFormat formatter = new MessageFormat(""); //$NON-NLS-1$ formatter.setLocale(MyLanguage.LOCALE); - formatter.applyPattern(I18n.EDITORTEXT_Colour1); + formatter.applyPattern(I18n.EDITORTEXT_Colour1 + I18n.E3D_ControlClickModify); btn_Col.setToolTipText(formatter.format(messageArguments)); } else { @@ -2846,7 +2846,7 @@ private void addColorButton(ToolItem toolItem_Colours, GColour gColour, final in Object[] messageArguments = {colourBuilder.toString()}; MessageFormat formatter = new MessageFormat(""); //$NON-NLS-1$ formatter.setLocale(MyLanguage.LOCALE); - formatter.applyPattern(I18n.EDITORTEXT_Colour2); + formatter.applyPattern(I18n.EDITORTEXT_Colour2 + I18n.E3D_ControlClickModify); btn_Col.setToolTipText(formatter.format(messageArguments)); } @@ -2872,7 +2872,7 @@ public void widgetSelected(SelectionEvent e) { Object[] messageArguments = {num, View.getLDConfigColourName(num)}; MessageFormat formatter = new MessageFormat(""); //$NON-NLS-1$ formatter.setLocale(MyLanguage.LOCALE); - formatter.applyPattern(I18n.EDITORTEXT_Colour1); + formatter.applyPattern(I18n.EDITORTEXT_Colour1 + I18n.E3D_ControlClickModify); btn_Col.setToolTipText(formatter.format(messageArguments)); } else { @@ -2885,7 +2885,7 @@ public void widgetSelected(SelectionEvent e) { Object[] messageArguments = {colourBuilder.toString()}; MessageFormat formatter = new MessageFormat(""); //$NON-NLS-1$ formatter.setLocale(MyLanguage.LOCALE); - formatter.applyPattern(I18n.EDITORTEXT_Colour2); + formatter.applyPattern(I18n.EDITORTEXT_Colour2 + I18n.E3D_ControlClickModify); btn_Col.setToolTipText(formatter.format(messageArguments)); } diff --git a/src/org/nschmidt/ldparteditor/shells/editortext/EditorTextDesign.java b/src/org/nschmidt/ldparteditor/shells/editortext/EditorTextDesign.java index d8b9cf8be..861cda5b4 100644 --- a/src/org/nschmidt/ldparteditor/shells/editortext/EditorTextDesign.java +++ b/src/org/nschmidt/ldparteditor/shells/editortext/EditorTextDesign.java @@ -292,7 +292,7 @@ protected Control createContents(Composite parent) { { Button btn_RoundSelection = new Button(toolItem_Debug, SWT.NONE); this.btn_RoundSelection[0] = btn_RoundSelection; - KeyStateManager.addTooltipText(btn_RoundSelection, I18n.EDITORTEXT_Round, TextTask.EDITORTEXT_ROUND); + KeyStateManager.addTooltipText(btn_RoundSelection, I18n.EDITORTEXT_Round + I18n.E3D_ControlClickModify, TextTask.EDITORTEXT_ROUND); btn_RoundSelection.setImage(ResourceManager.getImage("icon16_round.png")); //$NON-NLS-1$ } @@ -457,7 +457,7 @@ private void addColorButton(ToolItem toolItem_Colours, GColour gColour, final in Object[] messageArguments = {num, View.getLDConfigColourName(num)}; MessageFormat formatter = new MessageFormat(""); //$NON-NLS-1$ formatter.setLocale(MyLanguage.LOCALE); - formatter.applyPattern(I18n.EDITORTEXT_Colour1); + formatter.applyPattern(I18n.EDITORTEXT_Colour1 + I18n.E3D_ControlClickModify); btn_Col.setToolTipText(formatter.format(messageArguments)); } else { @@ -471,7 +471,7 @@ private void addColorButton(ToolItem toolItem_Colours, GColour gColour, final in Object[] messageArguments = {colourBuilder.toString()}; MessageFormat formatter = new MessageFormat(""); //$NON-NLS-1$ formatter.setLocale(MyLanguage.LOCALE); - formatter.applyPattern(I18n.EDITORTEXT_Colour2); + formatter.applyPattern(I18n.EDITORTEXT_Colour2 + I18n.E3D_ControlClickModify); btn_Col.setToolTipText(formatter.format(messageArguments)); } @@ -496,7 +496,7 @@ public void widgetSelected(SelectionEvent e) { Object[] messageArguments = {num, View.getLDConfigColourName(num)}; MessageFormat formatter = new MessageFormat(""); //$NON-NLS-1$ formatter.setLocale(MyLanguage.LOCALE); - formatter.applyPattern(I18n.EDITORTEXT_Colour1); + formatter.applyPattern(I18n.EDITORTEXT_Colour1 + I18n.E3D_ControlClickModify); btn_Col.setToolTipText(formatter.format(messageArguments)); } else { @@ -509,7 +509,7 @@ public void widgetSelected(SelectionEvent e) { Object[] messageArguments = {colourBuilder.toString()}; MessageFormat formatter = new MessageFormat(""); //$NON-NLS-1$ formatter.setLocale(MyLanguage.LOCALE); - formatter.applyPattern(I18n.EDITORTEXT_Colour2); + formatter.applyPattern(I18n.EDITORTEXT_Colour2 + I18n.E3D_ControlClickModify); btn_Col.setToolTipText(formatter.format(messageArguments));