X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/08fc0833aa6329600236d6f0a5a02e71a754d1d6..c6a4a3aa063fb25e163bed8dac8587efef8c02b5:/src/viewpropsprogressinfo.cpp diff --git a/src/viewpropsprogressinfo.cpp b/src/viewpropsprogressinfo.cpp index 02e7fcaee..c841a1331 100644 --- a/src/viewpropsprogressinfo.cpp +++ b/src/viewpropsprogressinfo.cpp @@ -46,7 +46,7 @@ ViewPropsProgressInfo::ViewPropsProgressInfo(QWidget* parent, const QSize minSize = minimumSize(); setMinimumSize(QSize(320, minSize.height())); - setCaption(i18n("Applying View Properties")); + setCaption(i18nc("@title:window", "Applying View Properties")); setButtons(KDialog::Cancel); m_viewProps = new ViewProperties(dir); @@ -106,7 +106,7 @@ void ViewPropsProgressInfo::updateProgress() { if (m_dirSizeJob != 0) { const int subdirs = m_dirSizeJob->totalSubdirs(); - m_label->setText(i18n("Counting folders: %1", subdirs)); + m_label->setText(i18nc("@info:progress", "Counting folders: %1", subdirs)); } if (m_applyViewPropsJob != 0) { @@ -122,7 +122,7 @@ void ViewPropsProgressInfo::applyViewProperties() } const int subdirs = m_dirSizeJob->totalSubdirs(); - m_label->setText(i18n("Folders: %1", subdirs)); + m_label->setText(i18nc("@info:progress", "Folders: %1", subdirs)); m_progressBar->setMaximum(subdirs); m_dirSizeJob = 0; @@ -135,11 +135,11 @@ void ViewPropsProgressInfo::applyViewProperties() void ViewPropsProgressInfo::cancelApplying() { if (m_dirSizeJob != 0) { - m_dirSizeJob->doKill(); + m_dirSizeJob->kill(); } if (m_applyViewPropsJob != 0) { - m_applyViewPropsJob->doKill(); + m_applyViewPropsJob->kill(); } }