Bugfix: english, grammar and typo

This commit is contained in:
Eyeballcode
2017-02-18 14:31:43 +01:00
committed by Laurent Clouet
parent 9b3baf01c7
commit c91bfc38fd
2 changed files with 23 additions and 23 deletions

View File

@@ -96,10 +96,10 @@ public class Working implements Activity {
JPanel current_project_panel = new JPanel(new SpringLayout());
current_project_panel.setBorder(BorderFactory.createTitledBorder("Project"));
JLabel current_project_status = new JLabel("Status : ", JLabel.TRAILING);
JLabel current_project_name = new JLabel("Name : ", JLabel.TRAILING);
JLabel current_project_duration = new JLabel("Rendering for : ", JLabel.TRAILING);
JLabel current_project_progression = new JLabel("Remaining : ", JLabel.TRAILING);
JLabel current_project_status = new JLabel("Status: ", JLabel.TRAILING);
JLabel current_project_name = new JLabel("Name: ", JLabel.TRAILING);
JLabel current_project_duration = new JLabel("Rendering for: ", JLabel.TRAILING);
JLabel current_project_progression = new JLabel("Remaining: ", JLabel.TRAILING);
current_project_panel.add(current_project_status);
current_project_panel.add(statusContent);
@@ -117,9 +117,9 @@ public class Working implements Activity {
JPanel session_info_panel = new JPanel(new SpringLayout());
session_info_panel.setBorder(BorderFactory.createTitledBorder("Session infos"));
JLabel user_info_credits_this_session = new JLabel("Points earned : ", JLabel.TRAILING);
JLabel user_info_total_rendertime_this_session = new JLabel("Duration : ", JLabel.TRAILING);
JLabel user_info_rendered_frame_this_session = new JLabel("Rendered frames : ", JLabel.TRAILING);
JLabel user_info_credits_this_session = new JLabel("Points earned: ", JLabel.TRAILING);
JLabel user_info_total_rendertime_this_session = new JLabel("Duration: ", JLabel.TRAILING);
JLabel user_info_rendered_frame_this_session = new JLabel("Rendered frames: ", JLabel.TRAILING);
session_info_panel.add(user_info_credits_this_session);
session_info_panel.add(creditEarned);
@@ -134,10 +134,10 @@ public class Working implements Activity {
JPanel global_stats_panel = new JPanel(new SpringLayout());
global_stats_panel.setBorder(BorderFactory.createTitledBorder("Global stats"));
JLabel global_stats_machine_connected = new JLabel("Machine connected : ", 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_user_points = new JLabel("User points : ", 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_waiting_project = new JLabel("Remaining projects: ", 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(waiting_projects_value);