aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer
diff options
context:
space:
mode:
Diffstat (limited to 'vncviewer')
-rw-r--r--vncviewer/ServerDialog.cxx2
-rw-r--r--vncviewer/Viewport.cxx2
-rw-r--r--vncviewer/org.tigervnc.vncviewer.metainfo.xml.in8
-rw-r--r--vncviewer/parameters.cxx2
-rw-r--r--vncviewer/vncviewer.cxx14
-rw-r--r--vncviewer/vncviewer.desktop.in.in2
-rw-r--r--vncviewer/vncviewer.man4
-rw-r--r--vncviewer/vncviewer.rc.in6
8 files changed, 20 insertions, 20 deletions
diff --git a/vncviewer/ServerDialog.cxx b/vncviewer/ServerDialog.cxx
index b7adabe7..3011e948 100644
--- a/vncviewer/ServerDialog.cxx
+++ b/vncviewer/ServerDialog.cxx
@@ -60,7 +60,7 @@ static core::LogWriter vlog("ServerDialog");
const char* SERVER_HISTORY="tigervnc.history";
ServerDialog::ServerDialog()
- : Fl_Window(450, 0, _("VNC viewer: Connection details"))
+ : Fl_Window(450, 0, "TigerVNC")
{
int x, y, x2;
Fl_Button *button;
diff --git a/vncviewer/Viewport.cxx b/vncviewer/Viewport.cxx
index 2cffc7be..d5eae9bf 100644
--- a/vncviewer/Viewport.cxx
+++ b/vncviewer/Viewport.cxx
@@ -786,7 +786,7 @@ void Viewport::initContextMenu()
0, nullptr, (void*)ID_OPTIONS, 0);
fltk_menu_add(contextMenu, p_("ContextMenu|", "Connection &info..."),
0, nullptr, (void*)ID_INFO, 0);
- fltk_menu_add(contextMenu, p_("ContextMenu|", "About &TigerVNC viewer..."),
+ fltk_menu_add(contextMenu, p_("ContextMenu|", "About &TigerVNC..."),
0, nullptr, (void*)ID_ABOUT, 0);
}
#pragma GCC diagnostic pop
diff --git a/vncviewer/org.tigervnc.vncviewer.metainfo.xml.in b/vncviewer/org.tigervnc.vncviewer.metainfo.xml.in
index 363c12fa..207f9707 100644
--- a/vncviewer/org.tigervnc.vncviewer.metainfo.xml.in
+++ b/vncviewer/org.tigervnc.vncviewer.metainfo.xml.in
@@ -10,7 +10,7 @@
<id>org.tigervnc.vncviewer</id>
<metadata_license>FSFAP</metadata_license>
<project_license>GPL-2.0-or-later</project_license>
- <name>TigerVNC Viewer</name>
+ <name>TigerVNC</name>
<summary>Connect to VNC server and display remote desktop</summary>
<content_rating type="oars-1.1"/>
<description>
@@ -30,15 +30,15 @@
<launchable type="desktop-id">vncviewer.desktop</launchable>
<screenshots>
<screenshot type="default">
- <caption>TigerVNC viewer connection to a CentOS machine</caption>
+ <caption>TigerVNC connection to a CentOS machine</caption>
<image>https://raw.githubusercontent.com/TigerVNC/tigervnc/741d3edbfab65eda6f033078bc06347fe244ea6a/vncviewer/metainfo/tigervnc-connection-linux.jpg</image>
</screenshot>
<screenshot>
- <caption>TigerVNC viewer connection to a macOS machine</caption>
+ <caption>TigerVNC connection to a macOS machine</caption>
<image>https://raw.githubusercontent.com/TigerVNC/tigervnc/741d3edbfab65eda6f033078bc06347fe244ea6a/vncviewer/metainfo/tigervnc-connection-macos.jpg</image>
</screenshot>
<screenshot>
- <caption>TigerVNC viewer connection to a Windows machine</caption>
+ <caption>TigerVNC connection to a Windows machine</caption>
<image>https://raw.githubusercontent.com/TigerVNC/tigervnc/741d3edbfab65eda6f033078bc06347fe244ea6a/vncviewer/metainfo/tigervnc-connection-windows.jpg</image>
</screenshot>
</screenshots>
diff --git a/vncviewer/parameters.cxx b/vncviewer/parameters.cxx
index 957838a7..45bf6f94 100644
--- a/vncviewer/parameters.cxx
+++ b/vncviewer/parameters.cxx
@@ -217,7 +217,7 @@ core::BoolParameter
true);
core::StringParameter
display("display",
- "Specifies the X display on which the VNC viewer window "
+ "Specifies the X display on which the TigerVNC window "
"should appear.",
"");
#endif
diff --git a/vncviewer/vncviewer.cxx b/vncviewer/vncviewer.cxx
index 3db9bd64..382119b8 100644
--- a/vncviewer/vncviewer.cxx
+++ b/vncviewer/vncviewer.cxx
@@ -100,7 +100,7 @@ static const char *about_text()
// encodings, so we need to make sure we get a fresh string every
// time.
snprintf(buffer, sizeof(buffer),
- _("TigerVNC viewer v%s\n"
+ _("TigerVNC v%s\n"
"Built on: %s\n"
"Copyright (C) 1999-%d TigerVNC team and many others (see README.rst)\n"
"See https://www.tigervnc.org for information on TigerVNC."),
@@ -170,7 +170,7 @@ bool should_disconnect()
void about_vncviewer()
{
- fl_message_title(_("About TigerVNC Viewer"));
+ fl_message_title(_("About TigerVNC"));
fl_message("%s", about_text());
}
@@ -241,7 +241,7 @@ static void new_connection_cb(Fl_Widget* /*widget*/, void* /*data*/)
pid = fork();
if (pid == -1) {
- vlog.error(_("Error starting new TigerVNC Viewer: %s"), strerror(errno));
+ vlog.error(_("Error starting new connection: %s"), strerror(errno));
return;
}
@@ -253,7 +253,7 @@ static void new_connection_cb(Fl_Widget* /*widget*/, void* /*data*/)
execvp(argv[0], (char * const *)argv);
- vlog.error(_("Error starting new TigerVNC Viewer: %s"), strerror(errno));
+ vlog.error(_("Error starting new connection: %s"), strerror(errno));
_exit(1);
}
#endif
@@ -262,7 +262,7 @@ static void CleanupSignalHandler(int sig)
{
// CleanupSignalHandler allows C++ object cleanup to happen because it calls
// exit() rather than the default which is to abort.
- vlog.info(_("Termination signal %d has been received. TigerVNC viewer will now exit."), sig);
+ vlog.info(_("Termination signal %d has been received. TigerVNC will now exit."), sig);
exit(1);
}
@@ -387,7 +387,7 @@ static void init_fltk()
fl_message_hotspot(false);
// Avoid empty titles for popups
- fl_message_title_default(_("TigerVNC viewer"));
+ fl_message_title_default("TigerVNC");
// FLTK exposes these so that we can translate them.
fl_no = _("No");
@@ -464,7 +464,7 @@ static void usage(const char *programName)
fprintf(stderr, _("\n"
"Options:\n\n"
" -display Xdisplay - Specifies the X display for the viewer window\n"
- " -geometry geometry - Initial position of the main VNC viewer window. See the\n"
+ " -geometry geometry - Initial position of the main TigerVNC window. See the\n"
" man page for details.\n"));
#endif
diff --git a/vncviewer/vncviewer.desktop.in.in b/vncviewer/vncviewer.desktop.in.in
index 1a91755c..705845d9 100644
--- a/vncviewer/vncviewer.desktop.in.in
+++ b/vncviewer/vncviewer.desktop.in.in
@@ -1,5 +1,5 @@
[Desktop Entry]
-Name=TigerVNC viewer
+Name=TigerVNC
GenericName=Remote desktop viewer
Comment=Connect to VNC server and display remote desktop
Exec=@CMAKE_INSTALL_FULL_BINDIR@/vncviewer
diff --git a/vncviewer/vncviewer.man b/vncviewer/vncviewer.man
index 208858f9..11fd1e86 100644
--- a/vncviewer/vncviewer.man
+++ b/vncviewer/vncviewer.man
@@ -154,7 +154,7 @@ the SetDesktopSize message then the screen will retain the original size.
.
.TP
.B \-display \fIXdisplay\fP
-Specifies the X display on which the VNC viewer window should appear.
+Specifies the X display on which the TigerVNC window should appear.
.
.TP
.B \-DotWhenNoCursor (DEPRECATED)
@@ -201,7 +201,7 @@ mode.
.
.TP
.B \-geometry \fIgeometry\fP
-Initial position of the main VNC viewer window. The format is
+Initial position of the main TigerVNC window. The format is
.B \fIwidth\fPx\fIheight\fP+\fIxoffset\fP+\fIyoffset\fP
, where `+' signs can be replaced with `\-' signs to specify offsets from the
right and/or from the bottom of the screen. Offsets are optional and the
diff --git a/vncviewer/vncviewer.rc.in b/vncviewer/vncviewer.rc.in
index 43e44da3..375da7af 100644
--- a/vncviewer/vncviewer.rc.in
+++ b/vncviewer/vncviewer.rc.in
@@ -42,9 +42,9 @@ BEGIN
BLOCK "080904b0"
BEGIN
VALUE "Comments", "\0"
- VALUE "CompanyName", "TigerVNC project\0"
- VALUE "FileDescription", "TigerVNC client\0"
- VALUE "ProductName", "TigerVNC client\0"
+ VALUE "CompanyName", "TigerVNC team\0"
+ VALUE "FileDescription", "TigerVNC\0"
+ VALUE "ProductName", "TigerVNC\0"
VALUE "FileVersion", "@RCVERSION@\0"
VALUE "InternalName", "vncviewer\0"
VALUE "LegalCopyright", "Copyright (C) 1999-2025 TigerVNC team and many others (see README.rst)\0"