Fixed message in Python Launch Error dialog.
authorLou Dasaro <mr_lou_d@netbeans.org>
Sun, 08 Nov 2015 12:46:54 -0600
changeset 18345b591916abc06
parent 18344 733f70cbf7d2
child 18346 c3249b3bfed8
Fixed message in Python Launch Error dialog.
Task #152764 - message in Python Launch Error dialog is not standard
python.project/src/org/netbeans/modules/python/project/ui/actions/Command.java
     1.1 --- a/python.project/src/org/netbeans/modules/python/project/ui/actions/Command.java	Sat Nov 07 23:25:43 2015 -0600
     1.2 +++ b/python.project/src/org/netbeans/modules/python/project/ui/actions/Command.java	Sun Nov 08 12:46:54 2015 -0600
     1.3 @@ -74,9 +74,9 @@
     1.4         if ( platform == null ) {
     1.5           // Better to inform the user than try to use a default unsuited
     1.6           String platformId = pyProject.getEvaluator().getProperty(PythonProjectProperties.ACTIVE_PLATFORM);
     1.7 -         showLaunchError( "selected project has broken python platform : " +
     1.8 +         showLaunchError( "The selected project specifies a missing or invalid Python platform : " + // NOI18N
     1.9                             platformId +
    1.10 -                           " => bind to an existing python platform in project's properties "
    1.11 +                           "\nPlease add the Python platform or choose an existing one in Project Properties. " // NOI18N
    1.12                           );
    1.13         }
    1.14         return platform ;