Merge branch 'develop' of bitbucket.org:k1jt/wsjtx into develop

This commit is contained in:
Joe Taylor 2020-09-12 09:02:27 -04:00
commit 18ab40a576
13 changed files with 3001 additions and 2551 deletions

View File

@ -1,5 +1,7 @@
#include "soundin.h"
#include <cstdlib>
#include <cmath>
#include <QAudioDeviceInfo>
#include <QAudioFormat>
#include <QAudioInput>
@ -166,15 +168,21 @@ void SoundInput::reset (bool report_dropped_frames)
{
if (m_stream)
{
if (cummulative_lost_usec_ >= 0 // don't report first time as we
// don't yet known latency
&& report_dropped_frames)
auto elapsed_usecs = m_stream->elapsedUSecs ();
while (std::abs (elapsed_usecs - m_stream->processedUSecs ())
> 24 * 60 * 60 * 500000ll) // half day
{
auto lost_usec = m_stream->elapsedUSecs () - m_stream->processedUSecs () - cummulative_lost_usec_;
// QAudioInput::elapsedUSecs() wraps after 24 hours
elapsed_usecs += 24 * 60 * 60 * 1000000ll;
}
// don't report first time as we don't yet known latency
if (cummulative_lost_usec_ != std::numeric_limits<qint64>::min () && report_dropped_frames)
{
auto lost_usec = elapsed_usecs - m_stream->processedUSecs () - cummulative_lost_usec_;
Q_EMIT dropped_frames (m_stream->format ().framesForDuration (lost_usec), lost_usec);
//qDebug () << "SoundInput::reset: frames dropped:" << m_stream->format ().framesForDuration (lost_usec) << "sec:" << lost_usec / 1.e6;
}
cummulative_lost_usec_ = m_stream->elapsedUSecs () - m_stream->processedUSecs ();
cummulative_lost_usec_ = elapsed_usecs - m_stream->processedUSecs ();
}
}

View File

@ -2,6 +2,7 @@
#ifndef SOUNDIN_H__
#define SOUNDIN_H__
#include <limits>
#include <QObject>
#include <QString>
#include <QDateTime>
@ -24,7 +25,7 @@ public:
SoundInput (QObject * parent = nullptr)
: QObject {parent}
, m_sink {nullptr}
, cummulative_lost_usec_ {0}
, cummulative_lost_usec_ {std::numeric_limits<qint64>::min ()}
{
}

View File

@ -1522,19 +1522,25 @@ void Configuration::impl::find_audio_devices ()
// retrieve audio input device
//
auto saved_name = settings_->value ("SoundInName").toString ();
audio_input_device_ = find_audio_device (QAudio::AudioInput, ui_->sound_input_combo_box, saved_name);
audio_input_channel_ = AudioDevice::fromString (settings_->value ("AudioInputChannel", "Mono").toString ());
update_audio_channels (ui_->sound_input_combo_box, ui_->sound_input_combo_box->currentIndex (), ui_->sound_input_channel_combo_box, false);
ui_->sound_input_channel_combo_box->setCurrentIndex (audio_input_channel_);
if (audio_input_device_.deviceName () != saved_name)
{
audio_input_device_ = find_audio_device (QAudio::AudioInput, ui_->sound_input_combo_box, saved_name);
audio_input_channel_ = AudioDevice::fromString (settings_->value ("AudioInputChannel", "Mono").toString ());
update_audio_channels (ui_->sound_input_combo_box, ui_->sound_input_combo_box->currentIndex (), ui_->sound_input_channel_combo_box, false);
ui_->sound_input_channel_combo_box->setCurrentIndex (audio_input_channel_);
}
//
// retrieve audio output device
//
saved_name = settings_->value("SoundOutName").toString();
audio_output_channel_ = AudioDevice::fromString (settings_->value ("AudioOutputChannel", "Mono").toString ());
audio_output_device_ = find_audio_device (QAudio::AudioOutput, ui_->sound_output_combo_box, saved_name);
update_audio_channels (ui_->sound_output_combo_box, ui_->sound_output_combo_box->currentIndex (), ui_->sound_output_channel_combo_box, true);
ui_->sound_output_channel_combo_box->setCurrentIndex (audio_output_channel_);
if (audio_output_device_.deviceName () != saved_name)
{
audio_output_channel_ = AudioDevice::fromString (settings_->value ("AudioOutputChannel", "Mono").toString ());
audio_output_device_ = find_audio_device (QAudio::AudioOutput, ui_->sound_output_combo_box, saved_name);
update_audio_channels (ui_->sound_output_combo_box, ui_->sound_output_combo_box->currentIndex (), ui_->sound_output_channel_combo_box, true);
ui_->sound_output_channel_combo_box->setCurrentIndex (audio_output_channel_);
}
}
void Configuration::impl::write_settings ()
@ -1836,6 +1842,8 @@ int Configuration::impl::exec ()
rig_changed_ = false;
initialize_models ();
lazy_models_load (ui_->configuration_tabs->currentIndex ());
return QDialog::exec();
}
@ -2762,28 +2770,30 @@ QAudioDeviceInfo Configuration::impl::find_audio_device (QAudio::Mode mode, QCom
using std::copy;
using std::back_inserter;
combo_box->clear ();
int current_index = -1;
auto const& devices = QAudioDeviceInfo::availableDevices (mode);
Q_FOREACH (auto const& p, devices)
if (device_name.size ())
{
// qDebug () << "Audio device: input:" << (QAudio::AudioInput == mode) << "name:" << p.deviceName () << "preferred format:" << p.preferredFormat () << "endians:" << p.supportedByteOrders () << "codecs:" << p.supportedCodecs () << "channels:" << p.supportedChannelCounts () << "rates:" << p.supportedSampleRates () << "sizes:" << p.supportedSampleSizes () << "types:" << p.supportedSampleTypes ();
combo_box->clear ();
// convert supported channel counts into something we can store in the item model
QList<QVariant> channel_counts;
auto scc = p.supportedChannelCounts ();
copy (scc.cbegin (), scc.cend (), back_inserter (channel_counts));
combo_box->addItem (p.deviceName (), QVariant::fromValue (audio_info_type {p, channel_counts}));
if (p.deviceName () == device_name)
int current_index = -1;
auto const& devices = QAudioDeviceInfo::availableDevices (mode);
Q_FOREACH (auto const& p, devices)
{
current_index = combo_box->count () - 1;
combo_box->setCurrentIndex (current_index);
return p;
// convert supported channel counts into something we can store in the item model
QList<QVariant> channel_counts;
auto scc = p.supportedChannelCounts ();
copy (scc.cbegin (), scc.cend (), back_inserter (channel_counts));
combo_box->addItem (p.deviceName (), QVariant::fromValue (audio_info_type {p, channel_counts}));
if (p.deviceName () == device_name)
{
current_index = combo_box->count () - 1;
combo_box->setCurrentIndex (current_index);
return p;
}
}
combo_box->setCurrentIndex (current_index);
}
combo_box->setCurrentIndex (current_index);
return {};
}

View File

@ -430,22 +430,22 @@
<translation>&amp;Restablir</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1712"/>
<location filename="../Configuration.cpp" line="1718"/>
<source>Serial Port:</source>
<translation>Port sèrie:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1713"/>
<location filename="../Configuration.cpp" line="1719"/>
<source>Serial port used for CAT control</source>
<translation>Port sèrie utilitzat per al control CAT</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1720"/>
<location filename="../Configuration.cpp" line="1726"/>
<source>Network Server:</source>
<translation>Servidor de xarxa:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1721"/>
<location filename="../Configuration.cpp" line="1727"/>
<source>Optional hostname and port of network service.
Leave blank for a sensible default on this machine.
Formats:
@ -460,12 +460,12 @@ Formats:
[adreça IPv6]:port</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1733"/>
<location filename="../Configuration.cpp" line="1739"/>
<source>USB Device:</source>
<translation>Dispositiu USB:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1734"/>
<location filename="../Configuration.cpp" line="1740"/>
<source>Optional device identification.
Leave blank for a sensible default for the rig.
Format:
@ -476,8 +476,8 @@ Format:
[VID[:PID[:VENDOR[:PRODUCT]]]]</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1770"/>
<location filename="../Configuration.cpp" line="1778"/>
<location filename="../Configuration.cpp" line="1776"/>
<location filename="../Configuration.cpp" line="1784"/>
<source>Invalid audio input device</source>
<translation>El dispositiu d&apos;entrada d&apos;àudio no és vàlid</translation>
</message>
@ -486,147 +486,147 @@ Format:
<translation type="vanished">El dispositiu de sortida d&apos;àudio no és vàlid</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1786"/>
<location filename="../Configuration.cpp" line="1792"/>
<source>Invalid audio output device</source>
<translation>El dispositiu de sortida d&apos;àudio no és vàlid</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1792"/>
<location filename="../Configuration.cpp" line="1798"/>
<source>Invalid PTT method</source>
<translation>El mètode de PTT no és vàlid</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1802"/>
<location filename="../Configuration.cpp" line="1808"/>
<source>Invalid PTT port</source>
<translation>El port del PTT no és vàlid</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1810"/>
<location filename="../Configuration.cpp" line="1819"/>
<location filename="../Configuration.cpp" line="1816"/>
<location filename="../Configuration.cpp" line="1825"/>
<source>Invalid Contest Exchange</source>
<translation>Intercanvi de concurs no vàlid</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1811"/>
<location filename="../Configuration.cpp" line="1817"/>
<source>You must input a valid ARRL Field Day exchange</source>
<translation>Has dintroduir un intercanvi de Field Day de l&apos;ARRL vàlid</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1820"/>
<location filename="../Configuration.cpp" line="1826"/>
<source>You must input a valid ARRL RTTY Roundup exchange</source>
<translation>Has dintroduir un intercanvi vàlid de l&apos;ARRL RTTY Roundup</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2118"/>
<location filename="../Configuration.cpp" line="2126"/>
<source>Reset Decode Highlighting</source>
<translation>Restableix Ressaltat de Descodificació</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2119"/>
<location filename="../Configuration.cpp" line="2127"/>
<source>Reset all decode highlighting and priorities to default values</source>
<translation>Restableix tot el ressaltat i les prioritats de descodificació als valors predeterminats</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2139"/>
<location filename="../Configuration.cpp" line="2147"/>
<source>WSJT-X Decoded Text Font Chooser</source>
<translation>Tipus de text de pantalla de descodificació WSJT-X</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2314"/>
<source>Load Working Frequencies</source>
<translation>Càrrega les freqüències de treball</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2333"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Frequency files (*.qrg);;All files (*.*)</source>
<translation>Arxius de freqüència (*.qrg);;Tots els arxius (*.*)</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2313"/>
<location filename="../Configuration.cpp" line="2321"/>
<source>Replace Working Frequencies</source>
<translation>Substitueix les freqüències de treball</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2322"/>
<source>Are you sure you want to discard your current working frequencies and replace them with the loaded ones?</source>
<translation>Segur que vols descartar les teves freqüències actuals de treball i reemplaçar-les per les carregades ?</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2333"/>
<source>Merge Working Frequencies</source>
<translation>Combina les freqüències de treball</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2350"/>
<location filename="../Configuration.cpp" line="2359"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Not a valid frequencies file</source>
<translation>L&apos;arxiu de freqüències no és vàlid</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2350"/>
<source>Incorrect file magic</source>
<translation>L&apos;arxiu màgic es incorrecte</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2359"/>
<source>Version is too new</source>
<translation>La versió és massa nova</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Contents corrupt</source>
<translation>Continguts corruptes</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Save Working Frequencies</source>
<translation>Desa les freqüències de treball</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2380"/>
<location filename="../Configuration.cpp" line="2388"/>
<source>Only Save Selected Working Frequencies</source>
<translation>Desa només les freqüències de treball seleccionades</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2381"/>
<location filename="../Configuration.cpp" line="2389"/>
<source>Are you sure you want to save only the working frequencies that are currently selected? Click No to save all.</source>
<translation>Estàs segur que vols desar només les freqüències de treball seleccionades actualment? Fes clic a No per desar-ho tot.</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2397"/>
<location filename="../Configuration.cpp" line="2405"/>
<source>Reset Working Frequencies</source>
<translation>Restablir les freqüències de treball</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2398"/>
<location filename="../Configuration.cpp" line="2406"/>
<source>Are you sure you want to discard your current working frequencies and replace them with default ones?</source>
<translation>Segur que vols descartar les teves freqüències actuals de treball i reemplaçar-les per altres?</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2436"/>
<location filename="../Configuration.cpp" line="2444"/>
<source>Save Directory</source>
<translation>Directori de Guardar</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2450"/>
<location filename="../Configuration.cpp" line="2458"/>
<source>AzEl Directory</source>
<translation>Directori AzEl</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2510"/>
<location filename="../Configuration.cpp" line="2518"/>
<source>Rig control error</source>
<translation>Error de control de l&apos;equip</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2511"/>
<location filename="../Configuration.cpp" line="2519"/>
<source>Failed to open connection to rig</source>
<translation>No s&apos;ha pogut obrir la connexió al equip</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2729"/>
<location filename="../Configuration.cpp" line="2737"/>
<source>Rig failure</source>
<translation>Fallada en l&apos;equip</translation>
</message>
@ -2086,13 +2086,13 @@ Error(%2): %3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="50"/>
<location filename="../widgets/mainwindow.cpp" line="5887"/>
<location filename="../widgets/mainwindow.cpp" line="5961"/>
<location filename="../widgets/mainwindow.cpp" line="6009"/>
<location filename="../widgets/mainwindow.cpp" line="6171"/>
<location filename="../widgets/mainwindow.cpp" line="6211"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="5891"/>
<location filename="../widgets/mainwindow.cpp" line="5965"/>
<location filename="../widgets/mainwindow.cpp" line="6013"/>
<location filename="../widgets/mainwindow.cpp" line="6175"/>
<location filename="../widgets/mainwindow.cpp" line="6215"/>
<location filename="../widgets/mainwindow.cpp" line="6263"/>
<location filename="../widgets/mainwindow.cpp" line="6392"/>
<source>Band Activity</source>
<translation>Activitat a la banda</translation>
</message>
@ -2104,12 +2104,12 @@ Error(%2): %3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="194"/>
<location filename="../widgets/mainwindow.cpp" line="5888"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6172"/>
<location filename="../widgets/mainwindow.cpp" line="6212"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<location filename="../widgets/mainwindow.cpp" line="5892"/>
<location filename="../widgets/mainwindow.cpp" line="5964"/>
<location filename="../widgets/mainwindow.cpp" line="6008"/>
<location filename="../widgets/mainwindow.cpp" line="6176"/>
<location filename="../widgets/mainwindow.cpp" line="6216"/>
<location filename="../widgets/mainwindow.cpp" line="6264"/>
<source>Rx Frequency</source>
<translation>Freqüència de RX</translation>
</message>
@ -2592,7 +2592,7 @@ No està disponible per als titulars de indicatiu no estàndard.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="986"/>
<location filename="../widgets/mainwindow.cpp" line="6031"/>
<location filename="../widgets/mainwindow.cpp" line="6035"/>
<source>Fox</source>
<translation>Fox</translation>
</message>
@ -3133,10 +3133,10 @@ La llista es pot mantenir a la configuració (F2).</translation>
<location filename="../widgets/mainwindow.ui" line="1732"/>
<location filename="../widgets/mainwindow.ui" line="1739"/>
<location filename="../widgets/mainwindow.ui" line="1959"/>
<location filename="../widgets/mainwindow.cpp" line="1240"/>
<location filename="../widgets/mainwindow.cpp" line="5645"/>
<location filename="../widgets/mainwindow.cpp" line="6544"/>
<location filename="../widgets/mainwindow.cpp" line="7965"/>
<location filename="../widgets/mainwindow.cpp" line="1244"/>
<location filename="../widgets/mainwindow.cpp" line="5649"/>
<location filename="../widgets/mainwindow.cpp" line="6548"/>
<location filename="../widgets/mainwindow.cpp" line="7969"/>
<source>Random</source>
<translation>a latzar</translation>
</message>
@ -3542,7 +3542,7 @@ La llista es pot mantenir a la configuració (F2).</translation>
<translation type="vanished">TX desactivat després denviar 73</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8271"/>
<location filename="../widgets/mainwindow.cpp" line="8275"/>
<source>Runaway Tx watchdog</source>
<translation>Seguretat de TX</translation>
</message>
@ -3810,8 +3810,8 @@ La llista es pot mantenir a la configuració (F2).</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="336"/>
<location filename="../widgets/mainwindow.cpp" line="4281"/>
<location filename="../widgets/mainwindow.cpp" line="7742"/>
<location filename="../widgets/mainwindow.cpp" line="4285"/>
<location filename="../widgets/mainwindow.cpp" line="7746"/>
<source>Receiving</source>
<translation>Rebent</translation>
</message>
@ -3826,199 +3826,203 @@ La llista es pot mantenir a la configuració (F2).</translation>
<translation>%1 (%2 sec) shan caigut els marcs dàudio</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="484"/>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<source>Audio Source</source>
<translation>Font d&apos;àudio</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Reduce system load</source>
<translation>Reduir la càrrega del sistema</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped</source>
<translation>Mostres caigudes excessives - %1 (%2 sec) shan caigut els marcs dàudio</translation>
<translation type="vanished">Mostres caigudes excessives - %1 (%2 sec) shan caigut els marcs dàudio</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="517"/>
<location filename="../widgets/mainwindow.cpp" line="487"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped in period starting %3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<source>Error Scanning ADIF Log</source>
<translation>Error d&apos;escaneig del log ADIF</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<location filename="../widgets/mainwindow.cpp" line="525"/>
<source>Scanned ADIF log, %1 worked before records created</source>
<translation>Log ADIF escanejat, %1 funcionava abans de la creació de registres</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="631"/>
<location filename="../widgets/mainwindow.cpp" line="635"/>
<source>Error Loading LotW Users Data</source>
<translation>S&apos;ha produït un error al carregar les dades dels usuaris de LotW</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="750"/>
<location filename="../widgets/mainwindow.cpp" line="754"/>
<source>Error Writing WAV File</source>
<translation>S&apos;ha produït un error al escriure l&apos;arxiu WAV</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="793"/>
<location filename="../widgets/mainwindow.cpp" line="797"/>
<source>Configurations...</source>
<translation>Configuracions...</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="862"/>
<location filename="../widgets/mainwindow.cpp" line="5956"/>
<location filename="../widgets/mainwindow.cpp" line="5962"/>
<location filename="../widgets/mainwindow.cpp" line="6000"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<location filename="../widgets/mainwindow.cpp" line="6107"/>
<location filename="../widgets/mainwindow.cpp" line="6108"/>
<location filename="../widgets/mainwindow.cpp" line="6157"/>
<location filename="../widgets/mainwindow.cpp" line="6158"/>
<location filename="../widgets/mainwindow.cpp" line="6164"/>
<location filename="../widgets/mainwindow.cpp" line="6165"/>
<location filename="../widgets/mainwindow.cpp" line="6213"/>
<location filename="../widgets/mainwindow.cpp" line="6214"/>
<location filename="../widgets/mainwindow.cpp" line="6383"/>
<location filename="../widgets/mainwindow.cpp" line="6384"/>
<location filename="../widgets/mainwindow.cpp" line="7424"/>
<location filename="../widgets/mainwindow.cpp" line="7427"/>
<location filename="../widgets/mainwindow.cpp" line="7432"/>
<location filename="../widgets/mainwindow.cpp" line="7435"/>
<location filename="../widgets/mainwindow.cpp" line="866"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="5966"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6014"/>
<location filename="../widgets/mainwindow.cpp" line="6111"/>
<location filename="../widgets/mainwindow.cpp" line="6112"/>
<location filename="../widgets/mainwindow.cpp" line="6161"/>
<location filename="../widgets/mainwindow.cpp" line="6162"/>
<location filename="../widgets/mainwindow.cpp" line="6168"/>
<location filename="../widgets/mainwindow.cpp" line="6169"/>
<location filename="../widgets/mainwindow.cpp" line="6217"/>
<location filename="../widgets/mainwindow.cpp" line="6218"/>
<location filename="../widgets/mainwindow.cpp" line="6387"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="7428"/>
<location filename="../widgets/mainwindow.cpp" line="7431"/>
<location filename="../widgets/mainwindow.cpp" line="7436"/>
<location filename="../widgets/mainwindow.cpp" line="7439"/>
<source>Message</source>
<translation>Missatge</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="876"/>
<location filename="../widgets/mainwindow.cpp" line="880"/>
<source>Error Killing jt9.exe Process</source>
<translation>Error en matar el procés jt9.exe</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="877"/>
<location filename="../widgets/mainwindow.cpp" line="881"/>
<source>KillByName return code: %1</source>
<translation>Codi de retorn de KillByName: %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="892"/>
<location filename="../widgets/mainwindow.cpp" line="896"/>
<source>Error removing &quot;%1&quot;</source>
<translation>Error en eliminar &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="893"/>
<location filename="../widgets/mainwindow.cpp" line="897"/>
<source>Click OK to retry</source>
<translation>Fes clic a D&apos;acord per tornar-ho a provar</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1296"/>
<location filename="../widgets/mainwindow.cpp" line="6357"/>
<location filename="../widgets/mainwindow.cpp" line="1300"/>
<location filename="../widgets/mainwindow.cpp" line="6361"/>
<source>Improper mode</source>
<translation>Mode inadequat</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1466"/>
<location filename="../widgets/mainwindow.cpp" line="8917"/>
<location filename="../widgets/mainwindow.cpp" line="1470"/>
<location filename="../widgets/mainwindow.cpp" line="8921"/>
<source>File Open Error</source>
<translation>Error al obrir l&apos;arxiu</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1467"/>
<location filename="../widgets/mainwindow.cpp" line="7871"/>
<location filename="../widgets/mainwindow.cpp" line="8351"/>
<location filename="../widgets/mainwindow.cpp" line="8918"/>
<location filename="../widgets/mainwindow.cpp" line="9050"/>
<location filename="../widgets/mainwindow.cpp" line="1471"/>
<location filename="../widgets/mainwindow.cpp" line="7875"/>
<location filename="../widgets/mainwindow.cpp" line="8355"/>
<location filename="../widgets/mainwindow.cpp" line="8922"/>
<location filename="../widgets/mainwindow.cpp" line="9054"/>
<source>Cannot open &quot;%1&quot; for append: %2</source>
<translation>No es pot obrir &quot;%1&quot; per annexar: %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1570"/>
<location filename="../widgets/mainwindow.cpp" line="1574"/>
<source>Error saving c2 file</source>
<translation>Error en desar l&apos;arxiu c2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1770"/>
<location filename="../widgets/mainwindow.cpp" line="1774"/>
<source>Error in Sound Input</source>
<translation>Error a la entrada de so</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1776"/>
<location filename="../widgets/mainwindow.cpp" line="1780"/>
<source>Error in Sound Output</source>
<translation>Error en la sortida de so</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1840"/>
<location filename="../widgets/mainwindow.cpp" line="6105"/>
<location filename="../widgets/mainwindow.cpp" line="6255"/>
<location filename="../widgets/mainwindow.cpp" line="1844"/>
<location filename="../widgets/mainwindow.cpp" line="6109"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<source>Single-Period Decodes</source>
<translation>Descodificacions d&apos;un sol període</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1841"/>
<location filename="../widgets/mainwindow.cpp" line="6106"/>
<location filename="../widgets/mainwindow.cpp" line="6256"/>
<location filename="../widgets/mainwindow.cpp" line="1845"/>
<location filename="../widgets/mainwindow.cpp" line="6110"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<source>Average Decodes</source>
<translation>Mitjans descodificats</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>Change Operator</source>
<translation>Canvi d&apos;Operador</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>New operator:</source>
<translation>Operador Nou:</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2251"/>
<location filename="../widgets/mainwindow.cpp" line="2255"/>
<source>Status File Error</source>
<translation>Error d&apos;estat de l&apos;arxiu</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2252"/>
<location filename="../widgets/mainwindow.cpp" line="5506"/>
<location filename="../widgets/mainwindow.cpp" line="2256"/>
<location filename="../widgets/mainwindow.cpp" line="5510"/>
<source>Cannot open &quot;%1&quot; for writing: %2</source>
<translation>No es pot obrir &quot;%1&quot; per escriure: %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2387"/>
<location filename="../widgets/mainwindow.cpp" line="2391"/>
<source>Subprocess Error</source>
<translation>Error de subprocés</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2388"/>
<location filename="../widgets/mainwindow.cpp" line="2392"/>
<source>Subprocess failed with exit code %1</source>
<translation>Ha fallat el subprocés amb el codi de sortida %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2390"/>
<location filename="../widgets/mainwindow.cpp" line="2410"/>
<location filename="../widgets/mainwindow.cpp" line="2394"/>
<location filename="../widgets/mainwindow.cpp" line="2414"/>
<source>Running: %1
%2</source>
<translation>Corrent: %1
%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2409"/>
<location filename="../widgets/mainwindow.cpp" line="2413"/>
<source>Subprocess error</source>
<translation>Error de subprocés</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2447"/>
<location filename="../widgets/mainwindow.cpp" line="2451"/>
<source>Reference spectrum saved</source>
<translation>Guarda l&apos;espectre de referència</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2510"/>
<location filename="../widgets/mainwindow.cpp" line="2514"/>
<source>Invalid data in fmt.all at line %1</source>
<translation>Les dades no són vàlides a fmt.all a la línia %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2516"/>
<location filename="../widgets/mainwindow.cpp" line="2520"/>
<source>Good Calibration Solution</source>
<translation>Solució de bona calibració</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2517"/>
<location filename="../widgets/mainwindow.cpp" line="2521"/>
<source>&lt;pre&gt;%1%L2 ±%L3 ppm
%4%L5 ±%L6 Hz
@ -4031,17 +4035,17 @@ La llista es pot mantenir a la configuració (F2).</translation>
%9%L10 Hz&lt;/pre&gt;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2531"/>
<location filename="../widgets/mainwindow.cpp" line="2535"/>
<source>Delete Calibration Measurements</source>
<translation>Suprimeix les mesures de calibració</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2532"/>
<location filename="../widgets/mainwindow.cpp" line="2536"/>
<source>The &quot;fmt.all&quot; file will be renamed as &quot;fmt.bak&quot;</source>
<translation>L&apos;arxiu &quot;fmt.all&quot; serà renombrat com a &quot;fmt.bak&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2544"/>
<location filename="../widgets/mainwindow.cpp" line="2548"/>
<source>If you make fair use of any part of WSJT-X under terms of the GNU General Public License, you must display the following copyright notice prominently in your derivative work:
&quot;The algorithms, source code, look-and-feel of WSJT-X and related programs, and protocol specifications for the modes FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 are Copyright (C) 2001-2020 by one or more of the following authors: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; and other members of the WSJT Development Group.&quot;</source>
@ -4049,27 +4053,27 @@ La llista es pot mantenir a la configuració (F2).</translation>
&quot;Els algoritmes, codi font, aspecte de WSJT-X i programes relacionats i les especificacions de protocol per als modes FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 són Copyright (C) 2001-2020 per un o més dels següents autors: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q i altres membres del grup de desenvolupament de WSJT. &quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2812"/>
<location filename="../widgets/mainwindow.cpp" line="2816"/>
<source>No data read from disk. Wrong file format?</source>
<translation>No es llegeixen dades del disc. Format de l&apos;arxiu incorrecte ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2819"/>
<location filename="../widgets/mainwindow.cpp" line="2823"/>
<source>Confirm Delete</source>
<translation>Confirma Esborrar</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2820"/>
<location filename="../widgets/mainwindow.cpp" line="2824"/>
<source>Are you sure you want to delete all *.wav and *.c2 files in &quot;%1&quot;?</source>
<translation>Estàs segur que vols esborrar tots els arxius *.wav i *.c2&quot;%1&quot; ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2857"/>
<location filename="../widgets/mainwindow.cpp" line="2861"/>
<source>Keyboard Shortcuts</source>
<translation>Dreceres de teclat</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2859"/>
<location filename="../widgets/mainwindow.cpp" line="2863"/>
<source>&lt;table cellspacing=1&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esc &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Stop Tx, abort QSO, clear next-call queue&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;F1 &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Online User&apos;s Guide (Alt: transmit Tx6)&lt;/td&gt;&lt;/tr&gt;
@ -4163,12 +4167,12 @@ La llista es pot mantenir a la configuració (F2).</translation>
&lt;/table&gt;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2915"/>
<location filename="../widgets/mainwindow.cpp" line="2919"/>
<source>Special Mouse Commands</source>
<translation>Ordres especials del ratolí</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2917"/>
<location filename="../widgets/mainwindow.cpp" line="2921"/>
<source>&lt;table cellpadding=5&gt;
&lt;tr&gt;
&lt;th align=&quot;right&quot;&gt;Click on&lt;/th&gt;
@ -4234,42 +4238,42 @@ La llista es pot mantenir a la configuració (F2).</translation>
&lt;/table&gt;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3254"/>
<location filename="../widgets/mainwindow.cpp" line="3258"/>
<source>No more files to open.</source>
<translation>No sobriran més arxius.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3612"/>
<location filename="../widgets/mainwindow.cpp" line="3616"/>
<source>Spotting to PSK Reporter unavailable</source>
<translation>No hi ha espots a PSK Reporter</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3770"/>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<source>Please choose another Tx frequency. WSJT-X will not knowingly transmit another mode in the WSPR sub-band on 30m.</source>
<translation>Tria una altra freqüència de TX. El WSJT-X no transmetrà de manera conscient un altre mode a la sub-banda WSPR a 30 m.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<location filename="../widgets/mainwindow.cpp" line="3778"/>
<source>WSPR Guard Band</source>
<translation>Banda de Guàrdia WSPR</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3787"/>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<source>Please choose another dial frequency. WSJT-X will not operate in Fox mode in the standard FT8 sub-bands.</source>
<translation>Tria una altra freqüència de treball. WSJT-X no funcionarà en mode Fox a les sub-bandes FT8 estàndard.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<location filename="../widgets/mainwindow.cpp" line="3795"/>
<source>Fox Mode warning</source>
<translation>Avís de mode Fox</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4385"/>
<location filename="../widgets/mainwindow.cpp" line="4389"/>
<source>Last Tx: %1</source>
<translation>Últim TX: %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4791"/>
<location filename="../widgets/mainwindow.cpp" line="4795"/>
<source>Should you switch to EU VHF Contest mode?
To do so, check &apos;Special operating activity&apos; and
@ -4280,120 +4284,120 @@ Per fer-ho, comprova &quot;Activitat operativa especial&quot; i
Concurs EU VHF a la Configuració | Pestanya avançada.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4810"/>
<location filename="../widgets/mainwindow.cpp" line="4814"/>
<source>Should you switch to ARRL Field Day mode?</source>
<translation>Has de canviar al mode de Field Day de l&apos;ARRL ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4815"/>
<location filename="../widgets/mainwindow.cpp" line="4819"/>
<source>Should you switch to RTTY contest mode?</source>
<translation>Has de canviar al mode de concurs RTTY?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5467"/>
<location filename="../widgets/mainwindow.cpp" line="5486"/>
<location filename="../widgets/mainwindow.cpp" line="5505"/>
<location filename="../widgets/mainwindow.cpp" line="5531"/>
<location filename="../widgets/mainwindow.cpp" line="5471"/>
<location filename="../widgets/mainwindow.cpp" line="5490"/>
<location filename="../widgets/mainwindow.cpp" line="5509"/>
<location filename="../widgets/mainwindow.cpp" line="5535"/>
<source>Add to CALL3.TXT</source>
<translation>Afegeix a CALL3.TXT</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5468"/>
<location filename="../widgets/mainwindow.cpp" line="5472"/>
<source>Please enter a valid grid locator</source>
<translation>Introduïu un locator vàlid</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5487"/>
<location filename="../widgets/mainwindow.cpp" line="5491"/>
<source>Cannot open &quot;%1&quot; for read/write: %2</source>
<translation>No es pot obrir &quot;%1&quot; per llegir o escriure: %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5529"/>
<location filename="../widgets/mainwindow.cpp" line="5533"/>
<source>%1
is already in CALL3.TXT, do you wish to replace it?</source>
<translation>%1
ja és a CALL3.TXT, vols substituir-lo ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5712"/>
<location filename="../widgets/mainwindow.cpp" line="5716"/>
<source>Warning: DX Call field is empty.</source>
<translation>Avís: el camp de indicatiu DX està buit.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5769"/>
<location filename="../widgets/mainwindow.cpp" line="5773"/>
<source>Log file error</source>
<translation>Error a l&apos;arxiu de log</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5770"/>
<location filename="../widgets/mainwindow.cpp" line="5774"/>
<source>Cannot open &quot;%1&quot;</source>
<translation>No es pot obrir &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5786"/>
<location filename="../widgets/mainwindow.cpp" line="5790"/>
<source>Error sending log to N1MM</source>
<translation>Error al enviar el log a N1MM</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5787"/>
<location filename="../widgets/mainwindow.cpp" line="5791"/>
<source>Write returned &quot;%1&quot;</source>
<translation>Escriptura retornada &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6006"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<source>Stations calling DXpedition %1</source>
<translation>Estacions que criden a DXpedition %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6041"/>
<location filename="../widgets/mainwindow.cpp" line="6045"/>
<source>Hound</source>
<translation>Hound</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6389"/>
<location filename="../widgets/mainwindow.cpp" line="6393"/>
<source>Tx Messages</source>
<translation>Missatges de TX</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6633"/>
<location filename="../widgets/mainwindow.cpp" line="6666"/>
<location filename="../widgets/mainwindow.cpp" line="6676"/>
<location filename="../widgets/mainwindow.cpp" line="6637"/>
<location filename="../widgets/mainwindow.cpp" line="6670"/>
<location filename="../widgets/mainwindow.cpp" line="6680"/>
<source>Confirm Erase</source>
<translation>Confirma Esborrar</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6634"/>
<location filename="../widgets/mainwindow.cpp" line="6638"/>
<source>Are you sure you want to erase file ALL.TXT?</source>
<translation>Estàs segur que vols esborrar l&apos;arxiu ALL.TXT ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6644"/>
<location filename="../widgets/mainwindow.cpp" line="8396"/>
<location filename="../widgets/mainwindow.cpp" line="6648"/>
<location filename="../widgets/mainwindow.cpp" line="8400"/>
<source>Confirm Reset</source>
<translation>Confirma que vols Restablir</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6645"/>
<location filename="../widgets/mainwindow.cpp" line="6649"/>
<source>Are you sure you want to erase your contest log?</source>
<translation>Estàs segur que vols esborrar el log del concurs ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6646"/>
<location filename="../widgets/mainwindow.cpp" line="6650"/>
<source>Doing this will remove all QSO records for the current contest. They will be kept in the ADIF log file but will not be available for export in your Cabrillo log.</source>
<translation>Si fas això, suprimiràs tots els registres de QSO del concurs actual. Es conservaran a l&apos;arxiu de log ADIF, però no es podran exportar al log de Cabrillo.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6659"/>
<location filename="../widgets/mainwindow.cpp" line="6663"/>
<source>Cabrillo Log saved</source>
<translation>Log Cabrillo desat</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6667"/>
<location filename="../widgets/mainwindow.cpp" line="6671"/>
<source>Are you sure you want to erase file wsjtx_log.adi?</source>
<translation>Estàs segur que vols esborrar l&apos;arxiu wsjtx_log.adi ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6677"/>
<location filename="../widgets/mainwindow.cpp" line="6681"/>
<source>Are you sure you want to erase the WSPR hashtable?</source>
<translation>Estàs segur que vols esborrar la taula del WSPR ?</translation>
</message>
@ -4402,60 +4406,60 @@ ja és a CALL3.TXT, vols substituir-lo ?</translation>
<translation type="vanished">Les característiques de VHF tenen un avís</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7264"/>
<location filename="../widgets/mainwindow.cpp" line="7268"/>
<source>Tune digital gain </source>
<translation>Guany de sintonització digital </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7266"/>
<location filename="../widgets/mainwindow.cpp" line="7270"/>
<source>Transmit digital gain </source>
<translation>Guany digital de transmissió </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7285"/>
<location filename="../widgets/mainwindow.cpp" line="7289"/>
<source>Prefixes</source>
<translation>Prefixos</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7709"/>
<location filename="../widgets/mainwindow.cpp" line="7713"/>
<source>Network Error</source>
<translation>Error de xarxa</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7710"/>
<location filename="../widgets/mainwindow.cpp" line="7714"/>
<source>Error: %1
UDP server %2:%3</source>
<translation>Error: %1
UDP server %2:%3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7870"/>
<location filename="../widgets/mainwindow.cpp" line="7874"/>
<source>File Error</source>
<translation>Error a l&apos;arxiu</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8149"/>
<location filename="../widgets/mainwindow.cpp" line="8153"/>
<source>Phase Training Disabled</source>
<translation>Entrenament de fase Desactivat</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8152"/>
<location filename="../widgets/mainwindow.cpp" line="8156"/>
<source>Phase Training Enabled</source>
<translation>Entrenament de fase activat</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8286"/>
<location filename="../widgets/mainwindow.cpp" line="8290"/>
<source>WD:%1m</source>
<translation>WD:%1m</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8354"/>
<location filename="../widgets/mainwindow.cpp" line="9053"/>
<location filename="../widgets/mainwindow.cpp" line="8358"/>
<location filename="../widgets/mainwindow.cpp" line="9057"/>
<source>Log File Error</source>
<translation>Error a l&apos;arxiu de log</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8397"/>
<location filename="../widgets/mainwindow.cpp" line="8401"/>
<source>Are you sure you want to clear the QSO queues?</source>
<translation>Estàs segur que vols esborrar les cues de QSO ?</translation>
</message>
@ -4802,67 +4806,67 @@ Error(%2): %3</translation>
<context>
<name>SoundInput</name>
<message>
<location filename="../Audio/soundin.cpp" line="21"/>
<location filename="../Audio/soundin.cpp" line="23"/>
<source>An error opening the audio input device has occurred.</source>
<translation>S&apos;ha produït un error obrint el dispositiu d&apos;entrada d&apos;àudio.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="25"/>
<location filename="../Audio/soundin.cpp" line="27"/>
<source>An error occurred during read from the audio input device.</source>
<translation>S&apos;ha produït un error de lectura des del dispositiu d&apos;entrada d&apos;àudio.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="29"/>
<location filename="../Audio/soundin.cpp" line="31"/>
<source>Audio data not being fed to the audio input device fast enough.</source>
<translation>Les dades d&apos;àudio no s&apos;envien al dispositiu d&apos;entrada d&apos;àudio prou ràpid.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="33"/>
<location filename="../Audio/soundin.cpp" line="35"/>
<source>Non-recoverable error, audio input device not usable at this time.</source>
<translation>Error no recuperable, el dispositiu d&apos;entrada d&apos;àudio no es pot utilitzar ara.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="63"/>
<location filename="../Audio/soundin.cpp" line="65"/>
<source>Requested input audio format is not valid.</source>
<translation>El format sol·licitat d&apos;àudio d&apos;entrada no és vàlid.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="69"/>
<location filename="../Audio/soundin.cpp" line="71"/>
<source>Requested input audio format is not supported on device.</source>
<translation>El format d&apos;àudio d&apos;entrada sol·licitat no és compatible amb el dispositiu.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="99"/>
<location filename="../Audio/soundin.cpp" line="101"/>
<source>Failed to initialize audio sink device</source>
<translation>Error a l&apos;inicialitzar el dispositiu de descarrega d&apos;àudio</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="134"/>
<location filename="../Audio/soundin.cpp" line="136"/>
<source>Idle</source>
<translation>Inactiu</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="139"/>
<location filename="../Audio/soundin.cpp" line="141"/>
<source>Receiving</source>
<translation>Rebent</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="143"/>
<location filename="../Audio/soundin.cpp" line="145"/>
<source>Suspended</source>
<translation>Suspès</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="148"/>
<location filename="../Audio/soundin.cpp" line="150"/>
<source>Interrupted</source>
<translation>Interromput</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="155"/>
<location filename="../Audio/soundin.cpp" line="157"/>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="159"/>
<location filename="../Audio/soundin.cpp" line="161"/>
<source>Stopped</source>
<translation>Aturat</translation>
</message>

