Qt, docs, ieee1905: fix some spelling errors

The spelling error for "Desription" in the context menu was very
obvious. The others were found by scanning the output of:

    grep -Po '<source>\K.*(?=</source>)' wireshark_en.ts

Change-Id: I4b95236c82f76828a115d59d7c8e0b853eae1d26
Reviewed-on: https://code.wireshark.org/review/34582
Petri-Dish: Peter Wu <peter@lekensteyn.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
This commit is contained in:
Peter Wu 2019-09-21 01:53:29 +01:00
parent 42b72e149a
commit 29be7f9d9a
11 changed files with 15 additions and 16 deletions

View File

@ -772,10 +772,9 @@ and is highlighted so that you can more easily change it.
Delete (-)::
Deletes the selected profile. This includes all configuration files used
in this profile. It is not possible to delete the “Default” profile or global
profiles. Multiple profiles can be selected and deleted at the same time, if global
profiles are selected they will be skipped, a selected "Default" profile will be
resetted.
in this profile. Multiple profiles can be selected and deleted at the same time.
It is not possible to delete the “Default” profile or global profiles.
Deletion of the "Default" profile will reset this profile.
Copy::
Copies the selected profile. This copies the configuration of the

View File

@ -4673,7 +4673,7 @@ proto_register_ieee1905(void)
FT_UINT32, BASE_DEC, NULL, 0, NULL, HFILL }},
{ &hf_ieee1905_mac_throughput_capacity,
{ "MAC througput capacity", "ieee1905.macThroughputCapacity",
{ "MAC throughput capacity", "ieee1905.macThroughputCapacity",
FT_UINT16, BASE_DEC, NULL, 0, NULL, HFILL }},
{ &hf_ieee1905_link_availability,

View File

@ -53,7 +53,7 @@
static void extcap_child_watch_cb(GPid pid, gint status, gpointer user_data);
/* internal container, for all the extcap executables that have been found.
* Will be resetted if extcap_clear_interfaces() is being explicitly called
* Will be reset if extcap_clear_interfaces() is being explicitly called
* and is being used for printing information about all extcap interfaces found,
* as well as storing all sub-interfaces
*/

View File

@ -203,7 +203,7 @@
<string>Mark/Unmark Row</string>
</property>
<property name="shortcut">
<string>CtrlM</string>
<string>Ctrl-M</string>
</property>
</action>
<action name="actionMark_Unmark_Cell">

View File

@ -100,7 +100,7 @@
</row>
<row>
<property name="text">
<string>LMP Subverion</string>
<string>LMP Subversion</string>
</property>
</row>
<row>
@ -246,7 +246,7 @@
<string>Mark/Unmark Row</string>
</property>
<property name="shortcut">
<string>CtrlM</string>
<string>Ctrl-M</string>
</property>
</action>
<action name="actionMark_Unmark_Cell">

View File

@ -186,7 +186,7 @@
<string>Mark/Unmark Row</string>
</property>
<property name="shortcut">
<string>CtrlM</string>
<string>Ctrl-M</string>
</property>
</action>
<action name="actionMark_Unmark_Cell">

View File

@ -159,7 +159,7 @@
<item>
<widget class="QLabel" name="label_3">
<property name="toolTip">
<string>The format in which to parse timestamps in the text file (eg. %H:%M:%S.). Format specifiers are based on strptime(3)</string>
<string>The format in which to parse timestamps in the text file (e.g. %H:%M:%S.). Format specifiers are based on strptime(3)</string>
</property>
<property name="text">
<string>Timestamp format:</string>
@ -169,7 +169,7 @@
<item>
<widget class="QLineEdit" name="dateTimeLineEdit">
<property name="toolTip">
<string>The format in which to parse timestamps in the text file (eg. %H:%M:%S.). Format specifiers are based on strptime(3)</string>
<string>The format in which to parse timestamps in the text file (e.g. %H:%M:%S.). Format specifiers are based on strptime(3)</string>
</property>
</widget>
</item>

View File

@ -1648,7 +1648,7 @@
<string>Throughput</string>
</property>
<property name="toolTip">
<string>TCP througput</string>
<string>TCP throughput</string>
</property>
</action>
<action name="actionStatisticsTcpStreamRoundTripTime">

View File

@ -72,7 +72,7 @@
<item>
<widget class="StockIconToolButton" name="deleteToolButton">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove this profile. System provided profiles cannot be removed. The default profile will be resetted upon deletion.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove this profile. System provided profiles cannot be removed. The default profile will be reset upon deletion.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="icon">
<iconset>

View File

@ -292,7 +292,7 @@ void ProtoTree::contextMenuEvent(QContextMenuEvent *event)
submenu->addAction(tr("All Visible Items"), this, SLOT(ctxCopyVisibleItems()));
action = submenu->addAction(tr("All Visible Selected Tree Items"), this, SLOT(ctxCopyVisibleItems()));
action->setProperty("selected_tree", qVariantFromValue(true));
action = submenu->addAction(tr("Desription"), this, SLOT(ctxCopySelectedInfo()));
action = submenu->addAction(tr("Description"), this, SLOT(ctxCopySelectedInfo()));
action->setProperty("field_type", ProtoTree::Description);
action = submenu->addAction(tr("Field Name"), this, SLOT(ctxCopySelectedInfo()));
action->setProperty("field_type", ProtoTree::Name);

View File

@ -64,7 +64,7 @@ AdditionalToolBar * AdditionalToolBar::create(QWidget * parent, ext_toolbar_t *
if ( newAction )
{
result->addAction(newAction);
/* Necessary, because enable state is resetted upon adding the action */
/* Necessary, because enable state is reset upon adding the action */
result->actions()[result->actions().count() - 1]->setEnabled(!item->capture_only);
}
}