diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -123,7 +123,7 @@ 2.0.2 ===== Changes: - * Added K3B_ENABLE_HAL_SUPPORT option to the build configuration. It allows to disable any direct calls to HAL (253388) + * Added K3B_ENABLE_HAL_SUPPORT option to the build configuration. It allows one to disable any direct calls to HAL (253388) * Using Oxygen sounds for events (242395) Bugfixes: @@ -640,7 +640,7 @@ Directly copy Audio tracks from an Audio CD to an Audio project. Session management Made K3b a unique application only allowing one instance. -Improved dcop interface for data projects which allows to add and remove items +Improved dcop interface for data projects which allows one to add and remove items to and from specific folders in the project. Conditional audio ripping pattern. Now what does that mean? It means that you can do stuff like: "if the track has a genre encoded use it, otherwise use 'misc'" and stuff like that. diff --git a/FAQ.txt b/FAQ.txt --- a/FAQ.txt +++ b/FAQ.txt @@ -31,7 +31,7 @@ A: K3b determined the maximum writing speed the first time you start it. Since the speed reported by the writer always depends on the mounted medium this may not be the real max. To manually change it open the K3b settings in the device section and click on the value. You will - be presented with a spinbox which allows to change the speed. + be presented with a spinbox which allows one to change the speed. Q: Writing fails with the following cdrecord message: diff --git a/libk3b/tools/k3bactivepipe.cpp b/libk3b/tools/k3bactivepipe.cpp --- a/libk3b/tools/k3bactivepipe.cpp +++ b/libk3b/tools/k3bactivepipe.cpp @@ -61,7 +61,7 @@ } qDebug() << "Done:" - << ( fail ? QLatin1String( "write failed" ) : QLatin1String( "write succcess" ) ) + << ( fail ? QLatin1String( "write failed" ) : QLatin1String( "write success" ) ) << ( r != 0 ? QLatin1String( "read failed" ) : QLatin1String( "read success" ) ) << "(total bytes read/written:" << bytesRead << "/" << bytesWritten << ")"; } diff --git a/src/k3bemptydiscwaiter.cpp b/src/k3bemptydiscwaiter.cpp --- a/src/k3bemptydiscwaiter.cpp +++ b/src/k3bemptydiscwaiter.cpp @@ -514,7 +514,7 @@ (d->wantedMediaState & K3b::Device::STATE_EMPTY) && (medium.diskInfo().diskState() != K3b::Device::STATE_EMPTY) ) ) { - qDebug() << "------ DVD-RW needs to be formated."; + qDebug() << "------ DVD-RW needs to be formatted."; if( formatWithoutAsking || KMessageBox::warningContinueCancel( parentWidgetToUse(), @@ -806,5 +806,3 @@ { KMessageBox::information( this, text, caption ); } - - diff --git a/src/k3binteractiondialog.h b/src/k3binteractiondialog.h --- a/src/k3binteractiondialog.h +++ b/src/k3binteractiondialog.h @@ -69,7 +69,7 @@ /** * In contract to "normal" dialogs InteractionDialog will not return from exec - * until close() has been called. This allows to hide the dialog while a progress + * until close() has been called. This allows one to hide the dialog while a progress * dialog is shown. */ int exec() override; diff --git a/src/k3bmediaselectioncombobox.h b/src/k3bmediaselectioncombobox.h --- a/src/k3bmediaselectioncombobox.h +++ b/src/k3bmediaselectioncombobox.h @@ -27,8 +27,8 @@ class Msf; /** - * Combo box which allows to select a media (in comparison - * to the DeviceComboBox which allows to select a device. + * Combo box which allows one to select a media (in comparison + * to the DeviceComboBox which allows one to select a device. * * This class uses the MediaCache to update it's status. */ diff --git a/src/k3bmetaitemmodel.h b/src/k3bmetaitemmodel.h --- a/src/k3bmetaitemmodel.h +++ b/src/k3bmetaitemmodel.h @@ -20,7 +20,7 @@ class QIcon; -// TODO: * Have a MetaItemView which allows to set delegates for submodel header painting +// TODO: * Have a MetaItemView which allows one to set delegates for submodel header painting // * implement something like modelHeaderData() to get data for the root elements namespace K3b { diff --git a/src/k3bplacesmodel.h b/src/k3bplacesmodel.h --- a/src/k3bplacesmodel.h +++ b/src/k3bplacesmodel.h @@ -57,7 +57,7 @@ Q_SIGNALS: /** * Emitted for each subdirectory that is a parent of a url - * passed to expandToUrl This allows to asynchronously open + * passed to expandToUrl This allows one to asynchronously open * a tree view down to a given directory. * * \sa KDirModel::expand diff --git a/src/k3bwritingmodewidget.cpp b/src/k3bwritingmodewidget.cpp --- a/src/k3bwritingmodewidget.cpp +++ b/src/k3bwritingmodewidget.cpp @@ -45,7 +45,7 @@ ki18n("Incremental sequential is the default writing mode for DVD-R(W). " "It allows multisession DVD-R(W)s. It only applies to DVD-R(W)."); static const KLocalizedString s_ovwHelp = - ki18n("Restricted Overwrite allows to use a DVD-RW just like a DVD-RAM " + ki18n("Restricted Overwrite allows one to use a DVD-RW just like a DVD-RAM " "or a DVD+RW. The media may just be overwritten. It is not possible " "to write multisession DVD-RWs in this mode but K3b uses growisofs " "to grow an ISO 9660 filesystem within the first session, thus allowing " diff --git a/src/misc/k3bimagewritingdialog.cpp b/src/misc/k3bimagewritingdialog.cpp --- a/src/misc/k3bimagewritingdialog.cpp +++ b/src/misc/k3bimagewritingdialog.cpp @@ -625,7 +625,7 @@ "containing an image of an audio CD. The actual audio " "data can be encoded using any audio format supported " "by K3b. Audio cue files can also be imported into " - "K3b audio projects which allows to change the order " + "K3b audio projects which allows one to change the order " "and add or remove tracks." "

Cdrecord clone images
" "K3b creates a cdrecord clone image of a single-session " diff --git a/src/projects/k3bdirproxymodel.h b/src/projects/k3bdirproxymodel.h --- a/src/projects/k3bdirproxymodel.h +++ b/src/projects/k3bdirproxymodel.h @@ -35,7 +35,7 @@ protected: /** - * This function (reimplemented from QSortFilterProxyModel) allows to decide + * This function (reimplemented from QSortFilterProxyModel) allows one to decide * which rows to show. In this specific model we only allow directories to * be shown. */ diff --git a/src/projects/k3bvcdburndialog.cpp b/src/projects/k3bvcdburndialog.cpp --- a/src/projects/k3bvcdburndialog.cpp +++ b/src/projects/k3bvcdburndialog.cpp @@ -120,7 +120,7 @@ m_checkSegmentFolder->setToolTip( i18n( "Add always an empty `/SEGMENT' folder" ) ); m_checkRelaxedAps->setToolTip( i18n( "This controls whether APS constraints are strict or relaxed. " ) ); m_checkUpdateScanOffsets->setToolTip( i18n( "This controls whether to update the scan data information contained in the MPEG-2 video streams." ) ); - m_labelRestriction->setToolTip( i18n( "This element allows to set viewing restrictions which may be interpreted by the playing device." ) ); + m_labelRestriction->setToolTip( i18n( "This element allows one to set viewing restrictions which may be interpreted by the playing device." ) ); m_checkGaps->setToolTip( i18n( "This option allows customization of Gaps and Margins." ) ); m_labelPreGapLeadout->setToolTip( i18n( "Used to set the number of empty sectors added before the lead-out area begins." ) ); @@ -229,7 +229,7 @@ "

Most players ignore that value." ) ); m_checkGaps->setWhatsThis( i18n( "

This option allows customization of Gaps and Margins." ) ); - m_labelPreGapLeadout->setWhatsThis( i18n( "

This option allows to set the number of empty sectors added before the lead-out area begins, i.e. the number of post-gap sectors." + m_labelPreGapLeadout->setWhatsThis( i18n( "

This option allows one to set the number of empty sectors added before the lead-out area begins, i.e. the number of post-gap sectors." "

The ECMA-130 specification requires the last data track before the lead-out to carry a post-gap of at least 150 sectors, which is used as default for this parameter." "

Some operating systems may encounter I/O errors due to read-ahead issues when reading the last MPEG track if this parameter is set too low." "

Allowed value content: [0..300]. Default: 150." ) ); diff --git a/src/rip/base_k3baudiorippingoptionwidget.ui b/src/rip/base_k3baudiorippingoptionwidget.ui --- a/src/rip/base_k3baudiorippingoptionwidget.ui +++ b/src/rip/base_k3baudiorippingoptionwidget.ui @@ -145,7 +145,7 @@ Write a cuefile - <p>If this option is checked K3b will create a CDRWIN cue file which allows to easily write a copy of the audio CD on other systems. + <p>If this option is checked K3b will create a CDRWIN cue file which allows one to easily write a copy of the audio CD on other systems. Write &cue file