Typo: english

This commit is contained in:
Mathis Chenuet
2015-03-02 18:03:58 +00:00
committed by Laurent Clouet
parent 8252102708
commit 38ba5a995d
2 changed files with 2 additions and 2 deletions

View File

@@ -125,7 +125,7 @@ public class Error {
case AUTHENTICATION_FAILED: case AUTHENTICATION_FAILED:
return "Failed to authenticate, please check your login and password"; return "Failed to authenticate, please check your login and password";
case DOWNLOAD_FILE: case DOWNLOAD_FILE:
return "Error will downloading project's needed files. Will try another project in a few minutes."; return "Error while downloading project files. Will try another project in a few minutes.";
case NOOUTPUTFILE: case NOOUTPUTFILE:
return "Renderer has generated no output file, possibly a wrong project configuration or you are missing required libraries. Will try another project in a few minutes."; return "Renderer has generated no output file, possibly a wrong project configuration or you are missing required libraries. Will try another project in a few minutes.";
case RENDERER_CRASHED: case RENDERER_CRASHED:

View File

@@ -79,7 +79,7 @@ public class Linux extends OS {
scanner.close(); scanner.close();
} }
catch (java.lang.NoClassDefFoundError e) { catch (java.lang.NoClassDefFoundError e) {
System.err.println("OS.Linux::getCPU error " + e + " mostly because Scanner class was introducted by Java 5 and you are running a lower version"); System.err.println("OS.Linux::getCPU error " + e + " mostly because Scanner class was introduced by Java 5 and you are running a lower version");
} }
catch (Exception e) { catch (Exception e) {
e.printStackTrace(); e.printStackTrace();