File diff suppressed because it is too large Load Diff

View File

@ -422,22 +422,22 @@
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1712"/>
<location filename="../Configuration.cpp" line="1718"/>
<source>Serial Port:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1713"/>
<location filename="../Configuration.cpp" line="1719"/>
<source>Serial port used for CAT control</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1720"/>
<location filename="../Configuration.cpp" line="1726"/>
<source>Network Server:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1721"/>
<location filename="../Configuration.cpp" line="1727"/>
<source>Optional hostname and port of network service.
Leave blank for a sensible default on this machine.
Formats:
@ -447,12 +447,12 @@ Formats:
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1733"/>
<location filename="../Configuration.cpp" line="1739"/>
<source>USB Device:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1734"/>
<location filename="../Configuration.cpp" line="1740"/>
<source>Optional device identification.
Leave blank for a sensible default for the rig.
Format:
@ -460,153 +460,153 @@ Format:
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1770"/>
<location filename="../Configuration.cpp" line="1778"/>
<location filename="../Configuration.cpp" line="1776"/>
<location filename="../Configuration.cpp" line="1784"/>
<source>Invalid audio input device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1786"/>
<location filename="../Configuration.cpp" line="1792"/>
<source>Invalid audio output device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1792"/>
<location filename="../Configuration.cpp" line="1798"/>
<source>Invalid PTT method</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1802"/>
<location filename="../Configuration.cpp" line="1808"/>
<source>Invalid PTT port</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1810"/>
<location filename="../Configuration.cpp" line="1819"/>
<location filename="../Configuration.cpp" line="1816"/>
<location filename="../Configuration.cpp" line="1825"/>
<source>Invalid Contest Exchange</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1811"/>
<location filename="../Configuration.cpp" line="1817"/>
<source>You must input a valid ARRL Field Day exchange</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1820"/>
<location filename="../Configuration.cpp" line="1826"/>
<source>You must input a valid ARRL RTTY Roundup exchange</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2118"/>
<location filename="../Configuration.cpp" line="2126"/>
<source>Reset Decode Highlighting</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2119"/>
<location filename="../Configuration.cpp" line="2127"/>
<source>Reset all decode highlighting and priorities to default values</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2139"/>
<location filename="../Configuration.cpp" line="2147"/>
<source>WSJT-X Decoded Text Font Chooser</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2314"/>
<source>Load Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2333"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Frequency files (*.qrg);;All files (*.*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2313"/>
<location filename="../Configuration.cpp" line="2321"/>
<source>Replace Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2322"/>
<source>Are you sure you want to discard your current working frequencies and replace them with the loaded ones?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2333"/>
<source>Merge Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2350"/>
<location filename="../Configuration.cpp" line="2359"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Not a valid frequencies file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2350"/>
<source>Incorrect file magic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2359"/>
<source>Version is too new</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Contents corrupt</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Save Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2380"/>
<location filename="../Configuration.cpp" line="2388"/>
<source>Only Save Selected Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2381"/>
<location filename="../Configuration.cpp" line="2389"/>
<source>Are you sure you want to save only the working frequencies that are currently selected? Click No to save all.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2397"/>
<location filename="../Configuration.cpp" line="2405"/>
<source>Reset Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2398"/>
<location filename="../Configuration.cpp" line="2406"/>
<source>Are you sure you want to discard your current working frequencies and replace them with default ones?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2436"/>
<location filename="../Configuration.cpp" line="2444"/>
<source>Save Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2450"/>
<location filename="../Configuration.cpp" line="2458"/>
<source>AzEl Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2510"/>
<location filename="../Configuration.cpp" line="2518"/>
<source>Rig control error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2511"/>
<location filename="../Configuration.cpp" line="2519"/>
<source>Failed to open connection to rig</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2729"/>
<location filename="../Configuration.cpp" line="2737"/>
<source>Rig failure</source>
<translation type="unfinished"></translation>
</message>
@ -2028,13 +2028,13 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="50"/>
<location filename="../widgets/mainwindow.cpp" line="5887"/>
<location filename="../widgets/mainwindow.cpp" line="5961"/>
<location filename="../widgets/mainwindow.cpp" line="6009"/>
<location filename="../widgets/mainwindow.cpp" line="6171"/>
<location filename="../widgets/mainwindow.cpp" line="6211"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="5891"/>
<location filename="../widgets/mainwindow.cpp" line="5965"/>
<location filename="../widgets/mainwindow.cpp" line="6013"/>
<location filename="../widgets/mainwindow.cpp" line="6175"/>
<location filename="../widgets/mainwindow.cpp" line="6215"/>
<location filename="../widgets/mainwindow.cpp" line="6263"/>
<location filename="../widgets/mainwindow.cpp" line="6392"/>
<source>Band Activity</source>
<translation type="unfinished"></translation>
</message>
@ -2046,12 +2046,12 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="194"/>
<location filename="../widgets/mainwindow.cpp" line="5888"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6172"/>
<location filename="../widgets/mainwindow.cpp" line="6212"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<location filename="../widgets/mainwindow.cpp" line="5892"/>
<location filename="../widgets/mainwindow.cpp" line="5964"/>
<location filename="../widgets/mainwindow.cpp" line="6008"/>
<location filename="../widgets/mainwindow.cpp" line="6176"/>
<location filename="../widgets/mainwindow.cpp" line="6216"/>
<location filename="../widgets/mainwindow.cpp" line="6264"/>
<source>Rx Frequency</source>
<translation type="unfinished"></translation>
</message>
@ -2630,7 +2630,7 @@ Not available to nonstandard callsign holders.</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="986"/>
<location filename="../widgets/mainwindow.cpp" line="6031"/>
<location filename="../widgets/mainwindow.cpp" line="6035"/>
<source>Fox</source>
<translation type="unfinished"></translation>
</message>
@ -3100,10 +3100,10 @@ list. The list can be maintained in Settings (F2).</source>
<location filename="../widgets/mainwindow.ui" line="1732"/>
<location filename="../widgets/mainwindow.ui" line="1739"/>
<location filename="../widgets/mainwindow.ui" line="1959"/>
<location filename="../widgets/mainwindow.cpp" line="1240"/>
<location filename="../widgets/mainwindow.cpp" line="5645"/>
<location filename="../widgets/mainwindow.cpp" line="6544"/>
<location filename="../widgets/mainwindow.cpp" line="7965"/>
<location filename="../widgets/mainwindow.cpp" line="1244"/>
<location filename="../widgets/mainwindow.cpp" line="5649"/>
<location filename="../widgets/mainwindow.cpp" line="6548"/>
<location filename="../widgets/mainwindow.cpp" line="7969"/>
<source>Random</source>
<translation type="unfinished"></translation>
</message>
@ -3339,7 +3339,7 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8271"/>
<location filename="../widgets/mainwindow.cpp" line="8275"/>
<source>Runaway Tx watchdog</source>
<translation type="unfinished"></translation>
</message>
@ -3571,8 +3571,8 @@ list. The list can be maintained in Settings (F2).</source>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="336"/>
<location filename="../widgets/mainwindow.cpp" line="4281"/>
<location filename="../widgets/mainwindow.cpp" line="7742"/>
<location filename="../widgets/mainwindow.cpp" line="4285"/>
<location filename="../widgets/mainwindow.cpp" line="7746"/>
<source>Receiving</source>
<translation type="unfinished"></translation>
</message>
@ -3587,198 +3587,198 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="484"/>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<source>Audio Source</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Reduce system load</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="517"/>
<source>Error Scanning ADIF Log</source>
<location filename="../widgets/mainwindow.cpp" line="487"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped in period starting %3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<source>Error Scanning ADIF Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="525"/>
<source>Scanned ADIF log, %1 worked before records created</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="631"/>
<location filename="../widgets/mainwindow.cpp" line="635"/>
<source>Error Loading LotW Users Data</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="750"/>
<location filename="../widgets/mainwindow.cpp" line="754"/>
<source>Error Writing WAV File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="793"/>
<location filename="../widgets/mainwindow.cpp" line="797"/>
<source>Configurations...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="862"/>
<location filename="../widgets/mainwindow.cpp" line="5956"/>
<location filename="../widgets/mainwindow.cpp" line="5962"/>
<location filename="../widgets/mainwindow.cpp" line="6000"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<location filename="../widgets/mainwindow.cpp" line="6107"/>
<location filename="../widgets/mainwindow.cpp" line="6108"/>
<location filename="../widgets/mainwindow.cpp" line="6157"/>
<location filename="../widgets/mainwindow.cpp" line="6158"/>
<location filename="../widgets/mainwindow.cpp" line="6164"/>
<location filename="../widgets/mainwindow.cpp" line="6165"/>
<location filename="../widgets/mainwindow.cpp" line="6213"/>
<location filename="../widgets/mainwindow.cpp" line="6214"/>
<location filename="../widgets/mainwindow.cpp" line="6383"/>
<location filename="../widgets/mainwindow.cpp" line="6384"/>
<location filename="../widgets/mainwindow.cpp" line="7424"/>
<location filename="../widgets/mainwindow.cpp" line="7427"/>
<location filename="../widgets/mainwindow.cpp" line="7432"/>
<location filename="../widgets/mainwindow.cpp" line="7435"/>
<location filename="../widgets/mainwindow.cpp" line="866"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="5966"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6014"/>
<location filename="../widgets/mainwindow.cpp" line="6111"/>
<location filename="../widgets/mainwindow.cpp" line="6112"/>
<location filename="../widgets/mainwindow.cpp" line="6161"/>
<location filename="../widgets/mainwindow.cpp" line="6162"/>
<location filename="../widgets/mainwindow.cpp" line="6168"/>
<location filename="../widgets/mainwindow.cpp" line="6169"/>
<location filename="../widgets/mainwindow.cpp" line="6217"/>
<location filename="../widgets/mainwindow.cpp" line="6218"/>
<location filename="../widgets/mainwindow.cpp" line="6387"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="7428"/>
<location filename="../widgets/mainwindow.cpp" line="7431"/>
<location filename="../widgets/mainwindow.cpp" line="7436"/>
<location filename="../widgets/mainwindow.cpp" line="7439"/>
<source>Message</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="876"/>
<location filename="../widgets/mainwindow.cpp" line="880"/>
<source>Error Killing jt9.exe Process</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="877"/>
<location filename="../widgets/mainwindow.cpp" line="881"/>
<source>KillByName return code: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="892"/>
<location filename="../widgets/mainwindow.cpp" line="896"/>
<source>Error removing &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="893"/>
<location filename="../widgets/mainwindow.cpp" line="897"/>
<source>Click OK to retry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1296"/>
<location filename="../widgets/mainwindow.cpp" line="6357"/>
<location filename="../widgets/mainwindow.cpp" line="1300"/>
<location filename="../widgets/mainwindow.cpp" line="6361"/>
<source>Improper mode</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1466"/>
<location filename="../widgets/mainwindow.cpp" line="8917"/>
<location filename="../widgets/mainwindow.cpp" line="1470"/>
<location filename="../widgets/mainwindow.cpp" line="8921"/>
<source>File Open Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1467"/>
<location filename="../widgets/mainwindow.cpp" line="7871"/>
<location filename="../widgets/mainwindow.cpp" line="8351"/>
<location filename="../widgets/mainwindow.cpp" line="8918"/>
<location filename="../widgets/mainwindow.cpp" line="9050"/>
<location filename="../widgets/mainwindow.cpp" line="1471"/>
<location filename="../widgets/mainwindow.cpp" line="7875"/>
<location filename="../widgets/mainwindow.cpp" line="8355"/>
<location filename="../widgets/mainwindow.cpp" line="8922"/>
<location filename="../widgets/mainwindow.cpp" line="9054"/>
<source>Cannot open &quot;%1&quot; for append: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1570"/>
<location filename="../widgets/mainwindow.cpp" line="1574"/>
<source>Error saving c2 file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1770"/>
<location filename="../widgets/mainwindow.cpp" line="1774"/>
<source>Error in Sound Input</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1776"/>
<location filename="../widgets/mainwindow.cpp" line="1780"/>
<source>Error in Sound Output</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1840"/>
<location filename="../widgets/mainwindow.cpp" line="6105"/>
<location filename="../widgets/mainwindow.cpp" line="6255"/>
<location filename="../widgets/mainwindow.cpp" line="1844"/>
<location filename="../widgets/mainwindow.cpp" line="6109"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<source>Single-Period Decodes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1841"/>
<location filename="../widgets/mainwindow.cpp" line="6106"/>
<location filename="../widgets/mainwindow.cpp" line="6256"/>
<location filename="../widgets/mainwindow.cpp" line="1845"/>
<location filename="../widgets/mainwindow.cpp" line="6110"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<source>Average Decodes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>Change Operator</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>New operator:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2251"/>
<location filename="../widgets/mainwindow.cpp" line="2255"/>
<source>Status File Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2252"/>
<location filename="../widgets/mainwindow.cpp" line="5506"/>
<location filename="../widgets/mainwindow.cpp" line="2256"/>
<location filename="../widgets/mainwindow.cpp" line="5510"/>
<source>Cannot open &quot;%1&quot; for writing: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2387"/>
<location filename="../widgets/mainwindow.cpp" line="2391"/>
<source>Subprocess Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2388"/>
<location filename="../widgets/mainwindow.cpp" line="2392"/>
<source>Subprocess failed with exit code %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2390"/>
<location filename="../widgets/mainwindow.cpp" line="2410"/>
<location filename="../widgets/mainwindow.cpp" line="2394"/>
<location filename="../widgets/mainwindow.cpp" line="2414"/>
<source>Running: %1
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2409"/>
<location filename="../widgets/mainwindow.cpp" line="2413"/>
<source>Subprocess error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2447"/>
<location filename="../widgets/mainwindow.cpp" line="2451"/>
<source>Reference spectrum saved</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2510"/>
<location filename="../widgets/mainwindow.cpp" line="2514"/>
<source>Invalid data in fmt.all at line %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2516"/>
<location filename="../widgets/mainwindow.cpp" line="2520"/>
<source>Good Calibration Solution</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2517"/>
<location filename="../widgets/mainwindow.cpp" line="2521"/>
<source>&lt;pre&gt;%1%L2 ±%L3 ppm
%4%L5 ±%L6 Hz
@ -3787,44 +3787,44 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2531"/>
<location filename="../widgets/mainwindow.cpp" line="2535"/>
<source>Delete Calibration Measurements</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2532"/>
<location filename="../widgets/mainwindow.cpp" line="2536"/>
<source>The &quot;fmt.all&quot; file will be renamed as &quot;fmt.bak&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2544"/>
<location filename="../widgets/mainwindow.cpp" line="2548"/>
<source>If you make fair use of any part of WSJT-X under terms of the GNU General Public License, you must display the following copyright notice prominently in your derivative work:
&quot;The algorithms, source code, look-and-feel of WSJT-X and related programs, and protocol specifications for the modes FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 are Copyright (C) 2001-2020 by one or more of the following authors: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; and other members of the WSJT Development Group.&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2812"/>
<location filename="../widgets/mainwindow.cpp" line="2816"/>
<source>No data read from disk. Wrong file format?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2819"/>
<location filename="../widgets/mainwindow.cpp" line="2823"/>
<source>Confirm Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2820"/>
<location filename="../widgets/mainwindow.cpp" line="2824"/>
<source>Are you sure you want to delete all *.wav and *.c2 files in &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2857"/>
<location filename="../widgets/mainwindow.cpp" line="2861"/>
<source>Keyboard Shortcuts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2859"/>
<location filename="../widgets/mainwindow.cpp" line="2863"/>
<source>&lt;table cellspacing=1&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esc &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Stop Tx, abort QSO, clear next-call queue&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;F1 &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Online User&apos;s Guide (Alt: transmit Tx6)&lt;/td&gt;&lt;/tr&gt;
@ -3874,12 +3874,12 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2915"/>
<location filename="../widgets/mainwindow.cpp" line="2919"/>
<source>Special Mouse Commands</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2917"/>
<location filename="../widgets/mainwindow.cpp" line="2921"/>
<source>&lt;table cellpadding=5&gt;
&lt;tr&gt;
&lt;th align=&quot;right&quot;&gt;Click on&lt;/th&gt;
@ -3915,42 +3915,42 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3254"/>
<location filename="../widgets/mainwindow.cpp" line="3258"/>
<source>No more files to open.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3612"/>
<location filename="../widgets/mainwindow.cpp" line="3616"/>
<source>Spotting to PSK Reporter unavailable</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3770"/>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<source>Please choose another Tx frequency. WSJT-X will not knowingly transmit another mode in the WSPR sub-band on 30m.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<location filename="../widgets/mainwindow.cpp" line="3778"/>
<source>WSPR Guard Band</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3787"/>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<source>Please choose another dial frequency. WSJT-X will not operate in Fox mode in the standard FT8 sub-bands.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<location filename="../widgets/mainwindow.cpp" line="3795"/>
<source>Fox Mode warning</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4385"/>
<location filename="../widgets/mainwindow.cpp" line="4389"/>
<source>Last Tx: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4791"/>
<location filename="../widgets/mainwindow.cpp" line="4795"/>
<source>Should you switch to EU VHF Contest mode?
To do so, check &apos;Special operating activity&apos; and
@ -3958,176 +3958,176 @@ To do so, check &apos;Special operating activity&apos; and
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4810"/>
<location filename="../widgets/mainwindow.cpp" line="4814"/>
<source>Should you switch to ARRL Field Day mode?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4815"/>
<location filename="../widgets/mainwindow.cpp" line="4819"/>
<source>Should you switch to RTTY contest mode?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5467"/>
<location filename="../widgets/mainwindow.cpp" line="5486"/>
<location filename="../widgets/mainwindow.cpp" line="5505"/>
<location filename="../widgets/mainwindow.cpp" line="5531"/>
<location filename="../widgets/mainwindow.cpp" line="5471"/>
<location filename="../widgets/mainwindow.cpp" line="5490"/>
<location filename="../widgets/mainwindow.cpp" line="5509"/>
<location filename="../widgets/mainwindow.cpp" line="5535"/>
<source>Add to CALL3.TXT</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5468"/>
<location filename="../widgets/mainwindow.cpp" line="5472"/>
<source>Please enter a valid grid locator</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5487"/>
<location filename="../widgets/mainwindow.cpp" line="5491"/>
<source>Cannot open &quot;%1&quot; for read/write: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5529"/>
<location filename="../widgets/mainwindow.cpp" line="5533"/>
<source>%1
is already in CALL3.TXT, do you wish to replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5712"/>
<location filename="../widgets/mainwindow.cpp" line="5716"/>
<source>Warning: DX Call field is empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5769"/>
<location filename="../widgets/mainwindow.cpp" line="5773"/>
<source>Log file error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5770"/>
<location filename="../widgets/mainwindow.cpp" line="5774"/>
<source>Cannot open &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5786"/>
<location filename="../widgets/mainwindow.cpp" line="5790"/>
<source>Error sending log to N1MM</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5787"/>
<location filename="../widgets/mainwindow.cpp" line="5791"/>
<source>Write returned &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6006"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<source>Stations calling DXpedition %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6041"/>
<location filename="../widgets/mainwindow.cpp" line="6045"/>
<source>Hound</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6389"/>
<location filename="../widgets/mainwindow.cpp" line="6393"/>
<source>Tx Messages</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6633"/>
<location filename="../widgets/mainwindow.cpp" line="6666"/>
<location filename="../widgets/mainwindow.cpp" line="6676"/>
<location filename="../widgets/mainwindow.cpp" line="6637"/>
<location filename="../widgets/mainwindow.cpp" line="6670"/>
<location filename="../widgets/mainwindow.cpp" line="6680"/>
<source>Confirm Erase</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6634"/>
<location filename="../widgets/mainwindow.cpp" line="6638"/>
<source>Are you sure you want to erase file ALL.TXT?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6644"/>
<location filename="../widgets/mainwindow.cpp" line="8396"/>
<location filename="../widgets/mainwindow.cpp" line="6648"/>
<location filename="../widgets/mainwindow.cpp" line="8400"/>
<source>Confirm Reset</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6645"/>
<location filename="../widgets/mainwindow.cpp" line="6649"/>
<source>Are you sure you want to erase your contest log?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6646"/>
<location filename="../widgets/mainwindow.cpp" line="6650"/>
<source>Doing this will remove all QSO records for the current contest. They will be kept in the ADIF log file but will not be available for export in your Cabrillo log.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6659"/>
<location filename="../widgets/mainwindow.cpp" line="6663"/>
<source>Cabrillo Log saved</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6667"/>
<location filename="../widgets/mainwindow.cpp" line="6671"/>
<source>Are you sure you want to erase file wsjtx_log.adi?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6677"/>
<location filename="../widgets/mainwindow.cpp" line="6681"/>
<source>Are you sure you want to erase the WSPR hashtable?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7264"/>
<location filename="../widgets/mainwindow.cpp" line="7268"/>
<source>Tune digital gain </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7266"/>
<location filename="../widgets/mainwindow.cpp" line="7270"/>
<source>Transmit digital gain </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7285"/>
<location filename="../widgets/mainwindow.cpp" line="7289"/>
<source>Prefixes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7709"/>
<location filename="../widgets/mainwindow.cpp" line="7713"/>
<source>Network Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7710"/>
<location filename="../widgets/mainwindow.cpp" line="7714"/>
<source>Error: %1
UDP server %2:%3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7870"/>
<location filename="../widgets/mainwindow.cpp" line="7874"/>
<source>File Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8149"/>
<location filename="../widgets/mainwindow.cpp" line="8153"/>
<source>Phase Training Disabled</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8152"/>
<location filename="../widgets/mainwindow.cpp" line="8156"/>
<source>Phase Training Enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8286"/>
<location filename="../widgets/mainwindow.cpp" line="8290"/>
<source>WD:%1m</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8354"/>
<location filename="../widgets/mainwindow.cpp" line="9053"/>
<location filename="../widgets/mainwindow.cpp" line="8358"/>
<location filename="../widgets/mainwindow.cpp" line="9057"/>
<source>Log File Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8397"/>
<location filename="../widgets/mainwindow.cpp" line="8401"/>
<source>Are you sure you want to clear the QSO queues?</source>
<translation type="unfinished"></translation>
</message>
@ -4460,67 +4460,67 @@ Error(%2): %3</source>
<context>
<name>SoundInput</name>
<message>
<location filename="../Audio/soundin.cpp" line="21"/>
<location filename="../Audio/soundin.cpp" line="23"/>
<source>An error opening the audio input device has occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="25"/>
<location filename="../Audio/soundin.cpp" line="27"/>
<source>An error occurred during read from the audio input device.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="29"/>
<location filename="../Audio/soundin.cpp" line="31"/>
<source>Audio data not being fed to the audio input device fast enough.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="33"/>
<location filename="../Audio/soundin.cpp" line="35"/>
<source>Non-recoverable error, audio input device not usable at this time.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="63"/>
<location filename="../Audio/soundin.cpp" line="65"/>
<source>Requested input audio format is not valid.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="69"/>
<location filename="../Audio/soundin.cpp" line="71"/>
<source>Requested input audio format is not supported on device.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="99"/>
<location filename="../Audio/soundin.cpp" line="101"/>
<source>Failed to initialize audio sink device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="134"/>
<location filename="../Audio/soundin.cpp" line="136"/>
<source>Idle</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="139"/>
<location filename="../Audio/soundin.cpp" line="141"/>
<source>Receiving</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="143"/>
<location filename="../Audio/soundin.cpp" line="145"/>
<source>Suspended</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="148"/>
<location filename="../Audio/soundin.cpp" line="150"/>
<source>Interrupted</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="155"/>
<location filename="../Audio/soundin.cpp" line="157"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="159"/>
<location filename="../Audio/soundin.cpp" line="161"/>
<source>Stopped</source>
<translation type="unfinished"></translation>
</message>

