diff --git a/docbook/wsug_src/WSUG_chapter_statistics.adoc b/docbook/wsug_src/WSUG_chapter_statistics.adoc index 4d215727d1..2cdaa0fdd4 100644 --- a/docbook/wsug_src/WSUG_chapter_statistics.adoc +++ b/docbook/wsug_src/WSUG_chapter_statistics.adoc @@ -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 current display filter. _Absolute start time_ switches the start time column 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. The btn:[Copy] button will copy the list values to the clipboard in CSV diff --git a/docbook/wsug_src/WSUG_chapter_use.adoc b/docbook/wsug_src/WSUG_chapter_use.adoc index 85d0cc933b..9592e07f6f 100644 --- a/docbook/wsug_src/WSUG_chapter_use.adoc +++ b/docbook/wsug_src/WSUG_chapter_use.adoc @@ -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 <>. |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 <>. -The fields “Time of Day”, “Date and Time of Day”, “Seconds Since Beginning of -Capture”, “Seconds Since Previous Captured Packet” and “Seconds Since Previous -Displayed Packet” are mutually exclusive. +The fields “Time of Day”, “Date and Time of Day”, “Seconds Since First +Captured Packet”, “Seconds Since Previous Captured Packet” and “Seconds +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 <>. |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 <>. -|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 <>. +|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 <>. |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 <>. |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 <>. |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 <>. diff --git a/docbook/wsug_src/WSUG_chapter_work.adoc b/docbook/wsug_src/WSUG_chapter_work.adoc index 70a3e6da45..3e3b0ba91d 100644 --- a/docbook/wsug_src/WSUG_chapter_work.adoc +++ b/docbook/wsug_src/WSUG_chapter_work.adoc @@ -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 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 (see <>). @@ -1249,7 +1249,7 @@ The time references will not be saved permanently and will be lost when you close the capture file. 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). To work with time references, choose one of the menu:Time Reference[] items in diff --git a/ui/qt/wireshark_main_window.cpp b/ui/qt/wireshark_main_window.cpp index 2a6c3ee200..2f0e3ca560 100644 --- a/ui/qt/wireshark_main_window.cpp +++ b/ui/qt/wireshark_main_window.cpp @@ -2204,7 +2204,7 @@ void WiresharkMainWindow::initTimeDisplayFormatMenu() td_actions[main_ui_->actionViewTimeDisplayFormatDateYDOYandTimeOfDay] = TS_ABSOLUTE_WITH_YDOY; td_actions[main_ui_->actionViewTimeDisplayFormatTimeOfDay] = TS_ABSOLUTE; 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_->actionViewTimeDisplayFormatSecondsSincePreviousDisplayedPacket] = TS_DELTA_DIS; td_actions[main_ui_->actionViewTimeDisplayFormatUTCDateYMDandTimeOfDay] = TS_UTC_WITH_YMD; diff --git a/ui/qt/wireshark_main_window.ui b/ui/qt/wireshark_main_window.ui index 488c007748..90b85c6ab1 100644 --- a/ui/qt/wireshark_main_window.ui +++ b/ui/qt/wireshark_main_window.ui @@ -296,7 +296,7 @@ - + @@ -2301,12 +2301,12 @@ Ctrl+Alt+3 - + true - Seconds Since Beginning of Capture + Seconds Since First Captured Packet Show packet times as the date and time of day.