┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/viewpropsprogressinfo.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-07-09 17:51:39 +0000
committerPeter Penz <[email protected]>2007-07-09 17:51:39 +0000
commit50d9e030e7855080c037b826f06433495972f503 (patch)
treef50bb6ddc6750c9c598b0806411896b8e72ca446 /src/viewpropsprogressinfo.cpp
parentea3e0005018997b83984203e7c1fc7f745d6dbe2 (diff)
KUIT adaptions
svn path=/trunk/KDE/kdebase/apps/; revision=685763
Diffstat (limited to 'src/viewpropsprogressinfo.cpp')
-rw-r--r--src/viewpropsprogressinfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/viewpropsprogressinfo.cpp b/src/viewpropsprogressinfo.cpp
index 02e7fcaee..5c848bb00 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;