Skip to content

Commit

Permalink
Merge pull request #580 from mkralik3/TEIIDDES-3140
Browse files Browse the repository at this point in the history
TEIIDDES-3140 - move noProfileProvider properties
  • Loading branch information
blafond committed Nov 14, 2017
2 parents 762d319 + 40bcb97 commit d50165b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ SetConnectionProfileAction.confirmDriverclassChangeDialogTitle=Confirm Connectio
SetConnectionProfileAction.confirmDriverclassChangeDialogMsg=This Connection Profile change will also change the model import settings,\nsince the driver class is different than the current driver.\n\nDo you wish to continue?
SetConnectionProfileAction.sourceModelUndefined.title=Source Model Undefined
SetConnectionProfileAction.sourceModelUndefined.message=No source model defined.\n\nExecute previous action to create source model from Teiid data source
SetConnectionProfileAction.noProfileProviderMessage=Teiid Designer does not support using this connection profile type
SetConnectionProfileAction.noProfileProviderTitle=Connection Profile Not Supported

RemoveConnectionInfoAction.exceptionMessage=An exception occurred removing connection info from model

ViewConnectionProfileAction.title=View Connection Profile Info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ private void logException(Exception e) {
String msg = e.getMessage();
if( msg != null && msg.equalsIgnoreCase(NO_PROFILE_PROVIDER_FOUND_KEY) ) {
MessageDialog.openWarning(getShell(),
DatatoolsUiConstants.UTIL.getString("SetConnectionProfileAction.noProvileProviderTitle"), //$NON-NLS-1$
DatatoolsUiConstants.UTIL.getString("SetConnectionProfileAction.noProvileProviderMessage")); //$NON-NLS-1$
DatatoolsUiConstants.UTIL.getString("SetConnectionProfileAction.noProfileProviderTitle"), //$NON-NLS-1$
DatatoolsUiConstants.UTIL.getString("SetConnectionProfileAction.noProfileProviderMessage")); //$NON-NLS-1$
} else {
MessageDialog.openError(getShell(),
DatatoolsUiConstants.UTIL.getString("SetConnectionProfileAction.exceptionMessage"), e.getMessage()); //$NON-NLS-1$
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,6 @@ TeiidViewDropAdapter.problemDeployingVdbToServer = Problem deploying VDB: {0} to
#########################################
SetConnectionProfileAction.no.provider.found=No ConnectionInfoProvider resolved for this ConnectionProfile
SetConnectionProfileAction.exceptionMessage=An exception occurred setting the ConnectionProfile
SetConnectionProfileAction.noProvileProviderMessage=Teiid Designer does not support using this connection profile type
SetConnectionProfileAction.noProvileProviderTitle=Connection Profile Not Supported
SetConnectionProfileAction.confirmDriverclassChangeDialogTitle=Confirm Connection Profile Change
SetConnectionProfileAction.confirmDriverclassChangeDialogMsg=This Connection Profile change will also change the model import settings,\nsince the driver class is different than the current driver.\n\nDo you wish to continue?
SetConnectionProfileAction.sourceModelUndefined.title=Source Model Undefined
Expand Down

0 comments on commit d50165b

Please sign in to comment.