Skip to content

Commit 6289e12

Browse files
committed
Shorten task names by excluding the product name
Fixed a typo in DicomListener Signed-off-by: Tony Germano <tony@germano.name> Issue: #104
1 parent 787529d commit 6289e12

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

client/src/com/mirth/connect/client/ui/Frame.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ private void setInitialVisibleTasks() {
10161016
private void createViewPane() {
10171017
// Create View pane
10181018
viewPane = new JXTaskPane();
1019-
viewPane.setTitle(BrandingConstants.PRODUCT_NAME);
1019+
viewPane.setTitle("Engine");
10201020
viewPane.setName(TaskConstants.VIEW_KEY);
10211021
viewPane.setFocusable(false);
10221022

@@ -1260,7 +1260,7 @@ private void createOtherPane() {
12601260
addTask(TaskConstants.OTHER_VIEW_USER_API, "View User API", String.format("View documentation for the %s User API.", BrandingConstants.PRODUCT_NAME), "", new ImageIcon(com.mirth.connect.client.ui.Frame.class.getResource("images/page_white_text.png")), otherPane, null);
12611261
addTask(TaskConstants.OTHER_VIEW_CLIENT_API, "View Client API", String.format("View documentation for the %s Client API.", BrandingConstants.PRODUCT_NAME), "", new ImageIcon(com.mirth.connect.client.ui.Frame.class.getResource("images/page_white_text.png")), otherPane, null);
12621262
addTask(TaskConstants.OTHER_HELP, "Help", String.format("View help for %s.", BrandingConstants.PRODUCT_NAME), "", new ImageIcon(com.mirth.connect.client.ui.Frame.class.getResource("images/help.png")), otherPane, null);
1263-
addTask(TaskConstants.OTHER_ABOUT, String.format("About %s", BrandingConstants.PRODUCT_NAME), String.format("View the about page for %s.", BrandingConstants.PRODUCT_NAME), "", new ImageIcon(com.mirth.connect.client.ui.Frame.class.getResource("images/information.png")), otherPane, null);
1263+
addTask(TaskConstants.OTHER_ABOUT, "About", String.format("View the about page for %s.", BrandingConstants.PRODUCT_NAME), "", new ImageIcon(com.mirth.connect.client.ui.Frame.class.getResource("images/information.png")), otherPane, null);
12641264
addTask(TaskConstants.OTHER_VISIT_MIRTH, "Visit homepage", String.format("View %s's homepage.", BrandingConstants.PRODUCT_NAME), "", new ImageIcon(com.mirth.connect.client.ui.Frame.class.getResource("images/house.png")), otherPane, null);
12651265
addTask(TaskConstants.OTHER_REPORT_ISSUE, "Report Issue", String.format("Visit %s's issue tracker.", BrandingConstants.PRODUCT_NAME), "", new ImageIcon(com.mirth.connect.client.ui.Frame.class.getResource("images/bug.png")), otherPane, null);
12661266
addTask(TaskConstants.OTHER_LOGOUT, "Logout", "Logout and return to the login screen.", "", new ImageIcon(com.mirth.connect.client.ui.Frame.class.getResource("images/disconnect.png")), otherPane, null);

client/src/com/mirth/connect/connectors/dimse/DICOMListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
427427
}
428428
});
429429

430-
jLabel30.setText("Store Recieved Objects in Directory:");
430+
jLabel30.setText("Store Received Objects in Directory:");
431431

432432
destField.setToolTipText("Store received objects into files in specified directory <dir>. Do not store received objects by default.");
433433

0 commit comments

Comments
 (0)