View File

@ -422,22 +422,22 @@
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1712"/>
<location filename="../Configuration.cpp" line="1718"/>
<source>Serial Port:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1713"/>
<location filename="../Configuration.cpp" line="1719"/>
<source>Serial port used for CAT control</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1720"/>
<location filename="../Configuration.cpp" line="1726"/>
<source>Network Server:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1721"/>
<location filename="../Configuration.cpp" line="1727"/>
<source>Optional hostname and port of network service.
Leave blank for a sensible default on this machine.
Formats:
@ -447,12 +447,12 @@ Formats:
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1733"/>
<location filename="../Configuration.cpp" line="1739"/>
<source>USB Device:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1734"/>
<location filename="../Configuration.cpp" line="1740"/>
<source>Optional device identification.
Leave blank for a sensible default for the rig.
Format:
@ -460,153 +460,153 @@ Format:
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1770"/>
<location filename="../Configuration.cpp" line="1778"/>
<location filename="../Configuration.cpp" line="1776"/>
<location filename="../Configuration.cpp" line="1784"/>
<source>Invalid audio input device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1786"/>
<location filename="../Configuration.cpp" line="1792"/>
<source>Invalid audio output device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1792"/>
<location filename="../Configuration.cpp" line="1798"/>
<source>Invalid PTT method</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1802"/>
<location filename="../Configuration.cpp" line="1808"/>
<source>Invalid PTT port</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1810"/>
<location filename="../Configuration.cpp" line="1819"/>
<location filename="../Configuration.cpp" line="1816"/>
<location filename="../Configuration.cpp" line="1825"/>
<source>Invalid Contest Exchange</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1811"/>
<location filename="../Configuration.cpp" line="1817"/>
<source>You must input a valid ARRL Field Day exchange</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1820"/>
<location filename="../Configuration.cpp" line="1826"/>
<source>You must input a valid ARRL RTTY Roundup exchange</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2118"/>
<location filename="../Configuration.cpp" line="2126"/>
<source>Reset Decode Highlighting</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2119"/>
<location filename="../Configuration.cpp" line="2127"/>
<source>Reset all decode highlighting and priorities to default values</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2139"/>
<location filename="../Configuration.cpp" line="2147"/>
<source>WSJT-X Decoded Text Font Chooser</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2314"/>
<source>Load Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2333"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Frequency files (*.qrg);;All files (*.*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2313"/>
<location filename="../Configuration.cpp" line="2321"/>
<source>Replace Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2322"/>
<source>Are you sure you want to discard your current working frequencies and replace them with the loaded ones?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2333"/>
<source>Merge Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2350"/>
<location filename="../Configuration.cpp" line="2359"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Not a valid frequencies file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2350"/>
<source>Incorrect file magic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2359"/>
<source>Version is too new</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Contents corrupt</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Save Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2380"/>
<location filename="../Configuration.cpp" line="2388"/>
<source>Only Save Selected Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2381"/>
<location filename="../Configuration.cpp" line="2389"/>
<source>Are you sure you want to save only the working frequencies that are currently selected? Click No to save all.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2397"/>
<location filename="../Configuration.cpp" line="2405"/>
<source>Reset Working Frequencies</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2398"/>
<location filename="../Configuration.cpp" line="2406"/>
<source>Are you sure you want to discard your current working frequencies and replace them with default ones?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2436"/>
<location filename="../Configuration.cpp" line="2444"/>
<source>Save Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2450"/>
<location filename="../Configuration.cpp" line="2458"/>
<source>AzEl Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2510"/>
<location filename="../Configuration.cpp" line="2518"/>
<source>Rig control error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2511"/>
<location filename="../Configuration.cpp" line="2519"/>
<source>Failed to open connection to rig</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2729"/>
<location filename="../Configuration.cpp" line="2737"/>
<source>Rig failure</source>
<translation type="unfinished"></translation>
</message>
@ -2028,13 +2028,13 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="50"/>
<location filename="../widgets/mainwindow.cpp" line="5887"/>
<location filename="../widgets/mainwindow.cpp" line="5961"/>
<location filename="../widgets/mainwindow.cpp" line="6009"/>
<location filename="../widgets/mainwindow.cpp" line="6171"/>
<location filename="../widgets/mainwindow.cpp" line="6211"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="5891"/>
<location filename="../widgets/mainwindow.cpp" line="5965"/>
<location filename="../widgets/mainwindow.cpp" line="6013"/>
<location filename="../widgets/mainwindow.cpp" line="6175"/>
<location filename="../widgets/mainwindow.cpp" line="6215"/>
<location filename="../widgets/mainwindow.cpp" line="6263"/>
<location filename="../widgets/mainwindow.cpp" line="6392"/>
<source>Band Activity</source>
<translation type="unfinished"></translation>
</message>
@ -2046,12 +2046,12 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="194"/>
<location filename="../widgets/mainwindow.cpp" line="5888"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6172"/>
<location filename="../widgets/mainwindow.cpp" line="6212"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<location filename="../widgets/mainwindow.cpp" line="5892"/>
<location filename="../widgets/mainwindow.cpp" line="5964"/>
<location filename="../widgets/mainwindow.cpp" line="6008"/>
<location filename="../widgets/mainwindow.cpp" line="6176"/>
<location filename="../widgets/mainwindow.cpp" line="6216"/>
<location filename="../widgets/mainwindow.cpp" line="6264"/>
<source>Rx Frequency</source>
<translation type="unfinished"></translation>
</message>
@ -2630,7 +2630,7 @@ Not available to nonstandard callsign holders.</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="986"/>
<location filename="../widgets/mainwindow.cpp" line="6031"/>
<location filename="../widgets/mainwindow.cpp" line="6035"/>
<source>Fox</source>
<translation type="unfinished"></translation>
</message>
@ -3100,10 +3100,10 @@ list. The list can be maintained in Settings (F2).</source>
<location filename="../widgets/mainwindow.ui" line="1732"/>
<location filename="../widgets/mainwindow.ui" line="1739"/>
<location filename="../widgets/mainwindow.ui" line="1959"/>
<location filename="../widgets/mainwindow.cpp" line="1240"/>
<location filename="../widgets/mainwindow.cpp" line="5645"/>
<location filename="../widgets/mainwindow.cpp" line="6544"/>
<location filename="../widgets/mainwindow.cpp" line="7965"/>
<location filename="../widgets/mainwindow.cpp" line="1244"/>
<location filename="../widgets/mainwindow.cpp" line="5649"/>
<location filename="../widgets/mainwindow.cpp" line="6548"/>
<location filename="../widgets/mainwindow.cpp" line="7969"/>
<source>Random</source>
<translation type="unfinished"></translation>
</message>
@ -3339,7 +3339,7 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8271"/>
<location filename="../widgets/mainwindow.cpp" line="8275"/>
<source>Runaway Tx watchdog</source>
<translation type="unfinished"></translation>
</message>
@ -3571,8 +3571,8 @@ list. The list can be maintained in Settings (F2).</source>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="336"/>
<location filename="../widgets/mainwindow.cpp" line="4281"/>
<location filename="../widgets/mainwindow.cpp" line="7742"/>
<location filename="../widgets/mainwindow.cpp" line="4285"/>
<location filename="../widgets/mainwindow.cpp" line="7746"/>
<source>Receiving</source>
<translation type="unfinished"></translation>
</message>
@ -3587,198 +3587,198 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="484"/>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<source>Audio Source</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Reduce system load</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="517"/>
<source>Error Scanning ADIF Log</source>
<location filename="../widgets/mainwindow.cpp" line="487"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped in period starting %3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<source>Error Scanning ADIF Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="525"/>
<source>Scanned ADIF log, %1 worked before records created</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="631"/>
<location filename="../widgets/mainwindow.cpp" line="635"/>
<source>Error Loading LotW Users Data</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="750"/>
<location filename="../widgets/mainwindow.cpp" line="754"/>
<source>Error Writing WAV File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="793"/>
<location filename="../widgets/mainwindow.cpp" line="797"/>
<source>Configurations...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="862"/>
<location filename="../widgets/mainwindow.cpp" line="5956"/>
<location filename="../widgets/mainwindow.cpp" line="5962"/>
<location filename="../widgets/mainwindow.cpp" line="6000"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<location filename="../widgets/mainwindow.cpp" line="6107"/>
<location filename="../widgets/mainwindow.cpp" line="6108"/>
<location filename="../widgets/mainwindow.cpp" line="6157"/>
<location filename="../widgets/mainwindow.cpp" line="6158"/>
<location filename="../widgets/mainwindow.cpp" line="6164"/>
<location filename="../widgets/mainwindow.cpp" line="6165"/>
<location filename="../widgets/mainwindow.cpp" line="6213"/>
<location filename="../widgets/mainwindow.cpp" line="6214"/>
<location filename="../widgets/mainwindow.cpp" line="6383"/>
<location filename="../widgets/mainwindow.cpp" line="6384"/>
<location filename="../widgets/mainwindow.cpp" line="7424"/>
<location filename="../widgets/mainwindow.cpp" line="7427"/>
<location filename="../widgets/mainwindow.cpp" line="7432"/>
<location filename="../widgets/mainwindow.cpp" line="7435"/>
<location filename="../widgets/mainwindow.cpp" line="866"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="5966"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6014"/>
<location filename="../widgets/mainwindow.cpp" line="6111"/>
<location filename="../widgets/mainwindow.cpp" line="6112"/>
<location filename="../widgets/mainwindow.cpp" line="6161"/>
<location filename="../widgets/mainwindow.cpp" line="6162"/>
<location filename="../widgets/mainwindow.cpp" line="6168"/>
<location filename="../widgets/mainwindow.cpp" line="6169"/>
<location filename="../widgets/mainwindow.cpp" line="6217"/>
<location filename="../widgets/mainwindow.cpp" line="6218"/>
<location filename="../widgets/mainwindow.cpp" line="6387"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="7428"/>
<location filename="../widgets/mainwindow.cpp" line="7431"/>
<location filename="../widgets/mainwindow.cpp" line="7436"/>
<location filename="../widgets/mainwindow.cpp" line="7439"/>
<source>Message</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="876"/>
<location filename="../widgets/mainwindow.cpp" line="880"/>
<source>Error Killing jt9.exe Process</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="877"/>
<location filename="../widgets/mainwindow.cpp" line="881"/>
<source>KillByName return code: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="892"/>
<location filename="../widgets/mainwindow.cpp" line="896"/>
<source>Error removing &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="893"/>
<location filename="../widgets/mainwindow.cpp" line="897"/>
<source>Click OK to retry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1296"/>
<location filename="../widgets/mainwindow.cpp" line="6357"/>
<location filename="../widgets/mainwindow.cpp" line="1300"/>
<location filename="../widgets/mainwindow.cpp" line="6361"/>
<source>Improper mode</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1466"/>
<location filename="../widgets/mainwindow.cpp" line="8917"/>
<location filename="../widgets/mainwindow.cpp" line="1470"/>
<location filename="../widgets/mainwindow.cpp" line="8921"/>
<source>File Open Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1467"/>
<location filename="../widgets/mainwindow.cpp" line="7871"/>
<location filename="../widgets/mainwindow.cpp" line="8351"/>
<location filename="../widgets/mainwindow.cpp" line="8918"/>
<location filename="../widgets/mainwindow.cpp" line="9050"/>
<location filename="../widgets/mainwindow.cpp" line="1471"/>
<location filename="../widgets/mainwindow.cpp" line="7875"/>
<location filename="../widgets/mainwindow.cpp" line="8355"/>
<location filename="../widgets/mainwindow.cpp" line="8922"/>
<location filename="../widgets/mainwindow.cpp" line="9054"/>
<source>Cannot open &quot;%1&quot; for append: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1570"/>
<location filename="../widgets/mainwindow.cpp" line="1574"/>
<source>Error saving c2 file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1770"/>
<location filename="../widgets/mainwindow.cpp" line="1774"/>
<source>Error in Sound Input</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1776"/>
<location filename="../widgets/mainwindow.cpp" line="1780"/>
<source>Error in Sound Output</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1840"/>
<location filename="../widgets/mainwindow.cpp" line="6105"/>
<location filename="../widgets/mainwindow.cpp" line="6255"/>
<location filename="../widgets/mainwindow.cpp" line="1844"/>
<location filename="../widgets/mainwindow.cpp" line="6109"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<source>Single-Period Decodes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1841"/>
<location filename="../widgets/mainwindow.cpp" line="6106"/>
<location filename="../widgets/mainwindow.cpp" line="6256"/>
<location filename="../widgets/mainwindow.cpp" line="1845"/>
<location filename="../widgets/mainwindow.cpp" line="6110"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<source>Average Decodes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>Change Operator</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>New operator:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2251"/>
<location filename="../widgets/mainwindow.cpp" line="2255"/>
<source>Status File Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2252"/>
<location filename="../widgets/mainwindow.cpp" line="5506"/>
<location filename="../widgets/mainwindow.cpp" line="2256"/>
<location filename="../widgets/mainwindow.cpp" line="5510"/>
<source>Cannot open &quot;%1&quot; for writing: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2387"/>
<location filename="../widgets/mainwindow.cpp" line="2391"/>
<source>Subprocess Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2388"/>
<location filename="../widgets/mainwindow.cpp" line="2392"/>
<source>Subprocess failed with exit code %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2390"/>
<location filename="../widgets/mainwindow.cpp" line="2410"/>
<location filename="../widgets/mainwindow.cpp" line="2394"/>
<location filename="../widgets/mainwindow.cpp" line="2414"/>
<source>Running: %1
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2409"/>
<location filename="../widgets/mainwindow.cpp" line="2413"/>
<source>Subprocess error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2447"/>
<location filename="../widgets/mainwindow.cpp" line="2451"/>
<source>Reference spectrum saved</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2510"/>
<location filename="../widgets/mainwindow.cpp" line="2514"/>
<source>Invalid data in fmt.all at line %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2516"/>
<location filename="../widgets/mainwindow.cpp" line="2520"/>
<source>Good Calibration Solution</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2517"/>
<location filename="../widgets/mainwindow.cpp" line="2521"/>
<source>&lt;pre&gt;%1%L2 ±%L3 ppm
%4%L5 ±%L6 Hz
@ -3787,44 +3787,44 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2531"/>
<location filename="../widgets/mainwindow.cpp" line="2535"/>
<source>Delete Calibration Measurements</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2532"/>
<location filename="../widgets/mainwindow.cpp" line="2536"/>
<source>The &quot;fmt.all&quot; file will be renamed as &quot;fmt.bak&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2544"/>
<location filename="../widgets/mainwindow.cpp" line="2548"/>
<source>If you make fair use of any part of WSJT-X under terms of the GNU General Public License, you must display the following copyright notice prominently in your derivative work:
&quot;The algorithms, source code, look-and-feel of WSJT-X and related programs, and protocol specifications for the modes FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 are Copyright (C) 2001-2020 by one or more of the following authors: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; and other members of the WSJT Development Group.&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2812"/>
<location filename="../widgets/mainwindow.cpp" line="2816"/>
<source>No data read from disk. Wrong file format?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2819"/>
<location filename="../widgets/mainwindow.cpp" line="2823"/>
<source>Confirm Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2820"/>
<location filename="../widgets/mainwindow.cpp" line="2824"/>
<source>Are you sure you want to delete all *.wav and *.c2 files in &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2857"/>
<location filename="../widgets/mainwindow.cpp" line="2861"/>
<source>Keyboard Shortcuts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2859"/>
<location filename="../widgets/mainwindow.cpp" line="2863"/>
<source>&lt;table cellspacing=1&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esc &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Stop Tx, abort QSO, clear next-call queue&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;F1 &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Online User&apos;s Guide (Alt: transmit Tx6)&lt;/td&gt;&lt;/tr&gt;
@ -3874,12 +3874,12 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2915"/>
<location filename="../widgets/mainwindow.cpp" line="2919"/>
<source>Special Mouse Commands</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2917"/>
<location filename="../widgets/mainwindow.cpp" line="2921"/>
<source>&lt;table cellpadding=5&gt;
&lt;tr&gt;
&lt;th align=&quot;right&quot;&gt;Click on&lt;/th&gt;
@ -3915,42 +3915,42 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3254"/>
<location filename="../widgets/mainwindow.cpp" line="3258"/>
<source>No more files to open.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3612"/>
<location filename="../widgets/mainwindow.cpp" line="3616"/>
<source>Spotting to PSK Reporter unavailable</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3770"/>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<source>Please choose another Tx frequency. WSJT-X will not knowingly transmit another mode in the WSPR sub-band on 30m.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<location filename="../widgets/mainwindow.cpp" line="3778"/>
<source>WSPR Guard Band</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3787"/>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<source>Please choose another dial frequency. WSJT-X will not operate in Fox mode in the standard FT8 sub-bands.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<location filename="../widgets/mainwindow.cpp" line="3795"/>
<source>Fox Mode warning</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4385"/>
<location filename="../widgets/mainwindow.cpp" line="4389"/>
<source>Last Tx: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4791"/>
<location filename="../widgets/mainwindow.cpp" line="4795"/>
<source>Should you switch to EU VHF Contest mode?
To do so, check &apos;Special operating activity&apos; and
@ -3958,176 +3958,176 @@ To do so, check &apos;Special operating activity&apos; and
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4810"/>
<location filename="../widgets/mainwindow.cpp" line="4814"/>
<source>Should you switch to ARRL Field Day mode?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4815"/>
<location filename="../widgets/mainwindow.cpp" line="4819"/>
<source>Should you switch to RTTY contest mode?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5467"/>
<location filename="../widgets/mainwindow.cpp" line="5486"/>
<location filename="../widgets/mainwindow.cpp" line="5505"/>
<location filename="../widgets/mainwindow.cpp" line="5531"/>
<location filename="../widgets/mainwindow.cpp" line="5471"/>
<location filename="../widgets/mainwindow.cpp" line="5490"/>
<location filename="../widgets/mainwindow.cpp" line="5509"/>
<location filename="../widgets/mainwindow.cpp" line="5535"/>
<source>Add to CALL3.TXT</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5468"/>
<location filename="../widgets/mainwindow.cpp" line="5472"/>
<source>Please enter a valid grid locator</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5487"/>
<location filename="../widgets/mainwindow.cpp" line="5491"/>
<source>Cannot open &quot;%1&quot; for read/write: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5529"/>
<location filename="../widgets/mainwindow.cpp" line="5533"/>
<source>%1
is already in CALL3.TXT, do you wish to replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5712"/>
<location filename="../widgets/mainwindow.cpp" line="5716"/>
<source>Warning: DX Call field is empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5769"/>
<location filename="../widgets/mainwindow.cpp" line="5773"/>
<source>Log file error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5770"/>
<location filename="../widgets/mainwindow.cpp" line="5774"/>
<source>Cannot open &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5786"/>
<location filename="../widgets/mainwindow.cpp" line="5790"/>
<source>Error sending log to N1MM</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5787"/>
<location filename="../widgets/mainwindow.cpp" line="5791"/>
<source>Write returned &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6006"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<source>Stations calling DXpedition %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6041"/>
<location filename="../widgets/mainwindow.cpp" line="6045"/>
<source>Hound</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6389"/>
<location filename="../widgets/mainwindow.cpp" line="6393"/>
<source>Tx Messages</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6633"/>
<location filename="../widgets/mainwindow.cpp" line="6666"/>
<location filename="../widgets/mainwindow.cpp" line="6676"/>
<location filename="../widgets/mainwindow.cpp" line="6637"/>
<location filename="../widgets/mainwindow.cpp" line="6670"/>
<location filename="../widgets/mainwindow.cpp" line="6680"/>
<source>Confirm Erase</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6634"/>
<location filename="../widgets/mainwindow.cpp" line="6638"/>
<source>Are you sure you want to erase file ALL.TXT?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6644"/>
<location filename="../widgets/mainwindow.cpp" line="8396"/>
<location filename="../widgets/mainwindow.cpp" line="6648"/>
<location filename="../widgets/mainwindow.cpp" line="8400"/>
<source>Confirm Reset</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6645"/>
<location filename="../widgets/mainwindow.cpp" line="6649"/>
<source>Are you sure you want to erase your contest log?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6646"/>
<location filename="../widgets/mainwindow.cpp" line="6650"/>
<source>Doing this will remove all QSO records for the current contest. They will be kept in the ADIF log file but will not be available for export in your Cabrillo log.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6659"/>
<location filename="../widgets/mainwindow.cpp" line="6663"/>
<source>Cabrillo Log saved</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6667"/>
<location filename="../widgets/mainwindow.cpp" line="6671"/>
<source>Are you sure you want to erase file wsjtx_log.adi?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6677"/>
<location filename="../widgets/mainwindow.cpp" line="6681"/>
<source>Are you sure you want to erase the WSPR hashtable?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7264"/>
<location filename="../widgets/mainwindow.cpp" line="7268"/>
<source>Tune digital gain </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7266"/>
<location filename="../widgets/mainwindow.cpp" line="7270"/>
<source>Transmit digital gain </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7285"/>
<location filename="../widgets/mainwindow.cpp" line="7289"/>
<source>Prefixes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7709"/>
<location filename="../widgets/mainwindow.cpp" line="7713"/>
<source>Network Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7710"/>
<location filename="../widgets/mainwindow.cpp" line="7714"/>
<source>Error: %1
UDP server %2:%3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7870"/>
<location filename="../widgets/mainwindow.cpp" line="7874"/>
<source>File Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8149"/>
<location filename="../widgets/mainwindow.cpp" line="8153"/>
<source>Phase Training Disabled</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8152"/>
<location filename="../widgets/mainwindow.cpp" line="8156"/>
<source>Phase Training Enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8286"/>
<location filename="../widgets/mainwindow.cpp" line="8290"/>
<source>WD:%1m</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8354"/>
<location filename="../widgets/mainwindow.cpp" line="9053"/>
<location filename="../widgets/mainwindow.cpp" line="8358"/>
<location filename="../widgets/mainwindow.cpp" line="9057"/>
<source>Log File Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8397"/>
<location filename="../widgets/mainwindow.cpp" line="8401"/>
<source>Are you sure you want to clear the QSO queues?</source>
<translation type="unfinished"></translation>
</message>
@ -4460,67 +4460,67 @@ Error(%2): %3</source>
<context>
<name>SoundInput</name>
<message>
<location filename="../Audio/soundin.cpp" line="21"/>
<location filename="../Audio/soundin.cpp" line="23"/>
<source>An error opening the audio input device has occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="25"/>
<location filename="../Audio/soundin.cpp" line="27"/>
<source>An error occurred during read from the audio input device.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="29"/>
<location filename="../Audio/soundin.cpp" line="31"/>
<source>Audio data not being fed to the audio input device fast enough.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="33"/>
<location filename="../Audio/soundin.cpp" line="35"/>
<source>Non-recoverable error, audio input device not usable at this time.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="63"/>
<location filename="../Audio/soundin.cpp" line="65"/>
<source>Requested input audio format is not valid.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="69"/>
<location filename="../Audio/soundin.cpp" line="71"/>
<source>Requested input audio format is not supported on device.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="99"/>
<location filename="../Audio/soundin.cpp" line="101"/>
<source>Failed to initialize audio sink device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="134"/>
<location filename="../Audio/soundin.cpp" line="136"/>
<source>Idle</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="139"/>
<location filename="../Audio/soundin.cpp" line="141"/>
<source>Receiving</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="143"/>
<location filename="../Audio/soundin.cpp" line="145"/>
<source>Suspended</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="148"/>
<location filename="../Audio/soundin.cpp" line="150"/>
<source>Interrupted</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="155"/>
<location filename="../Audio/soundin.cpp" line="157"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="159"/>
<location filename="../Audio/soundin.cpp" line="161"/>
<source>Stopped</source>
<translation type="unfinished"></translation>
</message>

