summaryrefslogtreecommitdiff
path: root/core
authorsimon <simon>2002-12-17 13:46:35 (UTC)
committer simon <simon>2002-12-17 13:46:35 (UTC)
commit65c1d23402f8df58524a8e182b00745cf9a4c3af (patch) (side-by-side diff)
treec0e6d7f7abaaf09254eda212091a04243d115a6e /core
parent1e0289c2367b411fe9c4c34aff11988dc77c0f54 (diff)
downloadopie-65c1d23402f8df58524a8e182b00745cf9a4c3af.zip
opie-65c1d23402f8df58524a8e182b00745cf9a4c3af.tar.gz
opie-65c1d23402f8df58524a8e182b00745cf9a4c3af.tar.bz2
- word puzzle fix by Carsten
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/tableitems.cpp2
-rw-r--r--core/pim/todo/tableview.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/todo/tableitems.cpp b/core/pim/todo/tableitems.cpp
index 86fe07d..a636de6 100644
--- a/core/pim/todo/tableitems.cpp
+++ b/core/pim/todo/tableitems.cpp
@@ -155,7 +155,7 @@ void DueTextItem::setToDoEvent( const OTodo& ev ) {
if( ev.hasDueDate() ){
QDate today = QDate::currentDate();
m_off = today.daysTo(ev.dueDate() );
- setText( QString::number(m_off) + " day(s) " );
+ setText( tr( "%1 day(s)" ).arg( QString::number(m_off) ) );
}else{
setText("n.d." );
m_off = 0;
diff --git a/core/pim/todo/tableview.cpp b/core/pim/todo/tableview.cpp
index 2434150..f59971e 100644
--- a/core/pim/todo/tableview.cpp
+++ b/core/pim/todo/tableview.cpp
@@ -379,7 +379,7 @@ void TableView::paintCell(QPainter* p, int row, int col, const QRect& cr, bool
QString text;
if (task.hasDueDate()) {
int off = QDate::currentDate().daysTo( task.dueDate() );
- text = QString::number(off) + tr(" day(s)");
+ text = tr( "%1 day(s)").arg(QString::number(off));
/*
* set color if not completed
*/