summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/cdarchiving/plugin_cdarchiving.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/cdarchiving/plugin_cdarchiving.cpp')
-rw-r--r--kipi-plugins/cdarchiving/plugin_cdarchiving.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kipi-plugins/cdarchiving/plugin_cdarchiving.cpp b/kipi-plugins/cdarchiving/plugin_cdarchiving.cpp
index 0bab4a2..5d70cc9 100644
--- a/kipi-plugins/cdarchiving/plugin_cdarchiving.cpp
+++ b/kipi-plugins/cdarchiving/plugin_cdarchiving.cpp
@@ -157,7 +157,7 @@ void Plugin_CDArchiving::customEvent(TQCustomEvent *event)
case(KIPICDArchivingPlugin::BuildAlbumHTMLPage):
{
- text = i18n("Making HTML pages for Album '%1'...").tqarg(d->albumName);
+ text = i18n("Making HTML pages for Album '%1'...").arg(d->albumName);
break;
}
@@ -169,7 +169,7 @@ void Plugin_CDArchiving::customEvent(TQCustomEvent *event)
case(KIPICDArchivingPlugin::ResizeImages):
{
- text = i18n("Creating thumbnail for '%1'...").tqarg(d->fileName);
+ text = i18n("Creating thumbnail for '%1'...").arg(d->fileName);
break;
}
@@ -211,14 +211,14 @@ void Plugin_CDArchiving::customEvent(TQCustomEvent *event)
case(KIPICDArchivingPlugin::BuildAlbumHTMLPage):
{
++m_current;
- text = i18n("HTML page creation for Album '%1' completed.").tqarg(d->albumName);
+ text = i18n("HTML page creation for Album '%1' completed.").arg(d->albumName);
break;
}
case(KIPICDArchivingPlugin::ResizeImages):
{
++m_current;
- text = i18n("Creating thumbnail for '%1' done.").tqarg(d->fileName);
+ text = i18n("Creating thumbnail for '%1' done.").arg(d->fileName);
break;
}
@@ -250,7 +250,7 @@ void Plugin_CDArchiving::customEvent(TQCustomEvent *event)
{
case(KIPICDArchivingPlugin::ResizeImages):
{
- text = i18n("Failed to create thumbnail for '%1'").tqarg(d->fileName);
+ text = i18n("Failed to create thumbnail for '%1'").arg(d->fileName);
m_progressDlg->addedAction(text, KIPI::WarningMessage);
m_progressDlg->setProgress(m_current, m_total);
break;
@@ -260,7 +260,7 @@ void Plugin_CDArchiving::customEvent(TQCustomEvent *event)
{
++m_current;
text = i18n("Failed to create HTML interface: %1")
- .tqarg(d->message);
+ .arg(d->message);
m_progressDlg->addedAction(text, KIPI::ErrorMessage);
m_progressDlg->setProgress(m_current, m_total);
slotCancel();
@@ -271,7 +271,7 @@ void Plugin_CDArchiving::customEvent(TQCustomEvent *event)
case(KIPICDArchivingPlugin::BuildAlbumHTMLPage):
{
text = i18n("Failed to create HTML pages for Album '%1'")
- .tqarg(d->albumName);
+ .arg(d->albumName);
m_progressDlg->addedAction(text, KIPI::ErrorMessage);
m_progressDlg->setProgress(m_current, m_total);
slotCancel();