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

List:       kde-commits
Subject:    extragear/graphics/kipi-plugins/rawconverter
From:       Malcolm Hunter <malcolm.hunter () gmx ! co ! uk>
Date:       2009-04-07 20:37:29
Message-ID: 1239136649.090711.7864.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 950815 by mhunter:

Typographical and grammar corrections

 M  +1 -1      actionthread.cpp  
 M  +10 -10    batchdialog.cpp  
 M  +3 -3      plugin_rawconverter.cpp  
 M  +10 -10    savesettingswidget.cpp  
 M  +9 -9      singledialog.cpp  


--- trunk/extragear/graphics/kipi-plugins/rawconverter/actionthread.cpp \
#950814:950815 @@ -232,7 +232,7 @@
                     KDcrawIface::DcrawInfoContainer info;
                     d->dcrawIface.rawFileIdentify(info, t->fileUrl.path());
 
-                    QString identify = i18n("Cannot identify Raw image");
+                    QString identify = i18n("Cannot identify RAW image");
                     if (info.isDecodable)
                     {
                         if (t->action == IDENTIFY)
--- trunk/extragear/graphics/kipi-plugins/rawconverter/batchdialog.cpp #950814:950815
@@ -145,15 +145,15 @@
 
     setButtons(Help | Default | Apply | Close | User1 | User2);
     setDefaultButton(KDialog::Close);
-    setButtonToolTip(Close, i18n("Exit Raw Converter"));
-    setCaption(i18n("Raw Images Batch Converter"));
+    setButtonToolTip(Close, i18n("Exit RAW Converter"));
+    setCaption(i18n("RAW Image Batch Converter"));
     setModal(false);
     setButtonIcon(User1, KIcon("list-add"));
     setButtonText(User1, i18n("&Add"));
-    setButtonToolTip(User1, i18n("Add new Raw files to the list"));
+    setButtonToolTip(User1, i18n("Add new RAW files to the list"));
     setButtonIcon(User2, KIcon("list-remove"));
     setButtonText(User2, i18n("&Remove"));
-    setButtonToolTip(User2, i18n("Remove selected Raw files from the list"));
+    setButtonToolTip(User2, i18n("Remove selected RAW files from the list"));
 
     d->page = new QWidget( this );
     setMainWidget( d->page );
@@ -173,7 +173,7 @@
 
     QStringList labels;
     labels.append( i18n("Thumbnail") );
-    labels.append( i18n("Raw File") );
+    labels.append( i18n("RAW File") );
     labels.append( i18n("Target File") );
     labels.append( i18n("Camera") );
     d->listView->setHeaderLabels(labels);
@@ -211,7 +211,7 @@
     d->about = new KIPIPlugins::KPAboutData(ki18n("RAW Image Converter"),
                    0,
                    KAboutData::License_GPL,
-                   ki18n("A Kipi plugin to batch convert Raw images"),
+                   ki18n("A Kipi plugin to batch convert RAW images"),
                    ki18n("(c) 2003-2005, Renchi Raju\n"
                          "(c) 2006-2009, Gilles Caulier"));
 
@@ -435,7 +435,7 @@
 
         if (d->fileList.empty())
         {
-            KMessageBox::error(this, i18n("There is no Raw file to process in the \
list!")); +            KMessageBox::error(this, i18n("There is no RAW file in the \
list to process."));  busy(false);
             slotAborted();
             return;
@@ -652,13 +652,13 @@
     {
         setButtonIcon(Apply, KIcon("process-stop"));
         setButtonText(Apply, i18n("&Abort"));
-        setButtonToolTip(Apply, i18n("Abort the current Raw files conversion"));
+        setButtonToolTip(Apply, i18n("Abort the current RAW file conversion"));
     }
     else
     {
         setButtonIcon(Apply, KIcon("system-run"));
         setButtonText(Apply, i18n("Con&vert"));
-        setButtonToolTip(Apply, i18n("Start converting the Raw images from current \
settings")); +        setButtonToolTip(Apply, i18n("Start converting the RAW images \
using current settings."));  }
 
     d->decodingSettingsBox->setEnabled(!d->busy);
@@ -708,7 +708,7 @@
         struct stat statBuf;
         if (::stat(QFile::encodeName(destFile), &statBuf) == 0)
         {
-            KIO::RenameDialog dlg(this, i18n("Save Raw Image converted from '%1' \
as", +            KIO::RenameDialog dlg(this, i18n("Save RAW image converted from \
                '%1' as",
                                   d->currentConvertItem->url().fileName()),
                                   tmpFile, destFile,
                                   KIO::RenameDialog_Mode(KIO::M_SINGLE | \
                KIO::M_OVERWRITE | KIO::M_SKIP));
--- trunk/extragear/graphics/kipi-plugins/rawconverter/plugin_rawconverter.cpp \
#950814:950815 @@ -88,7 +88,7 @@
     KGlobal::locale()->insertCatalog("libkdcraw");
 
     m_singleAction = actionCollection()->addAction("raw_converter_single");
-    m_singleAction->setText(i18n("Raw Image Converter..."));
+    m_singleAction->setText(i18n("RAW Image Converter..."));
     m_singleAction->setIcon(KIcon("rawconverter"));
 
     connect(m_singleAction, SIGNAL(triggered(bool)),
@@ -97,7 +97,7 @@
     addAction(m_singleAction);
 
     m_batchAction = actionCollection()->addAction("raw_converter_batch");
-    m_batchAction->setText(i18n("Batch Raw Converter..."));
+    m_batchAction->setText(i18n("Batch RAW Converter..."));
     m_batchAction->setIcon(KIcon("rawconverter"));
 
     connect(m_batchAction, SIGNAL(triggered(bool)),
@@ -171,7 +171,7 @@
     if (!isRAWFile(images.images()[0].path()))
     {
         KMessageBox::error(kapp->activeWindow(),
-                           i18n("\"%1\" is not a Raw file.", \
images.images()[0].fileName())); +                           i18n("\"%1\" is not a \
RAW file.", images.images()[0].fileName()));  return;
     }
 
--- trunk/extragear/graphics/kipi-plugins/rawconverter/savesettingswidget.cpp \
#950814:950815 @@ -74,21 +74,21 @@
 
     d->formatLabel    = new QLabel(i18n("Output file format:"), this);
     d->formatComboBox = new KComboBox( this );
-    d->formatComboBox->setWhatsThis(i18n("<p>Set here the output file format to \
                use:</p>"
-                                         "<p><b>JPEG</b>: output the processed image \
                in JPEG Format. "
-                                         "this format will give smaller-sized files. \
                Minimum JPEG "
-                                         "compression level will be used during Raw \
                conversion.</p>"
-                                         "<p><b>Warning!!! duing of destructive \
compression algorithm, " +    d->formatComboBox->setWhatsThis(i18n("<p>Set the output \
file format to use here:</p>" +                                         \
"<p><b>JPEG</b>: output the processed image in JPEG format. " +                       \
"This format will give smaller-sized files. Minimum JPEG " +                          \
"compression level will be used during RAW conversion.</p>" +                         \
                "<p><b>Warning: Due to the destructive compression algorithm, "
                                          "JPEG is a lossy quality format.</b></p>"
-                                         "<p><b>TIFF</b>: output the processed image \
                in TIFF Format. "
-                                         "This generates larges, without "
+                                         "<p><b>TIFF</b>: output the processed image \
in TIFF format. " +                                         "This generates large \
                files, without "
                                          "losing quality. Adobe Deflate compression \
                "
                                          "will be used during conversion.</p>"
-                                         "<p><b>PPM</b>: output the processed image \
in PPM Format. " +                                         "<p><b>PPM</b>: output the \
                processed image in PPM format. "
                                          "This generates the largest files, without \
"  "losing quality.</p>"
-                                         "<p><b>PNG</b>: output the processed image \
                in PNG Format. "
-                                         "This generates larges, without "
+                                         "<p><b>PNG</b>: output the processed image \
in PNG format. " +                                         "This generates large \
                files, without "
                                          "losing quality. Maximum PNG compression "
                                          "will be used during conversion.</p>"));
     slotPopulateImageFormat(false);
--- trunk/extragear/graphics/kipi-plugins/rawconverter/singledialog.cpp \
#950814:950815 @@ -140,7 +140,7 @@
     setButtonText(User1, i18n("&Preview"));
     setButtonText(User2, i18n("Con&vert"));
     setButtonText(User3, i18n("&Abort"));
-    setCaption(i18n("Raw Image Converter"));
+    setCaption(i18n("RAW Image Converter"));
     setModal(false);
 
     QWidget *page = new QWidget( this );
@@ -173,7 +173,7 @@
     d->about = new KIPIPlugins::KPAboutData(ki18n("RAW Image Converter"),
                    0,
                    KAboutData::License_GPL,
-                   ki18n("A Kipi plugin to convert a Raw image"),
+                   ki18n("A Kipi plugin to convert RAW images"),
                    ki18n("(c) 2003-2005, Renchi Raju\n"
                          "(c) 2006-2009, Gilles Caulier"));
 
@@ -198,16 +198,16 @@
 
     // ---------------------------------------------------------------
 
-    setButtonToolTip(User1, i18n("Generate a Preview from current settings. "
+    setButtonToolTip(User1, i18n("Generate a preview using current settings. "
                                  "Uses a simple bilinear interpolation for "
                                  "quick results."));
 
-    setButtonToolTip(User2, i18n("Convert the Raw Image from current settings. "
+    setButtonToolTip(User2, i18n("Convert the RAW Image using current settings. "
                                  "This uses a high-quality adaptive algorithm."));
 
-    setButtonToolTip(User3, i18n("Abort the current Raw file conversion"));
+    setButtonToolTip(User3, i18n("Abort the current RAW file conversion"));
 
-    setButtonToolTip(Close, i18n("Exit Raw Converter"));
+    setButtonToolTip(Close, i18n("Exit RAW Converter"));
 
     d->blinkPreviewTimer = new QTimer(this);
     d->blinkConvertTimer = new QTimer(this);
@@ -567,7 +567,7 @@
         struct stat statBuf;
         if (::stat(QFile::encodeName(destFile), &statBuf) == 0)
         {
-            KIO::RenameDialog dlg(this, i18n("Save Raw Image converted from '%1' \
as", fi.fileName()), +            KIO::RenameDialog dlg(this, i18n("Save RAW image \
converted from '%1' as", fi.fileName()),  tmpFile, destFile,
                                   KIO::RenameDialog_Mode(KIO::M_SINGLE | \
KIO::M_OVERWRITE | KIO::M_SKIP));  
@@ -611,7 +611,7 @@
 {
     d->previewWidget->unsetCursor();
     d->blinkConvertTimer->stop();
-    d->previewWidget->setIdentity(i18n("Failed to convert Raw image"), Qt::red);
+    d->previewWidget->setIdentity(i18n("Failed to convert RAW image"), Qt::red);
 }
 
 void SingleDialog::slotPreviewBlinkTimerDone()
@@ -629,7 +629,7 @@
 
 void SingleDialog::slotConvertBlinkTimerDone()
 {
-    QString convert = i18n("Converting Raw Image...");
+    QString convert = i18n("Converting RAW Image...");
 
     if (d->convertBlink)
         d->previewWidget->setIdentity(convert, Qt::green);


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

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