Browse Source

Change wording in URL protocol panels.

Fixes issue 3813

Change-Id: I553af3678c1e92039fa8ed2546525f83ec0031d9
Reviewed-on: http://gerrit.dmdirc.com/923
Reviewed-by: Chris Smith <chris@dmdirc.com>
Automatic-Compile: DMDirc Local Commits <dmdirc@googlemail.com>
tags/0.6.3
Gregory Holmes 14 years ago
parent
commit
b67420af6f

+ 1
- 1
src/com/dmdirc/addons/ui_swing/components/URLProtocolPanel.java View File

@@ -105,7 +105,7 @@ public class URLProtocolPanel extends JPanel implements ActionListener,
105 105
         showFileChooser = new JButton("Browse");
106 106
         commandPath = new JTextField();
107 107
         optionType = new ButtonGroup();
108
-        dmdirc = new JRadioButton("Handle internally (irc links only)");
108
+        dmdirc = new JRadioButton("Use DMDirc");
109 109
         browser = new JRadioButton("Use browser (or system registered handler)");
110 110
         mail = new JRadioButton("Use mail client");
111 111
         custom = new JRadioButton("Custom command");

+ 1
- 1
src/com/dmdirc/addons/ui_swing/dialogs/url/URLDialog.java View File

@@ -110,7 +110,7 @@ public class URLDialog extends StandardDialog implements ActionListener {
110 110
     private void initComponents() {
111 111
         orderButtons(new JButton(), new JButton());
112 112
         blurb = new TextLabel("Please select the appropriate action to " +
113
-                "handle " + url.getScheme() + " URL protocols from the list " +
113
+                "handle " + url.getScheme() + ":// URLs from the list " +
114 114
                 "below.");
115 115
         panel = new URLProtocolPanel(url, false);
116 116
     }

Loading…
Cancel
Save