[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    extragear/multimedia/k3b
From:       Sebastian Trueg <sebastian () trueg ! de>
Date:       2006-11-30 21:10:09
Message-ID: 1164921009.449526.26764.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 609453 by trueg:

i18n fixes.


 M  +13 -0     libk3b/tools/k3bstdguiitems.cpp  
 M  +1 -0      libk3b/tools/k3bstdguiitems.h  
 M  +1 -1      src/k3blsofwrapperdialog.cpp  
 M  +2 -2      src/k3bsystemproblemdialog.cpp  
 M  +1 -1      src/k3bwriterselectionwidget.cpp  
 M  +2 -8      src/misc/k3bcdcopydialog.cpp  
 M  +0 -5      src/rip/k3baudiorippingdialog.cpp  
 M  +1 -1      src/rip/videodvd/k3bvideodvdrippingjob.cpp  
 M  +2 -2      src/rip/videodvd/k3bvideodvdrippingwidget.cpp  


--- trunk/extragear/multimedia/k3b/libk3b/tools/k3bstdguiitems.cpp #609452:609453
@@ -186,6 +186,19 @@
 }
 
 
+QCheckBox* K3bStdGuiItems::ignoreAudioReadErrorsCheckBox( QWidget* parent, const \
char* name ) +{
+  QCheckBox* c = new QCheckBox( i18n("Ignore read errors"), parent, name );
+  QToolTip::add( c, i18n("Skip unreadable audio sectors") );
+  QWhatsThis::add( c, i18n("<p>If this option is checked and K3b is not able to read \
an " +			   "audio sector from the source CD it will be replaced with zeros "
+			   "on the resulting copy."
+			   "<p>Since audio CD Player are able to interpolate small errors "
+			   "in the data it is no problem to let K3b skip unreadable sectors.") );
+  return c;
+}
+
+
 QFrame* K3bStdGuiItems::horizontalLine( QWidget* parent, const char* name )
 {
   QFrame* line = new QFrame( parent, name );
--- trunk/extragear/multimedia/k3b/libk3b/tools/k3bstdguiitems.h #609452:609453
@@ -37,6 +37,7 @@
   LIBK3B_EXPORT QCheckBox* startMultisessionCheckBox( QWidget* parent = 0, const \
char* name = 0 );  LIBK3B_EXPORT QCheckBox* normalizeCheckBox( QWidget* parent = 0, \
const char* name = 0 );  LIBK3B_EXPORT QCheckBox* verifyCheckBox( QWidget* parent = \
0, const char* name = 0 ); +  LIBK3B_EXPORT QCheckBox* ignoreAudioReadErrorsCheckBox( \
QWidget* parent = 0, const char* name = 0 );  LIBK3B_EXPORT QFrame* horizontalLine( \
QWidget* parent = 0, const char* name = 0 );  LIBK3B_EXPORT QFrame* verticalLine( \
QWidget* parent = 0, const char* name = 0 );  }
--- trunk/extragear/multimedia/k3b/src/k3blsofwrapperdialog.cpp #609452:609453
@@ -71,7 +71,7 @@
     const QValueList<K3bLsofWrapper::Process>& apps = lsof.usingApplications();
     if( apps.count() > 0 ) {
       m_label->setText( i18n("<p>Device <b>'%1'</b> is already in use by other \
                applications "
-			     "(<em>%2</em>) "
+			     "(<em>%2</em>)."
 			     "<p>It is highly recommended to quit those before continuing. "
 			     "Otherwise K3b might not be able to fully access the device."
 			     "<p><em>Hint: Sometimes shutting down an application does not "
--- trunk/extragear/multimedia/k3b/src/k3bsystemproblemdialog.cpp #609452:609453
@@ -433,7 +433,7 @@
       problems.append( K3bSystemProblem( K3bSystemProblem::CRITICAL,
 					 i18n("No write access to device %1").arg(dev->blockDeviceName()),
 					 i18n("K3b needs write access to all the devices to perform certain tasks. "
-					      "Without you might encounter problems with %1 - \
%2").arg(dev->vendor()).arg(dev->description()), +					      "Without it you might \
                encounter problems with %1 - \
                %2").arg(dev->vendor()).arg(dev->description()),
 					 i18n("Make sure you have write access to %1. In case you are not using "
 					      "devfs or udev K3bSetup is able to do this for \
you.").arg(dev->blockDeviceName()),  false ) );
@@ -471,7 +471,7 @@
 					 i18n("User parameters specified for external program %1").arg(p->name()),
 					 i18n("Sometimes it may be nessessary to specify user parameters in addition to \
                "
 					      "the parameters generated by K3b. This is simply a warning to make sure \
                that "
-					      "these parameters are really wanted and won't be pat of some bug \
report."), +					      "these parameters are really wanted and won't be part of some \
                bug report."),
 					 i18n("To remove the user parameters for the external program %1 open the "
 					      "K3b settings page 'Programs' and choose the tab 'User Parameters'.")
 					 .arg(p->name()),
--- trunk/extragear/multimedia/k3b/src/k3bwriterselectionwidget.cpp #609452:609453
@@ -186,7 +186,7 @@
 				      "<p><b>Ignore</b> (DVD only)<br>"
 				      "This will leave the speed selection to the writer device. "
 				      "Use this if K3b is unable to set the writing speed."
-				      "<p>1x refers to 1385 KB/s for DVD and 175 KB/S for CD.</p>"
+				      "<p>1x refers to 1385 KB/s for DVD and 175 KB/s for CD.</p>"
 				      "<p><b>Caution:</b> Make sure your system is able to send the data "
 				      "fast enough to prevent buffer underruns.") );
   QWhatsThis::add( m_comboWritingApp, i18n("<p>K3b uses the command line tools \
                cdrecord, growisofs, and cdrdao "
--- trunk/extragear/multimedia/k3b/src/misc/k3bcdcopydialog.cpp #609452:609453
@@ -166,7 +166,7 @@
   box->setSpacing( spacingHint() );
   box->setStretchFactor( new QLabel( i18n("Read retries:"), box ), 1 );
   m_spinDataRetries = new QSpinBox( 1, 128, 1, box );
-  m_checkIgnoreDataReadErrors = new QCheckBox( i18n("Ignore read errors"), \
m_groupAdvancedDataOptions ); +  m_checkIgnoreDataReadErrors = \
K3bStdGuiItems::ignoreAudioReadErrorsCheckBox( m_groupAdvancedDataOptions );  \
m_checkNoCorrection = new QCheckBox( i18n("No error correction"), \
m_groupAdvancedDataOptions );  
   m_groupAdvancedAudioOptions = new QGroupBox( 5, Qt::Vertical, i18n("Audio"), \
advancedTab, "audio_options" );  @@ -176,7 +176,7 @@
   box->setSpacing( spacingHint() );
   box->setStretchFactor( new QLabel( i18n("Read retries:"), box ), 1 );
   m_spinAudioRetries = new QSpinBox( 1, 128, 1, box );
-  m_checkIgnoreAudioReadErrors = new QCheckBox( i18n("Ignore read errors"), \
m_groupAdvancedAudioOptions ); +  m_checkIgnoreAudioReadErrors = \
K3bStdGuiItems::ignoreAudioReadErrorsCheckBox( m_groupAdvancedAudioOptions );  box = \
new QHBox( m_groupAdvancedAudioOptions );  box->setSpacing( spacingHint() );
   box->setStretchFactor(new QLabel( i18n("Paranoia mode:"), box ), 1 );
@@ -207,7 +207,6 @@
   connect( m_checkReadCdText, SIGNAL(toggled(bool)), this, SLOT(slotToggleAll()) );
 
   QToolTip::add( m_checkIgnoreDataReadErrors, i18n("Skip unreadable data sectors") \
                );
-  QToolTip::add( m_checkIgnoreAudioReadErrors, i18n("Skip unreadable audio sectors") \
);  QToolTip::add( m_checkNoCorrection, i18n("Disable the source drive's error \
correction") );  QToolTip::add( m_checkPrefereCdText, i18n("Use CD-Text instead of \
cddb if available.") );  QToolTip::add( m_checkReadCdText, i18n("Copy CD-Text from \
the source CD if available.") ); @@ -224,12 +223,7 @@
 					      "copied to the resulting CD ignoring any potentially existing Cddb \
entries.") );  QWhatsThis::add( m_checkIgnoreDataReadErrors, i18n("<p>If this option \
                is checked and K3b is not able to read a data sector from the "
 						     "source CD/DVD it will be replaced with zeros on the resulting copy.") );
