Qt: Reword menu item Seconds Since Beginning of Capture

This commit is contained in:
Jaap Keuter 2022-06-05 23:55:59 +00:00 committed by Gerald Combs
parent 9d716d793c
commit fe4210029a
5 changed files with 11 additions and 11 deletions

View File

@ -213,7 +213,7 @@ the specific protocol layer (MAC layer for the selected Ethernet endpoints
page). _Limit to display filter_ will only show conversations matching the page). _Limit to display filter_ will only show conversations matching the
current display filter. _Absolute start time_ switches the start time column current display filter. _Absolute start time_ switches the start time column
between relative (“Rel Start”) and absolute (“Abs Start”) times. Relative start between relative (“Rel Start”) and absolute (“Abs Start”) times. Relative start
times match the “Seconds Since Beginning of Capture” time display format in the times match the “Seconds Since First Captured Packet” time display format in the
packet list and absolute start times match the “Time of Day” display format. packet list and absolute start times match the “Time of Day” display format.
The btn:[Copy] button will copy the list values to the clipboard in CSV The btn:[Copy] button will copy the list values to the clipboard in CSV

View File

@ -411,13 +411,13 @@ image::wsug_graphics/ws-view-menu.png[{screenshot-attrs}]
|menu:Packet Diagram[] ||This menu item hides or shows the packet diagram pane. See <<ChUsePacketDiagramPaneSection>>. |menu:Packet Diagram[] ||This menu item hides or shows the packet diagram pane. See <<ChUsePacketDiagramPaneSection>>.
|menu:Time Display Format[Date and Time of Day: 1970-01-01 01:02:03.123456]|| Selecting this tells Wireshark to display the time stamps in date and time of day format, see <<ChWorkTimeFormatsSection>>. |menu:Time Display Format[Date and Time of Day: 1970-01-01 01:02:03.123456]|| Selecting this tells Wireshark to display the time stamps in date and time of day format, see <<ChWorkTimeFormatsSection>>.
The fields “Time of Day”, “Date and Time of Day”, “Seconds Since Beginning of The fields “Time of Day”, “Date and Time of Day”, “Seconds Since First
Capture”, “Seconds Since Previous Captured Packet” and “Seconds Since Previous Captured Packet”, “Seconds Since Previous Captured Packet” and “Seconds
Displayed Packet” are mutually exclusive. Since Previous Displayed Packet” are mutually exclusive.
|menu:Time Display Format[Time of Day: 01:02:03.123456]||Selecting this tells Wireshark to display time stamps in time of day format, see <<ChWorkTimeFormatsSection>>. |menu:Time Display Format[Time of Day: 01:02:03.123456]||Selecting this tells Wireshark to display time stamps in time of day format, see <<ChWorkTimeFormatsSection>>.
|menu:Time Display Format[Seconds Since Epoch (1970-01-01): 1234567890.123456]||Selecting this tells Wireshark to display time stamps in seconds since 1970-01-01 00:00:00, see <<ChWorkTimeFormatsSection>>. |menu:Time Display Format[Seconds Since Epoch (1970-01-01): 1234567890.123456]||Selecting this tells Wireshark to display time stamps in seconds since 1970-01-01 00:00:00, see <<ChWorkTimeFormatsSection>>.
|menu:Time Display Format[Seconds Since Beginning of Capture: 123.123456]||Selecting this tells Wireshark to display time stamps in seconds since beginning of capture format, see <<ChWorkTimeFormatsSection>>. |menu:Time Display Format[Seconds Since First Captured Packet: 123.123456]||Selecting this tells Wireshark to display time stamps in seconds since first captured packet format, see <<ChWorkTimeFormatsSection>>.
|menu:Time Display Format[Seconds Since Previous Captured Packet: 1.123456]||Selecting this tells Wireshark to display time stamps in seconds since previous captured packet format, see <<ChWorkTimeFormatsSection>>. |menu:Time Display Format[Seconds Since Previous Captured Packet: 1.123456]||Selecting this tells Wireshark to display time stamps in seconds since previous captured packet format, see <<ChWorkTimeFormatsSection>>.
|menu:Time Display Format[Seconds Since Previous Displayed Packet: 1.123456]||Selecting this tells Wireshark to display time stamps in seconds since previous displayed packet format, see <<ChWorkTimeFormatsSection>>. |menu:Time Display Format[Seconds Since Previous Displayed Packet: 1.123456]||Selecting this tells Wireshark to display time stamps in seconds since previous displayed packet format, see <<ChWorkTimeFormatsSection>>.
|menu:Time Display Format[Automatic (File Format Precision)]||Selecting this tells Wireshark to display time stamps with the precision given by the capture file format used, see <<ChWorkTimeFormatsSection>>. |menu:Time Display Format[Automatic (File Format Precision)]||Selecting this tells Wireshark to display time stamps with the precision given by the capture file format used, see <<ChWorkTimeFormatsSection>>.

View File

