[Automatic update for 2024-02-18]

Update manuf, services enterprise numbers, translations, and other items.
This commit is contained in:
Gerald Combs 2024-02-18 09:25:01 +00:00
parent deac878dd5
commit d7b2445089
16 changed files with 362 additions and 291 deletions

View File

@ -4556,6 +4556,7 @@ Jean Thomas <jeanthomas[AT]sierrawireless.com>
Jean Yap <jean.yap[AT]team.telstra.com>
Jean-Philippe Lebel <jpl[AT]ds.tools>
Jeff Dyer <jmasterfunk[AT]gmail.com>
Jeff Layton <jlayton[AT]kernel.org>
Jeff Layton <jlayton[AT]redhat.com>
Jeff Oconnell <jeffo[AT]rulez.com>
Jeff Widman <jeff[AT]jeffwidman.com>
@ -5179,6 +5180,7 @@ Timo Warns <timow+gitlab[AT]diningphilosopher.de>
Timotej Ecimovic <timotej.ecimovic[AT]silabs.com>
Timothy Geiser <slimshady007[AT]inbox.lv>
Tobias Brunner <tobias[AT]strongswan.org>
Tobias Mueller <gitlab[AT]muelli.cryptobitch.de>
Tobias Mueller <muelli[AT]cryptobitch.de>
Tobias Rasmusson <tobias.rasmusson[AT]gmail.com>
Tobias Stoeckmann <tobias[AT]stoeckmann.org>
@ -5306,6 +5308,7 @@ bzdula <bzdula[AT]bzdulnet.pl>
cff339 <cff339[AT]gmail.com>
cheloftus <cheloftus[AT]gmail.com>
chiachin2686 <chiachin112686[AT]gmail.com>
dariusd0 <darius-gitlab[AT]free-range.com.au>
database64128 <free122448[AT]hotmail.com>
dennisschagt <dennisschagt[AT]gmail.com>
eckart haug <wireshark[AT]syntacs.com>

87
NEWS
View File

@ -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 theres 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 Users Guide, manual pages and various other documentation can be
found at https://www.wireshark.org/docs/
Community support is available on Wiresharks Q&A site[3] and on the
Community support is available on Wiresharks Q&A site[9] and on the
wireshark-users mailing list. Subscription information and archives
for all of Wiresharks mailing lists can be found on the web site[4].
for all of Wiresharks 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 Wiresharks 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

View File

@ -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
}
};

View File

@ -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." },

View File

