diff --git a/AUTHORS b/AUTHORS index 25c17065b9..8ed790b59e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4556,6 +4556,7 @@ Jean Thomas Jean Yap Jean-Philippe Lebel Jeff Dyer +Jeff Layton Jeff Layton Jeff Oconnell Jeff Widman @@ -5179,6 +5180,7 @@ Timo Warns Timotej Ecimovic Timothy Geiser Tobias Brunner +Tobias Mueller Tobias Mueller Tobias Rasmusson Tobias Stoeckmann @@ -5306,6 +5308,7 @@ bzdula cff339 cheloftus chiachin2686 +dariusd0 database64128 dennisschagt eckart haug diff --git a/NEWS b/NEWS index 438b9afbe8..2b3458fbf9 100644 --- a/NEWS +++ b/NEWS @@ -19,6 +19,10 @@ Wireshark 4.3.0 Release Notes Plugin registration API was refactored. Plugin authors must update their plugins as described below. + Custom columns can be defined using any valid field expression, such + as display filter functions, slices, arithmetic calculations, logical + tests, raw byte addressing, and the layer modifier. + Many other improvements have been made. See the “New and Updated Features” section below for more details. @@ -90,11 +94,50 @@ Wireshark 4.3.0 Release Notes is advisable to check that the "dfilter_macros" (old) and "dmacros" (new) files in the profile directory are consistent. + • Custom columns can be defined using any valid field expression: + + • Display filter functions, like `len(tcp.payload)`, including + nested functions like `min(len(tcp.payload), len(udp.payload)` + and newly defined functions using the plugin system mentioned + above. Issue 15990[1] Issue 16181[2] + + • Arithmetic calculations, like `ip.len * 8` or `tcp.srcport + + tcp.dstport`. Issue 7752[3] + + • Slices, like `tcp.payload[4:4]`. Issue 10154[4] + + • The layer operator, like `ip.proto#1` to return the proto + field in the first IPv4 layer if there is tunneling. Issue + 18588[5] + + • Raw byte addressing, like `@ip`, useful to return the bytes of + a protocol or FT_NONE field, among others. Issue 19076[6] + + • Logical tests, like `tcp.port == 443`, which produce a check + mark if the test matches (similar to protocol and none fields + without `@`.) This works with all logical operators, including + e.g. regular expression matching (`matches` or `~`.) + + • Defined display filter macros. + + • Any combination of the above also works. + + • Multifield columns are still available. For backwards + compatiblity, `X or Y` is interpreted as a multifield column as + before. To represent a logical test for the presence of multiple + fields instead of concatenating values, use parenthesis, like + `(tcp.options.timestamp or tcp.options.nop`. + + • Field references are not implemented, because there’s no sense + of a currently selected frame. "Resolved" column values (such as + host name resolution or value string lookup) are not supported + for any of the new expressions yet. + • When selecting "Manage Interfaces" from "Capture Options", Wireshark only attempts to reconnect to rpcap (remote) hosts that were connected to in the last session, instead of every remote host that the current profile has ever connected to. Issue - 17484[1] + 17484[7] • Adding interfaces at startup is about twice as fast, and has many fewer UAC pop-ups when npcap is installed with access restricted @@ -141,9 +184,9 @@ Wireshark 4.3.0 Release Notes New Protocol Support - EGNOS Message Server (EMS) file format, MAC NR Framed - (mac-nr-framed), RF4CE Network Layer (RF4CE), and RF4CE Profile - (RF4CE Profile) + Allied Telesis Resiliency Link (AT RL), EGNOS Message Server (EMS) + file format, MAC NR Framed (mac-nr-framed), RF4CE Network Layer + (RF4CE), and RF4CE Profile (RF4CE Profile) Updated Protocol Support @@ -177,7 +220,7 @@ Wireshark 4.3.0 Release Notes Most Linux and Unix vendors supply their own Wireshark packages. You can usually install or upgrade Wireshark using the package management system specific to that platform. A list of third-party packages can - be found on the download page[2] on the Wireshark web site. + be found on the download page[8] on the Wireshark web site. File Locations @@ -192,32 +235,38 @@ Wireshark 4.3.0 Release Notes The User’s Guide, manual pages and various other documentation can be found at https://www.wireshark.org/docs/ - Community support is available on Wireshark’s Q&A site[3] and on the + Community support is available on Wireshark’s Q&A site[9] and on the wireshark-users mailing list. Subscription information and archives - for all of Wireshark’s mailing lists can be found on the web site[4]. + for all of Wireshark’s mailing lists can be found on the web site[10]. - Bugs and feature requests can be reported on the issue tracker[5]. + Bugs and feature requests can be reported on the issue tracker[11]. You can learn protocol analysis and meet Wireshark’s developers at - SharkFest[6]. + SharkFest[12]. How You Can Help The Wireshark Foundation helps as many people as possible understand their networks as much as possible. You can find out more and donate - at wiresharkfoundation.org[7]. + at wiresharkfoundation.org[13]. Frequently Asked Questions - A complete FAQ is available on the Wireshark web site[8]. + A complete FAQ is available on the Wireshark web site[14]. References - 1. https://gitlab.com/wireshark/wireshark/-/issues/17484 - 2. https://www.wireshark.org/download.html - 3. https://ask.wireshark.org/ - 4. https://www.wireshark.org/lists/ - 5. https://gitlab.com/wireshark/wireshark/-/issues - 6. https://sharkfest.wireshark.org - 7. https://wiresharkfoundation.org - 8. https://www.wireshark.org/faq.html + 1. https://gitlab.com/wireshark/wireshark/-/issues/15990 + 2. https://gitlab.com/wireshark/wireshark/-/issues/16181 + 3. https://gitlab.com/wireshark/wireshark/-/issues/7752 + 4. https://gitlab.com/wireshark/wireshark/-/issues/10154 + 5. https://gitlab.com/wireshark/wireshark/-/issues/18588 + 6. https://gitlab.com/wireshark/wireshark/-/issues/19076 + 7. https://gitlab.com/wireshark/wireshark/-/issues/17484 + 8. https://www.wireshark.org/download.html + 9. https://ask.wireshark.org/ + 10. https://www.wireshark.org/lists/ + 11. https://gitlab.com/wireshark/wireshark/-/issues + 12. https://sharkfest.wireshark.org + 13. https://wiresharkfoundation.org + 14. https://www.wireshark.org/faq.html diff --git a/epan/enterprises.c b/epan/enterprises.c index 843c788bbf..d28c5b8f7b 100644 --- a/epan/enterprises.c +++ b/epan/enterprises.c @@ -8,7 +8,7 @@ * SPDX-License-Identifier: GPL-2.0-or-later */ -/* (last updated 2024-02-09) */ +/* (last updated 2024-02-17) */ #include "config.h" @@ -19,12 +19,12 @@ typedef struct { uint32_t max_idx; - const char* values[61499]; + const char* values[61527]; } global_enterprises_table_t; static global_enterprises_table_t table = { - 61498, + 61526, { "Reserved", // 0 "NxNetworks", // 1 @@ -11176,7 +11176,7 @@ static global_enterprises_table_t table = "SVTO Hewlett-Packard", // 11147 "Swan Systems", // 11148 "TI, d.o.o.", // 11149 - "Roamware Inc.", // 11150 + "Mobileum Inc.", // 11150 "Urschel Laboratories Incorporated", // 11151 "Vocalcom", // 11152 "WebWear", // 11153 @@ -14158,7 +14158,7 @@ static global_enterprises_table_t table = "Sevan Networks, Inc.", // 14129 "Bifco", // 14130 "Ifoundry Systems", // 14131 - "CS Systemes d'Information", // 14132 + "CS GROUP", // 14132 "Buergernetz Weihenstephan e.V.", // 14133 "University of Szeged", // 14134 "SysDM", // 14135 @@ -61524,7 +61524,35 @@ static global_enterprises_table_t table = "Festival de Cannes", // 61495 "Aleksandr Loktev", // 61496 "Conor DeCamp", // 61497 - "RWB PrivateCapital Emissionshaus AG" // 61498 + "RWB PrivateCapital Emissionshaus AG", // 61498 + "steute Technologies GmbH & Co. KG", // 61499 + "APL Red Team", // 61500 + "Malayan Banking Berhad", // 61501 + "Stadt Nuernberg", // 61502 + "Delta, LLC", // 61503 + "PT. Satata Neka Tama", // 61504 + "Glier's Meats, Inc.", // 61505 + "Popli Design Group", // 61506 + "Armstrong Group International, Inc", // 61507 + "IdentiTek sh.a", // 61508 + "no42.org", // 61509 + "Oficiul National al Registrului Comertului", // 61510 + "J.H. Bennett & Company, Inc.", // 61511 + "Crump Homelab", // 61512 + "SondeHub", // 61513 + "Valley Metro", // 61514 + "Xian Stannard", // 61515 + "CooperVision Specialty Eyecare", // 61516 + "Digit'Eaux", // 61517 + "Tout Pareil Corp.", // 61518 + "TDK Sensors AG & Co. KG", // 61519 + "Abbott LLC", // 61520 + "llang.at - IT-Dienstleistungen", // 61521 + "Perryton Equity Exchange", // 61522 + "EQUIRON", // 61523 + "Research and Production Association named after A.S. Popov", // 61524 + "Darletto", // 61525 + "Dmitry Vorobiev" // 61526 } }; diff --git a/epan/manuf-data.c b/epan/manuf-data.c index 1d3a243bf9..b0aa596f13 100644 --- a/epan/manuf-data.c +++ b/epan/manuf-data.c @@ -14161,6 +14161,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0x0A, 0x87, 0x36 }, "IEEE1901Work", "IEEE 1901 Working Group" }, { { 0x0A, 0x8E, 0x62 }, "DeltaSolutio", "Delta Solutions LLC" }, { { 0x0A, 0xA2, 0x3B }, "Vitex", "Vitex LLC" }, + { { 0x0A, 0xAB, 0x8C }, "MidwestMicro", "Midwest Microwave Solutions Inc." }, { { 0x0A, 0xCD, 0x8F }, "CiscoNorway", "Cisco Systems Norway" }, { { 0x0A, 0xD9, 0xC4 }, "CraftDesigns", "Craft Designs, Inc" }, { { 0x0A, 0xE4, 0x71 }, "Caterpillar", "Caterpillar Inc." }, @@ -16643,6 +16644,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0x28, 0x64, 0xEF }, "FsanIntellig", "Shenzhen Fsan Intelligent Technology Co.,Ltd" }, { { 0x28, 0x65, 0x6B }, "KeystoneMicr", "Keystone Microtech Corporation" }, { { 0x28, 0x66, 0xE3 }, "AzureWaveTec", "AzureWave Technology Inc." }, + { { 0x28, 0x68, 0x47 }, "SiliconLabor", "Silicon Laboratories" }, { { 0x28, 0x68, 0xD2 }, "HuaweiTechno", "Huawei Technologies Co.,Ltd" }, { { 0x28, 0x6A, 0xB8 }, "Apple", "Apple, Inc." }, { { 0x28, 0x6A, 0xBA }, "Apple", "Apple, Inc." }, @@ -17565,6 +17567,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0x34, 0x15, 0x93 }, "RuckusWirele", "Ruckus Wireless" }, { { 0x34, 0x15, 0x9E }, "Apple", "Apple, Inc." }, { { 0x34, 0x17, 0xEB }, "Dell", "Dell Inc." }, + { { 0x34, 0x19, 0x4D }, "Arcadyan", "Arcadyan Corporation" }, { { 0x34, 0x1A, 0x35 }, "FiberhomeTel", "Fiberhome Telecommunication Technologies Co.,LTD" }, { { 0x34, 0x1A, 0x4C }, "WeibuElectro", "Shenzhen Weibu Electronics Co.,Ltd." }, { { 0x34, 0x1B, 0x22 }, "GrandbeingTe", "Grandbeing Technology Co., Ltd" }, @@ -17646,6 +17649,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0x34, 0x58, 0x40 }, "HuaweiTechno", "Huawei Technologies Co.,Ltd" }, { { 0x34, 0x58, 0x7C }, "MiraeInforma", "Mirae Information Technology Co., Ltd." }, { { 0x34, 0x5A, 0x06 }, "SHARP", "SHARP Corporation" }, + { { 0x34, 0x5A, 0x18 }, "AlignmentEng", "Alignment Engine Inc." }, { { 0x34, 0x5A, 0xBA }, "tcloudintell", "tcloud intelligence" }, { { 0x34, 0x5B, 0x11 }, "EviHeat", "Evi Heat Ab" }, { { 0x34, 0x5B, 0x98 }, "EMMicroelect", "EM Microelectronic" }, @@ -18649,6 +18653,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0x40, 0x2E, 0x71 }, "TexasInstrum", "Texas Instruments" }, { { 0x40, 0x2F, 0x86 }, "LGInnotek", "LG Innotek" }, { { 0x40, 0x30, 0x04 }, "Apple", "Apple, Inc." }, + { { 0x40, 0x30, 0x59 }, "SiliconLabor", "Silicon Laboratories" }, { { 0x40, 0x30, 0x67 }, "Conlog", "Conlog (Pty) Ltd" }, { { 0x40, 0x31, 0x3C }, "XIAOMIElectr", "XIAOMI Electronics,CO.,LTD" }, { { 0x40, 0x32, 0x9D }, "UnionImage", "Union Image Co.,Ltd" }, @@ -21160,7 +21165,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0x5C, 0xA1, 0x78 }, "TableTopMedi", "TableTop Media (dba Ziosk)" }, { { 0x5C, 0xA1, 0xE0 }, "EmbedWayTech", "EmbedWay Technologies" }, { { 0x5C, 0xA3, 0x9D }, "SamsungElect", "Samsung Electro Mechanics Co., Ltd." }, - { { 0x5C, 0xA3, 0xEB }, "Lokelsro", "Lokel s.r.o." }, + { { 0x5C, 0xA3, 0xEB }, "SKODADIGITAL", "SKODA DIGITAL s.r.o." }, { { 0x5C, 0xA4, 0x7D }, "ArubaHewlett", "Aruba, a Hewlett Packard Enterprise Company" }, { { 0x5C, 0xA4, 0x8A }, "Cisco", "Cisco Systems, Inc" }, { { 0x5C, 0xA4, 0xA4 }, "FiberhomeTel", "Fiberhome Telecommunication Technologies Co.,LTD" }, @@ -24469,6 +24474,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0x80, 0xE6, 0x50 }, "Apple", "Apple, Inc." }, { { 0x80, 0xE8, 0x2C }, "HewlettPacka", "Hewlett Packard" }, { { 0x80, 0xE8, 0x6F }, "Cisco", "Cisco Systems, Inc" }, + { { 0x80, 0xE9, 0x4A }, "LEAPSsro", "LEAPS s.r.o." }, { { 0x80, 0xEA, 0x07 }, "TpLinkTechno", "Tp-Link Technologies Co.,Ltd." }, { { 0x80, 0xEA, 0x0B }, "ZyxelCommuni", "Zyxel Communications Corporation" }, { { 0x80, 0xEA, 0x23 }, "WistronNeweb", "Wistron Neweb Corporation" }, @@ -25940,6 +25946,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0x94, 0x24, 0xE1 }, "AlcatelLucen", "Alcatel-Lucent Enterprise" }, { { 0x94, 0x25, 0x33 }, "HuaweiTechno", "Huawei Technologies Co.,Ltd" }, { { 0x94, 0x26, 0x1D }, "HuaweiTechno", "Huawei Technologies Co.,Ltd" }, + { { 0x94, 0x27, 0x70 }, "BSHHausgerät", "BSH Hausgeräte GmbH" }, { { 0x94, 0x27, 0x90 }, "TCTmobile", "TCT mobile ltd" }, { { 0x94, 0x28, 0x2E }, "NewH3CTechno", "New H3C Technologies Co., Ltd" }, { { 0x94, 0x28, 0x6F }, "zte", "zte corporation" }, @@ -27979,6 +27986,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0xAC, 0x1D, 0x06 }, "Apple", "Apple, Inc." }, { { 0xAC, 0x1E, 0x92 }, "SamsungElect", "Samsung Electronics Co.,Ltd" }, { { 0xAC, 0x1E, 0x9E }, "XiaomiCommun", "Xiaomi Communications Co Ltd" }, + { { 0xAC, 0x1E, 0xA9 }, "Intelbras", "Intelbras" }, { { 0xAC, 0x1E, 0xD0 }, "TemicAutomot", "Temic Automotive Philippines Inc." }, { { 0xAC, 0x1F, 0x09 }, "RAKwirelesst", "shenzhen RAKwireless technology Co.,Ltd" }, { { 0xAC, 0x1F, 0x0F }, "TexasInstrum", "Texas Instruments" }, @@ -29067,6 +29075,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0xB8, 0x5A, 0x73 }, "SamsungElect", "Samsung Electronics Co.,Ltd" }, { { 0xB8, 0x5A, 0xF7 }, "Ouya", "Ouya, Inc" }, { { 0xB8, 0x5A, 0xFE }, "HandaerCommu", "Handaer Communication Technology (Beijing) Co., Ltd" }, + { { 0xB8, 0x5C, 0x5C }, "Microsoft", "Microsoft Corporation" }, { { 0xB8, 0x5C, 0xEE }, "BaiduOnlineN", "Baidu Online Network Technology (Beijing) Co., Ltd" }, { { 0xB8, 0x5D, 0x0A }, "Apple", "Apple, Inc." }, { { 0xB8, 0x5D, 0xC3 }, "HuaweiTechno", "Huawei Technologies Co.,Ltd" }, @@ -31039,6 +31048,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0xD0, 0x07, 0x90 }, "TexasInstrum", "Texas Instruments" }, { { 0xD0, 0x07, 0xCA }, "JuniperNetwo", "Juniper Networks" }, { { 0xD0, 0x09, 0xC8 }, "Cisco", "Cisco Systems, Inc" }, + { { 0xD0, 0x09, 0xF5 }, "Hosiden", "Hosiden Corporation" }, { { 0xD0, 0x0A, 0xAB }, "YokogawaDigi", "Yokogawa Digital Computer Corporation" }, { { 0xD0, 0x0B, 0x27 }, "MurataManufa", "Murata Manufacturing Co., Ltd." }, { { 0xD0, 0x0D, 0xF7 }, "HuaweiDevice", "Huawei Device Co., Ltd." }, @@ -33308,6 +33318,7 @@ static const manuf_oui24_t global_manuf_oui24_table[] = { { { 0xE8, 0xA7, 0x30 }, "Apple", "Apple, Inc." }, { { 0xE8, 0xA7, 0x88 }, "XiamenLeelen", "Xiamen Leelen Technology Co., Ltd" }, { { 0xE8, 0xA7, 0xF2 }, "sTraffic", "sTraffic" }, + { { 0xE8, 0xA8, 0x48 }, "Wacom", "Wacom Co.,Ltd." }, { { 0xE8, 0xAA, 0xCB }, "SamsungElect", "Samsung Electronics Co.,Ltd" }, { { 0xE8, 0xAB, 0xF3 }, "HuaweiTechno", "Huawei Technologies Co.,Ltd" }, { { 0xE8, 0xAB, 0xFA }, "ReecamTech", "Shenzhen Reecam Tech.Ltd." }, @@ -35337,6 +35348,10 @@ static const manuf_oui28_t global_manuf_oui28_table[] = { { { 0x08, 0x63, 0x32, 0x00 }, "Eaton", "Eaton" }, { { 0x08, 0x63, 0x32, 0x20 }, "innovativesp", "innovative specialized security solutions" }, { { 0x08, 0x63, 0x32, 0x30 }, "UmanoMedical", "Umano Medical Inc." }, + { { 0x08, 0x63, 0x32, 0x50 }, "APaulSoftwar", "A Paul Software Systems Pvt. Ltd." }, + { { 0x08, 0x63, 0x32, 0x60 }, "OVTIndia", "OVT India pvt Ltd" }, + { { 0x08, 0x63, 0x32, 0xA0 }, "DynacomCommu", "Dynacom Communication" }, + { { 0x08, 0x63, 0x32, 0xD0 }, "akYtec", "akYtec GmbH" }, { { 0x08, 0xED, 0x02, 0x00 }, "D2SLink", "D2SLink Systems" }, { { 0x08, 0xED, 0x02, 0x10 }, "Imperx", "Imperx, Inc" }, { { 0x08, 0xED, 0x02, 0x20 }, "TESTouchEmbe", "TES Touch Embedded Solutions Inc." }, @@ -42676,7 +42691,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x00, 0x50, 0xC2, 0x88, 0x30 }, "NeocontrolSo", "Neocontrol Soluções em Automação" }, { { 0x00, 0x50, 0xC2, 0x88, 0x40 }, "IPThinking", "IP Thinking A/S" }, { { 0x00, 0x50, 0xC2, 0x88, 0x50 }, "OooNtkImos", "Ooo \"Ntk \"Imos\"" }, - { { 0x00, 0x50, 0xC2, 0x88, 0x60 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x00, 0x50, 0xC2, 0x88, 0x60 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x00, 0x50, 0xC2, 0x88, 0x70 }, "InventisTech", "Inventis Technology Pty Limited" }, { { 0x00, 0x50, 0xC2, 0x88, 0x80 }, "IAdea", "IAdea Corporation" }, { { 0x00, 0x50, 0xC2, 0x88, 0x90 }, "ACSMotionCon", "ACS Motion Control Ltd." }, @@ -44026,7 +44041,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x00, 0x50, 0xC2, 0xDD, 0x30 }, "Rohde&Schwar", "Rohde&Schwarz Topex SA" }, { { 0x00, 0x50, 0xC2, 0xDD, 0x40 }, "Systech", "Systech" }, { { 0x00, 0x50, 0xC2, 0xDD, 0x50 }, "FriendSpring", "Friend Spring Industrial Co., Ltd." }, - { { 0x00, 0x50, 0xC2, 0xDD, 0x60 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x00, 0x50, 0xC2, 0xDD, 0x60 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x00, 0x50, 0xC2, 0xDD, 0x70 }, "TornadoModul", "Tornado Modular Systems" }, { { 0x00, 0x50, 0xC2, 0xDD, 0x80 }, "LeonardoUK", "Leonardo UK Ltd" }, { { 0x00, 0x50, 0xC2, 0xDD, 0x90 }, "Metraware", "Metraware" }, @@ -45825,7 +45840,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x70, 0xB3, 0xD5, 0x30, 0x10 }, "WayneAnalyti", "Wayne Analytics Llc" }, { { 0x70, 0xB3, 0xD5, 0x30, 0x20 }, "DogWatch", "DogWatch Inc" }, { { 0x70, 0xB3, 0xD5, 0x30, 0x30 }, "FuchuGiken", "Fuchu Giken, Inc." }, - { { 0x70, 0xB3, 0xD5, 0x30, 0x40 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x70, 0xB3, 0xD5, 0x30, 0x40 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x70, 0xB3, 0xD5, 0x30, 0x50 }, "CAITRONIndus", "CAITRON Industrial Solutions GmbH" }, { { 0x70, 0xB3, 0xD5, 0x30, 0x60 }, "LemzT", "Lemz-T, Llc" }, { { 0x70, 0xB3, 0xD5, 0x30, 0x70 }, "Energiinnova", "Energi innovation Aps" }, @@ -47563,7 +47578,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x70, 0xB3, 0xD5, 0x9D, 0x10 }, "OS42UG", "OS42 UG (haftungsbeschraenkt)" }, { { 0x70, 0xB3, 0xD5, 0x9D, 0x20 }, "AcsMotionCon", "Acs Motion Control" }, { { 0x70, 0xB3, 0xD5, 0x9D, 0x30 }, "Communicatio", "Communication Technology Ltd." }, - { { 0x70, 0xB3, 0xD5, 0x9D, 0x40 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x70, 0xB3, 0xD5, 0x9D, 0x40 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x70, 0xB3, 0xD5, 0x9D, 0x50 }, "SouthernTier", "Southern Tier Technologies" }, { { 0x70, 0xB3, 0xD5, 0x9D, 0x60 }, "CrownSolarPo", "Crown Solar Power Fencing Systems" }, { { 0x70, 0xB3, 0xD5, 0x9D, 0x70 }, "KMOptoElektr", "KM OptoElektronik GmbH" }, @@ -47611,7 +47626,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x70, 0xB3, 0xD5, 0xA0, 0x20 }, "GreenFlux", "GreenFlux" }, { { 0x70, 0xB3, 0xD5, 0xA0, 0x30 }, "Proemion", "Proemion GmbH" }, { { 0x70, 0xB3, 0xD5, 0xA0, 0x40 }, "GaleaElectri", "Galea Electric S.L." }, - { { 0x70, 0xB3, 0xD5, 0xA0, 0x50 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x70, 0xB3, 0xD5, 0xA0, 0x50 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x70, 0xB3, 0xD5, 0xA0, 0x60 }, "KopisMobile", "Kopis Mobile LLC" }, { { 0x70, 0xB3, 0xD5, 0xA0, 0x70 }, "IoTrekTechno", "IoTrek Technology Private Limited" }, { { 0x70, 0xB3, 0xD5, 0xA0, 0x80 }, "BioBusiness", "BioBusiness" }, @@ -47831,7 +47846,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x70, 0xB3, 0xD5, 0xAD, 0xF0 }, "SeraphimOptr", "Seraphim Optronics Ltd" }, { { 0x70, 0xB3, 0xD5, 0xAE, 0x00 }, "AnyComm", "AnyComm.Co.,Ltd." }, { { 0x70, 0xB3, 0xD5, 0xAE, 0x10 }, "DimoCore", "DimoCore Corporation" }, - { { 0x70, 0xB3, 0xD5, 0xAE, 0x20 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x70, 0xB3, 0xD5, 0xAE, 0x20 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x70, 0xB3, 0xD5, 0xAE, 0x30 }, "ZhejiangWell", "Zhejiang Wellsun Electric Meter Co.,Ltd" }, { { 0x70, 0xB3, 0xD5, 0xAE, 0x40 }, "NuanceHearin", "Nuance Hearing Ltd." }, { { 0x70, 0xB3, 0xD5, 0xAE, 0x50 }, "BeatCraft", "BeatCraft, Inc." }, @@ -48842,7 +48857,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x70, 0xB3, 0xD5, 0xED, 0x50 }, "battlelinkte", "hangzhou battle link technology Co.,Ltd" }, { { 0x70, 0xB3, 0xD5, 0xED, 0x60 }, "Metrasens", "Metrasens Limited" }, { { 0x70, 0xB3, 0xD5, 0xED, 0x70 }, "Wave", "Wave" }, - { { 0x70, 0xB3, 0xD5, 0xED, 0x80 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x70, 0xB3, 0xD5, 0xED, 0x80 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x70, 0xB3, 0xD5, 0xED, 0x90 }, "AADONACommun", "AADONA Communication Pvt Ltd" }, { { 0x70, 0xB3, 0xD5, 0xED, 0xA0 }, "BreasMedical", "Breas Medical AB" }, { { 0x70, 0xB3, 0xD5, 0xED, 0xB0 }, "NetfortSolut", "Netfort Solutions" }, @@ -49142,6 +49157,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x00, 0xA0 }, "TaskUnite", "TaskUnite Inc. (dba AMPAworks)" }, { { 0x8C, 0x1F, 0x64, 0x00, 0xC0 }, "GuanShowTech", "Guan Show Technologe Co., Ltd." }, { { 0x8C, 0x1F, 0x64, 0x01, 0x10 }, "DEUTAWERKE", "DEUTA-WERKE GmbH" }, + { { 0x8C, 0x1F, 0x64, 0x01, 0x40 }, "CristalContr", "Cristal Controles Ltee" }, { { 0x8C, 0x1F, 0x64, 0x01, 0x70 }, "Farmote", "Farmote Limited" }, { { 0x8C, 0x1F, 0x64, 0x01, 0xA0 }, "Paragraf", "Paragraf" }, { { 0x8C, 0x1F, 0x64, 0x01, 0xE0 }, "SCIREQScient", "SCIREQ Scientific Respiratory Equipment Inc" }, @@ -49378,6 +49394,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x29, 0x80 }, "MeggerGerman", "Megger Germany GmbH" }, { { 0x8C, 0x1F, 0x64, 0x29, 0xF0 }, "Nagtech", "Nagtech Llc" }, { { 0x8C, 0x1F, 0x64, 0x2A, 0x10 }, "PantherunTec", "Pantherun Technologies Pvt Ltd" }, + { { 0x8C, 0x1F, 0x64, 0x2A, 0x40 }, "YUYAMAMFG", "YUYAMA MFG Co.,Ltd" }, { { 0x8C, 0x1F, 0x64, 0x2A, 0x50 }, "Nonet", "Nonet Inc" }, { { 0x8C, 0x1F, 0x64, 0x2A, 0x60 }, "RadiationSol", "Radiation Solutions Inc." }, { { 0x8C, 0x1F, 0x64, 0x2A, 0x80 }, "SHALARMSECUR", "SHALARM SECURITY Co.,LTD" }, @@ -49394,6 +49411,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x2C, 0x70 }, "ContraltoAud", "Contralto Audio Srl" }, { { 0x8C, 0x1F, 0x64, 0x2C, 0x80 }, "BRSSistemasE", "BRS Sistemas Eletrônicos" }, { { 0x8C, 0x1F, 0x64, 0x2C, 0xB0 }, "SmartCompone", "Smart Component Technologies Ltd" }, + { { 0x8C, 0x1F, 0x64, 0x2C, 0xC0 }, "SBS", "SBS SpA" }, { { 0x8C, 0x1F, 0x64, 0x2C, 0xD0 }, "TaiwanVtron", "Taiwan Vtron" }, { { 0x8C, 0x1F, 0x64, 0x2C, 0xE0 }, "E2Nova", "E2 Nova Corporation" }, { { 0x8C, 0x1F, 0x64, 0x2D, 0x00 }, "CambridgeRes", "Cambridge Research Systems Ltd" }, @@ -49478,7 +49496,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x38, 0xB0 }, "BorrellUSA", "Borrell USA Corp" }, { { 0x8C, 0x1F, 0x64, 0x38, 0xC0 }, "XiamenZhixia", "Xiamen Zhixiaojin Intelligent Technology Co., Ltd" }, { { 0x8C, 0x1F, 0x64, 0x38, 0xD0 }, "WilsonElectr", "Wilson Electronics" }, - { { 0x8C, 0x1F, 0x64, 0x38, 0xE0 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x8C, 0x1F, 0x64, 0x38, 0xE0 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x8C, 0x1F, 0x64, 0x38, 0xF0 }, "Unabiz", "Unabiz" }, { { 0x8C, 0x1F, 0x64, 0x39, 0x00 }, "SkyLabsdoo", "SkyLabs d.o.o." }, { { 0x8C, 0x1F, 0x64, 0x39, 0x10 }, "Cpc", "Cpc (Uk)" }, @@ -49569,6 +49587,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x47, 0x60 }, "ClairGlobal", "Clair Global Corporation" }, { { 0x8C, 0x1F, 0x64, 0x47, 0xA0 }, "MissingLinkE", "Missing Link Electronics, Inc." }, { { 0x8C, 0x1F, 0x64, 0x47, 0xD0 }, "EbNeuro", "Eb Neuro Spa" }, + { { 0x8C, 0x1F, 0x64, 0x48, 0x10 }, "VirtualVTrad", "VirtualV Trading Limited" }, { { 0x8C, 0x1F, 0x64, 0x48, 0x70 }, "TECHKON", "TECHKON GmbH" }, { { 0x8C, 0x1F, 0x64, 0x48, 0x90 }, "Hupi", "Hupi" }, { { 0x8C, 0x1F, 0x64, 0x48, 0xB0 }, "Monnit", "Monnit Corporation" }, @@ -49578,7 +49597,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x49, 0x60 }, "QualsenTechn", "Qualsen(Guangzhou)Technologies Co.,Ltd" }, { { 0x8C, 0x1F, 0x64, 0x49, 0x80 }, "YUYAMAMFG", "YUYAMA MFG Co.,Ltd" }, { { 0x8C, 0x1F, 0x64, 0x49, 0x90 }, "Tiama", "Tiama" }, - { { 0x8C, 0x1F, 0x64, 0x49, 0xB0 }, "WartsilaVoya", "Wartsila Voyage Limited" }, + { { 0x8C, 0x1F, 0x64, 0x49, 0xB0 }, "WartsilaVoya", "Wartsila Voyage Oy" }, { { 0x8C, 0x1F, 0x64, 0x4A, 0x00 }, "Tantec", "Tantec A/S" }, { { 0x8C, 0x1F, 0x64, 0x4A, 0x10 }, "BreasMedical", "Breas Medical AB" }, { { 0x8C, 0x1F, 0x64, 0x4A, 0x20 }, "Bludigit", "Bludigit SpA" }, @@ -49829,6 +49848,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x71, 0x80 }, "Abb", "Abb" }, { { 0x8C, 0x1F, 0x64, 0x71, 0xB0 }, "Adasky", "Adasky Ltd." }, { { 0x8C, 0x1F, 0x64, 0x72, 0x10 }, "MSMilindRama", "M/S Milind Ramachandra Rajwade" }, + { { 0x8C, 0x1F, 0x64, 0x72, 0x20 }, "Artome", "Artome Oy" }, { { 0x8C, 0x1F, 0x64, 0x72, 0x30 }, "Celestica", "Celestica Inc." }, { { 0x8C, 0x1F, 0x64, 0x72, 0x60 }, "Dave", "Dave Srl" }, { { 0x8C, 0x1F, 0x64, 0x72, 0xA0 }, "DorletSau", "Dorlet Sau" }, @@ -49861,6 +49881,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x77, 0x40 }, "navXperience", "navXperience GmbH" }, { { 0x8C, 0x1F, 0x64, 0x77, 0x50 }, "BectonDickin", "Becton Dickinson" }, { { 0x8C, 0x1F, 0x64, 0x77, 0x70 }, "Sicon", "Sicon srl" }, + { { 0x8C, 0x1F, 0x64, 0x77, 0x90 }, "InventioDiNi", "Inventio Di Nicolo' Bordoli" }, { { 0x8C, 0x1F, 0x64, 0x77, 0xB0 }, "DbSas", "Db Sas" }, { { 0x8C, 0x1F, 0x64, 0x77, 0xC0 }, "OrangeTreeTe", "Orange Tree Technologies Ltd" }, { { 0x8C, 0x1F, 0x64, 0x77, 0xE0 }, "Institutegeo", "Institute of geophysics, China earthquake administration" }, @@ -49917,6 +49938,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0x7F, 0x10 }, "AEMSingapore", "AEM Singapore Pte Ltd" }, { { 0x8C, 0x1F, 0x64, 0x7F, 0x40 }, "GMInternatio", "G.M. International srl" }, { { 0x8C, 0x1F, 0x64, 0x7F, 0x80 }, "FleetSafeInd", "FleetSafe India Private Limited" }, + { { 0x8C, 0x1F, 0x64, 0x7F, 0xC0 }, "MitsubishiEl", "Mitsubishi Electric Klimat Transportation Systems S.p.A." }, { { 0x8C, 0x1F, 0x64, 0x80, 0x00 }, "SDGTelecomEq", "Shenzhen SDG Telecom Equipment Co.,Ltd." }, { { 0x8C, 0x1F, 0x64, 0x80, 0x10 }, "ZhejiangLaol", "Zhejiang Laolan Information Technology Co., Ltd" }, { { 0x8C, 0x1F, 0x64, 0x80, 0x30 }, "MOSCAElektro", "MOSCA Elektronik und Antriebstechnik GmbH" }, @@ -50126,6 +50148,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0xA0, 0xA0 }, "WiseTechInte", "Shanghai Wise-Tech Intelligent Technology Co.,Ltd." }, { { 0x8C, 0x1F, 0x64, 0xA0, 0xD0 }, "LumiplanDuha", "Lumiplan Duhamel" }, { { 0x8C, 0x1F, 0x64, 0xA0, 0xE0 }, "ElacAmericas", "Elac Americas Inc." }, + { { 0x8C, 0x1F, 0x64, 0xA1, 0x30 }, "INVENTIASp", "INVENTIA Sp. z o.o." }, { { 0x8C, 0x1F, 0x64, 0xA1, 0xB0 }, "Zilica", "Zilica Limited" }, { { 0x8C, 0x1F, 0x64, 0xA1, 0xF0 }, "HitachiEnerg", "Hitachi Energy India Limited" }, { { 0x8C, 0x1F, 0x64, 0xA2, 0x90 }, "RingtailSecu", "Ringtail Security" }, @@ -50298,6 +50321,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0xBF, 0x30 }, "AlphatekAS", "Alphatek AS" }, { { 0x8C, 0x1F, 0x64, 0xBF, 0x40 }, "FluidCompone", "Fluid Components Intl" }, { { 0x8C, 0x1F, 0x64, 0xBF, 0x50 }, "UrbanJungleP", "The Urban Jungle Project" }, + { { 0x8C, 0x1F, 0x64, 0xBF, 0x60 }, "PanoramicPow", "Panoramic Power" }, { { 0x8C, 0x1F, 0x64, 0xBF, 0x80 }, "Cdsi", "Cdsi" }, { { 0x8C, 0x1F, 0x64, 0xBF, 0xB0 }, "TechArgos", "TechArgos" }, { { 0x8C, 0x1F, 0x64, 0xBF, 0xC0 }, "ASiSTechnolo", "ASiS Technologies Pte Ltd" }, @@ -50518,6 +50542,7 @@ static const manuf_oui36_t global_manuf_oui36_table[] = { { { 0x8C, 0x1F, 0x64, 0xE4, 0x30 }, "Daedalean", "Daedalean AG" }, { { 0x8C, 0x1F, 0x64, 0xE4, 0x50 }, "Integerpl", "Integer.pl S.A." }, { { 0x8C, 0x1F, 0x64, 0xE4, 0x60 }, "Nautel", "Nautel LTD" }, + { { 0x8C, 0x1F, 0x64, 0xE4, 0x70 }, "BRSSistemasE", "BRS Sistemas Eletrônicos" }, { { 0x8C, 0x1F, 0x64, 0xE4, 0x90 }, "SamwellInter", "Samwell International Inc" }, { { 0x8C, 0x1F, 0x64, 0xE4, 0xB0 }, "AlgaziraTele", "Algazira Telecom Solutions" }, { { 0x8C, 0x1F, 0x64, 0xE4, 0xC0 }, "TTCTELEKOMUN", "TTC TELEKOMUNIKACE, s.r.o." }, diff --git a/ui/qt/wireshark_de.ts b/ui/qt/wireshark_de.ts index 540fa60561..ebfc20dc7c 100644 --- a/ui/qt/wireshark_de.ts +++ b/ui/qt/wireshark_de.ts @@ -1875,11 +1875,11 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe Width - + Breite Alignment - + Ausrichtung <html>Show human-readable strings instead of raw values for fields. Only applicable to custom columns with fields that have value strings.</html> @@ -1917,23 +1917,23 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe ColumnTypeDelegate Default - Standard + Standard Left - Links + Links Center - + Zentriert Right - Rechts + Rechts Unknown - Unbekannt + Unbekannt @@ -3650,20 +3650,19 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe Show as - Show data as - Daten anzeigen als + Anzeigen als No delta times - + Keine Delta-Zeiten Turn delta times - + Delta-Zeiten umdrehen All delta times - + Alle Delta-Zeiten Stream @@ -6681,11 +6680,11 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe Selected Event: %1 %2 - + Ausgewählte Ereignisse: %1 %2 Events: %1 - + Ereignisse: %1 %1 Selected: %2 (%3%) @@ -6718,7 +6717,7 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe No Events - + Keine Ereignisse From Zip File... @@ -13482,11 +13481,6 @@ a:hover { Find the previous packet Vorheriges Paket finden - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - Paket &markieren - Mark All Displayed Alle angezeigte Pakete markieren @@ -13515,11 +13509,6 @@ a:hover { Go to the previous marked packet Zum vorherigen markierten Paket gehen - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - Paket &ignorieren bzw. zurücksetzen - Ignore All Displayed Alle angezeigten Pakete ignorieren @@ -14184,10 +14173,18 @@ a:hover { Find Pre&vious Vorheriges finden + + &Mark/Unmark Selected + Ausgewählte &markieren + Mark or unmark each selected packet Jedes ausgewählte Paket markieren bzw. Markierung rückgängig machen + + &Ignore/Unignore Selected + Ausgewählte &ignorieren + Ignore or unignore each selected packet Jedes ausgewählte Paket ignorieren bzw. Ignorieren zurücksetzen diff --git a/ui/qt/wireshark_es.ts b/ui/qt/wireshark_es.ts index 8d99d68103..5c42a404e3 100644 --- a/ui/qt/wireshark_es.ts +++ b/ui/qt/wireshark_es.ts @@ -3609,8 +3609,7 @@ Por ejemplo, use 1 hora para tener creado un nuevo archivo cada hora en punto. Show as - Show data as - Mostrar datos como + Mostrar como No delta times @@ -13341,11 +13340,6 @@ a:hover { Find the previous packet Busca el paquete anterior - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - &Marcar/Desmarcar paquete - Mark All Displayed Marcar todos los mostrados @@ -13374,11 +13368,6 @@ a:hover { Go to the previous marked packet Va al paquete marcado anterior - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - &Ignorar/No ignorar paquete - Ignore All Displayed Ignorar todos los mostrados @@ -14043,10 +14032,18 @@ a:hover { Find Pre&vious Buscar ant&erior + + &Mark/Unmark Selected + + Mark or unmark each selected packet Marca o desmarca cada paquete seleccionado + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet Ignora o no ignora cada paquete seleccionado diff --git a/ui/qt/wireshark_fr.ts b/ui/qt/wireshark_fr.ts index 4fc4c464b7..590a680625 100644 --- a/ui/qt/wireshark_fr.ts +++ b/ui/qt/wireshark_fr.ts @@ -3646,8 +3646,7 @@ Pas exemple, inquiquez 1 heure pour avoir un nouveau fichier créé toutes les h Show as - Show data as - Afficher les données comme + Montrer comme No delta times @@ -13436,11 +13435,6 @@ a:hover { Find the previous packet Trouver le paquet précédent - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - &Marquer/Démarquer le(s) paquet(s) - Mark All Displayed Marquer tout comme Affichées @@ -13469,11 +13463,6 @@ a:hover { Go to the previous marked packet Aller au paquet précédent marqué - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - &Ignorer/Annuler le(s) paquet(s) - Ignore All Displayed Ignorer tous les affichés @@ -14138,10 +14127,18 @@ a:hover { Find Pre&vious Trouver Pré&cédent + + &Mark/Unmark Selected + + Mark or unmark each selected packet Marquer ou décocher chaque paquet sélectionné + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet Ignorer ou désignorer chaque paquet sélectionné diff --git a/ui/qt/wireshark_it.ts b/ui/qt/wireshark_it.ts index 44682c0b63..564516bfa8 100644 --- a/ui/qt/wireshark_it.ts +++ b/ui/qt/wireshark_it.ts @@ -1875,11 +1875,11 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora. Width - + Larghezza Alignment - + Allineamento <html>Show human-readable strings instead of raw values for fields. Only applicable to custom columns with fields that have value strings.</html> @@ -1917,23 +1917,23 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora.ColumnTypeDelegate Default - Predefinito + Predefinito Left - Sinistra + Sinistra Center - + Centro Right - Destra + Destra Unknown - Sconosciuto + Sconosciuto @@ -3650,20 +3650,19 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora. Show as - Show data as - Mostra dati come + Mostra come No delta times - + Nessun delta dei tempi Turn delta times - + Attiva i delta dei tempi All delta times - + Tutti i delta dei tempi Stream @@ -6681,11 +6680,11 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora. Selected Event: %1 %2 - + Evento selezionato: %1 %2 Events: %1 - + Eventi: %1 %1 Selected: %2 (%3%) @@ -6718,7 +6717,7 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora. No Events - + Nessun evento From Zip File... @@ -13477,11 +13476,6 @@ a:hover { Find the previous packet Vai al pacchetto precedente - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - &Marca/Deseleziona pacchetto - Mark All Displayed Marca tutti i visualizzati @@ -13510,11 +13504,6 @@ a:hover { Go to the previous marked packet Val al prossimo pacchetto marchiato - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - &Ignora/Considera pacchetto - Ignore All Displayed Ignora tutti i visualizzati @@ -14179,10 +14168,18 @@ a:hover { Find Pre&vious Tro&va precedente + + &Mark/Unmark Selected + &Marca/Deseleziona selezionati + Mark or unmark each selected packet Marca o rimuovi ogni pacchetto selezionato + + &Ignore/Unignore Selected + &Ignora/considera selezionati + Ignore or unignore each selected packet Ignora o considera ogni pacchetto selezionato diff --git a/ui/qt/wireshark_ja_JP.ts b/ui/qt/wireshark_ja_JP.ts index 24637edc1f..9c6ea54100 100644 --- a/ui/qt/wireshark_ja_JP.ts +++ b/ui/qt/wireshark_ja_JP.ts @@ -81,11 +81,11 @@ About Logray - + Lograyについて Logray - + Logray The directory does not exist @@ -1178,7 +1178,9 @@ Created by Logray %1 - + Logray %1 によって作成されました + + @@ -1865,11 +1867,11 @@ For example, use 1 hour to have a new file created every hour on the hour. Width - + Alignment - + 揃え <html>Show human-readable strings instead of raw values for fields. Only applicable to custom columns with fields that have value strings.</html> @@ -1907,23 +1909,23 @@ For example, use 1 hour to have a new file created every hour on the hour.ColumnTypeDelegate Default - デフォルト + デフォルト Left - + Center - + 中央 Right - + Unknown - 不明 + 不明 @@ -3630,20 +3632,19 @@ For example, use 1 hour to have a new file created every hour on the hour. Show as - Show data as - としてデータを表示 + として表示 No delta times - + デルタ時間なし Turn delta times - + ターンデルタ時間 All delta times - + 全デルタ時間 Stream @@ -6662,11 +6663,11 @@ For example, use 1 hour to have a new file created every hour on the hour. Selected Event: %1 %2 - + 選択したイベント: %1 %2 Events: %1 - + イベント: %1 %1 Selected: %2 (%3%) @@ -6699,7 +6700,7 @@ For example, use 1 hour to have a new file created every hour on the hour. No Events - + イベントなし From Zip File... @@ -12770,7 +12771,7 @@ a:hover { You are sniffing the glue that holds your system together using Logray - + あなたはLograyを使ってシステムを互いに繋ぐ膠をキャプチャしています You are running Wireshark @@ -12778,7 +12779,7 @@ a:hover { You are running Logray - + Lograyを起動中です You receive automatic updates. @@ -13449,11 +13450,6 @@ a:hover { Find the previous packet 前のパケットを検索します - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - パケットをマーク/マーク解除(&M) - Mark All Displayed 表示されているものをすべてマークします @@ -13482,11 +13478,6 @@ a:hover { Go to the previous marked packet 前にマークされたパケットに移動します - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - パケットを無視/無視を解除(&I) - Ignore All Displayed 表示されているものすべてを無視します @@ -14105,7 +14096,7 @@ a:hover { Display Filters - 表示フィルタ + 表示フィルタ Capture &Filters… @@ -14151,10 +14142,18 @@ a:hover { Find Pre&vious 前を検索(&v) + + &Mark/Unmark Selected + 選択をマーク/マーク解除(&M) + Mark or unmark each selected packet 各々の選択されたパケットをマーク/マーク解除します + + &Ignore/Unignore Selected + 選択を無視/無視を解除(&I) + Ignore or unignore each selected packet 各々の選択されたパケットを無視/無視を解除します diff --git a/ui/qt/wireshark_ko.ts b/ui/qt/wireshark_ko.ts index 6bcfa31e51..27719aa0b1 100644 --- a/ui/qt/wireshark_ko.ts +++ b/ui/qt/wireshark_ko.ts @@ -3631,8 +3631,7 @@ For example, use 1 hour to have a new file created every hour on the hour. Show as - Show data as - 다음 형식으로 표시: + 다른 형식으로 표시 No delta times @@ -13446,11 +13445,6 @@ a:hover { Find the previous packet 이전 패킷 찾기 - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - 패킷 마크/해제(&M) - Mark All Displayed 표시된 모든 패킷 마크 @@ -13479,11 +13473,6 @@ a:hover { Go to the previous marked packet 이전 마크한 패킷으로 이동 - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - 패킷 무시/해제(&I) - Ignore All Displayed 표시된 모든 패킷 무시 @@ -14148,10 +14137,18 @@ a:hover { Find Pre&vious 이전 찾기(&V) + + &Mark/Unmark Selected + + Mark or unmark each selected packet 각 선택된 패킷 마크/해제 + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet 각 선택된 패킷 무시/해제 diff --git a/ui/qt/wireshark_pl.ts b/ui/qt/wireshark_pl.ts index aabf73b8c9..75d5e26c58 100644 --- a/ui/qt/wireshark_pl.ts +++ b/ui/qt/wireshark_pl.ts @@ -3662,7 +3662,6 @@ For example, use 1 hour to have a new file created every hour on the hour. Show as - Show data as Pokaż jako @@ -13440,11 +13439,6 @@ a:hover { Find the previous packet Znajdź poprzedni pakiet - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - - Mark All Displayed Zaznacz wszystkie wyświetlane @@ -13473,11 +13467,6 @@ a:hover { Go to the previous marked packet Idź do poprzedniego zaznaczonego pakietu - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - - Ignore All Displayed Ignoruj wszystkie wyświetlane @@ -14142,10 +14131,18 @@ a:hover { Find Pre&vious Znajdź poprzedni… + + &Mark/Unmark Selected + + Mark or unmark each selected packet + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet diff --git a/ui/qt/wireshark_ru.ts b/ui/qt/wireshark_ru.ts index b8061564b2..2c99ae36b5 100644 --- a/ui/qt/wireshark_ru.ts +++ b/ui/qt/wireshark_ru.ts @@ -3665,8 +3665,7 @@ For example, use 1 hour to have a new file created every hour on the hour. Show as - Show data as - Отобразить данные в виде + Отображать как No delta times @@ -13514,11 +13513,6 @@ a:hover { Find the previous packet Найти предыдущий пакет - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - &Установить/снять отметку пакета (пакетов) - Mark All Displayed Отметить всё отображаемое @@ -13547,11 +13541,6 @@ a:hover { Go to the previous marked packet Перейти к предыдущему отмеченному пакету - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - &Игнорировать/отменить игнорирование пакета - Ignore All Displayed Игнорировать всё отображаемое @@ -14216,10 +14205,18 @@ a:hover { Find Pre&vious Найти пр&едыдущий + + &Mark/Unmark Selected + + Mark or unmark each selected packet Установить или снять отметку всех выбранных пакетов + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet Игнорировать или отменить игнорирование всех выбранных пакетов diff --git a/ui/qt/wireshark_sv.ts b/ui/qt/wireshark_sv.ts index 764845151f..16cab823ab 100644 --- a/ui/qt/wireshark_sv.ts +++ b/ui/qt/wireshark_sv.ts @@ -3648,8 +3648,7 @@ Till exempel, använd 1 timma för att en ny fil skall skapas varje timma vid he Show as - Show data as - Visa data som + Visa som No delta times @@ -13480,11 +13479,6 @@ a:hover { Find the previous packet Sök efter föregående paket - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - &Markera/avmarkera paket - Mark All Displayed Markera alla visade @@ -13513,11 +13507,6 @@ a:hover { Go to the previous marked packet Gå till föregående märkta paket - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - &Ignorera/avignorera paket - Ignore All Displayed Ignorera alla visade @@ -14182,10 +14171,18 @@ a:hover { Find Pre&vious Sök f&öregående + + &Mark/Unmark Selected + + Mark or unmark each selected packet Markera eller avmarkera varje valt paket + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet Ignorera eller avignorera varje valt paket diff --git a/ui/qt/wireshark_tr_TR.ts b/ui/qt/wireshark_tr_TR.ts index bcdcd30602..b177936306 100644 --- a/ui/qt/wireshark_tr_TR.ts +++ b/ui/qt/wireshark_tr_TR.ts @@ -3631,8 +3631,7 @@ For example, use 1 hour to have a new file created every hour on the hour. Show as - Show data as - Verileri şu şekilde göster + Olarak göstermek No delta times @@ -13446,11 +13445,6 @@ a:üzerine gelin{ Find the previous packet Önceki paketi bul - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - &Paketi İşaretle/İşaretini Kaldır - Mark All Displayed Tüm Görüntülenenleri İşaretle @@ -13479,11 +13473,6 @@ a:üzerine gelin{ Go to the previous marked packet Önceki işaretli pakete git - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - &Paketi Yoksay/Yoksaymaktan vazgeç - Ignore All Displayed Tüm Görüntülenenleri Yoksay @@ -14148,10 +14137,18 @@ a:üzerine gelin{ Find Pre&vious Öncekini Bu&l + + &Mark/Unmark Selected + + Mark or unmark each selected packet Seçilen her paketi işaretleyin veya işaretini kaldırın + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet Seçilen her paketi yoksay veya yoksay diff --git a/ui/qt/wireshark_uk.ts b/ui/qt/wireshark_uk.ts index 0c99d20a12..6f3ed13672 100644 --- a/ui/qt/wireshark_uk.ts +++ b/ui/qt/wireshark_uk.ts @@ -29,7 +29,7 @@ Copy to Clipboard - + Скопіювати до буферу обміну Authors @@ -81,11 +81,11 @@ About Logray - + Про Logray Logray - + Logray The directory does not exist @@ -145,14 +145,14 @@ Can't assign %1 to %2. - + Неможливо призначити %1 до %2. AdvancedPrefsModel Name - + Ім'я Status @@ -178,7 +178,7 @@ AuthorListModel Name - + Ім'я Email @@ -233,15 +233,15 @@ Mark/Unmark Row - + Позначити/Зняти позначку з рядка Ctrl-M - + Ctrl-M Mark/Unmark Cell - + Позначити/зняти позначку з клітинки Save Table Image @@ -256,171 +256,171 @@ BluetoothDeviceDialog Bluetooth Device - + Пристрій Bluetooth BD_ADDR - BD_ADDR + BD_ADDR OUI - УІО (OUI) + OUI Name - + Ім'я Class of Device - + Клас пристрою LMP Version - Версія LMP + Версія LMP LMP Subversion - Підверсія LMP + Підверсія LMP Manufacturer - Виробник + Виробник HCI Version - Версія HCI + Версія HCI HCI Revision - Ревізія HCI + Ревізія HCI Scan - + Сканувати Authentication - + Аутентифікація Encryption - + Шифрування ACL MTU - + ACL MTU ACL Total Packets - + Всього пакетів ACL SCO MTU - + SCO MTU SCO Total Packets - + Всього пакетів SCO LE ACL MTU - + LE ACL MTU LE ACL Total Packets - + Всього пакетів LE ACL LE ISO MTU - + LE ISO MTU LE ISO Total Packets - + Всього пакетів LE ISO Inquiry Mode - + Режим запитів Page Timeout - + Таймаут сторінки Simple Pairing Mode - + Простий режим парування Voice Setting - + Налаштування голосу Value - Значення + Значення Changes - + Зміни %1 changes - + %1 зміни Copy Cell - Скопіювати Клітинку + Копіювати клітинку Copy Rows - Скопіювати Рядки + Копіювати рядки Copy All - Скопіювати Все + Копіювати все Save as image - Зберегти як зображення + Зберегти як зображення Mark/Unmark Row - + Позначити/Зняти позначку з рядка Ctrl+M - + Ctrl+M Mark/Unmark Cell - + Позначити/зняти позначку з клітинки Unknown - Невідомо + Невідомий Bluetooth Device - %1%2 - + Пристрій Bluetooth - %1%2 enabled - + ввімкнено disabled - + вимкнено %1 ms (%2 slots) - + %1 мс (%2 слоти) Save Table Image - Зберегти Зображення Таблиці + Зберегти зображення таблиці PNG Image (*.png) - Зображення PNG (*.png) + Зображення PNG (*.png) @@ -471,11 +471,11 @@ Show information steps - + Показати кроки інформації %1 items; Right click for more option; Double click for device details - + %1 елементів; Клацніть правою кнопкою миші для отримання додаткових опцій; Подвійний клік для отримання деталей пристрою Copy Cell @@ -495,19 +495,19 @@ Mark/Unmark Row - + Позначити/Зняти позначку з рядка Ctrl-M - + Ctrl-M Mark/Unmark Cell - + Позначити/зняти позначку з клітинки true - + істина Save Table Image @@ -546,7 +546,7 @@ Subevent - + Підподія Status @@ -562,7 +562,7 @@ Occurrence - + Випадок Link Control Commands @@ -654,11 +654,11 @@ Results filter: - + Фільтр результатів: Display filter: - Фільтр відображення: + Фільтр відображення: All Interfaces @@ -686,19 +686,19 @@ Mark/Unmark Row - + Позначити/Зняти позначку з рядка Ctrl+M - + Ctrl+M Mark/Unmark Cell - + Позначити/зняти позначку з клітинки Unknown - Невідомо + Adapter %1 @@ -1911,7 +1911,7 @@ For example, use 1 hour to have a new file created every hour on the hour. Unknown - Невідомо + @@ -3636,7 +3636,6 @@ For example, use 1 hour to have a new file created every hour on the hour. Show as - Show data as @@ -8566,7 +8565,7 @@ For example, use 1 hour to have a new file created every hour on the hour. Unknown - Невідомо + UE Id @@ -8668,7 +8667,7 @@ For example, use 1 hour to have a new file created every hour on the hour. Authentication - + Аутентифікація Null authentication @@ -9876,7 +9875,7 @@ For example, use 1 hour to have a new file created every hour on the hour. Unknown - Невідомо + @@ -12148,7 +12147,7 @@ For example, use 1 hour to have a new file created every hour on the hour. Unknown - Невідомо + @@ -13303,11 +13302,6 @@ a:hover { Find the previous packet Знайти попередній пакет - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - - Mark All Displayed Позначити Всі Відображені @@ -13336,11 +13330,6 @@ a:hover { Go to the previous marked packet Перейти до попереднього позначеного пакету - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - - Ignore All Displayed Прибрати Всі Відображені @@ -14005,10 +13994,18 @@ a:hover { Find Pre&vious Знайти Поп&ередній + + &Mark/Unmark Selected + + Mark or unmark each selected packet + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet diff --git a/ui/qt/wireshark_zh_CN.ts b/ui/qt/wireshark_zh_CN.ts index 9e843476ef..14882193ae 100644 --- a/ui/qt/wireshark_zh_CN.ts +++ b/ui/qt/wireshark_zh_CN.ts @@ -3627,7 +3627,6 @@ For example, use 1 hour to have a new file created every hour on the hour. Show as - Show data as 显示为 @@ -13383,11 +13382,6 @@ a:hover { Find the previous packet 查找上一分组 - - &Mark/Unmark Selected - &Mark/Unmark Packet(s) - 标记/取消标记 分组(&M) - Mark All Displayed 标记所有显示的分组 @@ -13416,11 +13410,6 @@ a:hover { Go to the previous marked packet 转到前一个已标记的分组 - - &Ignore/Unignore Selected - &Ignore/Unignore Packet(s) - 忽略/取消忽略 分组(&I) - Ignore All Displayed 忽略所有显示的分组 @@ -14085,10 +14074,18 @@ a:hover { Find Pre&vious 查找上一个(&v) + + &Mark/Unmark Selected + + Mark or unmark each selected packet + + &Ignore/Unignore Selected + + Ignore or unignore each selected packet