@ -1206,7 +1206,7 @@ The available presentation formats are:
* menu:Time of Day: 01:02:03.123456[] The absolute time of the day when the packet * menu:Time of Day: 01:02:03.123456[] The absolute time of the day when the packet
was captured. was captured.
* menu:Seconds Since Beginning of Capture: 123.123456[] The time relative to the * menu:Seconds Since First Captured Packet: 123.123456[] The time relative to the
start of the capture file or the first “Time Reference” before this packet start of the capture file or the first “Time Reference” before this packet
(see <<ChWorkTimeReferencePacketSection>>). (see <<ChWorkTimeReferencePacketSection>>).
@ -1249,7 +1249,7 @@ The time references will not be saved permanently and will be lost when you
close the capture file. close the capture file.
Time referencing will only be useful if the time display format is set to Time referencing will only be useful if the time display format is set to
“Seconds Since Beginning of Capture”. If one of the other time display formats “Seconds Since First Captured Packet”. If one of the other time display formats
are used, time referencing will have no effect (and will make no sense either). are used, time referencing will have no effect (and will make no sense either).
To work with time references, choose one of the menu:Time Reference[] items in To work with time references, choose one of the menu:Time Reference[] items in

View File

@ -2204,7 +2204,7 @@ void WiresharkMainWindow::initTimeDisplayFormatMenu()
td_actions[main_ui_->actionViewTimeDisplayFormatDateYDOYandTimeOfDay] = TS_ABSOLUTE_WITH_YDOY; td_actions[main_ui_->actionViewTimeDisplayFormatDateYDOYandTimeOfDay] = TS_ABSOLUTE_WITH_YDOY;
td_actions[main_ui_->actionViewTimeDisplayFormatTimeOfDay] = TS_ABSOLUTE; td_actions[main_ui_->actionViewTimeDisplayFormatTimeOfDay] = TS_ABSOLUTE;
td_actions[main_ui_->actionViewTimeDisplayFormatSecondsSinceEpoch] = TS_EPOCH; td_actions[main_ui_->actionViewTimeDisplayFormatSecondsSinceEpoch] = TS_EPOCH;
td_actions[main_ui_->actionViewTimeDisplayFormatSecondsSinceBeginningOfCapture] = TS_RELATIVE; td_actions[main_ui_->actionViewTimeDisplayFormatSecondsSinceFirstCapturedPacket] = TS_RELATIVE;
td_actions[main_ui_->actionViewTimeDisplayFormatSecondsSincePreviousCapturedPacket] = TS_DELTA; td_actions[main_ui_->actionViewTimeDisplayFormatSecondsSincePreviousCapturedPacket] = TS_DELTA;
td_actions[main_ui_->actionViewTimeDisplayFormatSecondsSincePreviousDisplayedPacket] = TS_DELTA_DIS; td_actions[main_ui_->actionViewTimeDisplayFormatSecondsSincePreviousDisplayedPacket] = TS_DELTA_DIS;
td_actions[main_ui_->actionViewTimeDisplayFormatUTCDateYMDandTimeOfDay] = TS_UTC_WITH_YMD; td_actions[main_ui_->actionViewTimeDisplayFormatUTCDateYMDandTimeOfDay] = TS_UTC_WITH_YMD;

View File

@ -296,7 +296,7 @@
<addaction name="actionViewTimeDisplayFormatDateYDOYandTimeOfDay"/> <addaction name="actionViewTimeDisplayFormatDateYDOYandTimeOfDay"/>
<addaction name="actionViewTimeDisplayFormatTimeOfDay"/> <addaction name="actionViewTimeDisplayFormatTimeOfDay"/>
<addaction name="actionViewTimeDisplayFormatSecondsSinceEpoch"/> <addaction name="actionViewTimeDisplayFormatSecondsSinceEpoch"/>
<addaction name="actionViewTimeDisplayFormatSecondsSinceBeginningOfCapture"/> <addaction name="actionViewTimeDisplayFormatSecondsSinceFirstCapturedPacket"/>
<addaction name="actionViewTimeDisplayFormatSecondsSincePreviousCapturedPacket"/> <addaction name="actionViewTimeDisplayFormatSecondsSincePreviousCapturedPacket"/>
<addaction name="actionViewTimeDisplayFormatSecondsSincePreviousDisplayedPacket"/> <addaction name="actionViewTimeDisplayFormatSecondsSincePreviousDisplayedPacket"/>
<addaction name="actionViewTimeDisplayFormatUTCDateYMDandTimeOfDay"/> <addaction name="actionViewTimeDisplayFormatUTCDateYMDandTimeOfDay"/>
@ -2301,12 +2301,12 @@
<string notr="true">Ctrl+Alt+3</string> <string notr="true">Ctrl+Alt+3</string>
</property> </property>
</action> </action>
<action name="actionViewTimeDisplayFormatSecondsSinceBeginningOfCapture"> <action name="actionViewTimeDisplayFormatSecondsSinceFirstCapturedPacket">
<property name="checkable"> <property name="checkable">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="text"> <property name="text">
<string>Seconds Since Beginning of Capture</string> <string>Seconds Since First Captured Packet</string>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>Show packet times as the date and time of day.</string> <string>Show packet times as the date and time of day.</string>