@ -1875,11 +1875,11 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe
</message>
<message>
<source>Width</source>
<translation type="unfinished"></translation>
<translation>Breite</translation>
</message>
<message>
<source>Alignment</source>
<translation type="unfinished"></translation>
<translation>Ausrichtung</translation>
</message>
<message>
<source>&lt;html&gt;Show human-readable strings instead of raw values for fields. Only applicable to custom columns with fields that have value strings.&lt;/html&gt;</source>
@ -1917,23 +1917,23 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe
<name>ColumnTypeDelegate</name>
<message>
<source>Default</source>
<translation type="unfinished">Standard</translation>
<translation>Standard</translation>
</message>
<message>
<source>Left</source>
<translation type="unfinished">Links</translation>
<translation>Links</translation>
</message>
<message>
<source>Center</source>
<translation type="unfinished"></translation>
<translation>Zentriert</translation>
</message>
<message>
<source>Right</source>
<translation type="unfinished">Rechts</translation>
<translation>Rechts</translation>
</message>
<message>
<source>Unknown</source>
<translation type="unfinished">Unbekannt</translation>
<translation>Unbekannt</translation>
</message>
</context>
<context>
@ -3650,20 +3650,19 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished">Daten anzeigen als</translation>
<translation>Anzeigen als</translation>
</message>
<message>
<source>No delta times</source>
<translation type="unfinished"></translation>
<translation>Keine Delta-Zeiten</translation>
</message>
<message>
<source>Turn delta times</source>
<translation type="unfinished"></translation>
<translation>Delta-Zeiten umdrehen</translation>
</message>
<message>
<source>All delta times</source>
<translation type="unfinished"></translation>
<translation>Alle Delta-Zeiten</translation>
</message>
<message>
<source>Stream</source>
@ -6681,11 +6680,11 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe
</message>
<message>
<source>Selected Event: %1 %2 </source>
<translation type="unfinished"></translation>
<translation>Ausgewählte Ereignisse: %1 %2 </translation>
</message>
<message>
<source>Events: %1</source>
<translation type="unfinished"></translation>
<translation>Ereignisse: %1</translation>
</message>
<message>
<source> %1 Selected: %2 (%3%)</source>
@ -6718,7 +6717,7 @@ Um zum Beispiel eine neue Datei zu jeder vollen Stunde zu haben, 1 Stunde angebe
</message>
<message>
<source>No Events</source>
<translation type="unfinished"></translation>
<translation>Keine Ereignisse</translation>
</message>
<message>
<source>From Zip File...</source>
@ -13482,11 +13481,6 @@ a:hover {
<source>Find the previous packet</source>
<translation>Vorheriges Paket finden</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">Paket &amp;markieren</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Alle angezeigte Pakete markieren</translation>
@ -13515,11 +13509,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation>Zum vorherigen markierten Paket gehen</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">Paket &amp;ignorieren bzw. zurücksetzen</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Alle angezeigten Pakete ignorieren</translation>
@ -14184,10 +14173,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>Vorheriges finden</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation>Ausgewählte &amp;markieren</translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation>Jedes ausgewählte Paket markieren bzw. Markierung rückgängig machen</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation>Ausgewählte &amp;ignorieren</translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation>Jedes ausgewählte Paket ignorieren bzw. Ignorieren zurücksetzen</translation>

View File

@ -3609,8 +3609,7 @@ Por ejemplo, use 1 hora para tener creado un nuevo archivo cada hora en punto.</
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished">Mostrar datos como</translation>
<translation type="unfinished">Mostrar como</translation>
</message>
<message>
<source>No delta times</source>
@ -13341,11 +13340,6 @@ a:hover {
<source>Find the previous packet</source>
<translation>Busca el paquete anterior</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">&amp;Marcar/Desmarcar paquete</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Marcar todos los mostrados</translation>
@ -13374,11 +13368,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation>Va al paquete marcado anterior</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">&amp;Ignorar/No ignorar paquete</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Ignorar todos los mostrados</translation>
@ -14043,10 +14032,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>Buscar ant&amp;erior</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation>Marca o desmarca cada paquete seleccionado</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation>Ignora o no ignora cada paquete seleccionado</translation>

View File

@ -3646,8 +3646,7 @@ Pas exemple, inquiquez 1 heure pour avoir un nouveau fichier créé toutes les h
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished">Afficher les données comme</translation>
<translation type="unfinished">Montrer comme</translation>
</message>
<message>
<source>No delta times</source>
@ -13436,11 +13435,6 @@ a:hover {
<source>Find the previous packet</source>
<translation>Trouver le paquet précédent</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">&amp;Marquer/Démarquer le(s) paquet(s)</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Marquer tout comme Affichées</translation>
@ -13469,11 +13463,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation>Aller au paquet précédent marqué</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">&amp;Ignorer/Annuler le(s) paquet(s)</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Ignorer tous les affichés</translation>
@ -14138,10 +14127,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>Trouver Pré&amp;cédent</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation>Marquer ou décocher chaque paquet sélectionné</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation>Ignorer ou désignorer chaque paquet sélectionné</translation>

View File

@ -1875,11 +1875,11 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora.</t
</message>
<message>
<source>Width</source>
<translation type="unfinished"></translation>
<translation>Larghezza</translation>
</message>
<message>
<source>Alignment</source>
<translation type="unfinished"></translation>
<translation>Allineamento</translation>
</message>
<message>
<source>&lt;html&gt;Show human-readable strings instead of raw values for fields. Only applicable to custom columns with fields that have value strings.&lt;/html&gt;</source>
@ -1917,23 +1917,23 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora.</t
<name>ColumnTypeDelegate</name>
<message>
<source>Default</source>
<translation type="unfinished">Predefinito</translation>
<translation>Predefinito</translation>
</message>
<message>
<source>Left</source>
<translation type="unfinished">Sinistra</translation>
<translation>Sinistra</translation>
</message>
<message>
<source>Center</source>
<translation type="unfinished"></translation>
<translation>Centro</translation>
</message>
<message>
<source>Right</source>
<translation type="unfinished">Destra</translation>
<translation>Destra</translation>
</message>
<message>
<source>Unknown</source>
<translation type="unfinished">Sconosciuto</translation>
<translation>Sconosciuto</translation>
</message>
</context>
<context>
@ -3650,20 +3650,19 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora.</t
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished">Mostra dati come</translation>
<translation>Mostra come</translation>
</message>
<message>
<source>No delta times</source>
<translation type="unfinished"></translation>
<translation>Nessun delta dei tempi</translation>
</message>
<message>
<source>Turn delta times</source>
<translation type="unfinished"></translation>
<translation>Attiva i delta dei tempi</translation>
</message>
<message>
<source>All delta times</source>
<translation type="unfinished"></translation>
<translation>Tutti i delta dei tempi</translation>
</message>
<message>
<source>Stream</source>
@ -6681,11 +6680,11 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora.</t
</message>
<message>
<source>Selected Event: %1 %2 </source>
<translation type="unfinished"></translation>
<translation>Evento selezionato: %1 %2</translation>
</message>
<message>
<source>Events: %1</source>
<translation type="unfinished"></translation>
<translation>Eventi: %1</translation>
</message>
<message>
<source> %1 Selected: %2 (%3%)</source>
@ -6718,7 +6717,7 @@ Ad esempio, usa 1 ora per fare in modo che un nuovo file sia creato ogni ora.</t
</message>
<message>
<source>No Events</source>
<translation type="unfinished"></translation>
<translation>Nessun evento</translation>
</message>
<message>
<source>From Zip File...</source>
@ -13477,11 +13476,6 @@ a:hover {
<source>Find the previous packet</source>
<translation>Vai al pacchetto precedente</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">&amp;Marca/Deseleziona pacchetto</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Marca tutti i visualizzati</translation>
@ -13510,11 +13504,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation>Val al prossimo pacchetto marchiato</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">&amp;Ignora/Considera pacchetto</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Ignora tutti i visualizzati</translation>
@ -14179,10 +14168,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>Tro&amp;va precedente</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation>&amp;Marca/Deseleziona selezionati</translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation>Marca o rimuovi ogni pacchetto selezionato</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation>&amp;Ignora/considera selezionati</translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation>Ignora o considera ogni pacchetto selezionato</translation>

View File

@ -81,11 +81,11 @@
</message>
<message>
<source>About Logray</source>
<translation type="unfinished"></translation>
<translation>Lograyについて</translation>
</message>
<message>
<source>Logray</source>
<translation type="unfinished"></translation>
<translation>Logray</translation>
</message>
<message>
<source>The directory does not exist</source>
@ -1178,7 +1178,9 @@
<source>Created by Logray %1
</source>
<translation type="unfinished"></translation>
<translation>Logray %1
</translation>
</message>
</context>
<context>
@ -1865,11 +1867,11 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Width</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>Alignment</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>&lt;html&gt;Show human-readable strings instead of raw values for fields. Only applicable to custom columns with fields that have value strings.&lt;/html&gt;</source>
@ -1907,23 +1909,23 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
<name>ColumnTypeDelegate</name>
<message>
<source>Default</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>Left</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>Center</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>Right</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>Unknown</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
</context>
<context>
@ -3630,20 +3632,19 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>No delta times</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>Turn delta times</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>All delta times</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>Stream</source>
@ -6662,11 +6663,11 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Selected Event: %1 %2 </source>
<translation type="unfinished"></translation>
<translation>: %1 %2 </translation>
</message>
<message>
<source>Events: %1</source>
<translation type="unfinished"></translation>
<translation>: %1</translation>
</message>
<message>
<source> %1 Selected: %2 (%3%)</source>
@ -6699,7 +6700,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>No Events</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>From Zip File...</source>
@ -12770,7 +12771,7 @@ a:hover {
</message>
<message>
<source>You are sniffing the glue that holds your system together using Logray </source>
<translation type="unfinished"></translation>
<translation>Lograyを使ってシステムを互いに繋ぐ膠をキャプチャしています</translation>
</message>
<message>
<source>You are running Wireshark </source>
@ -12778,7 +12779,7 @@ a:hover {
</message>
<message>
<source>You are running Logray </source>
<translation type="unfinished"></translation>
<translation>Lograyを起動中です </translation>
</message>
<message>
<source> You receive automatic updates.</source>
@ -13449,11 +13450,6 @@ a:hover {
<source>Find the previous packet</source>
<translation></translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">/(&amp;M)</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation></translation>
@ -13482,11 +13478,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation></translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">/(&amp;I)</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation></translation>
@ -14105,7 +14096,7 @@ a:hover {
</message>
<message>
<source>Display Filters</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<source>Capture &amp;Filters</source>
@ -14151,10 +14142,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>(&amp;v)</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation>/(&amp;M)</translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation>/</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation>/(&amp;I)</translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation>/</translation>

View File

@ -3631,8 +3631,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished"> :</translation>
<translation type="unfinished"> </translation>
</message>
<message>
<source>No delta times</source>
@ -13446,11 +13445,6 @@ a:hover {
<source>Find the previous packet</source>
<translation> </translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished"> /(&amp;M)</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation> </translation>
@ -13479,11 +13473,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation> </translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished"> /(&amp;I)</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation> </translation>
@ -14148,10 +14137,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation> (&amp;V)</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation> /</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation> /</translation>

View File

@ -3662,7 +3662,6 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished">Pokaż jako</translation>
</message>
<message>
@ -13440,11 +13439,6 @@ a:hover {
<source>Find the previous packet</source>
<translation>Znajdź poprzedni pakiet</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Zaznacz wszystkie wyświetlane</translation>
@ -13473,11 +13467,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation>Idź do poprzedniego zaznaczonego pakietu</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Ignoruj wszystkie wyświetlane</translation>
@ -14142,10 +14131,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>Znajdź poprzedni</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation type="unfinished"></translation>

View File

@ -3665,8 +3665,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished">Отобразить данные в виде</translation>
<translation type="unfinished">Отображать как</translation>
</message>
<message>
<source>No delta times</source>
@ -13514,11 +13513,6 @@ a:hover {
<source>Find the previous packet</source>
<translation>Найти предыдущий пакет</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">&amp;Установить/снять отметку пакета (пакетов)</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Отметить всё отображаемое</translation>
@ -13547,11 +13541,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation>Перейти к предыдущему отмеченному пакету</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">&amp;Игнорировать/отменить игнорирование пакета</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Игнорировать всё отображаемое</translation>
@ -14216,10 +14205,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>Найти пр&amp;едыдущий</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation>Установить или снять отметку всех выбранных пакетов</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation>Игнорировать или отменить игнорирование всех выбранных пакетов</translation>

View File

@ -3648,8 +3648,7 @@ Till exempel, använd 1 timma för att en ny fil skall skapas varje timma vid he
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished">Visa data som</translation>
<translation type="unfinished">Visa som</translation>
</message>
<message>
<source>No delta times</source>
@ -13480,11 +13479,6 @@ a:hover {
<source>Find the previous packet</source>
<translation>Sök efter föregående paket</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">&amp;Markera/avmarkera paket</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Markera alla visade</translation>
@ -13513,11 +13507,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation> till föregående märkta paket</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">&amp;Ignorera/avignorera paket</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Ignorera alla visade</translation>
@ -14182,10 +14171,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>Sök f&amp;öregående</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation>Markera eller avmarkera varje valt paket</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation>Ignorera eller avignorera varje valt paket</translation>

View File

@ -3631,8 +3631,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished">Verileri şu şekilde göster</translation>
<translation type="unfinished">Olarak göstermek</translation>
</message>
<message>
<source>No delta times</source>
@ -13446,11 +13445,6 @@ a:üzerine gelin{
<source>Find the previous packet</source>
<translation>Önceki paketi bul</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">&amp;Paketi İşaretle/İşaretini Kaldır</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Tüm Görüntülenenleri İşaretle</translation>
@ -13479,11 +13473,6 @@ a:üzerine gelin{
<source>Go to the previous marked packet</source>
<translation>Önceki işaretli pakete git</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">&amp;Paketi Yoksay/Yoksaymaktan vazgeç</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Tüm Görüntülenenleri Yoksay</translation>
@ -14148,10 +14137,18 @@ a:üzerine gelin{
<source>Find Pre&amp;vious</source>
<translation>Öncekini Bu&amp;l</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation>Seçilen her paketi işaretleyin veya işaretini kaldırın</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation>Seçilen her paketi yoksay veya yoksay</translation>

View File

@ -29,7 +29,7 @@
</message>
<message>
<source>Copy to Clipboard</source>
<translation type="unfinished"></translation>
<translation>Скопіювати до буферу обміну</translation>
</message>
<message>
<source>Authors</source>
@ -81,11 +81,11 @@
</message>
<message>
<source>About Logray</source>
<translation type="unfinished"></translation>
<translation>Про Logray</translation>
</message>
<message>
<source>Logray</source>
<translation type="unfinished"></translation>
<translation>Logray</translation>
</message>
<message>
<source>The directory does not exist</source>
@ -145,14 +145,14 @@
</message>
<message>
<source>Can&apos;t assign %1 to %2.</source>
<translation type="unfinished"></translation>
<translation>Неможливо призначити %1 до %2.</translation>
</message>
</context>
<context>
<name>AdvancedPrefsModel</name>
<message>
<source>Name</source>
<translation type="unfinished"></translation>
<translation>Ім&apos;я</translation>
</message>
<message>
<source>Status</source>
@ -178,7 +178,7 @@
<name>AuthorListModel</name>
<message>
<source>Name</source>
<translation type="unfinished"></translation>
<translation>Ім&apos;я</translation>
</message>
<message>
<source>Email</source>
@ -233,15 +233,15 @@
</message>
<message>
<source>Mark/Unmark Row</source>
<translation type="unfinished"></translation>
<translation>Позначити/Зняти позначку з рядка</translation>
</message>
<message>
<source>Ctrl-M</source>
<translation type="unfinished"></translation>
<translation>Ctrl-M</translation>
</message>
<message>
<source>Mark/Unmark Cell</source>
<translation type="unfinished"></translation>
<translation>Позначити/зняти позначку з клітинки</translation>
</message>
<message>
<source>Save Table Image</source>
@ -256,171 +256,171 @@
<name>BluetoothDeviceDialog</name>
<message>
<source>Bluetooth Device</source>
<translation type="unfinished"></translation>
<translation>Пристрій Bluetooth</translation>
</message>
<message>
<source>BD_ADDR</source>
<translation type="unfinished">BD_ADDR</translation>
<translation>BD_ADDR</translation>
</message>
<message>
<source>OUI</source>
<translation type="unfinished">УІО (OUI)</translation>
<translation>OUI</translation>
</message>
<message>
<source>Name</source>
<translation type="unfinished"></translation>
<translation>Ім&apos;я</translation>
</message>
<message>
<source>Class of Device</source>
<translation type="unfinished"></translation>
<translation>Клас пристрою</translation>
</message>
<message>
<source>LMP Version</source>
<translation type="unfinished">Версія LMP</translation>
<translation>Версія LMP</translation>
</message>
<message>
<source>LMP Subversion</source>
<translation type="unfinished">Підверсія LMP</translation>
<translation>Підверсія LMP</translation>
</message>
<message>
<source>Manufacturer</source>
<translation type="unfinished">Виробник</translation>
<translation>Виробник</translation>
</message>
<message>
<source>HCI Version</source>
<translation type="unfinished">Версія HCI</translation>
<translation>Версія HCI</translation>
</message>
<message>
<source>HCI Revision</source>
<translation type="unfinished">Ревізія HCI</translation>
<translation>Ревізія HCI</translation>
</message>
<message>
<source>Scan</source>
<translation type="unfinished"></translation>
<translation>Сканувати</translation>
</message>
<message>
<source>Authentication</source>
<translation type="unfinished"></translation>
<translation>Аутентифікація</translation>
</message>
<message>
<source>Encryption</source>
<translation type="unfinished"></translation>
<translation>Шифрування</translation>
</message>
<message>
<source>ACL MTU</source>
<translation type="unfinished"></translation>
<translation>ACL MTU</translation>
</message>
<message>
<source>ACL Total Packets</source>
<translation type="unfinished"></translation>
<translation>Всього пакетів ACL</translation>
</message>
<message>
<source>SCO MTU</source>
<translation type="unfinished"></translation>
<translation>SCO MTU</translation>
</message>
<message>
<source>SCO Total Packets</source>
<translation type="unfinished"></translation>
<translation>Всього пакетів SCO</translation>
</message>
<message>
<source>LE ACL MTU</source>
<translation type="unfinished"></translation>
<translation>LE ACL MTU</translation>
</message>
<message>
<source>LE ACL Total Packets</source>
<translation type="unfinished"></translation>
<translation>Всього пакетів LE ACL</translation>
</message>
<message>
<source>LE ISO MTU</source>
<translation type="unfinished"></translation>
<translation>LE ISO MTU</translation>
</message>
<message>
<source>LE ISO Total Packets</source>
<translation type="unfinished"></translation>
<translation>Всього пакетів LE ISO</translation>
</message>
<message>
<source>Inquiry Mode</source>
<translation type="unfinished"></translation>
<translation>Режим запитів</translation>
</message>
<message>
<source>Page Timeout</source>
<translation type="unfinished"></translation>
<translation>Таймаут сторінки</translation>
</message>
<message>
<source>Simple Pairing Mode</source>
<translation type="unfinished"></translation>
<translation>Простий режим парування</translation>
</message>
<message>
<source>Voice Setting</source>
<translation type="unfinished"></translation>
<translation>Налаштування голосу</translation>
</message>
<message>
<source>Value</source>
<translation type="unfinished">Значення</translation>
<translation>Значення</translation>
</message>
<message>
<source>Changes</source>
<translation type="unfinished"></translation>
<translation>Зміни</translation>
</message>
<message>
<source>%1 changes</source>
<translation type="unfinished"></translation>
<translation>%1 зміни</translation>
</message>
<message>
<source>Copy Cell</source>
<translation type="unfinished">Скопіювати Клітинку</translation>
<translation>Копіювати клітинку</translation>
</message>
<message>
<source>Copy Rows</source>
<translation type="unfinished">Скопіювати Рядки</translation>
<translation>Копіювати рядки</translation>
</message>
<message>
<source>Copy All</source>
<translation type="unfinished">Скопіювати Все</translation>
<translation>Копіювати все</translation>
</message>
<message>
<source>Save as image</source>
<translation type="unfinished">Зберегти як зображення</translation>
<translation>Зберегти як зображення</translation>
</message>
<message>
<source>Mark/Unmark Row</source>
<translation type="unfinished"></translation>
<translation>Позначити/Зняти позначку з рядка</translation>
</message>
<message>
<source>Ctrl+M</source>
<translation type="unfinished"></translation>
<translation>Ctrl+M</translation>
</message>
<message>
<source>Mark/Unmark Cell</source>
<translation type="unfinished"></translation>
<translation>Позначити/зняти позначку з клітинки</translation>
</message>
<message>
<source>Unknown</source>
<translation type="unfinished">Невідомо</translation>
<translation>Невідомий</translation>
</message>
<message>
<source>Bluetooth Device - %1%2</source>
<translation type="unfinished"></translation>
<translation>Пристрій Bluetooth - %1%2</translation>
</message>
<message>
<source>enabled</source>
<translation type="unfinished"></translation>
<translation>ввімкнено</translation>
</message>
<message>
<source>disabled</source>
<translation type="unfinished"></translation>
<translation>вимкнено</translation>
</message>
<message>
<source>%1 ms (%2 slots)</source>
<translation type="unfinished"></translation>
<translation>%1 мс (%2 слоти)</translation>
</message>
<message>
<source>Save Table Image</source>
<translation type="unfinished">Зберегти Зображення Таблиці</translation>
<translation>Зберегти зображення таблиці</translation>
</message>
<message>
<source>PNG Image (*.png)</source>
<translation type="unfinished">Зображення PNG (*.png)</translation>
<translation>Зображення PNG (*.png)</translation>
</message>
</context>
<context>
@ -471,11 +471,11 @@
</message>
<message>
<source>Show information steps</source>
<translation type="unfinished"></translation>
<translation>Показати кроки інформації</translation>
</message>
<message>
<source>%1 items; Right click for more option; Double click for device details</source>
<translation type="unfinished"></translation>
<translation>%1 елементів; Клацніть правою кнопкою миші для отримання додаткових опцій; Подвійний клік для отримання деталей пристрою</translation>
</message>
<message>
<source>Copy Cell</source>
@ -495,19 +495,19 @@
</message>
<message>
<source>Mark/Unmark Row</source>
<translation type="unfinished"></translation>
<translation>Позначити/Зняти позначку з рядка</translation>
</message>
<message>
<source>Ctrl-M</source>
<translation type="unfinished"></translation>
<translation>Ctrl-M</translation>
</message>
<message>
<source>Mark/Unmark Cell</source>
<translation type="unfinished"></translation>
<translation>Позначити/зняти позначку з клітинки</translation>
</message>
<message>
<source>true</source>
<translation type="unfinished"></translation>
<translation>істина</translation>
</message>
<message>
<source>Save Table Image</source>
@ -546,7 +546,7 @@
</message>
<message>
<source>Subevent</source>
<translation type="unfinished"></translation>
<translation>Підподія</translation>
</message>
<message>
<source>Status</source>
@ -562,7 +562,7 @@
</message>
<message>
<source>Occurrence</source>
<translation type="unfinished"></translation>
<translation>Випадок</translation>
</message>
<message>
<source>Link Control Commands</source>
@ -654,11 +654,11 @@
</message>
<message>
<source>Results filter:</source>
<translation type="unfinished"></translation>
<translation>Фільтр результатів:</translation>
</message>
<message>
<source>Display filter:</source>
<translation type="unfinished">Фільтр відображення:</translation>
<translation>Фільтр відображення:</translation>
</message>
<message>
<source>All Interfaces</source>
@ -686,19 +686,19 @@
</message>
<message>
<source>Mark/Unmark Row</source>
<translation type="unfinished"></translation>
<translation>Позначити/Зняти позначку з рядка</translation>
</message>
<message>
<source>Ctrl+M</source>
<translation type="unfinished"></translation>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
<source>Mark/Unmark Cell</source>
<translation type="unfinished"></translation>
<translation type="unfinished">Позначити/зняти позначку з клітинки</translation>
</message>
<message>
<source>Unknown</source>
<translation type="unfinished">Невідомо</translation>
<translation type="unfinished"></translation>
</message>
<message>
<source>Adapter %1</source>
@ -1911,7 +1911,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Unknown</source>
<translation type="unfinished">Невідомо</translation>
<translation type="unfinished"></translation>
</message>
</context>
<context>
@ -3636,7 +3636,6 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
@ -8566,7 +8565,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Unknown</source>
<translation type="unfinished">Невідомо</translation>
<translation type="unfinished"></translation>
</message>
<message>
<source>UE Id</source>
@ -8668,7 +8667,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Authentication</source>
<translation type="unfinished"></translation>
<translation type="unfinished">Аутентифікація</translation>
</message>
<message>
<source>Null authentication</source>
@ -9876,7 +9875,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Unknown</source>
<translation type="unfinished">Невідомо</translation>
<translation type="unfinished"></translation>
</message>
</context>
<context>
@ -12148,7 +12147,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Unknown</source>
<translation type="unfinished">Невідомо</translation>
<translation type="unfinished"></translation>
</message>
</context>
<context>
@ -13303,11 +13302,6 @@ a:hover {
<source>Find the previous packet</source>
<translation>Знайти попередній пакет</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation>Позначити Всі Відображені</translation>
@ -13336,11 +13330,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation>Перейти до попереднього позначеного пакету</translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation>Прибрати Всі Відображені</translation>
@ -14005,10 +13994,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>Знайти Поп&amp;ередній</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation type="unfinished"></translation>

View File

@ -3627,7 +3627,6 @@ For example, use 1 hour to have a new file created every hour on the hour.</sour
</message>
<message>
<source>Show as</source>
<oldsource>Show data as</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
@ -13383,11 +13382,6 @@ a:hover {
<source>Find the previous packet</source>
<translation></translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<oldsource>&amp;Mark/Unmark Packet(s)</oldsource>
<translation type="unfinished">/ (&amp;M)</translation>
</message>
<message>
<source>Mark All Displayed</source>
<translation></translation>
@ -13416,11 +13410,6 @@ a:hover {
<source>Go to the previous marked packet</source>
<translation></translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<oldsource>&amp;Ignore/Unignore Packet(s)</oldsource>
<translation type="unfinished">/ (&amp;I)</translation>
</message>
<message>
<source>Ignore All Displayed</source>
<translation></translation>
@ -14085,10 +14074,18 @@ a:hover {
<source>Find Pre&amp;vious</source>
<translation>(&amp;v)</translation>
</message>
<message>
<source>&amp;Mark/Unmark Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Mark or unmark each selected packet</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Ignore/Unignore Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ignore or unignore each selected packet</source>
<translation type="unfinished"></translation>