aboutsummaryrefslogtreecommitdiffstats
path: root/java/com/tigervnc/vncviewer/VncViewer.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/tigervnc/vncviewer/VncViewer.java')
-rw-r--r--java/com/tigervnc/vncviewer/VncViewer.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/com/tigervnc/vncviewer/VncViewer.java b/java/com/tigervnc/vncviewer/VncViewer.java
index 067f4eff..4e4364cb 100644
--- a/java/com/tigervnc/vncviewer/VncViewer.java
+++ b/java/com/tigervnc/vncviewer/VncViewer.java
@@ -61,7 +61,7 @@ import static com.tigervnc.vncviewer.Parameters.*;
public class VncViewer implements Runnable {
public static final String aboutText =
- new String("TigerVNC Java Viewer v%s (%s)%n"+
+ new String("TigerVNC Java viewer v%s (%s)%n"+
"Built on %s at %s%n"+
"Copyright (C) 1999-2024 TigerVNC Team and many others (see README.rst)%n"+
"See https://www.tigervnc.org for information on TigerVNC.");
@@ -237,7 +237,7 @@ public class VncViewer implements Runnable {
Configuration.listParams(79, 14);
String propertiesString = ("\n"+
-"System Properties (adapted from the TurboVNC vncviewer man page)\n"+
+"System properties (adapted from the TurboVNC vncviewer man page)\n"+
" When started with the -via option, vncviewer reads the VNC_VIA_CMD\n"+
" System property, expands patterns beginning with the \"%\" character,\n"+
" and uses the resulting command line to establish the secure tunnel\n"+
@@ -359,7 +359,7 @@ public class VncViewer implements Runnable {
JOptionPane op =
new JOptionPane(msg, JOptionPane.INFORMATION_MESSAGE,
JOptionPane.DEFAULT_OPTION, VncViewer.logoIcon, options);
- JDialog dlg = op.createDialog(parent, "About TigerVNC Viewer for Java");
+ JDialog dlg = op.createDialog(parent, "About TigerVNC viewer for Java");
dlg.setIconImage(VncViewer.frameIcon);
dlg.setAlwaysOnTop(true);
dlg.setVisible(true);
@@ -378,7 +378,7 @@ public class VncViewer implements Runnable {
void reportException(java.lang.Exception e) {
String title, msg = e.getMessage();
int msgType = JOptionPane.ERROR_MESSAGE;
- title = "TigerVNC Viewer : Error";
+ title = "TigerVNC viewer : Error";
e.printStackTrace();
JOptionPane.showMessageDialog(null, msg, title, msgType);
}