About: Tweak a sentence about the project

Uncapitalize Open Source Software. Prefer the well established umbrella
term "free and open source software". Add specifics about the license
version.

Most references use an hyphen with "open-source". Do that as well.
This commit is contained in:
João Valverde 2022-07-31 11:04:36 +01:00 committed by A Wireshark GitLab Utility
parent a97e1ee581
commit 2c4557d7ad
1 changed files with 2 additions and 2 deletions

View File

@ -454,7 +454,7 @@ void AboutDialog::updateWiresharkText()
message += "<p>" + html_escape(copyright_info_str) + "</p>\n\n";
message += "<p>" + html_escape(comp_info_str) + "</p>\n\n";
message += "<p>" + html_escape(runtime_info_str) + "</p>\n\n";
message += "<p>Wireshark is Open Source Software released under the GNU General Public License.</p>\n\n";
message += "<p>Wireshark is free and open-source software released under the GNU General Public License, version 2 or later.</p>\n\n";
message += "<p>Check the man page and ";
message += "<a href=https://www.wireshark.org>https://www.wireshark.org</a> ";
message += "for more information.</p>\n\n";
@ -476,7 +476,7 @@ DIAG_OFF(stringop-overread)
#if WS_IS_AT_LEAST_GNUC_VERSION(12,1)
DIAG_ON(stringop-overread)
#endif
clipboardInfo += "Wireshark is Open Source Software released under the GNU General Public License.\n";
clipboardInfo += "Wireshark is free and open-source software released under the GNU General Public License, version 2 or later.\n\n";
}
void AboutDialog::on_copyToClipboard_clicked()