Qt+docs: Capitalize JSON.

JSON is an abbreviation and should be displayed in all caps.
https://www.json.org/json-en.html
This commit is contained in:
Gerald Combs 2022-06-20 11:37:59 -07:00
parent d8140e92c9
commit 3d52693eaa
4 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ wsbuglink:17779[]
* The Conversation and Endpoint dialogs have been redesigned with the following improvements:
- The context menu now includes the option to resize all columns, as well as copying elements
- Data may be exported as Json
- Data may be exported as JSON
- Tabs may be detached and reattached from the dialog
- Adding/Removing tabs will keep them in the same order all the time
- If a filter is applied, two columns are shown in either dialog detailing the difference between

View File

@ -1091,7 +1091,7 @@ Wireshark uses various mime-types for dragging dropping as well as file formats.
This chapter gives an overview over all the mimetypes being used, as well as the
data format in which data has to be provided for each individual mimetype.
If not otherwise stated, the data is encoded as a Json Object.
If not otherwise stated, the data is encoded as a JSON Object.
==== Display Filter

View File

@ -74,7 +74,7 @@ ShowPacketBytesDialog::ShowPacketBytesDialog(QWidget &parent, CaptureFile &cf) :
ui->cbShowAs->addItem(tr("Hex Dump"), ShowAsHexDump);
ui->cbShowAs->addItem(tr("HTML"), ShowAsHTML);
ui->cbShowAs->addItem(tr("Image"), ShowAsImage);
ui->cbShowAs->addItem(tr("Json"), ShowAsJson);
ui->cbShowAs->addItem(tr("JSON"), ShowAsJson);
ui->cbShowAs->addItem(tr("Raw"), ShowAsRAW);
ui->cbShowAs->addItem(tr("Rust Array"), ShowAsRustArray);
// UTF-8 is guaranteed to exist as a QTextCodec

View File

@ -272,8 +272,8 @@ QMenu * TrafficTree::createCopyMenu(QWidget *parent)
ca->setToolTip(tr("Copy all values of this page to the clipboard in the YAML data serialization format."));
ca->setProperty("copy_as", TrafficTree::CLIPBOARD_YAML);
connect(ca, &QAction::triggered, this, &TrafficTree::clipboardAction);
ca = copy_menu->addAction(tr("as Json"));
ca->setToolTip(tr("Copy all values of this page to the clipboard in the Json data serialization format."));
ca = copy_menu->addAction(tr("as JSON"));
ca->setToolTip(tr("Copy all values of this page to the clipboard in the JSON data serialization format."));
ca->setProperty("copy_as", TrafficTree::CLIPBOARD_JSON);
connect(ca, &QAction::triggered, this, &TrafficTree::clipboardAction);