add space around '-'

Change-Id: I54a265fb604562ae183808af4c1a6b912f90c3c5
This commit is contained in:
石博文 2016-11-17 15:27:42 +08:00
parent 473cf96ceb
commit 077a0170e5
Notes: Deepin Code Review 2016-11-17 15:42:22 +08:00
Verified+1: Anonymous Coward #1000004
Code-Review+2: 石博文 <sbw@sbw.so>
Submitted-by: 石博文 <sbw@sbw.so>
Submitted-at: Thu, 17 Nov 2016 15:42:22 +0800
Reviewed-on: https://cr.deepin.io/17554
Project: dde/dde-dock
Branch: refs/heads/master

View File

@ -37,9 +37,9 @@ QWidget *TrashPlugin::itemTipsWidget(const QString &itemKey)
const int count = m_trashWidget->trashItemCount();
if (count < 2)
m_tipsLabel->setText(tr("Trash-%1 file").arg(count));
m_tipsLabel->setText(tr("Trash - %1 file").arg(count));
else
m_tipsLabel->setText(tr("Trash-%1 files").arg(count));
m_tipsLabel->setText(tr("Trash - %1 files").arg(count));
return m_tipsLabel;
}