aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer
diff options
context:
space:
mode:
Diffstat (limited to 'vncviewer')
-rw-r--r--vncviewer/OptionsDialog.cxx2
-rw-r--r--vncviewer/ServerDialog.cxx4
-rw-r--r--vncviewer/org.tigervnc.vncviewer.metainfo.xml.in6
-rw-r--r--vncviewer/vncviewer.cxx10
-rw-r--r--vncviewer/vncviewer.desktop.in.in4
-rw-r--r--vncviewer/vncviewer.man2
-rw-r--r--vncviewer/vncviewer.rc.in6
7 files changed, 17 insertions, 17 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx
index e04065ec..bb8c56b3 100644
--- a/vncviewer/OptionsDialog.cxx
+++ b/vncviewer/OptionsDialog.cxx
@@ -61,7 +61,7 @@ std::map<OptionsCallback*, void*> OptionsDialog::callbacks;
static std::set<OptionsDialog *> instances;
OptionsDialog::OptionsDialog()
- : Fl_Window(580, 420, _("TigerVNC Options"))
+ : Fl_Window(580, 420, _("TigerVNC options"))
{
int x, y;
Fl_Navigation *navigation;
diff --git a/vncviewer/ServerDialog.cxx b/vncviewer/ServerDialog.cxx
index 8622fff1..45443d46 100644
--- a/vncviewer/ServerDialog.cxx
+++ b/vncviewer/ServerDialog.cxx
@@ -58,7 +58,7 @@ static LogWriter vlog("ServerDialog");
const char* SERVER_HISTORY="tigervnc.history";
ServerDialog::ServerDialog()
- : Fl_Window(450, 0, _("VNC Viewer: Connection Details"))
+ : Fl_Window(450, 0, _("VNC viewer: Connection details"))
{
int x, y, x2;
Fl_Button *button;
@@ -83,7 +83,7 @@ ServerDialog::ServerDialog()
button->callback(this->handleLoad, this);
x2 += BUTTON_WIDTH + INNER_MARGIN;
- button = new Fl_Button(x2, y, BUTTON_WIDTH, BUTTON_HEIGHT, _("Save As..."));
+ button = new Fl_Button(x2, y, BUTTON_WIDTH, BUTTON_HEIGHT, _("Save as..."));
button->callback(this->handleSaveAs, this);
x2 += BUTTON_WIDTH + INNER_MARGIN;
diff --git a/vncviewer/org.tigervnc.vncviewer.metainfo.xml.in b/vncviewer/org.tigervnc.vncviewer.metainfo.xml.in
index 6e982573..0a211a51 100644
--- a/vncviewer/org.tigervnc.vncviewer.metainfo.xml.in
+++ b/vncviewer/org.tigervnc.vncviewer.metainfo.xml.in
@@ -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 viewer 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 viewer 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 viewer 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/vncviewer.cxx b/vncviewer/vncviewer.cxx
index a1d9b39d..84406470 100644
--- a/vncviewer/vncviewer.cxx
+++ b/vncviewer/vncviewer.cxx
@@ -102,9 +102,9 @@ 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 viewer v%s\n"
"Built on: %s\n"
- "Copyright (C) 1999-%d TigerVNC Team and many others (see README.rst)\n"
+ "Copyright (C) 1999-%d TigerVNC team and many others (see README.rst)\n"
"See https://www.tigervnc.org for information on TigerVNC."),
PACKAGE_VERSION, BUILD_TIMESTAMP, 2024);
@@ -389,7 +389,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 viewer"));
// FLTK exposes these so that we can translate them.
fl_no = _("No");
@@ -412,8 +412,8 @@ static void init_fltk()
Fl_Mac_App_Menu::print = ""; // Don't want the print item
Fl_Mac_App_Menu::services = _("Services");
- Fl_Mac_App_Menu::hide_others = _("Hide Others");
- Fl_Mac_App_Menu::show = _("Show All");
+ Fl_Mac_App_Menu::hide_others = _("Hide others");
+ Fl_Mac_App_Menu::show = _("Show all");
fl_mac_set_about(about_callback, nullptr);
diff --git a/vncviewer/vncviewer.desktop.in.in b/vncviewer/vncviewer.desktop.in.in
index 18f190fc..1a91755c 100644
--- a/vncviewer/vncviewer.desktop.in.in
+++ b/vncviewer/vncviewer.desktop.in.in
@@ -1,6 +1,6 @@
[Desktop Entry]
-Name=TigerVNC Viewer
-GenericName=Remote Desktop Viewer
+Name=TigerVNC viewer
+GenericName=Remote desktop viewer
Comment=Connect to VNC server and display remote desktop
Exec=@CMAKE_INSTALL_FULL_BINDIR@/vncviewer
Icon=tigervnc
diff --git a/vncviewer/vncviewer.man b/vncviewer/vncviewer.man
index 79c410ae..ade45b78 100644
--- a/vncviewer/vncviewer.man
+++ b/vncviewer/vncviewer.man
@@ -130,7 +130,7 @@ window will be placed by the window manager by default.
.B \-listen \fI[port]\fP
Causes vncviewer to listen on the given port (default 5500) for reverse
connections from a VNC server. WinVNC supports reverse connections initiated
-using the 'Add New Client' menu option or the '\-connect' command-line option.
+using the 'Add new client' menu option or the '\-connect' command-line option.
Xvnc supports reverse connections with a helper program called
.B vncconfig.
.
diff --git a/vncviewer/vncviewer.rc.in b/vncviewer/vncviewer.rc.in
index 074c96ee..a186ee95 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 project\0"
+ VALUE "FileDescription", "TigerVNC client\0"
+ VALUE "ProductName", "TigerVNC client\0"
VALUE "FileVersion", "@RCVERSION@\0"
VALUE "InternalName", "vncviewer\0"
VALUE "LegalCopyright", "Copyright (C) 1999-2024 TigerVNC Team and many others (see README.rst)\0"