Bugfix: typo and better english

This commit is contained in:
Laurent Clouet
2014-12-16 23:02:14 +00:00
parent 2e65795c0f
commit d4a1cd4de1
2 changed files with 14 additions and 14 deletions

View File

@@ -111,7 +111,7 @@ public class Error {
}
}
public static String humainString(Type in) {
public static String humanString(Type in) {
switch (in) {
case TOO_OLD_CLIENT:
return "This client is too old, you need to update it";
@@ -122,11 +122,11 @@ public class Error {
case RENDERER_CRASHED:
return "Renderer have crashed. It's mostly due to a bad project or not enough memory. There is nothing you can do about it. Will try an another project in few minutes.";
case RENDERER_MISSING_LIBRARIES:
return "Failed to launch runderer. Please check if you have necessary libraries installed and if you have enough free place in working directory.";
return "Failed to launch renderer. Please check if you have necessary libraries installed and if you have enough free place in working directory.";
case RENDERER_KILLED:
return "The render stop because either you ask to stop or the server (usually render time too high).";
return "The renderer stopped because either you asked to stop or the server did (usually for a render time too high).";
case SESSION_DISABLED:
return "The server have disabled your session. It's mostly because your client generate broken frame (gpu not compatible for example).";
return "The server have disabled your session. Your client may have generated a broken frame (GPU not compatible, not enough RAM/VRAM, etc).";
default:
return in.toString();
}