Bugfix: english, grammar and typo
This commit is contained in:
committed by
Laurent Clouet
parent
9b3baf01c7
commit
c91bfc38fd
@@ -106,10 +106,10 @@ public class Settings implements Activity {
|
|||||||
++currentRow;
|
++currentRow;
|
||||||
|
|
||||||
// authentication
|
// authentication
|
||||||
JPanel authentification_panel = new JPanel(new GridLayout(2, 2));
|
JPanel authentication_panel = new JPanel(new GridLayout(2, 2));
|
||||||
authentification_panel.setBorder(BorderFactory.createTitledBorder("Authentification"));
|
authentication_panel.setBorder(BorderFactory.createTitledBorder("Authentication"));
|
||||||
|
|
||||||
JLabel loginLabel = new JLabel("Login :");
|
JLabel loginLabel = new JLabel("Username:");
|
||||||
login = new JTextField();
|
login = new JTextField();
|
||||||
login.setText(parent.getConfiguration().login());
|
login.setText(parent.getConfiguration().login());
|
||||||
login.setColumns(20);
|
login.setColumns(20);
|
||||||
@@ -120,16 +120,16 @@ public class Settings implements Activity {
|
|||||||
password.setColumns(10);
|
password.setColumns(10);
|
||||||
password.addKeyListener(new CheckCanStart());
|
password.addKeyListener(new CheckCanStart());
|
||||||
|
|
||||||
authentification_panel.add(loginLabel);
|
authentication_panel.add(loginLabel);
|
||||||
authentification_panel.add(login);
|
authentication_panel.add(login);
|
||||||
|
|
||||||
authentification_panel.add(passwordLabel);
|
authentication_panel.add(passwordLabel);
|
||||||
authentification_panel.add(password);
|
authentication_panel.add(password);
|
||||||
|
|
||||||
constraints.gridx = 0;
|
constraints.gridx = 0;
|
||||||
constraints.gridy = currentRow;
|
constraints.gridy = currentRow;
|
||||||
constraints.fill = GridBagConstraints.HORIZONTAL;
|
constraints.fill = GridBagConstraints.HORIZONTAL;
|
||||||
parent.getContentPane().add(authentification_panel, constraints);
|
parent.getContentPane().add(authentication_panel, constraints);
|
||||||
|
|
||||||
// directory
|
// directory
|
||||||
JPanel directory_panel = new JPanel(new GridLayout(1, 3));
|
JPanel directory_panel = new JPanel(new GridLayout(1, 3));
|
||||||
@@ -258,7 +258,7 @@ public class Settings implements Activity {
|
|||||||
advanced_panel.add(proxyLabel);
|
advanced_panel.add(proxyLabel);
|
||||||
advanced_panel.add(proxy);
|
advanced_panel.add(proxy);
|
||||||
|
|
||||||
JLabel customTileSizeLabel = new JLabel("Custom render tile size");
|
JLabel customTileSizeLabel = new JLabel("Custom render tile size:");
|
||||||
customTileSize = new JCheckBox("", config.getTileSize() != -1);
|
customTileSize = new JCheckBox("", config.getTileSize() != -1);
|
||||||
advanced_panel.add(customTileSizeLabel);
|
advanced_panel.add(customTileSizeLabel);
|
||||||
advanced_panel.add(customTileSize);
|
advanced_panel.add(customTileSize);
|
||||||
|
|||||||
@@ -134,10 +134,10 @@ public class Working implements Activity {
|
|||||||
JPanel global_stats_panel = new JPanel(new SpringLayout());
|
JPanel global_stats_panel = new JPanel(new SpringLayout());
|
||||||
global_stats_panel.setBorder(BorderFactory.createTitledBorder("Global stats"));
|
global_stats_panel.setBorder(BorderFactory.createTitledBorder("Global stats"));
|
||||||
|
|
||||||
JLabel global_stats_machine_connected = new JLabel("Machine connected : ", JLabel.TRAILING);
|
JLabel global_stats_machine_connected = new JLabel("Machines connected: ", JLabel.TRAILING);
|
||||||
JLabel global_stats_remaining_frame = new JLabel("Remaining frames: ", JLabel.TRAILING);
|
JLabel global_stats_remaining_frame = new JLabel("Remaining frames: ", JLabel.TRAILING);
|
||||||
JLabel global_stats_waiting_project = new JLabel("Waiting project : ", JLabel.TRAILING);
|
JLabel global_stats_waiting_project = new JLabel("Remaining projects: ", JLabel.TRAILING);
|
||||||
JLabel global_stats_user_points = new JLabel("User points : ", JLabel.TRAILING);
|
JLabel global_stats_user_points = new JLabel("User's points: ", JLabel.TRAILING);
|
||||||
|
|
||||||
global_stats_panel.add(global_stats_waiting_project);
|
global_stats_panel.add(global_stats_waiting_project);
|
||||||
global_stats_panel.add(waiting_projects_value);
|
global_stats_panel.add(waiting_projects_value);
|
||||||
|
|||||||
Reference in New Issue
Block a user