File diff suppressed because it is too large Load Diff

View File

@ -422,22 +422,22 @@
<translation>&amp;Ripristina</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1712"/>
<location filename="../Configuration.cpp" line="1718"/>
<source>Serial Port:</source>
<translation>Porta Seriale:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1713"/>
<location filename="../Configuration.cpp" line="1719"/>
<source>Serial port used for CAT control</source>
<translation>Porta Seriale usata per il controllo CAT</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1720"/>
<location filename="../Configuration.cpp" line="1726"/>
<source>Network Server:</source>
<translation>Server di rete:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1721"/>
<location filename="../Configuration.cpp" line="1727"/>
<source>Optional hostname and port of network service.
Leave blank for a sensible default on this machine.
Formats:
@ -452,12 +452,12 @@ Formati:
[IPv6-address]: porta</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1733"/>
<location filename="../Configuration.cpp" line="1739"/>
<source>USB Device:</source>
<translation>Dispositivo USB:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1734"/>
<location filename="../Configuration.cpp" line="1740"/>
<source>Optional device identification.
Leave blank for a sensible default for the rig.
Format:
@ -468,8 +468,8 @@ Formato:
[VID [: PID [: VENDOR [: PRODOTTI]]]]</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1770"/>
<location filename="../Configuration.cpp" line="1778"/>
<location filename="../Configuration.cpp" line="1776"/>
<location filename="../Configuration.cpp" line="1784"/>
<source>Invalid audio input device</source>
<translation>Dispositivo di input audio non valido</translation>
</message>
@ -478,147 +478,147 @@ Formato:
<translation type="vanished">Dispositivo di uscita audio non valido</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1786"/>
<location filename="../Configuration.cpp" line="1792"/>
<source>Invalid audio output device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1792"/>
<location filename="../Configuration.cpp" line="1798"/>
<source>Invalid PTT method</source>
<translation>Metodo PTT non valido</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1802"/>
<location filename="../Configuration.cpp" line="1808"/>
<source>Invalid PTT port</source>
<translation>Porta PTT non valida</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1810"/>
<location filename="../Configuration.cpp" line="1819"/>
<location filename="../Configuration.cpp" line="1816"/>
<location filename="../Configuration.cpp" line="1825"/>
<source>Invalid Contest Exchange</source>
<translation>Scambio Contest non valido</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1811"/>
<location filename="../Configuration.cpp" line="1817"/>
<source>You must input a valid ARRL Field Day exchange</source>
<translation>È necessario inserire uno scambioField Day ARRL valido</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1820"/>
<location filename="../Configuration.cpp" line="1826"/>
<source>You must input a valid ARRL RTTY Roundup exchange</source>
<translation>È necessario inserire uno scambio Roundup RTTY ARRL valido</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2118"/>
<location filename="../Configuration.cpp" line="2126"/>
<source>Reset Decode Highlighting</source>
<translation>Ripristina l&apos;evidenziazione della decodifica</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2119"/>
<location filename="../Configuration.cpp" line="2127"/>
<source>Reset all decode highlighting and priorities to default values</source>
<translation>Ripristina tutti i valori di evidenziazione e priorità della decodifica sui valori predefiniti</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2139"/>
<location filename="../Configuration.cpp" line="2147"/>
<source>WSJT-X Decoded Text Font Chooser</source>
<translation>Selezionatore font testo decodificato WSJT-X</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2314"/>
<source>Load Working Frequencies</source>
<translation>Carica frequenze di lavoro</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2333"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Frequency files (*.qrg);;All files (*.*)</source>
<translation>File di frequenza (*.qrg);;Tutti i file (*.*)</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2313"/>
<location filename="../Configuration.cpp" line="2321"/>
<source>Replace Working Frequencies</source>
<translation>Sostituisci le frequenze di lavoro</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2322"/>
<source>Are you sure you want to discard your current working frequencies and replace them with the loaded ones?</source>
<translation>Sei sicuro di voler scartare le tue attuali frequenze di lavoro e sostituirle con quelle caricate?</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2333"/>
<source>Merge Working Frequencies</source>
<translation>Unisci le frequenze di lavoro</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2350"/>
<location filename="../Configuration.cpp" line="2359"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Not a valid frequencies file</source>
<translation>Non è un file di frequenze valido</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2350"/>
<source>Incorrect file magic</source>
<translation>Magic file errato</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2359"/>
<source>Version is too new</source>
<translation>La versione è troppo nuova</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Contents corrupt</source>
<translation>Contenuto corrotto</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Save Working Frequencies</source>
<translation>Salva frequenze di lavoro</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2380"/>
<location filename="../Configuration.cpp" line="2388"/>
<source>Only Save Selected Working Frequencies</source>
<translation>Salva solo le frequenze di lavoro selezionate</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2381"/>
<location filename="../Configuration.cpp" line="2389"/>
<source>Are you sure you want to save only the working frequencies that are currently selected? Click No to save all.</source>
<translation>Sei sicuro di voler salvare solo le frequenze di lavoro che sono attualmente selezionate? Fai clic su No per salvare tutto.</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2397"/>
<location filename="../Configuration.cpp" line="2405"/>
<source>Reset Working Frequencies</source>
<translation>Ripristina frequenze di lavoro</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2398"/>
<location filename="../Configuration.cpp" line="2406"/>
<source>Are you sure you want to discard your current working frequencies and replace them with default ones?</source>
<translation>Sei sicuro di voler scartare le tue attuali frequenze di lavoro e sostituirle con quelle predefinite?</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2436"/>
<location filename="../Configuration.cpp" line="2444"/>
<source>Save Directory</source>
<translation>Salva il direttorio</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2450"/>
<location filename="../Configuration.cpp" line="2458"/>
<source>AzEl Directory</source>
<translation>AzEl Direttorio</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2510"/>
<location filename="../Configuration.cpp" line="2518"/>
<source>Rig control error</source>
<translation>Errore di controllo rig</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2511"/>
<location filename="../Configuration.cpp" line="2519"/>
<source>Failed to open connection to rig</source>
<translation>Impossibile aprire la connessione al rig</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2729"/>
<location filename="../Configuration.cpp" line="2737"/>
<source>Rig failure</source>
<translation>Rig fallito</translation>
</message>
@ -2080,13 +2080,13 @@ Errore (%2):%3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="50"/>
<location filename="../widgets/mainwindow.cpp" line="5887"/>
<location filename="../widgets/mainwindow.cpp" line="5961"/>
<location filename="../widgets/mainwindow.cpp" line="6009"/>
<location filename="../widgets/mainwindow.cpp" line="6171"/>
<location filename="../widgets/mainwindow.cpp" line="6211"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="5891"/>
<location filename="../widgets/mainwindow.cpp" line="5965"/>
<location filename="../widgets/mainwindow.cpp" line="6013"/>
<location filename="../widgets/mainwindow.cpp" line="6175"/>
<location filename="../widgets/mainwindow.cpp" line="6215"/>
<location filename="../widgets/mainwindow.cpp" line="6263"/>
<location filename="../widgets/mainwindow.cpp" line="6392"/>
<source>Band Activity</source>
<translation>Attività di Banda</translation>
</message>
@ -2098,12 +2098,12 @@ Errore (%2):%3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="194"/>
<location filename="../widgets/mainwindow.cpp" line="5888"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6172"/>
<location filename="../widgets/mainwindow.cpp" line="6212"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<location filename="../widgets/mainwindow.cpp" line="5892"/>
<location filename="../widgets/mainwindow.cpp" line="5964"/>
<location filename="../widgets/mainwindow.cpp" line="6008"/>
<location filename="../widgets/mainwindow.cpp" line="6176"/>
<location filename="../widgets/mainwindow.cpp" line="6216"/>
<location filename="../widgets/mainwindow.cpp" line="6264"/>
<source>Rx Frequency</source>
<translation>Frequenza Rx</translation>
</message>
@ -2586,7 +2586,7 @@ Non disponibile per i possessori di nominativi non standard.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="986"/>
<location filename="../widgets/mainwindow.cpp" line="6031"/>
<location filename="../widgets/mainwindow.cpp" line="6035"/>
<source>Fox</source>
<translation>Fox</translation>
</message>
@ -3127,10 +3127,10 @@ elenco. L&apos;elenco può essere gestito in Impostazioni (F2).</translation>
<location filename="../widgets/mainwindow.ui" line="1732"/>
<location filename="../widgets/mainwindow.ui" line="1739"/>
<location filename="../widgets/mainwindow.ui" line="1959"/>
<location filename="../widgets/mainwindow.cpp" line="1240"/>
<location filename="../widgets/mainwindow.cpp" line="5645"/>
<location filename="../widgets/mainwindow.cpp" line="6544"/>
<location filename="../widgets/mainwindow.cpp" line="7965"/>
<location filename="../widgets/mainwindow.cpp" line="1244"/>
<location filename="../widgets/mainwindow.cpp" line="5649"/>
<location filename="../widgets/mainwindow.cpp" line="6548"/>
<location filename="../widgets/mainwindow.cpp" line="7969"/>
<source>Random</source>
<translation>Casuale</translation>
</message>
@ -3536,7 +3536,7 @@ elenco. L&apos;elenco può essere gestito in Impostazioni (F2).</translation>
<translation type="vanished">Tx disabilitato dopo l&apos;invio 73</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8271"/>
<location filename="../widgets/mainwindow.cpp" line="8275"/>
<source>Runaway Tx watchdog</source>
<translation>Watchdog Tx sfuggito</translation>
</message>
@ -3804,8 +3804,8 @@ elenco. L&apos;elenco può essere gestito in Impostazioni (F2).</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="336"/>
<location filename="../widgets/mainwindow.cpp" line="4281"/>
<location filename="../widgets/mainwindow.cpp" line="7742"/>
<location filename="../widgets/mainwindow.cpp" line="4285"/>
<location filename="../widgets/mainwindow.cpp" line="7746"/>
<source>Receiving</source>
<translation>Ricevente</translation>
</message>
@ -3820,199 +3820,199 @@ elenco. L&apos;elenco può essere gestito in Impostazioni (F2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="484"/>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<source>Audio Source</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Reduce system load</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped</source>
<location filename="../widgets/mainwindow.cpp" line="487"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped in period starting %3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="517"/>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<source>Error Scanning ADIF Log</source>
<translation>Errore durante la scansione del registro ADIF</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<location filename="../widgets/mainwindow.cpp" line="525"/>
<source>Scanned ADIF log, %1 worked before records created</source>
<translation>Log ADIF scansionato,%1 ha funzionato prima della creazione dei record</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="631"/>
<location filename="../widgets/mainwindow.cpp" line="635"/>
<source>Error Loading LotW Users Data</source>
<translation>Errore durante il caricamento dei dati degli utenti di LotW</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="750"/>
<location filename="../widgets/mainwindow.cpp" line="754"/>
<source>Error Writing WAV File</source>
<translation>Errore durante la scrittura del file WAV</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="793"/>
<location filename="../widgets/mainwindow.cpp" line="797"/>
<source>Configurations...</source>
<translation>Configurazioni...</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="862"/>
<location filename="../widgets/mainwindow.cpp" line="5956"/>
<location filename="../widgets/mainwindow.cpp" line="5962"/>
<location filename="../widgets/mainwindow.cpp" line="6000"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<location filename="../widgets/mainwindow.cpp" line="6107"/>
<location filename="../widgets/mainwindow.cpp" line="6108"/>
<location filename="../widgets/mainwindow.cpp" line="6157"/>
<location filename="../widgets/mainwindow.cpp" line="6158"/>
<location filename="../widgets/mainwindow.cpp" line="6164"/>
<location filename="../widgets/mainwindow.cpp" line="6165"/>
<location filename="../widgets/mainwindow.cpp" line="6213"/>
<location filename="../widgets/mainwindow.cpp" line="6214"/>
<location filename="../widgets/mainwindow.cpp" line="6383"/>
<location filename="../widgets/mainwindow.cpp" line="6384"/>
<location filename="../widgets/mainwindow.cpp" line="7424"/>
<location filename="../widgets/mainwindow.cpp" line="7427"/>
<location filename="../widgets/mainwindow.cpp" line="7432"/>
<location filename="../widgets/mainwindow.cpp" line="7435"/>
<location filename="../widgets/mainwindow.cpp" line="866"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="5966"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6014"/>
<location filename="../widgets/mainwindow.cpp" line="6111"/>
<location filename="../widgets/mainwindow.cpp" line="6112"/>
<location filename="../widgets/mainwindow.cpp" line="6161"/>
<location filename="../widgets/mainwindow.cpp" line="6162"/>
<location filename="../widgets/mainwindow.cpp" line="6168"/>
<location filename="../widgets/mainwindow.cpp" line="6169"/>
<location filename="../widgets/mainwindow.cpp" line="6217"/>
<location filename="../widgets/mainwindow.cpp" line="6218"/>
<location filename="../widgets/mainwindow.cpp" line="6387"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="7428"/>
<location filename="../widgets/mainwindow.cpp" line="7431"/>
<location filename="../widgets/mainwindow.cpp" line="7436"/>
<location filename="../widgets/mainwindow.cpp" line="7439"/>
<source>Message</source>
<translation>Messaggio</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="876"/>
<location filename="../widgets/mainwindow.cpp" line="880"/>
<source>Error Killing jt9.exe Process</source>
<translation>Errore durante l&apos;uccisione del processo jt9.exe</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="877"/>
<location filename="../widgets/mainwindow.cpp" line="881"/>
<source>KillByName return code: %1</source>
<translation>Codice di ritorno KillByName:%1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="892"/>
<location filename="../widgets/mainwindow.cpp" line="896"/>
<source>Error removing &quot;%1&quot;</source>
<translation>Errore durante la rimozione di &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="893"/>
<location filename="../widgets/mainwindow.cpp" line="897"/>
<source>Click OK to retry</source>
<translation>Fai clic su OK per riprovare</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1296"/>
<location filename="../widgets/mainwindow.cpp" line="6357"/>
<location filename="../widgets/mainwindow.cpp" line="1300"/>
<location filename="../widgets/mainwindow.cpp" line="6361"/>
<source>Improper mode</source>
<translation>Modalità impropria</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1466"/>
<location filename="../widgets/mainwindow.cpp" line="8917"/>
<location filename="../widgets/mainwindow.cpp" line="1470"/>
<location filename="../widgets/mainwindow.cpp" line="8921"/>
<source>File Open Error</source>
<translation>Errore apertura file</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1467"/>
<location filename="../widgets/mainwindow.cpp" line="7871"/>
<location filename="../widgets/mainwindow.cpp" line="8351"/>
<location filename="../widgets/mainwindow.cpp" line="8918"/>
<location filename="../widgets/mainwindow.cpp" line="9050"/>
<location filename="../widgets/mainwindow.cpp" line="1471"/>
<location filename="../widgets/mainwindow.cpp" line="7875"/>
<location filename="../widgets/mainwindow.cpp" line="8355"/>
<location filename="../widgets/mainwindow.cpp" line="8922"/>
<location filename="../widgets/mainwindow.cpp" line="9054"/>
<source>Cannot open &quot;%1&quot; for append: %2</source>
<translation>Impossibile aprire &quot;%1&quot; per aggiungere:%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1570"/>
<location filename="../widgets/mainwindow.cpp" line="1574"/>
<source>Error saving c2 file</source>
<translation>Errore salvataggio file c2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1770"/>
<location filename="../widgets/mainwindow.cpp" line="1774"/>
<source>Error in Sound Input</source>
<translation>Errore nell&apos;ingresso audio</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1776"/>
<location filename="../widgets/mainwindow.cpp" line="1780"/>
<source>Error in Sound Output</source>
<translation>Errore nell&apos;uscita audio</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1840"/>
<location filename="../widgets/mainwindow.cpp" line="6105"/>
<location filename="../widgets/mainwindow.cpp" line="6255"/>
<location filename="../widgets/mainwindow.cpp" line="1844"/>
<location filename="../widgets/mainwindow.cpp" line="6109"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<source>Single-Period Decodes</source>
<translation>Decodifiche a periodo singolo</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1841"/>
<location filename="../widgets/mainwindow.cpp" line="6106"/>
<location filename="../widgets/mainwindow.cpp" line="6256"/>
<location filename="../widgets/mainwindow.cpp" line="1845"/>
<location filename="../widgets/mainwindow.cpp" line="6110"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<source>Average Decodes</source>
<translation>Media Decodifiche</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>Change Operator</source>
<translation>Cambio Operatore</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>New operator:</source>
<translation>Nuovo operatore:</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2251"/>
<location filename="../widgets/mainwindow.cpp" line="2255"/>
<source>Status File Error</source>
<translation>Errore del file di stato</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2252"/>
<location filename="../widgets/mainwindow.cpp" line="5506"/>
<location filename="../widgets/mainwindow.cpp" line="2256"/>
<location filename="../widgets/mainwindow.cpp" line="5510"/>
<source>Cannot open &quot;%1&quot; for writing: %2</source>
<translation>Impossibile aprire &quot;%1&quot; per la scrittura:%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2387"/>
<location filename="../widgets/mainwindow.cpp" line="2391"/>
<source>Subprocess Error</source>
<translation>Errore sottoprocesso</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2388"/>
<location filename="../widgets/mainwindow.cpp" line="2392"/>
<source>Subprocess failed with exit code %1</source>
<translation>Il sottoprocesso non è riuscito con il codice di uscita%1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2390"/>
<location filename="../widgets/mainwindow.cpp" line="2410"/>
<location filename="../widgets/mainwindow.cpp" line="2394"/>
<location filename="../widgets/mainwindow.cpp" line="2414"/>
<source>Running: %1
%2</source>
<translation>In esecuzione: %1
%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2409"/>
<location filename="../widgets/mainwindow.cpp" line="2413"/>
<source>Subprocess error</source>
<translation>Errore sottoprocesso</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2447"/>
<location filename="../widgets/mainwindow.cpp" line="2451"/>
<source>Reference spectrum saved</source>
<translation>Spettro di riferimento salvato</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2510"/>
<location filename="../widgets/mainwindow.cpp" line="2514"/>
<source>Invalid data in fmt.all at line %1</source>
<translation>Dati non validi in fmt.all alla riga%1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2516"/>
<location filename="../widgets/mainwindow.cpp" line="2520"/>
<source>Good Calibration Solution</source>
<translation>Buona soluzione di calibrazione</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2517"/>
<location filename="../widgets/mainwindow.cpp" line="2521"/>
<source>&lt;pre&gt;%1%L2 ±%L3 ppm
%4%L5 ±%L6 Hz
@ -4025,17 +4025,17 @@ elenco. L&apos;elenco può essere gestito in Impostazioni (F2).</translation>
%9%L10 Hz&lt;/pre&gt;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2531"/>
<location filename="../widgets/mainwindow.cpp" line="2535"/>
<source>Delete Calibration Measurements</source>
<translation>Elimina misure di calibrazione</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2532"/>
<location filename="../widgets/mainwindow.cpp" line="2536"/>
<source>The &quot;fmt.all&quot; file will be renamed as &quot;fmt.bak&quot;</source>
<translation>Il file &quot;fmt.all&quot; verrà rinominato come &quot;fmt.bak&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2544"/>
<location filename="../widgets/mainwindow.cpp" line="2548"/>
<source>If you make fair use of any part of WSJT-X under terms of the GNU General Public License, you must display the following copyright notice prominently in your derivative work:
&quot;The algorithms, source code, look-and-feel of WSJT-X and related programs, and protocol specifications for the modes FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 are Copyright (C) 2001-2020 by one or more of the following authors: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; and other members of the WSJT Development Group.&quot;</source>
@ -4044,27 +4044,27 @@ elenco. L&apos;elenco può essere gestito in Impostazioni (F2).</translation>
&quot;Gli algoritmi, il codice sorgente, l&apos;aspetto di WSJT-X e dei relativi programmi e le specifiche del protocollo per le modalità FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 sono Copyright (C) 2001-2020 di uno o più dei seguenti autori: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q e altri membri del WSJT Development Group. &quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2812"/>
<location filename="../widgets/mainwindow.cpp" line="2816"/>
<source>No data read from disk. Wrong file format?</source>
<translation>Nessun dato letto dal disco. Formato file errato?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2819"/>
<location filename="../widgets/mainwindow.cpp" line="2823"/>
<source>Confirm Delete</source>
<translation>Conferma Eliminazione</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2820"/>
<location filename="../widgets/mainwindow.cpp" line="2824"/>
<source>Are you sure you want to delete all *.wav and *.c2 files in &quot;%1&quot;?</source>
<translation>Sei sicuro di voler eliminare tutti i file * .wav e * .c2 in &quot;%1&quot;?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2857"/>
<location filename="../widgets/mainwindow.cpp" line="2861"/>
<source>Keyboard Shortcuts</source>
<translation>Scorciatoie da tastiera</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2859"/>
<location filename="../widgets/mainwindow.cpp" line="2863"/>
<source>&lt;table cellspacing=1&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esc &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Stop Tx, abort QSO, clear next-call queue&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;F1 &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Online User&apos;s Guide (Alt: transmit Tx6)&lt;/td&gt;&lt;/tr&gt;
@ -4114,12 +4114,12 @@ elenco. L&apos;elenco può essere gestito in Impostazioni (F2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2915"/>
<location filename="../widgets/mainwindow.cpp" line="2919"/>
<source>Special Mouse Commands</source>
<translation>Comandi speciali mouse</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2917"/>
<location filename="../widgets/mainwindow.cpp" line="2921"/>
<source>&lt;table cellpadding=5&gt;
&lt;tr&gt;
&lt;th align=&quot;right&quot;&gt;Click on&lt;/th&gt;
@ -4155,42 +4155,42 @@ elenco. L&apos;elenco può essere gestito in Impostazioni (F2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3254"/>
<location filename="../widgets/mainwindow.cpp" line="3258"/>
<source>No more files to open.</source>
<translation>Niente più file da aprire.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3612"/>
<location filename="../widgets/mainwindow.cpp" line="3616"/>
<source>Spotting to PSK Reporter unavailable</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3770"/>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<source>Please choose another Tx frequency. WSJT-X will not knowingly transmit another mode in the WSPR sub-band on 30m.</source>
<translation>Scegli un&apos;altra frequenza Tx. WSJT-X non trasmetterà consapevolmente un&apos;altra modalità nella sottobanda WSPR a 30 m.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<location filename="../widgets/mainwindow.cpp" line="3778"/>
<source>WSPR Guard Band</source>
<translation>Banda di guardia WSPR</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3787"/>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<source>Please choose another dial frequency. WSJT-X will not operate in Fox mode in the standard FT8 sub-bands.</source>
<translation>Scegli un&apos;altra frequenza di composizione. WSJT-X non funzionerà in modalità Fox nelle sottobande FT8 standard.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<location filename="../widgets/mainwindow.cpp" line="3795"/>
<source>Fox Mode warning</source>
<translation>Avviso modalità Fox</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4385"/>
<location filename="../widgets/mainwindow.cpp" line="4389"/>
<source>Last Tx: %1</source>
<translation>Ultimo Tx:%1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4791"/>
<location filename="../widgets/mainwindow.cpp" line="4795"/>
<source>Should you switch to EU VHF Contest mode?
To do so, check &apos;Special operating activity&apos; and
@ -4201,121 +4201,121 @@ Per fare ciò, selezionare &quot;Attività operativa speciale&quot; e
&quot;Contest VHF EU&quot; sulle impostazioni | Scheda Avanzate.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4810"/>
<location filename="../widgets/mainwindow.cpp" line="4814"/>
<source>Should you switch to ARRL Field Day mode?</source>
<translation>Dovresti passare alla modalità Field Day di ARRL?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4815"/>
<location filename="../widgets/mainwindow.cpp" line="4819"/>
<source>Should you switch to RTTY contest mode?</source>
<translation>Dovresti passare alla modalità contest RTTY?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5467"/>
<location filename="../widgets/mainwindow.cpp" line="5486"/>
<location filename="../widgets/mainwindow.cpp" line="5505"/>
<location filename="../widgets/mainwindow.cpp" line="5531"/>
<location filename="../widgets/mainwindow.cpp" line="5471"/>
<location filename="../widgets/mainwindow.cpp" line="5490"/>
<location filename="../widgets/mainwindow.cpp" line="5509"/>
<location filename="../widgets/mainwindow.cpp" line="5535"/>
<source>Add to CALL3.TXT</source>
<translation>Aggiungi a CALL3.TXT</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5468"/>
<location filename="../widgets/mainwindow.cpp" line="5472"/>
<source>Please enter a valid grid locator</source>
<translation>Inserisci un localizzatore di griglia valido</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5487"/>
<location filename="../widgets/mainwindow.cpp" line="5491"/>
<source>Cannot open &quot;%1&quot; for read/write: %2</source>
<translation>Impossibile aprire &quot;%1&quot; per lettura / scrittura:%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5529"/>
<location filename="../widgets/mainwindow.cpp" line="5533"/>
<source>%1
is already in CALL3.TXT, do you wish to replace it?</source>
<translation>%1
è già in CALL3.TXT, desideri sostituirlo?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5712"/>
<location filename="../widgets/mainwindow.cpp" line="5716"/>
<source>Warning: DX Call field is empty.</source>
<translation>Avviso: il campo Chiamata DX è vuoto.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5769"/>
<location filename="../widgets/mainwindow.cpp" line="5773"/>
<source>Log file error</source>
<translation>Errore nel file di registro</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5770"/>
<location filename="../widgets/mainwindow.cpp" line="5774"/>
<source>Cannot open &quot;%1&quot;</source>
<translation>Impossibile aprire &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5786"/>
<location filename="../widgets/mainwindow.cpp" line="5790"/>
<source>Error sending log to N1MM</source>
<translation>Errore durante l&apos;invio del Log a N1MM</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5787"/>
<location filename="../widgets/mainwindow.cpp" line="5791"/>
<source>Write returned &quot;%1&quot;</source>
<translation>Scrivi ha restituito &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6006"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<source>Stations calling DXpedition %1</source>
<translation>Stazioni che chiamano la DXpedition %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6041"/>
<location filename="../widgets/mainwindow.cpp" line="6045"/>
<source>Hound</source>
<translatorcomment>(Hound=Cane da caccia)</translatorcomment>
<translation>Hound</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6389"/>
<location filename="../widgets/mainwindow.cpp" line="6393"/>
<source>Tx Messages</source>
<translation>Messaggi Tx</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6633"/>
<location filename="../widgets/mainwindow.cpp" line="6666"/>
<location filename="../widgets/mainwindow.cpp" line="6676"/>
<location filename="../widgets/mainwindow.cpp" line="6637"/>
<location filename="../widgets/mainwindow.cpp" line="6670"/>
<location filename="../widgets/mainwindow.cpp" line="6680"/>
<source>Confirm Erase</source>
<translation>Conferma Cancella</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6634"/>
<location filename="../widgets/mainwindow.cpp" line="6638"/>
<source>Are you sure you want to erase file ALL.TXT?</source>
<translation>Sei sicuro di voler cancellare il file ALL.TXT?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6644"/>
<location filename="../widgets/mainwindow.cpp" line="8396"/>
<location filename="../widgets/mainwindow.cpp" line="6648"/>
<location filename="../widgets/mainwindow.cpp" line="8400"/>
<source>Confirm Reset</source>
<translation>Conferma Ripristina</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6645"/>
<location filename="../widgets/mainwindow.cpp" line="6649"/>
<source>Are you sure you want to erase your contest log?</source>
<translation>Sei sicuro di voler cancellare il tuo Log del contest?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6646"/>
<location filename="../widgets/mainwindow.cpp" line="6650"/>
<source>Doing this will remove all QSO records for the current contest. They will be kept in the ADIF log file but will not be available for export in your Cabrillo log.</source>
<translation>In questo modo verranno rimossi tutti i record QSO per il contest corrente. Saranno conservati nel file di registro ADIF ma non saranno disponibili per l&apos;esportazione nel registro Cabrillo.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6659"/>
<location filename="../widgets/mainwindow.cpp" line="6663"/>
<source>Cabrillo Log saved</source>
<translation>Log Cabrillo salvato</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6667"/>
<location filename="../widgets/mainwindow.cpp" line="6671"/>
<source>Are you sure you want to erase file wsjtx_log.adi?</source>
<translation>Sei sicuro di voler cancellare il file wsjtx_log.adi?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6677"/>
<location filename="../widgets/mainwindow.cpp" line="6681"/>
<source>Are you sure you want to erase the WSPR hashtable?</source>
<translation>Sei sicuro di voler cancellare la tabella hash WSPR?</translation>
</message>
@ -4324,60 +4324,60 @@ is already in CALL3.TXT, do you wish to replace it?</source>
<translation type="vanished">VHF presenta un avviso</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7264"/>
<location filename="../widgets/mainwindow.cpp" line="7268"/>
<source>Tune digital gain </source>
<translation>Ottimizza il guadagno digitale </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7266"/>
<location filename="../widgets/mainwindow.cpp" line="7270"/>
<source>Transmit digital gain </source>
<translation>Trasmetti Guadagno digitale </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7285"/>
<location filename="../widgets/mainwindow.cpp" line="7289"/>
<source>Prefixes</source>
<translation>Prefissi</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7709"/>
<location filename="../widgets/mainwindow.cpp" line="7713"/>
<source>Network Error</source>
<translation>Errore di Rete</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7710"/>
<location filename="../widgets/mainwindow.cpp" line="7714"/>
<source>Error: %1
UDP server %2:%3</source>
<translation>Errore:%1
Server UDP%2:%3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7870"/>
<location filename="../widgets/mainwindow.cpp" line="7874"/>
<source>File Error</source>
<translation>Errore File</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8149"/>
<location filename="../widgets/mainwindow.cpp" line="8153"/>
<source>Phase Training Disabled</source>
<translation>Fase di Allenamento Disabilitato</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8152"/>
<location filename="../widgets/mainwindow.cpp" line="8156"/>
<source>Phase Training Enabled</source>
<translation>Fase di allenamento abilitato</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8286"/>
<location filename="../widgets/mainwindow.cpp" line="8290"/>
<source>WD:%1m</source>
<translation>WD:%1m</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8354"/>
<location filename="../widgets/mainwindow.cpp" line="9053"/>
<location filename="../widgets/mainwindow.cpp" line="8358"/>
<location filename="../widgets/mainwindow.cpp" line="9057"/>
<source>Log File Error</source>
<translation>Errore file di Log</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8397"/>
<location filename="../widgets/mainwindow.cpp" line="8401"/>
<source>Are you sure you want to clear the QSO queues?</source>
<translation>Sei sicuro di voler cancellare le code QSO?</translation>
</message>
@ -4724,67 +4724,67 @@ Errore (%2):%3</translation>
<context>
<name>SoundInput</name>
<message>
<location filename="../Audio/soundin.cpp" line="21"/>
<location filename="../Audio/soundin.cpp" line="23"/>
<source>An error opening the audio input device has occurred.</source>
<translation>Si è verificato un errore durante l&apos;apertura del dispositivo di input audio.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="25"/>
<location filename="../Audio/soundin.cpp" line="27"/>
<source>An error occurred during read from the audio input device.</source>
<translation>Si è verificato un errore durante la lettura dal dispositivo di ingresso audio.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="29"/>
<location filename="../Audio/soundin.cpp" line="31"/>
<source>Audio data not being fed to the audio input device fast enough.</source>
<translation>I dati audio non vengono inviati al dispositivo di input audio abbastanza velocemente.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="33"/>
<location filename="../Audio/soundin.cpp" line="35"/>
<source>Non-recoverable error, audio input device not usable at this time.</source>
<translation>Errore non recuperabile, dispositivo di input audio non utilizzabile in questo momento.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="63"/>
<location filename="../Audio/soundin.cpp" line="65"/>
<source>Requested input audio format is not valid.</source>
<translation>Il formato audio di input richiesto non è valido.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="69"/>
<location filename="../Audio/soundin.cpp" line="71"/>
<source>Requested input audio format is not supported on device.</source>
<translation>Il formato audio di input richiesto non è supportato sul dispositivo.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="99"/>
<location filename="../Audio/soundin.cpp" line="101"/>
<source>Failed to initialize audio sink device</source>
<translation>Impossibile inizializzare il dispositivo sink audio</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="134"/>
<location filename="../Audio/soundin.cpp" line="136"/>
<source>Idle</source>
<translation>Inattivo</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="139"/>
<location filename="../Audio/soundin.cpp" line="141"/>
<source>Receiving</source>
<translation>Ricevente</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="143"/>
<location filename="../Audio/soundin.cpp" line="145"/>
<source>Suspended</source>
<translation>Sospeso</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="148"/>
<location filename="../Audio/soundin.cpp" line="150"/>
<source>Interrupted</source>
<translation>Interrotto</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="155"/>
<location filename="../Audio/soundin.cpp" line="157"/>
<source>Error</source>
<translation>Errore</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="159"/>
<location filename="../Audio/soundin.cpp" line="161"/>
<source>Stopped</source>
<translation>Fermato</translation>
</message>

View File

@ -421,22 +421,22 @@
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1712"/>
<location filename="../Configuration.cpp" line="1718"/>
<source>Serial Port:</source>
<translation>:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1713"/>
<location filename="../Configuration.cpp" line="1719"/>
<source>Serial port used for CAT control</source>
<translation>CAT制御用シリアルポート</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1720"/>
<location filename="../Configuration.cpp" line="1726"/>
<source>Network Server:</source>
<translation>:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1721"/>
<location filename="../Configuration.cpp" line="1727"/>
<source>Optional hostname and port of network service.
Leave blank for a sensible default on this machine.
Formats:
@ -451,12 +451,12 @@ Formats:
[IPv6-]:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1733"/>
<location filename="../Configuration.cpp" line="1739"/>
<source>USB Device:</source>
<translation>USBデバイス:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1734"/>
<location filename="../Configuration.cpp" line="1740"/>
<source>Optional device identification.
Leave blank for a sensible default for the rig.
Format:
@ -467,8 +467,8 @@ Format:
[VID[:PID[:VENDOR[:PRODUCT]]]]</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1770"/>
<location filename="../Configuration.cpp" line="1778"/>
<location filename="../Configuration.cpp" line="1776"/>
<location filename="../Configuration.cpp" line="1784"/>
<source>Invalid audio input device</source>
<translation></translation>
</message>
@ -477,147 +477,147 @@ Format:
<translation type="vanished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1786"/>
<location filename="../Configuration.cpp" line="1792"/>
<source>Invalid audio output device</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1792"/>
<location filename="../Configuration.cpp" line="1798"/>
<source>Invalid PTT method</source>
<translation>PTT方式</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1802"/>
<location filename="../Configuration.cpp" line="1808"/>
<source>Invalid PTT port</source>
<translation>PTT用ポート</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1810"/>
<location filename="../Configuration.cpp" line="1819"/>
<location filename="../Configuration.cpp" line="1816"/>
<location filename="../Configuration.cpp" line="1825"/>
<source>Invalid Contest Exchange</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1811"/>
<location filename="../Configuration.cpp" line="1817"/>
<source>You must input a valid ARRL Field Day exchange</source>
<translation>ARRLフィールドデーコンテストナンバーを入力しなければなりません</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1820"/>
<location filename="../Configuration.cpp" line="1826"/>
<source>You must input a valid ARRL RTTY Roundup exchange</source>
<translation>ARRL RTTY </translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2118"/>
<location filename="../Configuration.cpp" line="2126"/>
<source>Reset Decode Highlighting</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2119"/>
<location filename="../Configuration.cpp" line="2127"/>
<source>Reset all decode highlighting and priorities to default values</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2139"/>
<location filename="../Configuration.cpp" line="2147"/>
<source>WSJT-X Decoded Text Font Chooser</source>
<translation>WSJT-Xのデコード出力用フォント選択</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2314"/>
<source>Load Working Frequencies</source>
<translation>使</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2333"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Frequency files (*.qrg);;All files (*.*)</source>
<translation> (*.qrg);; (*.*)</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2313"/>
<location filename="../Configuration.cpp" line="2321"/>
<source>Replace Working Frequencies</source>
<translation>使</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2322"/>
<source>Are you sure you want to discard your current working frequencies and replace them with the loaded ones?</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2333"/>
<source>Merge Working Frequencies</source>
<translation>使</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2350"/>
<location filename="../Configuration.cpp" line="2359"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Not a valid frequencies file</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2350"/>
<source>Incorrect file magic</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2359"/>
<source>Version is too new</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Contents corrupt</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Save Working Frequencies</source>
<translation>使</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2380"/>
<location filename="../Configuration.cpp" line="2388"/>
<source>Only Save Selected Working Frequencies</source>
<translation>使</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2381"/>
<location filename="../Configuration.cpp" line="2389"/>
<source>Are you sure you want to save only the working frequencies that are currently selected? Click No to save all.</source>
<translation>使Noをクリックしてください</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2397"/>
<location filename="../Configuration.cpp" line="2405"/>
<source>Reset Working Frequencies</source>
<translation>使</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2398"/>
<location filename="../Configuration.cpp" line="2406"/>
<source>Are you sure you want to discard your current working frequencies and replace them with default ones?</source>
<translation>使</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2436"/>
<location filename="../Configuration.cpp" line="2444"/>
<source>Save Directory</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2450"/>
<location filename="../Configuration.cpp" line="2458"/>
<source>AzEl Directory</source>
<translation>AzElフォルダー</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2510"/>
<location filename="../Configuration.cpp" line="2518"/>
<source>Rig control error</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2511"/>
<location filename="../Configuration.cpp" line="2519"/>
<source>Failed to open connection to rig</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2729"/>
<location filename="../Configuration.cpp" line="2737"/>
<source>Rig failure</source>
<translation></translation>
</message>
@ -2077,13 +2077,13 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="50"/>
<location filename="../widgets/mainwindow.cpp" line="5887"/>
<location filename="../widgets/mainwindow.cpp" line="5961"/>
<location filename="../widgets/mainwindow.cpp" line="6009"/>
<location filename="../widgets/mainwindow.cpp" line="6171"/>
<location filename="../widgets/mainwindow.cpp" line="6211"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="5891"/>
<location filename="../widgets/mainwindow.cpp" line="5965"/>
<location filename="../widgets/mainwindow.cpp" line="6013"/>
<location filename="../widgets/mainwindow.cpp" line="6175"/>
<location filename="../widgets/mainwindow.cpp" line="6215"/>
<location filename="../widgets/mainwindow.cpp" line="6263"/>
<location filename="../widgets/mainwindow.cpp" line="6392"/>
<source>Band Activity</source>
<translation></translation>
</message>
@ -2095,12 +2095,12 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="194"/>
<location filename="../widgets/mainwindow.cpp" line="5888"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6172"/>
<location filename="../widgets/mainwindow.cpp" line="6212"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<location filename="../widgets/mainwindow.cpp" line="5892"/>
<location filename="../widgets/mainwindow.cpp" line="5964"/>
<location filename="../widgets/mainwindow.cpp" line="6008"/>
<location filename="../widgets/mainwindow.cpp" line="6176"/>
<location filename="../widgets/mainwindow.cpp" line="6216"/>
<location filename="../widgets/mainwindow.cpp" line="6264"/>
<source>Rx Frequency</source>
<translation></translation>
</message>
@ -2583,7 +2583,7 @@ Not available to nonstandard callsign holders.</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="986"/>
<location filename="../widgets/mainwindow.cpp" line="6031"/>
<location filename="../widgets/mainwindow.cpp" line="6035"/>
<source>Fox</source>
<translation>Fox</translation>
</message>
@ -3111,10 +3111,10 @@ ENTERを押してテキストを登録リストに追加.
<location filename="../widgets/mainwindow.ui" line="1732"/>
<location filename="../widgets/mainwindow.ui" line="1739"/>
<location filename="../widgets/mainwindow.ui" line="1959"/>
<location filename="../widgets/mainwindow.cpp" line="1240"/>
<location filename="../widgets/mainwindow.cpp" line="5645"/>
<location filename="../widgets/mainwindow.cpp" line="6544"/>
<location filename="../widgets/mainwindow.cpp" line="7965"/>
<location filename="../widgets/mainwindow.cpp" line="1244"/>
<location filename="../widgets/mainwindow.cpp" line="5649"/>
<location filename="../widgets/mainwindow.cpp" line="6548"/>
<location filename="../widgets/mainwindow.cpp" line="7969"/>
<source>Random</source>
<translation></translation>
</message>
@ -3503,7 +3503,7 @@ ENTERを押してテキストを登録リストに追加.
<translation type="vanished">73</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8271"/>
<location filename="../widgets/mainwindow.cpp" line="8275"/>
<source>Runaway Tx watchdog</source>
<translation>Txウオッチドッグ発令</translation>
</message>
@ -3767,8 +3767,8 @@ ENTERを押してテキストを登録リストに追加.
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="336"/>
<location filename="../widgets/mainwindow.cpp" line="4281"/>
<location filename="../widgets/mainwindow.cpp" line="7742"/>
<location filename="../widgets/mainwindow.cpp" line="4285"/>
<location filename="../widgets/mainwindow.cpp" line="7746"/>
<source>Receiving</source>
<translation></translation>
</message>
@ -3783,199 +3783,203 @@ ENTERを押してテキストを登録リストに追加.
<translation>%1 (%2 )</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="484"/>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<source>Audio Source</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Reduce system load</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped</source>
<translation> - %1 (%2</translation>
<translation type="vanished"> - %1 (%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="517"/>
<location filename="../widgets/mainwindow.cpp" line="487"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped in period starting %3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<source>Error Scanning ADIF Log</source>
<translation>ADIFログスキャンエラー</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<location filename="../widgets/mainwindow.cpp" line="525"/>
<source>Scanned ADIF log, %1 worked before records created</source>
<translation>ADIFログ検索. %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="631"/>
<location filename="../widgets/mainwindow.cpp" line="635"/>
<source>Error Loading LotW Users Data</source>
<translation>LotWユーザデータをロードできません</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="750"/>
<location filename="../widgets/mainwindow.cpp" line="754"/>
<source>Error Writing WAV File</source>
<translation>WAVファイルを書き込みできません</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="793"/>
<location filename="../widgets/mainwindow.cpp" line="797"/>
<source>Configurations...</source>
<translation>...</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="862"/>
<location filename="../widgets/mainwindow.cpp" line="5956"/>
<location filename="../widgets/mainwindow.cpp" line="5962"/>
<location filename="../widgets/mainwindow.cpp" line="6000"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<location filename="../widgets/mainwindow.cpp" line="6107"/>
<location filename="../widgets/mainwindow.cpp" line="6108"/>
<location filename="../widgets/mainwindow.cpp" line="6157"/>
<location filename="../widgets/mainwindow.cpp" line="6158"/>
<location filename="../widgets/mainwindow.cpp" line="6164"/>
<location filename="../widgets/mainwindow.cpp" line="6165"/>
<location filename="../widgets/mainwindow.cpp" line="6213"/>
<location filename="../widgets/mainwindow.cpp" line="6214"/>
<location filename="../widgets/mainwindow.cpp" line="6383"/>
<location filename="../widgets/mainwindow.cpp" line="6384"/>
<location filename="../widgets/mainwindow.cpp" line="7424"/>
<location filename="../widgets/mainwindow.cpp" line="7427"/>
<location filename="../widgets/mainwindow.cpp" line="7432"/>
<location filename="../widgets/mainwindow.cpp" line="7435"/>
<location filename="../widgets/mainwindow.cpp" line="866"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="5966"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6014"/>
<location filename="../widgets/mainwindow.cpp" line="6111"/>
<location filename="../widgets/mainwindow.cpp" line="6112"/>
<location filename="../widgets/mainwindow.cpp" line="6161"/>
<location filename="../widgets/mainwindow.cpp" line="6162"/>
<location filename="../widgets/mainwindow.cpp" line="6168"/>
<location filename="../widgets/mainwindow.cpp" line="6169"/>
<location filename="../widgets/mainwindow.cpp" line="6217"/>
<location filename="../widgets/mainwindow.cpp" line="6218"/>
<location filename="../widgets/mainwindow.cpp" line="6387"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="7428"/>
<location filename="../widgets/mainwindow.cpp" line="7431"/>
<location filename="../widgets/mainwindow.cpp" line="7436"/>
<location filename="../widgets/mainwindow.cpp" line="7439"/>
<source>Message</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="876"/>
<location filename="../widgets/mainwindow.cpp" line="880"/>
<source>Error Killing jt9.exe Process</source>
<translation>jt9.exeプロセスを終了できません</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="877"/>
<location filename="../widgets/mainwindow.cpp" line="881"/>
<source>KillByName return code: %1</source>
<translation>KillByNameリターンコード: %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="892"/>
<location filename="../widgets/mainwindow.cpp" line="896"/>
<source>Error removing &quot;%1&quot;</source>
<translation>&quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="893"/>
<location filename="../widgets/mainwindow.cpp" line="897"/>
<source>Click OK to retry</source>
<translation>OKを押して再試行</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1296"/>
<location filename="../widgets/mainwindow.cpp" line="6357"/>
<location filename="../widgets/mainwindow.cpp" line="1300"/>
<location filename="../widgets/mainwindow.cpp" line="6361"/>
<source>Improper mode</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1466"/>
<location filename="../widgets/mainwindow.cpp" line="8917"/>
<location filename="../widgets/mainwindow.cpp" line="1470"/>
<location filename="../widgets/mainwindow.cpp" line="8921"/>
<source>File Open Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1467"/>
<location filename="../widgets/mainwindow.cpp" line="7871"/>
<location filename="../widgets/mainwindow.cpp" line="8351"/>
<location filename="../widgets/mainwindow.cpp" line="8918"/>
<location filename="../widgets/mainwindow.cpp" line="9050"/>
<location filename="../widgets/mainwindow.cpp" line="1471"/>
<location filename="../widgets/mainwindow.cpp" line="7875"/>
<location filename="../widgets/mainwindow.cpp" line="8355"/>
<location filename="../widgets/mainwindow.cpp" line="8922"/>
<location filename="../widgets/mainwindow.cpp" line="9054"/>
<source>Cannot open &quot;%1&quot; for append: %2</source>
<translation>&quot;%2&quot;&quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1570"/>
<location filename="../widgets/mainwindow.cpp" line="1574"/>
<source>Error saving c2 file</source>
<translation>c2ファイルを保存できません</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1770"/>
<location filename="../widgets/mainwindow.cpp" line="1774"/>
<source>Error in Sound Input</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1776"/>
<location filename="../widgets/mainwindow.cpp" line="1780"/>
<source>Error in Sound Output</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1840"/>
<location filename="../widgets/mainwindow.cpp" line="6105"/>
<location filename="../widgets/mainwindow.cpp" line="6255"/>
<location filename="../widgets/mainwindow.cpp" line="1844"/>
<location filename="../widgets/mainwindow.cpp" line="6109"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<source>Single-Period Decodes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1841"/>
<location filename="../widgets/mainwindow.cpp" line="6106"/>
<location filename="../widgets/mainwindow.cpp" line="6256"/>
<location filename="../widgets/mainwindow.cpp" line="1845"/>
<location filename="../widgets/mainwindow.cpp" line="6110"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<source>Average Decodes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>Change Operator</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>New operator:</source>
<translation>:</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2251"/>
<location filename="../widgets/mainwindow.cpp" line="2255"/>
<source>Status File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2252"/>
<location filename="../widgets/mainwindow.cpp" line="5506"/>
<location filename="../widgets/mainwindow.cpp" line="2256"/>
<location filename="../widgets/mainwindow.cpp" line="5510"/>
<source>Cannot open &quot;%1&quot; for writing: %2</source>
<translation>%2&quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2387"/>
<location filename="../widgets/mainwindow.cpp" line="2391"/>
<source>Subprocess Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2388"/>
<location filename="../widgets/mainwindow.cpp" line="2392"/>
<source>Subprocess failed with exit code %1</source>
<translation> %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2390"/>
<location filename="../widgets/mainwindow.cpp" line="2410"/>
<location filename="../widgets/mainwindow.cpp" line="2394"/>
<location filename="../widgets/mainwindow.cpp" line="2414"/>
<source>Running: %1
%2</source>
<translation>: %1
%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2409"/>
<location filename="../widgets/mainwindow.cpp" line="2413"/>
<source>Subprocess error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2447"/>
<location filename="../widgets/mainwindow.cpp" line="2451"/>
<source>Reference spectrum saved</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2510"/>
<location filename="../widgets/mainwindow.cpp" line="2514"/>
<source>Invalid data in fmt.all at line %1</source>
<translation>fmt.allの%1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2516"/>
<location filename="../widgets/mainwindow.cpp" line="2520"/>
<source>Good Calibration Solution</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2517"/>
<location filename="../widgets/mainwindow.cpp" line="2521"/>
<source>&lt;pre&gt;%1%L2 ±%L3 ppm
%4%L5 ±%L6 Hz
@ -3984,44 +3988,44 @@ ENTERを押してテキストを登録リストに追加.
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2531"/>
<location filename="../widgets/mainwindow.cpp" line="2535"/>
<source>Delete Calibration Measurements</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2532"/>
<location filename="../widgets/mainwindow.cpp" line="2536"/>
<source>The &quot;fmt.all&quot; file will be renamed as &quot;fmt.bak&quot;</source>
<translation>&quot;fmt.all&quot;&quot;fmt.bak&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2544"/>
<location filename="../widgets/mainwindow.cpp" line="2548"/>
<source>If you make fair use of any part of WSJT-X under terms of the GNU General Public License, you must display the following copyright notice prominently in your derivative work:
&quot;The algorithms, source code, look-and-feel of WSJT-X and related programs, and protocol specifications for the modes FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 are Copyright (C) 2001-2020 by one or more of the following authors: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; and other members of the WSJT Development Group.&quot;</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2812"/>
<location filename="../widgets/mainwindow.cpp" line="2816"/>
<source>No data read from disk. Wrong file format?</source>
<translation>.?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2819"/>
<location filename="../widgets/mainwindow.cpp" line="2823"/>
<source>Confirm Delete</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2820"/>
<location filename="../widgets/mainwindow.cpp" line="2824"/>
<source>Are you sure you want to delete all *.wav and *.c2 files in &quot;%1&quot;?</source>
<translation>&quot;%1&quot;*.wavと*.c2ファイルを削除していいですか?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2857"/>
<location filename="../widgets/mainwindow.cpp" line="2861"/>
<source>Keyboard Shortcuts</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2859"/>
<location filename="../widgets/mainwindow.cpp" line="2863"/>
<source>&lt;table cellspacing=1&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esc &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Stop Tx, abort QSO, clear next-call queue&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;F1 &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Online User&apos;s Guide (Alt: transmit Tx6)&lt;/td&gt;&lt;/tr&gt;
@ -4115,12 +4119,12 @@ ENTERを押してテキストを登録リストに追加.
&lt;/table&gt;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2915"/>
<location filename="../widgets/mainwindow.cpp" line="2919"/>
<source>Special Mouse Commands</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2917"/>
<location filename="../widgets/mainwindow.cpp" line="2921"/>
<source>&lt;table cellpadding=5&gt;
&lt;tr&gt;
&lt;th align=&quot;right&quot;&gt;Click on&lt;/th&gt;
@ -4186,42 +4190,42 @@ ENTERを押してテキストを登録リストに追加.
&lt;/table&gt;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3254"/>
<location filename="../widgets/mainwindow.cpp" line="3258"/>
<source>No more files to open.</source>
<translation>.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3612"/>
<location filename="../widgets/mainwindow.cpp" line="3616"/>
<source>Spotting to PSK Reporter unavailable</source>
<translation>PSK Reporterにスポットできません</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3770"/>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<source>Please choose another Tx frequency. WSJT-X will not knowingly transmit another mode in the WSPR sub-band on 30m.</source>
<translation>使. WSJT-Xは30mバンドのWSPRサブバンド中の他のモードを受信せずに送信してしまいます.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<location filename="../widgets/mainwindow.cpp" line="3778"/>
<source>WSPR Guard Band</source>
<translation>WSPRガードバンド</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3787"/>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<source>Please choose another dial frequency. WSJT-X will not operate in Fox mode in the standard FT8 sub-bands.</source>
<translation>使.&#x3000;WSJT-XはFT8の標準サブバンドでFoxモードを使えません</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<location filename="../widgets/mainwindow.cpp" line="3795"/>
<source>Fox Mode warning</source>
<translation>Foxモード警告</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4385"/>
<location filename="../widgets/mainwindow.cpp" line="4389"/>
<source>Last Tx: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4791"/>
<location filename="../widgets/mainwindow.cpp" line="4795"/>
<source>Should you switch to EU VHF Contest mode?
To do so, check &apos;Special operating activity&apos; and
@ -4231,120 +4235,120 @@ To do so, check &apos;Special operating activity&apos; and
.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4810"/>
<location filename="../widgets/mainwindow.cpp" line="4814"/>
<source>Should you switch to ARRL Field Day mode?</source>
<translation>ARRLフィールドデーモードに切り替えますか?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4815"/>
<location filename="../widgets/mainwindow.cpp" line="4819"/>
<source>Should you switch to RTTY contest mode?</source>
<translation>RTTYコンテストモードに切り替えますか?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5467"/>
<location filename="../widgets/mainwindow.cpp" line="5486"/>
<location filename="../widgets/mainwindow.cpp" line="5505"/>
<location filename="../widgets/mainwindow.cpp" line="5531"/>
<location filename="../widgets/mainwindow.cpp" line="5471"/>
<location filename="../widgets/mainwindow.cpp" line="5490"/>
<location filename="../widgets/mainwindow.cpp" line="5509"/>
<location filename="../widgets/mainwindow.cpp" line="5535"/>
<source>Add to CALL3.TXT</source>
<translation>CALL3.TXTへ追加</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5468"/>
<location filename="../widgets/mainwindow.cpp" line="5472"/>
<source>Please enter a valid grid locator</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5487"/>
<location filename="../widgets/mainwindow.cpp" line="5491"/>
<source>Cannot open &quot;%1&quot; for read/write: %2</source>
<translation>%2&quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5529"/>
<location filename="../widgets/mainwindow.cpp" line="5533"/>
<source>%1
is already in CALL3.TXT, do you wish to replace it?</source>
<translation>%1
CALL3.TXTにセットされています?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5712"/>
<location filename="../widgets/mainwindow.cpp" line="5716"/>
<source>Warning: DX Call field is empty.</source>
<translation> DXコールが空白です.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5769"/>
<location filename="../widgets/mainwindow.cpp" line="5773"/>
<source>Log file error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5770"/>
<location filename="../widgets/mainwindow.cpp" line="5774"/>
<source>Cannot open &quot;%1&quot;</source>
<translation>&quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5786"/>
<location filename="../widgets/mainwindow.cpp" line="5790"/>
<source>Error sending log to N1MM</source>
<translation>N1MMへログを送れません</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5787"/>
<location filename="../widgets/mainwindow.cpp" line="5791"/>
<source>Write returned &quot;%1&quot;</source>
<translation>&quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6006"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<source>Stations calling DXpedition %1</source>
<translation>DXペディション %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6041"/>
<location filename="../widgets/mainwindow.cpp" line="6045"/>
<source>Hound</source>
<translation>Hound</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6389"/>
<location filename="../widgets/mainwindow.cpp" line="6393"/>
<source>Tx Messages</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6633"/>
<location filename="../widgets/mainwindow.cpp" line="6666"/>
<location filename="../widgets/mainwindow.cpp" line="6676"/>
<location filename="../widgets/mainwindow.cpp" line="6637"/>
<location filename="../widgets/mainwindow.cpp" line="6670"/>
<location filename="../widgets/mainwindow.cpp" line="6680"/>
<source>Confirm Erase</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6634"/>
<location filename="../widgets/mainwindow.cpp" line="6638"/>
<source>Are you sure you want to erase file ALL.TXT?</source>
<translation>ALL.TXTファイルを消去してよいですか</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6644"/>
<location filename="../widgets/mainwindow.cpp" line="8396"/>
<location filename="../widgets/mainwindow.cpp" line="6648"/>
<location filename="../widgets/mainwindow.cpp" line="8400"/>
<source>Confirm Reset</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6645"/>
<location filename="../widgets/mainwindow.cpp" line="6649"/>
<source>Are you sure you want to erase your contest log?</source>
<translation>?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6646"/>
<location filename="../widgets/mainwindow.cpp" line="6650"/>
<source>Doing this will remove all QSO records for the current contest. They will be kept in the ADIF log file but will not be available for export in your Cabrillo log.</source>
<translation>QSO記録をすべて消去しますADIFログには記録されますがCabrilloログにエクスポートすることはできません.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6659"/>
<location filename="../widgets/mainwindow.cpp" line="6663"/>
<source>Cabrillo Log saved</source>
<translation>Cabrilloログ保存しました</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6667"/>
<location filename="../widgets/mainwindow.cpp" line="6671"/>
<source>Are you sure you want to erase file wsjtx_log.adi?</source>
<translation>wsjtx_log.adiを消してもよいですか?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6677"/>
<location filename="../widgets/mainwindow.cpp" line="6681"/>
<source>Are you sure you want to erase the WSPR hashtable?</source>
<translation>WSPRのハッシュテーブルを消してもよいですか?</translation>
</message>
@ -4353,60 +4357,60 @@ is already in CALL3.TXT, do you wish to replace it?</source>
<translation type="vanished">VHF機能警告</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7264"/>
<location filename="../widgets/mainwindow.cpp" line="7268"/>
<source>Tune digital gain </source>
<translation> </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7266"/>
<location filename="../widgets/mainwindow.cpp" line="7270"/>
<source>Transmit digital gain </source>
<translation> </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7285"/>
<location filename="../widgets/mainwindow.cpp" line="7289"/>
<source>Prefixes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7709"/>
<location filename="../widgets/mainwindow.cpp" line="7713"/>
<source>Network Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7710"/>
<location filename="../widgets/mainwindow.cpp" line="7714"/>
<source>Error: %1
UDP server %2:%3</source>
<translation> %1
UDPサーバー %2:%3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7870"/>
<location filename="../widgets/mainwindow.cpp" line="7874"/>
<source>File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8149"/>
<location filename="../widgets/mainwindow.cpp" line="8153"/>
<source>Phase Training Disabled</source>
<translation>調</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8152"/>
<location filename="../widgets/mainwindow.cpp" line="8156"/>
<source>Phase Training Enabled</source>
<translation>調</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8286"/>
<location filename="../widgets/mainwindow.cpp" line="8290"/>
<source>WD:%1m</source>
<translation>WD:%1m</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8354"/>
<location filename="../widgets/mainwindow.cpp" line="9053"/>
<location filename="../widgets/mainwindow.cpp" line="8358"/>
<location filename="../widgets/mainwindow.cpp" line="9057"/>
<source>Log File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8397"/>
<location filename="../widgets/mainwindow.cpp" line="8401"/>
<source>Are you sure you want to clear the QSO queues?</source>
<translation>QSO待ち行列をクリアしてもいいですか?</translation>
</message>
@ -4753,67 +4757,67 @@ Error(%2): %3</source>
<context>
<name>SoundInput</name>
<message>
<location filename="../Audio/soundin.cpp" line="21"/>
<location filename="../Audio/soundin.cpp" line="23"/>
<source>An error opening the audio input device has occurred.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="25"/>
<location filename="../Audio/soundin.cpp" line="27"/>
<source>An error occurred during read from the audio input device.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="29"/>
<location filename="../Audio/soundin.cpp" line="31"/>
<source>Audio data not being fed to the audio input device fast enough.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="33"/>
<location filename="../Audio/soundin.cpp" line="35"/>
<source>Non-recoverable error, audio input device not usable at this time.</source>
<translation>. 使.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="63"/>
<location filename="../Audio/soundin.cpp" line="65"/>
<source>Requested input audio format is not valid.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="69"/>
<location filename="../Audio/soundin.cpp" line="71"/>
<source>Requested input audio format is not supported on device.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="99"/>
<location filename="../Audio/soundin.cpp" line="101"/>
<source>Failed to initialize audio sink device</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="134"/>
<location filename="../Audio/soundin.cpp" line="136"/>
<source>Idle</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="139"/>
<location filename="../Audio/soundin.cpp" line="141"/>
<source>Receiving</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="143"/>
<location filename="../Audio/soundin.cpp" line="145"/>
<source>Suspended</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="148"/>
<location filename="../Audio/soundin.cpp" line="150"/>
<source>Interrupted</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="155"/>
<location filename="../Audio/soundin.cpp" line="157"/>
<source>Error</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="159"/>
<location filename="../Audio/soundin.cpp" line="161"/>
<source>Stopped</source>
<translation></translation>
</message>

View File

@ -421,22 +421,22 @@
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1712"/>
<location filename="../Configuration.cpp" line="1718"/>
<source>Serial Port:</source>
<translation>:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1713"/>
<location filename="../Configuration.cpp" line="1719"/>
<source>Serial port used for CAT control</source>
<translation>CAT控制的串行端口</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1720"/>
<location filename="../Configuration.cpp" line="1726"/>
<source>Network Server:</source>
<translation>:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1721"/>
<location filename="../Configuration.cpp" line="1727"/>
<source>Optional hostname and port of network service.
Leave blank for a sensible default on this machine.
Formats:
@ -451,12 +451,12 @@ Formats:
[IPv6-]:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1733"/>
<location filename="../Configuration.cpp" line="1739"/>
<source>USB Device:</source>
<translation>USB :</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1734"/>
<location filename="../Configuration.cpp" line="1740"/>
<source>Optional device identification.
Leave blank for a sensible default for the rig.
Format:
@ -467,8 +467,8 @@ Format:
[VID[:PID[:[:]]]]</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1770"/>
<location filename="../Configuration.cpp" line="1778"/>
<location filename="../Configuration.cpp" line="1776"/>
<location filename="../Configuration.cpp" line="1784"/>
<source>Invalid audio input device</source>
<translation></translation>
</message>
@ -477,147 +477,147 @@ Format:
<translation type="vanished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1786"/>
<location filename="../Configuration.cpp" line="1792"/>
<source>Invalid audio output device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1792"/>
<location filename="../Configuration.cpp" line="1798"/>
<source>Invalid PTT method</source>
<translation>PTT方法</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1802"/>
<location filename="../Configuration.cpp" line="1808"/>
<source>Invalid PTT port</source>
<translation>PTT端口</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1810"/>
<location filename="../Configuration.cpp" line="1819"/>
<location filename="../Configuration.cpp" line="1816"/>
<location filename="../Configuration.cpp" line="1825"/>
<source>Invalid Contest Exchange</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1811"/>
<location filename="../Configuration.cpp" line="1817"/>
<source>You must input a valid ARRL Field Day exchange</source>
<translation> ARRL Field Day交换数据</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1820"/>
<location filename="../Configuration.cpp" line="1826"/>
<source>You must input a valid ARRL RTTY Roundup exchange</source>
<translation> ARRL RTTY Roundup </translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2118"/>
<location filename="../Configuration.cpp" line="2126"/>
<source>Reset Decode Highlighting</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2119"/>
<location filename="../Configuration.cpp" line="2127"/>
<source>Reset all decode highlighting and priorities to default values</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2139"/>
<location filename="../Configuration.cpp" line="2147"/>
<source>WSJT-X Decoded Text Font Chooser</source>
<translation>WSJT-X </translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2314"/>
<source>Load Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2333"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Frequency files (*.qrg);;All files (*.*)</source>
<translation> (*.qrg);; (*.*)</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2313"/>
<location filename="../Configuration.cpp" line="2321"/>
<source>Replace Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2322"/>
<source>Are you sure you want to discard your current working frequencies and replace them with the loaded ones?</source>
<translation>, ?</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2333"/>
<source>Merge Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2350"/>
<location filename="../Configuration.cpp" line="2359"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Not a valid frequencies file</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2350"/>
<source>Incorrect file magic</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2359"/>
<source>Version is too new</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Contents corrupt</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Save Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2380"/>
<location filename="../Configuration.cpp" line="2388"/>
<source>Only Save Selected Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2381"/>
<location filename="../Configuration.cpp" line="2389"/>
<source>Are you sure you want to save only the working frequencies that are currently selected? Click No to save all.</source>
<translation>? .</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2397"/>
<location filename="../Configuration.cpp" line="2405"/>
<source>Reset Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2398"/>
<location filename="../Configuration.cpp" line="2406"/>
<source>Are you sure you want to discard your current working frequencies and replace them with default ones?</source>
<translation>?</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2436"/>
<location filename="../Configuration.cpp" line="2444"/>
<source>Save Directory</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2450"/>
<location filename="../Configuration.cpp" line="2458"/>
<source>AzEl Directory</source>
<translation>AzEl </translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2510"/>
<location filename="../Configuration.cpp" line="2518"/>
<source>Rig control error</source>
<translation>线</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2511"/>
<location filename="../Configuration.cpp" line="2519"/>
<source>Failed to open connection to rig</source>
<translation>线</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2729"/>
<location filename="../Configuration.cpp" line="2737"/>
<source>Rig failure</source>
<translation>线</translation>
</message>
@ -2076,13 +2076,13 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="50"/>
<location filename="../widgets/mainwindow.cpp" line="5887"/>
<location filename="../widgets/mainwindow.cpp" line="5961"/>
<location filename="../widgets/mainwindow.cpp" line="6009"/>
<location filename="../widgets/mainwindow.cpp" line="6171"/>
<location filename="../widgets/mainwindow.cpp" line="6211"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="5891"/>
<location filename="../widgets/mainwindow.cpp" line="5965"/>
<location filename="../widgets/mainwindow.cpp" line="6013"/>
<location filename="../widgets/mainwindow.cpp" line="6175"/>
<location filename="../widgets/mainwindow.cpp" line="6215"/>
<location filename="../widgets/mainwindow.cpp" line="6263"/>
<location filename="../widgets/mainwindow.cpp" line="6392"/>
<source>Band Activity</source>
<translation></translation>
</message>
@ -2094,12 +2094,12 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="194"/>
<location filename="../widgets/mainwindow.cpp" line="5888"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6172"/>
<location filename="../widgets/mainwindow.cpp" line="6212"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<location filename="../widgets/mainwindow.cpp" line="5892"/>
<location filename="../widgets/mainwindow.cpp" line="5964"/>
<location filename="../widgets/mainwindow.cpp" line="6008"/>
<location filename="../widgets/mainwindow.cpp" line="6176"/>
<location filename="../widgets/mainwindow.cpp" line="6216"/>
<location filename="../widgets/mainwindow.cpp" line="6264"/>
<source>Rx Frequency</source>
<translation></translation>
</message>
@ -2682,7 +2682,7 @@ Not available to nonstandard callsign holders.</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="986"/>
<location filename="../widgets/mainwindow.cpp" line="6031"/>
<location filename="../widgets/mainwindow.cpp" line="6035"/>
<source>Fox</source>
<translation></translation>
</message>
@ -3221,10 +3221,10 @@ list. The list can be maintained in Settings (F2).</source>
<location filename="../widgets/mainwindow.ui" line="1732"/>
<location filename="../widgets/mainwindow.ui" line="1739"/>
<location filename="../widgets/mainwindow.ui" line="1959"/>
<location filename="../widgets/mainwindow.cpp" line="1240"/>
<location filename="../widgets/mainwindow.cpp" line="5645"/>
<location filename="../widgets/mainwindow.cpp" line="6544"/>
<location filename="../widgets/mainwindow.cpp" line="7965"/>
<location filename="../widgets/mainwindow.cpp" line="1244"/>
<location filename="../widgets/mainwindow.cpp" line="5649"/>
<location filename="../widgets/mainwindow.cpp" line="6548"/>
<location filename="../widgets/mainwindow.cpp" line="7969"/>
<source>Random</source>
<translation></translation>
</message>
@ -3512,7 +3512,7 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="vanished"> 73 </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8271"/>
<location filename="../widgets/mainwindow.cpp" line="8275"/>
<source>Runaway Tx watchdog</source>
<translation></translation>
</message>
@ -3772,8 +3772,8 @@ list. The list can be maintained in Settings (F2).</source>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="336"/>
<location filename="../widgets/mainwindow.cpp" line="4281"/>
<location filename="../widgets/mainwindow.cpp" line="7742"/>
<location filename="../widgets/mainwindow.cpp" line="4285"/>
<location filename="../widgets/mainwindow.cpp" line="7746"/>
<source>Receiving</source>
<translation></translation>
</message>
@ -3788,199 +3788,194 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="484"/>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<source>Audio Source</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Reduce system load</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="517"/>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<source>Error Scanning ADIF Log</source>
<translation> ADIF </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<location filename="../widgets/mainwindow.cpp" line="525"/>
<source>Scanned ADIF log, %1 worked before records created</source>
<translation> ADIF , %1 </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="631"/>
<location filename="../widgets/mainwindow.cpp" line="635"/>
<source>Error Loading LotW Users Data</source>
<translation> LotW </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="750"/>
<location filename="../widgets/mainwindow.cpp" line="754"/>
<source>Error Writing WAV File</source>
<translation> WAV </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="793"/>
<location filename="../widgets/mainwindow.cpp" line="797"/>
<source>Configurations...</source>
<translation>...</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="862"/>
<location filename="../widgets/mainwindow.cpp" line="5956"/>
<location filename="../widgets/mainwindow.cpp" line="5962"/>
<location filename="../widgets/mainwindow.cpp" line="6000"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<location filename="../widgets/mainwindow.cpp" line="6107"/>
<location filename="../widgets/mainwindow.cpp" line="6108"/>
<location filename="../widgets/mainwindow.cpp" line="6157"/>
<location filename="../widgets/mainwindow.cpp" line="6158"/>
<location filename="../widgets/mainwindow.cpp" line="6164"/>
<location filename="../widgets/mainwindow.cpp" line="6165"/>
<location filename="../widgets/mainwindow.cpp" line="6213"/>
<location filename="../widgets/mainwindow.cpp" line="6214"/>
<location filename="../widgets/mainwindow.cpp" line="6383"/>
<location filename="../widgets/mainwindow.cpp" line="6384"/>
<location filename="../widgets/mainwindow.cpp" line="7424"/>
<location filename="../widgets/mainwindow.cpp" line="7427"/>
<location filename="../widgets/mainwindow.cpp" line="7432"/>
<location filename="../widgets/mainwindow.cpp" line="7435"/>
<location filename="../widgets/mainwindow.cpp" line="866"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="5966"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6014"/>
<location filename="../widgets/mainwindow.cpp" line="6111"/>
<location filename="../widgets/mainwindow.cpp" line="6112"/>
<location filename="../widgets/mainwindow.cpp" line="6161"/>
<location filename="../widgets/mainwindow.cpp" line="6162"/>
<location filename="../widgets/mainwindow.cpp" line="6168"/>
<location filename="../widgets/mainwindow.cpp" line="6169"/>
<location filename="../widgets/mainwindow.cpp" line="6217"/>
<location filename="../widgets/mainwindow.cpp" line="6218"/>
<location filename="../widgets/mainwindow.cpp" line="6387"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="7428"/>
<location filename="../widgets/mainwindow.cpp" line="7431"/>
<location filename="../widgets/mainwindow.cpp" line="7436"/>
<location filename="../widgets/mainwindow.cpp" line="7439"/>
<source>Message</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="876"/>
<location filename="../widgets/mainwindow.cpp" line="880"/>
<source>Error Killing jt9.exe Process</source>
<translation> jt9.exe </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="877"/>
<location filename="../widgets/mainwindow.cpp" line="881"/>
<source>KillByName return code: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="892"/>
<location filename="../widgets/mainwindow.cpp" line="896"/>
<source>Error removing &quot;%1&quot;</source>
<translation> &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="893"/>
<location filename="../widgets/mainwindow.cpp" line="897"/>
<source>Click OK to retry</source>
<translation> </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1296"/>
<location filename="../widgets/mainwindow.cpp" line="6357"/>
<location filename="../widgets/mainwindow.cpp" line="1300"/>
<location filename="../widgets/mainwindow.cpp" line="6361"/>
<source>Improper mode</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1466"/>
<location filename="../widgets/mainwindow.cpp" line="8917"/>
<location filename="../widgets/mainwindow.cpp" line="1470"/>
<location filename="../widgets/mainwindow.cpp" line="8921"/>
<source>File Open Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1467"/>
<location filename="../widgets/mainwindow.cpp" line="7871"/>
<location filename="../widgets/mainwindow.cpp" line="8351"/>
<location filename="../widgets/mainwindow.cpp" line="8918"/>
<location filename="../widgets/mainwindow.cpp" line="9050"/>
<location filename="../widgets/mainwindow.cpp" line="1471"/>
<location filename="../widgets/mainwindow.cpp" line="7875"/>
<location filename="../widgets/mainwindow.cpp" line="8355"/>
<location filename="../widgets/mainwindow.cpp" line="8922"/>
<location filename="../widgets/mainwindow.cpp" line="9054"/>
<source>Cannot open &quot;%1&quot; for append: %2</source>
<translation> &quot;%1&quot; : %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1570"/>
<location filename="../widgets/mainwindow.cpp" line="1574"/>
<source>Error saving c2 file</source>
<translation> c2 </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1770"/>
<location filename="../widgets/mainwindow.cpp" line="1774"/>
<source>Error in Sound Input</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1776"/>
<location filename="../widgets/mainwindow.cpp" line="1780"/>
<source>Error in Sound Output</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1840"/>
<location filename="../widgets/mainwindow.cpp" line="6105"/>
<location filename="../widgets/mainwindow.cpp" line="6255"/>
<location filename="../widgets/mainwindow.cpp" line="1844"/>
<location filename="../widgets/mainwindow.cpp" line="6109"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<source>Single-Period Decodes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1841"/>
<location filename="../widgets/mainwindow.cpp" line="6106"/>
<location filename="../widgets/mainwindow.cpp" line="6256"/>
<location filename="../widgets/mainwindow.cpp" line="1845"/>
<location filename="../widgets/mainwindow.cpp" line="6110"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<source>Average Decodes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>Change Operator</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>New operator:</source>
<translation>:</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2251"/>
<location filename="../widgets/mainwindow.cpp" line="2255"/>
<source>Status File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2252"/>
<location filename="../widgets/mainwindow.cpp" line="5506"/>
<location filename="../widgets/mainwindow.cpp" line="2256"/>
<location filename="../widgets/mainwindow.cpp" line="5510"/>
<source>Cannot open &quot;%1&quot; for writing: %2</source>
<translation> &quot;%1&quot; : %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2387"/>
<location filename="../widgets/mainwindow.cpp" line="2391"/>
<source>Subprocess Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2388"/>
<location filename="../widgets/mainwindow.cpp" line="2392"/>
<source>Subprocess failed with exit code %1</source>
<translation>, 退 %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2390"/>
<location filename="../widgets/mainwindow.cpp" line="2410"/>
<location filename="../widgets/mainwindow.cpp" line="2394"/>
<location filename="../widgets/mainwindow.cpp" line="2414"/>
<source>Running: %1
%2</source>
<translation>: %1
%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2409"/>
<location filename="../widgets/mainwindow.cpp" line="2413"/>
<source>Subprocess error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2447"/>
<location filename="../widgets/mainwindow.cpp" line="2451"/>
<source>Reference spectrum saved</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2510"/>
<location filename="../widgets/mainwindow.cpp" line="2514"/>
<source>Invalid data in fmt.all at line %1</source>
<translation> %1 fmt.all </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2516"/>
<location filename="../widgets/mainwindow.cpp" line="2520"/>
<source>Good Calibration Solution</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2517"/>
<location filename="../widgets/mainwindow.cpp" line="2521"/>
<source>&lt;pre&gt;%1%L2 ±%L3 ppm
%4%L5 ±%L6 Hz
@ -3989,37 +3984,37 @@ list. The list can be maintained in Settings (F2).</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2531"/>
<location filename="../widgets/mainwindow.cpp" line="2535"/>
<source>Delete Calibration Measurements</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2532"/>
<location filename="../widgets/mainwindow.cpp" line="2536"/>
<source>The &quot;fmt.all&quot; file will be renamed as &quot;fmt.bak&quot;</source>
<translation>&quot;fmt.all&quot; &quot;fmt.bak&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2812"/>
<location filename="../widgets/mainwindow.cpp" line="2816"/>
<source>No data read from disk. Wrong file format?</source>
<translation>. ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2819"/>
<location filename="../widgets/mainwindow.cpp" line="2823"/>
<source>Confirm Delete</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2820"/>
<location filename="../widgets/mainwindow.cpp" line="2824"/>
<source>Are you sure you want to delete all *.wav and *.c2 files in &quot;%1&quot;?</source>
<translation> *.wav *.c2 &quot;%1&quot;?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2857"/>
<location filename="../widgets/mainwindow.cpp" line="2861"/>
<source>Keyboard Shortcuts</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2859"/>
<location filename="../widgets/mainwindow.cpp" line="2863"/>
<source>&lt;table cellspacing=1&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esc &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Stop Tx, abort QSO, clear next-call queue&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;F1 &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Online User&apos;s Guide (Alt: transmit Tx6)&lt;/td&gt;&lt;/tr&gt;
@ -4069,42 +4064,42 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2915"/>
<location filename="../widgets/mainwindow.cpp" line="2919"/>
<source>Special Mouse Commands</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3254"/>
<location filename="../widgets/mainwindow.cpp" line="3258"/>
<source>No more files to open.</source>
<translation>.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3612"/>
<location filename="../widgets/mainwindow.cpp" line="3616"/>
<source>Spotting to PSK Reporter unavailable</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3770"/>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<source>Please choose another Tx frequency. WSJT-X will not knowingly transmit another mode in the WSPR sub-band on 30m.</source>
<translation>. WSJT-X WSPR 30.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<location filename="../widgets/mainwindow.cpp" line="3778"/>
<source>WSPR Guard Band</source>
<translation>WSPR保护波段</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3787"/>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<source>Please choose another dial frequency. WSJT-X will not operate in Fox mode in the standard FT8 sub-bands.</source>
<translation>. WSJT-X FT8 .</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<location filename="../widgets/mainwindow.cpp" line="3795"/>
<source>Fox Mode warning</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2544"/>
<location filename="../widgets/mainwindow.cpp" line="2548"/>
<source>If you make fair use of any part of WSJT-X under terms of the GNU General Public License, you must display the following copyright notice prominently in your derivative work:
&quot;The algorithms, source code, look-and-feel of WSJT-X and related programs, and protocol specifications for the modes FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 are Copyright (C) 2001-2020 by one or more of the following authors: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; and other members of the WSJT Development Group.&quot;</source>
@ -4113,7 +4108,12 @@ list. The list can be maintained in Settings (F2).</source>
&quot;WSJT-X , , , FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 (C) 2001-2019 由以下一个或多个作者: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; WSJT .&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2917"/>
<location filename="../widgets/mainwindow.cpp" line="487"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped in period starting %3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2921"/>
<source>&lt;table cellpadding=5&gt;
&lt;tr&gt;
&lt;th align=&quot;right&quot;&gt;Click on&lt;/th&gt;
@ -4149,12 +4149,12 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4385"/>
<location filename="../widgets/mainwindow.cpp" line="4389"/>
<source>Last Tx: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4791"/>
<location filename="../widgets/mainwindow.cpp" line="4795"/>
<source>Should you switch to EU VHF Contest mode?
To do so, check &apos;Special operating activity&apos; and
@ -4165,120 +4165,120 @@ To do so, check &apos;Special operating activity&apos; and
&apos; VHF &apos;.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4810"/>
<location filename="../widgets/mainwindow.cpp" line="4814"/>
<source>Should you switch to ARRL Field Day mode?</source>
<translation> ARRL Field Day ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4815"/>
<location filename="../widgets/mainwindow.cpp" line="4819"/>
<source>Should you switch to RTTY contest mode?</source>
<translation> RTTY ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5467"/>
<location filename="../widgets/mainwindow.cpp" line="5486"/>
<location filename="../widgets/mainwindow.cpp" line="5505"/>
<location filename="../widgets/mainwindow.cpp" line="5531"/>
<location filename="../widgets/mainwindow.cpp" line="5471"/>
<location filename="../widgets/mainwindow.cpp" line="5490"/>
<location filename="../widgets/mainwindow.cpp" line="5509"/>
<location filename="../widgets/mainwindow.cpp" line="5535"/>
<source>Add to CALL3.TXT</source>
<translation> CALL3.TXT</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5468"/>
<location filename="../widgets/mainwindow.cpp" line="5472"/>
<source>Please enter a valid grid locator</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5487"/>
<location filename="../widgets/mainwindow.cpp" line="5491"/>
<source>Cannot open &quot;%1&quot; for read/write: %2</source>
<translation> &quot;%1&quot; /: %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5529"/>
<location filename="../widgets/mainwindow.cpp" line="5533"/>
<source>%1
is already in CALL3.TXT, do you wish to replace it?</source>
<translation>%1
CALL3.TXT, ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5712"/>
<location filename="../widgets/mainwindow.cpp" line="5716"/>
<source>Warning: DX Call field is empty.</source>
<translation>警告: DX .</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5769"/>
<location filename="../widgets/mainwindow.cpp" line="5773"/>
<source>Log file error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5770"/>
<location filename="../widgets/mainwindow.cpp" line="5774"/>
<source>Cannot open &quot;%1&quot;</source>
<translation> &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5786"/>
<location filename="../widgets/mainwindow.cpp" line="5790"/>
<source>Error sending log to N1MM</source>
<translation> N1MM </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5787"/>
<location filename="../widgets/mainwindow.cpp" line="5791"/>
<source>Write returned &quot;%1&quot;</source>
<translation> &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6006"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<source>Stations calling DXpedition %1</source>
<translation> %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6041"/>
<location filename="../widgets/mainwindow.cpp" line="6045"/>
<source>Hound</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6389"/>
<location filename="../widgets/mainwindow.cpp" line="6393"/>
<source>Tx Messages</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6633"/>
<location filename="../widgets/mainwindow.cpp" line="6666"/>
<location filename="../widgets/mainwindow.cpp" line="6676"/>
<location filename="../widgets/mainwindow.cpp" line="6637"/>
<location filename="../widgets/mainwindow.cpp" line="6670"/>
<location filename="../widgets/mainwindow.cpp" line="6680"/>
<source>Confirm Erase</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6634"/>
<location filename="../widgets/mainwindow.cpp" line="6638"/>
<source>Are you sure you want to erase file ALL.TXT?</source>
<translation> ALL.TXT ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6644"/>
<location filename="../widgets/mainwindow.cpp" line="8396"/>
<location filename="../widgets/mainwindow.cpp" line="6648"/>
<location filename="../widgets/mainwindow.cpp" line="8400"/>
<source>Confirm Reset</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6645"/>
<location filename="../widgets/mainwindow.cpp" line="6649"/>
<source>Are you sure you want to erase your contest log?</source>
<translation>?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6646"/>
<location filename="../widgets/mainwindow.cpp" line="6650"/>
<source>Doing this will remove all QSO records for the current contest. They will be kept in the ADIF log file but will not be available for export in your Cabrillo log.</source>
<translation>. ADIF , .</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6659"/>
<location filename="../widgets/mainwindow.cpp" line="6663"/>
<source>Cabrillo Log saved</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6667"/>
<location filename="../widgets/mainwindow.cpp" line="6671"/>
<source>Are you sure you want to erase file wsjtx_log.adi?</source>
<translation> wsjtx_log.adi ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6677"/>
<location filename="../widgets/mainwindow.cpp" line="6681"/>
<source>Are you sure you want to erase the WSPR hashtable?</source>
<translation> WSPR ?</translation>
</message>
@ -4287,60 +4287,60 @@ is already in CALL3.TXT, do you wish to replace it?</source>
<translation type="vanished">VHF </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7264"/>
<location filename="../widgets/mainwindow.cpp" line="7268"/>
<source>Tune digital gain </source>
<translation> </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7266"/>
<location filename="../widgets/mainwindow.cpp" line="7270"/>
<source>Transmit digital gain </source>
<translation> </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7285"/>
<location filename="../widgets/mainwindow.cpp" line="7289"/>
<source>Prefixes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7709"/>
<location filename="../widgets/mainwindow.cpp" line="7713"/>
<source>Network Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7710"/>
<location filename="../widgets/mainwindow.cpp" line="7714"/>
<source>Error: %1
UDP server %2:%3</source>
<translation>: %1
UDP %2:%3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7870"/>
<location filename="../widgets/mainwindow.cpp" line="7874"/>
<source>File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8149"/>
<location filename="../widgets/mainwindow.cpp" line="8153"/>
<source>Phase Training Disabled</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8152"/>
<location filename="../widgets/mainwindow.cpp" line="8156"/>
<source>Phase Training Enabled</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8286"/>
<location filename="../widgets/mainwindow.cpp" line="8290"/>
<source>WD:%1m</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8354"/>
<location filename="../widgets/mainwindow.cpp" line="9053"/>
<location filename="../widgets/mainwindow.cpp" line="8358"/>
<location filename="../widgets/mainwindow.cpp" line="9057"/>
<source>Log File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8397"/>
<location filename="../widgets/mainwindow.cpp" line="8401"/>
<source>Are you sure you want to clear the QSO queues?</source>
<translation>?</translation>
</message>
@ -4691,67 +4691,67 @@ Error(%2): %3</source>
<context>
<name>SoundInput</name>
<message>
<location filename="../Audio/soundin.cpp" line="21"/>
<location filename="../Audio/soundin.cpp" line="23"/>
<source>An error opening the audio input device has occurred.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="25"/>
<location filename="../Audio/soundin.cpp" line="27"/>
<source>An error occurred during read from the audio input device.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="29"/>
<location filename="../Audio/soundin.cpp" line="31"/>
<source>Audio data not being fed to the audio input device fast enough.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="33"/>
<location filename="../Audio/soundin.cpp" line="35"/>
<source>Non-recoverable error, audio input device not usable at this time.</source>
<translation>, .</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="63"/>
<location filename="../Audio/soundin.cpp" line="65"/>
<source>Requested input audio format is not valid.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="69"/>
<location filename="../Audio/soundin.cpp" line="71"/>
<source>Requested input audio format is not supported on device.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="99"/>
<location filename="../Audio/soundin.cpp" line="101"/>
<source>Failed to initialize audio sink device</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="134"/>
<location filename="../Audio/soundin.cpp" line="136"/>
<source>Idle</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="139"/>
<location filename="../Audio/soundin.cpp" line="141"/>
<source>Receiving</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="143"/>
<location filename="../Audio/soundin.cpp" line="145"/>
<source>Suspended</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="148"/>
<location filename="../Audio/soundin.cpp" line="150"/>
<source>Interrupted</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="155"/>
<location filename="../Audio/soundin.cpp" line="157"/>
<source>Error</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="159"/>
<location filename="../Audio/soundin.cpp" line="161"/>
<source>Stopped</source>
<translation></translation>
</message>

View File

@ -421,22 +421,22 @@
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1712"/>
<location filename="../Configuration.cpp" line="1718"/>
<source>Serial Port:</source>
<translation>:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1713"/>
<location filename="../Configuration.cpp" line="1719"/>
<source>Serial port used for CAT control</source>
<translation>CAT控制的串行端口</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1720"/>
<location filename="../Configuration.cpp" line="1726"/>
<source>Network Server:</source>
<translation>:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1721"/>
<location filename="../Configuration.cpp" line="1727"/>
<source>Optional hostname and port of network service.
Leave blank for a sensible default on this machine.
Formats:
@ -451,12 +451,12 @@ Formats:
[IPv6-]:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1733"/>
<location filename="../Configuration.cpp" line="1739"/>
<source>USB Device:</source>
<translation>USB設備:</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1734"/>
<location filename="../Configuration.cpp" line="1740"/>
<source>Optional device identification.
Leave blank for a sensible default for the rig.
Format:
@ -467,8 +467,8 @@ Format:
[VID[:PID[:[:]]]]</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1770"/>
<location filename="../Configuration.cpp" line="1778"/>
<location filename="../Configuration.cpp" line="1776"/>
<location filename="../Configuration.cpp" line="1784"/>
<source>Invalid audio input device</source>
<translation></translation>
</message>
@ -477,147 +477,147 @@ Format:
<translation type="vanished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1786"/>
<location filename="../Configuration.cpp" line="1792"/>
<source>Invalid audio output device</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1792"/>
<location filename="../Configuration.cpp" line="1798"/>
<source>Invalid PTT method</source>
<translation>PTT方法</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1802"/>
<location filename="../Configuration.cpp" line="1808"/>
<source>Invalid PTT port</source>
<translation>PTT端口</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1810"/>
<location filename="../Configuration.cpp" line="1819"/>
<location filename="../Configuration.cpp" line="1816"/>
<location filename="../Configuration.cpp" line="1825"/>
<source>Invalid Contest Exchange</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1811"/>
<location filename="../Configuration.cpp" line="1817"/>
<source>You must input a valid ARRL Field Day exchange</source>
<translation> ARRL Field Day交換數據</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="1820"/>
<location filename="../Configuration.cpp" line="1826"/>
<source>You must input a valid ARRL RTTY Roundup exchange</source>
<translation> ARRL RTTY Roundup </translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2118"/>
<location filename="../Configuration.cpp" line="2126"/>
<source>Reset Decode Highlighting</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2119"/>
<location filename="../Configuration.cpp" line="2127"/>
<source>Reset all decode highlighting and priorities to default values</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2139"/>
<location filename="../Configuration.cpp" line="2147"/>
<source>WSJT-X Decoded Text Font Chooser</source>
<translation>WSJT-X </translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2314"/>
<source>Load Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2306"/>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2333"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Frequency files (*.qrg);;All files (*.*)</source>
<translation> (*.qrg);; (*.*)</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2313"/>
<location filename="../Configuration.cpp" line="2321"/>
<source>Replace Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2314"/>
<location filename="../Configuration.cpp" line="2322"/>
<source>Are you sure you want to discard your current working frequencies and replace them with the loaded ones?</source>
<translation>, ?</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2325"/>
<location filename="../Configuration.cpp" line="2333"/>
<source>Merge Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2350"/>
<location filename="../Configuration.cpp" line="2359"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Not a valid frequencies file</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2342"/>
<location filename="../Configuration.cpp" line="2350"/>
<source>Incorrect file magic</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2351"/>
<location filename="../Configuration.cpp" line="2359"/>
<source>Version is too new</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2361"/>
<location filename="../Configuration.cpp" line="2369"/>
<source>Contents corrupt</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2371"/>
<location filename="../Configuration.cpp" line="2379"/>
<source>Save Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2380"/>
<location filename="../Configuration.cpp" line="2388"/>
<source>Only Save Selected Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2381"/>
<location filename="../Configuration.cpp" line="2389"/>
<source>Are you sure you want to save only the working frequencies that are currently selected? Click No to save all.</source>
<translation>? .</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2397"/>
<location filename="../Configuration.cpp" line="2405"/>
<source>Reset Working Frequencies</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2398"/>
<location filename="../Configuration.cpp" line="2406"/>
<source>Are you sure you want to discard your current working frequencies and replace them with default ones?</source>
<translation>?</translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2436"/>
<location filename="../Configuration.cpp" line="2444"/>
<source>Save Directory</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2450"/>
<location filename="../Configuration.cpp" line="2458"/>
<source>AzEl Directory</source>
<translation>AzEl </translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2510"/>
<location filename="../Configuration.cpp" line="2518"/>
<source>Rig control error</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2511"/>
<location filename="../Configuration.cpp" line="2519"/>
<source>Failed to open connection to rig</source>
<translation></translation>
</message>
<message>
<location filename="../Configuration.cpp" line="2729"/>
<location filename="../Configuration.cpp" line="2737"/>
<source>Rig failure</source>
<translation></translation>
</message>
@ -2076,13 +2076,13 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="50"/>
<location filename="../widgets/mainwindow.cpp" line="5887"/>
<location filename="../widgets/mainwindow.cpp" line="5961"/>
<location filename="../widgets/mainwindow.cpp" line="6009"/>
<location filename="../widgets/mainwindow.cpp" line="6171"/>
<location filename="../widgets/mainwindow.cpp" line="6211"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="5891"/>
<location filename="../widgets/mainwindow.cpp" line="5965"/>
<location filename="../widgets/mainwindow.cpp" line="6013"/>
<location filename="../widgets/mainwindow.cpp" line="6175"/>
<location filename="../widgets/mainwindow.cpp" line="6215"/>
<location filename="../widgets/mainwindow.cpp" line="6263"/>
<location filename="../widgets/mainwindow.cpp" line="6392"/>
<source>Band Activity</source>
<translation></translation>
</message>
@ -2094,12 +2094,12 @@ Error(%2): %3</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="194"/>
<location filename="../widgets/mainwindow.cpp" line="5888"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6172"/>
<location filename="../widgets/mainwindow.cpp" line="6212"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<location filename="../widgets/mainwindow.cpp" line="5892"/>
<location filename="../widgets/mainwindow.cpp" line="5964"/>
<location filename="../widgets/mainwindow.cpp" line="6008"/>
<location filename="../widgets/mainwindow.cpp" line="6176"/>
<location filename="../widgets/mainwindow.cpp" line="6216"/>
<location filename="../widgets/mainwindow.cpp" line="6264"/>
<source>Rx Frequency</source>
<translation></translation>
</message>
@ -2682,7 +2682,7 @@ Not available to nonstandard callsign holders.</source>
</message>
<message>
<location filename="../widgets/mainwindow.ui" line="986"/>
<location filename="../widgets/mainwindow.cpp" line="6031"/>
<location filename="../widgets/mainwindow.cpp" line="6035"/>
<source>Fox</source>
<translation></translation>
</message>
@ -3221,10 +3221,10 @@ list. The list can be maintained in Settings (F2).</source>
<location filename="../widgets/mainwindow.ui" line="1732"/>
<location filename="../widgets/mainwindow.ui" line="1739"/>
<location filename="../widgets/mainwindow.ui" line="1959"/>
<location filename="../widgets/mainwindow.cpp" line="1240"/>
<location filename="../widgets/mainwindow.cpp" line="5645"/>
<location filename="../widgets/mainwindow.cpp" line="6544"/>
<location filename="../widgets/mainwindow.cpp" line="7965"/>
<location filename="../widgets/mainwindow.cpp" line="1244"/>
<location filename="../widgets/mainwindow.cpp" line="5649"/>
<location filename="../widgets/mainwindow.cpp" line="6548"/>
<location filename="../widgets/mainwindow.cpp" line="7969"/>
<source>Random</source>
<translation></translation>
</message>
@ -3512,7 +3512,7 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="vanished"> 73 </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8271"/>
<location filename="../widgets/mainwindow.cpp" line="8275"/>
<source>Runaway Tx watchdog</source>
<translation></translation>
</message>
@ -3772,8 +3772,8 @@ list. The list can be maintained in Settings (F2).</source>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="336"/>
<location filename="../widgets/mainwindow.cpp" line="4281"/>
<location filename="../widgets/mainwindow.cpp" line="7742"/>
<location filename="../widgets/mainwindow.cpp" line="4285"/>
<location filename="../widgets/mainwindow.cpp" line="7746"/>
<source>Receiving</source>
<translation></translation>
</message>
@ -3788,199 +3788,194 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="484"/>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<source>Audio Source</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="485"/>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Reduce system load</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="486"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="517"/>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<source>Error Scanning ADIF Log</source>
<translation> ADIF </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="521"/>
<location filename="../widgets/mainwindow.cpp" line="525"/>
<source>Scanned ADIF log, %1 worked before records created</source>
<translation> ADIF , %1 </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="631"/>
<location filename="../widgets/mainwindow.cpp" line="635"/>
<source>Error Loading LotW Users Data</source>
<translation> LotW 使</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="750"/>
<location filename="../widgets/mainwindow.cpp" line="754"/>
<source>Error Writing WAV File</source>
<translation> WAV </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="793"/>
<location filename="../widgets/mainwindow.cpp" line="797"/>
<source>Configurations...</source>
<translation>...</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="862"/>
<location filename="../widgets/mainwindow.cpp" line="5956"/>
<location filename="../widgets/mainwindow.cpp" line="5962"/>
<location filename="../widgets/mainwindow.cpp" line="6000"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<location filename="../widgets/mainwindow.cpp" line="6107"/>
<location filename="../widgets/mainwindow.cpp" line="6108"/>
<location filename="../widgets/mainwindow.cpp" line="6157"/>
<location filename="../widgets/mainwindow.cpp" line="6158"/>
<location filename="../widgets/mainwindow.cpp" line="6164"/>
<location filename="../widgets/mainwindow.cpp" line="6165"/>
<location filename="../widgets/mainwindow.cpp" line="6213"/>
<location filename="../widgets/mainwindow.cpp" line="6214"/>
<location filename="../widgets/mainwindow.cpp" line="6383"/>
<location filename="../widgets/mainwindow.cpp" line="6384"/>
<location filename="../widgets/mainwindow.cpp" line="7424"/>
<location filename="../widgets/mainwindow.cpp" line="7427"/>
<location filename="../widgets/mainwindow.cpp" line="7432"/>
<location filename="../widgets/mainwindow.cpp" line="7435"/>
<location filename="../widgets/mainwindow.cpp" line="866"/>
<location filename="../widgets/mainwindow.cpp" line="5960"/>
<location filename="../widgets/mainwindow.cpp" line="5966"/>
<location filename="../widgets/mainwindow.cpp" line="6004"/>
<location filename="../widgets/mainwindow.cpp" line="6014"/>
<location filename="../widgets/mainwindow.cpp" line="6111"/>
<location filename="../widgets/mainwindow.cpp" line="6112"/>
<location filename="../widgets/mainwindow.cpp" line="6161"/>
<location filename="../widgets/mainwindow.cpp" line="6162"/>
<location filename="../widgets/mainwindow.cpp" line="6168"/>
<location filename="../widgets/mainwindow.cpp" line="6169"/>
<location filename="../widgets/mainwindow.cpp" line="6217"/>
<location filename="../widgets/mainwindow.cpp" line="6218"/>
<location filename="../widgets/mainwindow.cpp" line="6387"/>
<location filename="../widgets/mainwindow.cpp" line="6388"/>
<location filename="../widgets/mainwindow.cpp" line="7428"/>
<location filename="../widgets/mainwindow.cpp" line="7431"/>
<location filename="../widgets/mainwindow.cpp" line="7436"/>
<location filename="../widgets/mainwindow.cpp" line="7439"/>
<source>Message</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="876"/>
<location filename="../widgets/mainwindow.cpp" line="880"/>
<source>Error Killing jt9.exe Process</source>
<translation> jt9.exe </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="877"/>
<location filename="../widgets/mainwindow.cpp" line="881"/>
<source>KillByName return code: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="892"/>
<location filename="../widgets/mainwindow.cpp" line="896"/>
<source>Error removing &quot;%1&quot;</source>
<translation> &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="893"/>
<location filename="../widgets/mainwindow.cpp" line="897"/>
<source>Click OK to retry</source>
<translation> </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1296"/>
<location filename="../widgets/mainwindow.cpp" line="6357"/>
<location filename="../widgets/mainwindow.cpp" line="1300"/>
<location filename="../widgets/mainwindow.cpp" line="6361"/>
<source>Improper mode</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1466"/>
<location filename="../widgets/mainwindow.cpp" line="8917"/>
<location filename="../widgets/mainwindow.cpp" line="1470"/>
<location filename="../widgets/mainwindow.cpp" line="8921"/>
<source>File Open Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1467"/>
<location filename="../widgets/mainwindow.cpp" line="7871"/>
<location filename="../widgets/mainwindow.cpp" line="8351"/>
<location filename="../widgets/mainwindow.cpp" line="8918"/>
<location filename="../widgets/mainwindow.cpp" line="9050"/>
<location filename="../widgets/mainwindow.cpp" line="1471"/>
<location filename="../widgets/mainwindow.cpp" line="7875"/>
<location filename="../widgets/mainwindow.cpp" line="8355"/>
<location filename="../widgets/mainwindow.cpp" line="8922"/>
<location filename="../widgets/mainwindow.cpp" line="9054"/>
<source>Cannot open &quot;%1&quot; for append: %2</source>
<translation> &quot;%1&quot; : %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1570"/>
<location filename="../widgets/mainwindow.cpp" line="1574"/>
<source>Error saving c2 file</source>
<translation>c2檔案出錯誤</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1770"/>
<location filename="../widgets/mainwindow.cpp" line="1774"/>
<source>Error in Sound Input</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1776"/>
<location filename="../widgets/mainwindow.cpp" line="1780"/>
<source>Error in Sound Output</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1840"/>
<location filename="../widgets/mainwindow.cpp" line="6105"/>
<location filename="../widgets/mainwindow.cpp" line="6255"/>
<location filename="../widgets/mainwindow.cpp" line="1844"/>
<location filename="../widgets/mainwindow.cpp" line="6109"/>
<location filename="../widgets/mainwindow.cpp" line="6259"/>
<source>Single-Period Decodes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="1841"/>
<location filename="../widgets/mainwindow.cpp" line="6106"/>
<location filename="../widgets/mainwindow.cpp" line="6256"/>
<location filename="../widgets/mainwindow.cpp" line="1845"/>
<location filename="../widgets/mainwindow.cpp" line="6110"/>
<location filename="../widgets/mainwindow.cpp" line="6260"/>
<source>Average Decodes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>Change Operator</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2135"/>
<location filename="../widgets/mainwindow.cpp" line="2139"/>
<source>New operator:</source>
<translation>:</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2251"/>
<location filename="../widgets/mainwindow.cpp" line="2255"/>
<source>Status File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2252"/>
<location filename="../widgets/mainwindow.cpp" line="5506"/>
<location filename="../widgets/mainwindow.cpp" line="2256"/>
<location filename="../widgets/mainwindow.cpp" line="5510"/>
<source>Cannot open &quot;%1&quot; for writing: %2</source>
<translation> &quot;%1&quot; : %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2387"/>
<location filename="../widgets/mainwindow.cpp" line="2391"/>
<source>Subprocess Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2388"/>
<location filename="../widgets/mainwindow.cpp" line="2392"/>
<source>Subprocess failed with exit code %1</source>
<translation>, 退 %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2390"/>
<location filename="../widgets/mainwindow.cpp" line="2410"/>
<location filename="../widgets/mainwindow.cpp" line="2394"/>
<location filename="../widgets/mainwindow.cpp" line="2414"/>
<source>Running: %1
%2</source>
<translation>: %1
%2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2409"/>
<location filename="../widgets/mainwindow.cpp" line="2413"/>
<source>Subprocess error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2447"/>
<location filename="../widgets/mainwindow.cpp" line="2451"/>
<source>Reference spectrum saved</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2510"/>
<location filename="../widgets/mainwindow.cpp" line="2514"/>
<source>Invalid data in fmt.all at line %1</source>
<translation> %1 fmt.all </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2516"/>
<location filename="../widgets/mainwindow.cpp" line="2520"/>
<source>Good Calibration Solution</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2517"/>
<location filename="../widgets/mainwindow.cpp" line="2521"/>
<source>&lt;pre&gt;%1%L2 ±%L3 ppm
%4%L5 ±%L6 Hz
@ -3989,37 +3984,37 @@ list. The list can be maintained in Settings (F2).</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2531"/>
<location filename="../widgets/mainwindow.cpp" line="2535"/>
<source>Delete Calibration Measurements</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2532"/>
<location filename="../widgets/mainwindow.cpp" line="2536"/>
<source>The &quot;fmt.all&quot; file will be renamed as &quot;fmt.bak&quot;</source>
<translation>&quot;fmt.all&quot; &quot;fmt.bak&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2812"/>
<location filename="../widgets/mainwindow.cpp" line="2816"/>
<source>No data read from disk. Wrong file format?</source>
<translation>. ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2819"/>
<location filename="../widgets/mainwindow.cpp" line="2823"/>
<source>Confirm Delete</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2820"/>
<location filename="../widgets/mainwindow.cpp" line="2824"/>
<source>Are you sure you want to delete all *.wav and *.c2 files in &quot;%1&quot;?</source>
<translation> *.wav *.c2 &quot;%1&quot;?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2857"/>
<location filename="../widgets/mainwindow.cpp" line="2861"/>
<source>Keyboard Shortcuts</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2859"/>
<location filename="../widgets/mainwindow.cpp" line="2863"/>
<source>&lt;table cellspacing=1&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esc &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Stop Tx, abort QSO, clear next-call queue&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;b&gt;F1 &lt;/b&gt;&lt;/td&gt;&lt;td&gt;Online User&apos;s Guide (Alt: transmit Tx6)&lt;/td&gt;&lt;/tr&gt;
@ -4069,42 +4064,42 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2915"/>
<location filename="../widgets/mainwindow.cpp" line="2919"/>
<source>Special Mouse Commands</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3254"/>
<location filename="../widgets/mainwindow.cpp" line="3258"/>
<source>No more files to open.</source>
<translation>.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3612"/>
<location filename="../widgets/mainwindow.cpp" line="3616"/>
<source>Spotting to PSK Reporter unavailable</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3770"/>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<source>Please choose another Tx frequency. WSJT-X will not knowingly transmit another mode in the WSPR sub-band on 30m.</source>
<translation>. WSJT-X WSPR 30.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3774"/>
<location filename="../widgets/mainwindow.cpp" line="3778"/>
<source>WSPR Guard Band</source>
<translation>WSPR保護波段</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3787"/>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<source>Please choose another dial frequency. WSJT-X will not operate in Fox mode in the standard FT8 sub-bands.</source>
<translation>. WSJT-X FT8 .</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="3791"/>
<location filename="../widgets/mainwindow.cpp" line="3795"/>
<source>Fox Mode warning</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2544"/>
<location filename="../widgets/mainwindow.cpp" line="2548"/>
<source>If you make fair use of any part of WSJT-X under terms of the GNU General Public License, you must display the following copyright notice prominently in your derivative work:
&quot;The algorithms, source code, look-and-feel of WSJT-X and related programs, and protocol specifications for the modes FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 are Copyright (C) 2001-2020 by one or more of the following authors: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; and other members of the WSJT Development Group.&quot;</source>
@ -4113,7 +4108,12 @@ list. The list can be maintained in Settings (F2).</source>
&quot;WSJT-X , , , FSK441, FT8, JT4, JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 (C) 2001-2019 由以下一個或多個作者: Joseph Taylor, K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo, IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR; Philip Karn, KA9Q; WSJT .&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2917"/>
<location filename="../widgets/mainwindow.cpp" line="487"/>
<source>Excessive dropped samples - %1 (%2 sec) audio frames dropped in period starting %3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="2921"/>
<source>&lt;table cellpadding=5&gt;
&lt;tr&gt;
&lt;th align=&quot;right&quot;&gt;Click on&lt;/th&gt;
@ -4149,12 +4149,12 @@ list. The list can be maintained in Settings (F2).</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4385"/>
<location filename="../widgets/mainwindow.cpp" line="4389"/>
<source>Last Tx: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4791"/>
<location filename="../widgets/mainwindow.cpp" line="4795"/>
<source>Should you switch to EU VHF Contest mode?
To do so, check &apos;Special operating activity&apos; and
@ -4165,120 +4165,120 @@ To do so, check &apos;Special operating activity&apos; and
&apos; VHF &apos;.</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4810"/>
<location filename="../widgets/mainwindow.cpp" line="4814"/>
<source>Should you switch to ARRL Field Day mode?</source>
<translation> ARRL Field Day ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="4815"/>
<location filename="../widgets/mainwindow.cpp" line="4819"/>
<source>Should you switch to RTTY contest mode?</source>
<translation> RTTY ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5467"/>
<location filename="../widgets/mainwindow.cpp" line="5486"/>
<location filename="../widgets/mainwindow.cpp" line="5505"/>
<location filename="../widgets/mainwindow.cpp" line="5531"/>
<location filename="../widgets/mainwindow.cpp" line="5471"/>
<location filename="../widgets/mainwindow.cpp" line="5490"/>
<location filename="../widgets/mainwindow.cpp" line="5509"/>
<location filename="../widgets/mainwindow.cpp" line="5535"/>
<source>Add to CALL3.TXT</source>
<translation> CALL3.TXT</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5468"/>
<location filename="../widgets/mainwindow.cpp" line="5472"/>
<source>Please enter a valid grid locator</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5487"/>
<location filename="../widgets/mainwindow.cpp" line="5491"/>
<source>Cannot open &quot;%1&quot; for read/write: %2</source>
<translation> &quot;%1&quot; /: %2</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5529"/>
<location filename="../widgets/mainwindow.cpp" line="5533"/>
<source>%1
is already in CALL3.TXT, do you wish to replace it?</source>
<translation>%1
CALL3.TXT, ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5712"/>
<location filename="../widgets/mainwindow.cpp" line="5716"/>
<source>Warning: DX Call field is empty.</source>
<translation>警告: DX .</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5769"/>
<location filename="../widgets/mainwindow.cpp" line="5773"/>
<source>Log file error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5770"/>
<location filename="../widgets/mainwindow.cpp" line="5774"/>
<source>Cannot open &quot;%1&quot;</source>
<translation> &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5786"/>
<location filename="../widgets/mainwindow.cpp" line="5790"/>
<source>Error sending log to N1MM</source>
<translation> N1MM </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="5787"/>
<location filename="../widgets/mainwindow.cpp" line="5791"/>
<source>Write returned &quot;%1&quot;</source>
<translation> &quot;%1&quot;</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6006"/>
<location filename="../widgets/mainwindow.cpp" line="6010"/>
<source>Stations calling DXpedition %1</source>
<translation> %1</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6041"/>
<location filename="../widgets/mainwindow.cpp" line="6045"/>
<source>Hound</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6389"/>
<location filename="../widgets/mainwindow.cpp" line="6393"/>
<source>Tx Messages</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6633"/>
<location filename="../widgets/mainwindow.cpp" line="6666"/>
<location filename="../widgets/mainwindow.cpp" line="6676"/>
<location filename="../widgets/mainwindow.cpp" line="6637"/>
<location filename="../widgets/mainwindow.cpp" line="6670"/>
<location filename="../widgets/mainwindow.cpp" line="6680"/>
<source>Confirm Erase</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6634"/>
<location filename="../widgets/mainwindow.cpp" line="6638"/>
<source>Are you sure you want to erase file ALL.TXT?</source>
<translation> ALL.Txt ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6644"/>
<location filename="../widgets/mainwindow.cpp" line="8396"/>
<location filename="../widgets/mainwindow.cpp" line="6648"/>
<location filename="../widgets/mainwindow.cpp" line="8400"/>
<source>Confirm Reset</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6645"/>
<location filename="../widgets/mainwindow.cpp" line="6649"/>
<source>Are you sure you want to erase your contest log?</source>
<translation>?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6646"/>
<location filename="../widgets/mainwindow.cpp" line="6650"/>
<source>Doing this will remove all QSO records for the current contest. They will be kept in the ADIF log file but will not be available for export in your Cabrillo log.</source>
<translation>. ADIF , .</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6659"/>
<location filename="../widgets/mainwindow.cpp" line="6663"/>
<source>Cabrillo Log saved</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6667"/>
<location filename="../widgets/mainwindow.cpp" line="6671"/>
<source>Are you sure you want to erase file wsjtx_log.adi?</source>
<translation> wsjtx_log.adi ?</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="6677"/>
<location filename="../widgets/mainwindow.cpp" line="6681"/>
<source>Are you sure you want to erase the WSPR hashtable?</source>
<translation> WSPR ?</translation>
</message>
@ -4287,60 +4287,60 @@ is already in CALL3.TXT, do you wish to replace it?</source>
<translation type="vanished">VHF </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7264"/>
<location filename="../widgets/mainwindow.cpp" line="7268"/>
<source>Tune digital gain </source>
<translation>調 </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7266"/>
<location filename="../widgets/mainwindow.cpp" line="7270"/>
<source>Transmit digital gain </source>
<translation> </translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7285"/>
<location filename="../widgets/mainwindow.cpp" line="7289"/>
<source>Prefixes</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7709"/>
<location filename="../widgets/mainwindow.cpp" line="7713"/>
<source>Network Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7710"/>
<location filename="../widgets/mainwindow.cpp" line="7714"/>
<source>Error: %1
UDP server %2:%3</source>
<translation>: %1
UDP %2:%3</translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="7870"/>
<location filename="../widgets/mainwindow.cpp" line="7874"/>
<source>File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8149"/>
<location filename="../widgets/mainwindow.cpp" line="8153"/>
<source>Phase Training Disabled</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8152"/>
<location filename="../widgets/mainwindow.cpp" line="8156"/>
<source>Phase Training Enabled</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8286"/>
<location filename="../widgets/mainwindow.cpp" line="8290"/>
<source>WD:%1m</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8354"/>
<location filename="../widgets/mainwindow.cpp" line="9053"/>
<location filename="../widgets/mainwindow.cpp" line="8358"/>
<location filename="../widgets/mainwindow.cpp" line="9057"/>
<source>Log File Error</source>
<translation></translation>
</message>
<message>
<location filename="../widgets/mainwindow.cpp" line="8397"/>
<location filename="../widgets/mainwindow.cpp" line="8401"/>
<source>Are you sure you want to clear the QSO queues?</source>
<translation>?</translation>
</message>
@ -4691,67 +4691,67 @@ Error(%2): %3</source>
<context>
<name>SoundInput</name>
<message>
<location filename="../Audio/soundin.cpp" line="21"/>
<location filename="../Audio/soundin.cpp" line="23"/>
<source>An error opening the audio input device has occurred.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="25"/>
<location filename="../Audio/soundin.cpp" line="27"/>
<source>An error occurred during read from the audio input device.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="29"/>
<location filename="../Audio/soundin.cpp" line="31"/>
<source>Audio data not being fed to the audio input device fast enough.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="33"/>
<location filename="../Audio/soundin.cpp" line="35"/>
<source>Non-recoverable error, audio input device not usable at this time.</source>
<translation>, .</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="63"/>
<location filename="../Audio/soundin.cpp" line="65"/>
<source>Requested input audio format is not valid.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="69"/>
<location filename="../Audio/soundin.cpp" line="71"/>
<source>Requested input audio format is not supported on device.</source>
<translation>.</translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="99"/>
<location filename="../Audio/soundin.cpp" line="101"/>
<source>Failed to initialize audio sink device</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="134"/>
<location filename="../Audio/soundin.cpp" line="136"/>
<source>Idle</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="139"/>
<location filename="../Audio/soundin.cpp" line="141"/>
<source>Receiving</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="143"/>
<location filename="../Audio/soundin.cpp" line="145"/>
<source>Suspended</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="148"/>
<location filename="../Audio/soundin.cpp" line="150"/>
<source>Interrupted</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="155"/>
<location filename="../Audio/soundin.cpp" line="157"/>
<source>Error</source>
<translation></translation>
</message>
<message>
<location filename="../Audio/soundin.cpp" line="159"/>
<location filename="../Audio/soundin.cpp" line="161"/>
<source>Stopped</source>
<translation></translation>
</message>

View File

@ -480,10 +480,14 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
}
if (dropped_frames > 48000) // 1 second
{
auto period = qt_truncate_date_time_to (QDateTime::currentDateTimeUtc ().addMSecs (-m_TRperiod / 2.), m_TRperiod * 1e3);
MessageBox::warning_message (this
, tr ("Audio Source")
, tr ("Reduce system load")
, tr ("Excessive dropped samples - %1 (%2 sec) audio frames dropped").arg (dropped_frames).arg (usec / 1.e6, 5, 'f', 3));
, tr ("Excessive dropped samples - %1 (%2 sec) audio frames dropped in period starting %3")
.arg (dropped_frames)
.arg (usec / 1.e6, 5, 'f', 3)
.arg (period.toString ("hh:mm:ss")));
}
});
connect (&m_audioThread, &QThread::finished, m_soundInput, &QObject::deleteLater);