diff options
Diffstat (limited to 'vncviewer')
-rw-r--r-- | vncviewer/OptionsDialog.cxx | 2 | ||||
-rw-r--r-- | vncviewer/ServerDialog.cxx | 4 | ||||
-rw-r--r-- | vncviewer/Viewport.cxx | 2 | ||||
-rw-r--r-- | vncviewer/org.tigervnc.vncviewer.metainfo.xml.in | 6 | ||||
-rw-r--r-- | vncviewer/vncviewer.cxx | 12 | ||||
-rw-r--r-- | vncviewer/vncviewer.desktop.in.in | 4 | ||||
-rw-r--r-- | vncviewer/vncviewer.man | 2 | ||||
-rw-r--r-- | vncviewer/vncviewer.rc.in | 6 |
8 files changed, 19 insertions, 19 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx index a7e2de2f..c5f21b24 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 e24438d6..e9d4e75b 100644 --- a/vncviewer/ServerDialog.cxx +++ b/vncviewer/ServerDialog.cxx @@ -60,7 +60,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; @@ -85,7 +85,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/Viewport.cxx b/vncviewer/Viewport.cxx index 219bb57e..8f7644c3 100644 --- a/vncviewer/Viewport.cxx +++ b/vncviewer/Viewport.cxx @@ -259,7 +259,7 @@ void Viewport::setCursor(int width, int height, const Point& hotspot, if (data[i*4 + 3] != 0) break; if ((i == width*height) && dotWhenNoCursor) { - vlog.debug("cursor is empty - using dot"); + vlog.debug("Cursor is empty, using dot"); Fl_Pixmap pxm(dotcursor_xpm); cursor = new Fl_RGB_Image(&pxm); 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 5acab1a1..5e2692e8 100644 --- a/vncviewer/vncviewer.cxx +++ b/vncviewer/vncviewer.cxx @@ -101,9 +101,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); @@ -263,7 +263,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 viewer will now exit."), sig); exit(1); } @@ -388,7 +388,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"); @@ -411,8 +411,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" |