Grammar issue
This commit is contained in:
@@ -70,7 +70,7 @@ public class GuiTextOneLine implements Gui {
|
||||
int charToRemove = line.length();
|
||||
|
||||
System.out.print("\r");
|
||||
line = String.format("Frame rendered: %d remaining: %d | %s", rendered, remaining, status);
|
||||
line = String.format("Frames rendered: %d remaining: %d | %s", rendered, remaining, status);
|
||||
System.out.print(line);
|
||||
for (int i = line.length(); i <= charToRemove; i++) {
|
||||
System.out.print(" ");
|
||||
|
||||
@@ -96,7 +96,7 @@ public class Settings implements Activity {
|
||||
|
||||
n += sep;
|
||||
|
||||
JLabel cacheLabel = new JLabel("Working directory");
|
||||
JLabel cacheLabel = new JLabel("Working directory:");
|
||||
cacheLabel.setBounds(start_label_left, n, 240, size_height_label);
|
||||
parent.getContentPane().add(cacheLabel);
|
||||
|
||||
@@ -118,7 +118,7 @@ public class Settings implements Activity {
|
||||
|
||||
n += sep;
|
||||
|
||||
JLabel computeMethodLabel = new JLabel("Use");
|
||||
JLabel computeMethodLabel = new JLabel("Use:");
|
||||
computeMethodLabel.setBounds(start_label_left, n, 240, size_height_label);
|
||||
parent.getContentPane().add(computeMethodLabel);
|
||||
|
||||
|
||||
@@ -74,7 +74,7 @@ public class Working implements Activity {
|
||||
|
||||
n += sep;
|
||||
|
||||
JLabel renderedFrameLabel = new JLabel("Rendered Frame:");
|
||||
JLabel renderedFrameLabel = new JLabel("Rendered frames:");
|
||||
renderedFrameLabel.setBounds(start_label_left, n, 240, size_height_label);
|
||||
parent.getContentPane().add(renderedFrameLabel);
|
||||
|
||||
@@ -83,7 +83,7 @@ public class Working implements Activity {
|
||||
|
||||
n += sep;
|
||||
|
||||
JLabel remainingFrameLabel = new JLabel("Remaining Frame:");
|
||||
JLabel remainingFrameLabel = new JLabel("Remaining frames:");
|
||||
remainingFrameLabel.setBounds(start_label_left, n, 240, size_height_label);
|
||||
parent.getContentPane().add(remainingFrameLabel);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user