-  QWhatsThis::add( m_checkIgnoreAudioReadErrors, i18n("<p>If this option is checked \
                and K3b is not able to read a audio sector from the "
-						      "source CD it will be replaced with zeros on the resulting copy."
-						      "<p>Since audio CD Player are able to interpolate small errors in the \
                data it is "
-						      "no problem to let K3b skip unreadable sectors.") );
 
-
   QWhatsThis::add( m_comboCopyMode, 
 		   "<p><b>" + i18n("Normal Copy") + "</b>"
 		   + i18n("<p>This is the normal copy mode recommended for most CD types. "
--- trunk/extragear/multimedia/k3b/src/rip/k3baudiorippingdialog.cpp #609452:609453
@@ -187,11 +187,6 @@
 				       "read a sector of audio data from the cd. After that "
 				       "K3b will either skip the sector if the <em>Ignore Read Errors</em> "
 				       "option is enabled or stop the process.") );
-  QToolTip::add( m_checkIgnoreReadErrors, i18n("Never skip a sector on error") );
-  QWhatsThis::add( m_checkIgnoreReadErrors, i18n("<p>If this option is checked and \
                K3b is not able to read a audio sector from the "
-						 "source CD it will be replaced with zeros on the resulting copy."
-						 "<p>Since audio CD Player are able to interpolate small errors in the data it \
                is "
-						 "no problem to let K3b skip unreadable sectors.") );
   QToolTip::add( m_checkUseIndex0, i18n("Do not read the pregaps at the end of every \
track") );  QWhatsThis::add( m_checkUseIndex0, i18n("<p>If this option is checked K3b \
will not rip the audio "  "data in the pregaps. Most audio tracks contain an empty "
--- trunk/extragear/multimedia/k3b/src/rip/videodvd/k3bvideodvdrippingjob.cpp \
#609452:609453 @@ -187,7 +187,7 @@
 	  >= (int)m_dvd[d->currentTitleInfoIndex].videoStream().pictureHeight() ||
 	  m_detectClippingJob->clippingLeft() + m_detectClippingJob->clippingRight()
 	  >= (int)m_dvd[d->currentTitleInfoIndex].videoStream().pictureWidth() ) {
-	emit infoMessage( i18n("Insane lipping values. No clipping will be done at all."), \
WARNING ); +	emit infoMessage( i18n("Insane clipping values. No clipping will be done \
at all."), WARNING );  }
       else {
 	m_titleRipInfos[d->currentTitleInfoIndex].clipTop = \
                m_detectClippingJob->clippingTop();
--- trunk/extragear/multimedia/k3b/src/rip/videodvd/k3bvideodvdrippingwidget.cpp \
#609452:609453 @@ -294,10 +294,10 @@
                              "<tr><td>%c</td><td>number of audio channels (on the \
                Video DVD)</td><td>%{c} or %{channels}</td></tr>"
                              "<tr><td>%v</td><td>size of the original \
video</td><td>%{v} or %{orig_video_size}</td></tr>"  "<tr><td>%s</td><td>size of the \
resulting video (<em>Caution: auto-clipping values are not taken into \
                account!</em>)</td><td>%{s} or %{video_size}</td></tr>"
-                             "<tr><td>%r</td><td>aspect ration of the original \
video</td><td>%{r} or %{aspect_ratio}</td></tr>" +                             \
"<tr><td>%r</td><td>aspect ratio of the original video</td><td>%{r} or \
                %{aspect_ratio}</td></tr>"
                              "<tr><td>%d</td><td>current date</td><td>%{d} or \
%{date}</td></tr>"  "</table>"
-			     "<p><em>Hint: K3b also accepts slight variantions of the long special \
strings. " +			     "<p><em>Hint: K3b also accepts slight variations of the long \
special strings. "  "One can, for example, leave out the underscores.</em>") );
 }
 


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic