diff --git a/doc/dmrconf.in.xml b/doc/dmrconf.in.xml index 5a710283..47c69efd 100644 --- a/doc/dmrconf.in.xml +++ b/doc/dmrconf.in.xml @@ -38,9 +38,9 @@ dmrconf is a command-line tool to program DMR radios. That is, generating and uploading codeplugs to these radios. To this end, dmrconf uses a common human-readable text format to describe the codeplug for all supported radios (see - below). This allows to share codeplugs between different radios. + below). This allows one to share codeplugs between different radios. - Additionally, dmrconf also allows to download codeplugs from the radio + Additionally, dmrconf also allows one to download codeplugs from the radio and to store it in the human-readable text format. diff --git a/lib/channel.hh b/lib/channel.hh index ca43a3ab..f3541761 100644 --- a/lib/channel.hh +++ b/lib/channel.hh @@ -320,7 +320,7 @@ class DigitalChannel: public Channel public: /** Possible admit criteria of digital channels. */ enum class Admit { - Always, ///< No admit criteria, allows to transmit any time. + Always, ///< No admit criteria, allows one to transmit any time. Free, ///< Transmit only if channel is free. ColorCode ///< Transmit only if channel is free and matches given color code. }; diff --git a/lib/configobject.cc b/lib/configobject.cc index 20fa8995..731f9e3c 100644 --- a/lib/configobject.cc +++ b/lib/configobject.cc @@ -540,7 +540,7 @@ ConfigItem::link(const YAML::Node &node, const ConfigItem::Context &ctx, const E if (! ref->set(ctx.getTag(prop.enclosingMetaObject()->className(), prop.name(), tag))) { errMsg(err) << node[prop.name()].Mark().line << ":" << node[prop.name()].Mark().column << ": Cannot link " << prop.name() << " of " << meta->className() - << ": Uknown tag " << tag << "."; + << ": Unknown tag " << tag << "."; return false; } continue; diff --git a/lib/d878uv_codeplug.hh b/lib/d878uv_codeplug.hh index 65bdf455..68b263df 100644 --- a/lib/d878uv_codeplug.hh +++ b/lib/d878uv_codeplug.hh @@ -18,7 +18,7 @@ class GPSSystem; /** Represents the device specific binary codeplug for Anytone AT-D878UV radios. * * In contrast to many other code-plugs, the code-plug for Anytone radios are spread over a large - * memory area. In principle, this is a good idea, as it allows to upload only the portion of the + * memory area. In principle, this is a good idea, as it allows one to upload only the portion of the * codeplug that is actually configured. For example, if only a small portion of the available * contacts and channels are used, the amount of data that is written to the device can be * reduced. diff --git a/lib/dfu_libusb.cc b/lib/dfu_libusb.cc index f61e220a..fd9af67f 100644 --- a/lib/dfu_libusb.cc +++ b/lib/dfu_libusb.cc @@ -56,7 +56,7 @@ DFUDevice::DFUDevice(unsigned vid, unsigned pid, const ErrorStack &err, QObject } if (libusb_kernel_driver_active(_dev, 0) && libusb_detach_kernel_driver(_dev, 0)) { - errMsg(err) << "Cannot detatch kernel driver for device " << QString::number(vid, 16) + errMsg(err) << "Cannot detach kernel driver for device " << QString::number(vid, 16) << ":" << QString::number(pid, 16) << ". Interface claim will likely fail."; } @@ -128,7 +128,7 @@ DFUDevice::detach(int timeout, const ErrorStack &err) int error = libusb_control_transfer( _dev, REQUEST_TYPE_TO_DEVICE, REQUEST_DETACH, timeout, 0, nullptr, 0, 0); if (0 > error) { - errMsg(err) << "Cannot detatch device: " << libusb_strerror((enum libusb_error) error) << "."; + errMsg(err) << "Cannot detach device: " << libusb_strerror((enum libusb_error) error) << "."; return error; } return 0; diff --git a/lib/radioddity_codeplug.hh b/lib/radioddity_codeplug.hh index d94b97fb..5bde85ee 100644 --- a/lib/radioddity_codeplug.hh +++ b/lib/radioddity_codeplug.hh @@ -797,7 +797,7 @@ public: virtual bool resetTone() const; /** Enables/disables reset tone. */ virtual void enableResetTone(bool enable); - /** Returns @c true if the uknown number tone is enabled. */ + /** Returns @c true if the unknown number tone is enabled. */ virtual bool unknownNumberTone() const; /** Enables/disables reset tone. */ virtual void enableUnknownNumberTone(bool enable); diff --git a/lib/tyt_codeplug.cc b/lib/tyt_codeplug.cc index 0e322a8f..f2665de6 100644 --- a/lib/tyt_codeplug.cc +++ b/lib/tyt_codeplug.cc @@ -1084,7 +1084,7 @@ TyTCodeplug::ScanListElement::linkScanListObj(ScanList *lst, Context &ctx) { for (int i=0; ((i<31) && memberIndex(i)); i++) { if (! ctx.has(memberIndex(i))) { logDebug() << "Cannot link scanlist to channel idx " << memberIndex(i) - << ". Uknown channel index."; + << ". Unknown channel index."; return false; } lst->addChannel(ctx.get(memberIndex(i))); diff --git a/src/zonedialog.ui b/src/zonedialog.ui index 7cdf3522..1e46c8b5 100644 --- a/src/zonedialog.ui +++ b/src/zonedialog.ui @@ -30,7 +30,7 @@ padding:10px;border: 2px solid black; border-radius: 10px; - <html><head/><body><p align="justify"><span style=" font-weight:600;">Note:</span> Zones are collections of channels that are usualy valid for a specific region. I.e., a collection of channels for repeaters within a certain region. </p><p align="justify">QDMR manages zones by allowing for two independent channel lists for each VFO of the radio (if it has two). Many radios however, allow one to assign zones to each VFO individually. In these cases, QDMR will split the zone into two (A &amp; B) and program them individually into the radio.</p><p align="right"><a href="#hide"><span style=" text-decoration: underline; color:#0000ff;">Hide</span></a></p></body></html> + <html><head/><body><p align="justify"><span style=" font-weight:600;">Note:</span> Zones are collections of channels that are usually valid for a specific region. I.e., a collection of channels for repeaters within a certain region. </p><p align="justify">QDMR manages zones by allowing for two independent channel lists for each VFO of the radio (if it has two). Many radios however, allow one to assign zones to each VFO individually. In these cases, QDMR will split the zone into two (A &amp; B) and program them individually into the radio.</p><p align="right"><a href="#hide"><span style=" text-decoration: underline; color:#0000ff;">Hide</span></a></p></body></html> Qt::RichText