Author: vyemialyanchyk
Date: 2009-07-07 07:54:26 -0400 (Tue, 07 Jul 2009)
New Revision: 16460
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/criteriaeditor/CriteriaEditor.java
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/hqleditor/HQLEditorActionContributor.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4549 - setup right resource bundle prefix
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/criteriaeditor/CriteriaEditor.java
===================================================================
---
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/criteriaeditor/CriteriaEditor.java 2009-07-07
09:03:31 UTC (rev 16459)
+++
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/criteriaeditor/CriteriaEditor.java 2009-07-07
11:54:26 UTC (rev 16460)
@@ -88,7 +88,7 @@
protected void createActions() {
super.createActions();
- Action action = new TextOperationAction(getResourceBundle(),
"ContentAssistProposal.", this, ISourceViewer.CONTENTASSIST_PROPOSALS);
//$NON-NLS-1$
+ Action action = new TextOperationAction(getResourceBundle(),
"HQLEditor_ContentAssistProposal_", this,
ISourceViewer.CONTENTASSIST_PROPOSALS); //$NON-NLS-1$
action.setActionDefinitionId(ITextEditorActionDefinitionIds.CONTENT_ASSIST_PROPOSALS);
setAction("ContentAssistProposal", action);//$NON-NLS-1$
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/hqleditor/HQLEditorActionContributor.java
===================================================================
---
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/hqleditor/HQLEditorActionContributor.java 2009-07-07
09:03:31 UTC (rev 16459)
+++
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/hqleditor/HQLEditorActionContributor.java 2009-07-07
11:54:26 UTC (rev 16460)
@@ -59,9 +59,9 @@
super();
ResourceBundle bundle =
ResourceBundle.getBundle(HibernateConsoleMessages.BUNDLE_NAME);
- contentAssistProposalAction = new RetargetTextEditorAction( bundle,
"ContentAssistProposal." );//$NON-NLS-1$
- contentAssistTipAction = new RetargetTextEditorAction( bundle,
"ContentAssistTip." ); //$NON-NLS-1$
- contentFormatAction = new RetargetTextEditorAction( bundle,
"ContentFormat." ); //$NON-NLS-1$
+ contentAssistProposalAction = new RetargetTextEditorAction( bundle,
"HQLEditor_ContentAssistProposal_" );//$NON-NLS-1$
+ contentAssistTipAction = new RetargetTextEditorAction( bundle,
"HQLEditor_ContentAssistTip_" ); //$NON-NLS-1$
+ contentFormatAction = new RetargetTextEditorAction( bundle,
"HQLEditor_ContentFormat_" ); //$NON-NLS-1$
executeHQLAction = new ExecuteQueryAction();
}