author | zautrix <zautrix> | 2004-07-11 09:14:12 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-11 09:14:12 (UTC) |
commit | e5707eabc31da78bc299029de2cefd84d77291cd (patch) (side-by-side diff) | |
tree | 4a9653227720a7d48fa543ab301eef1849f292dd /korganizer/koeditorrecurrence.cpp | |
parent | cf2f3f98a4811668f9e9d0d5f44ea5b51d268cef (diff) | |
download | kdepimpi-e5707eabc31da78bc299029de2cefd84d77291cd.zip kdepimpi-e5707eabc31da78bc299029de2cefd84d77291cd.tar.gz kdepimpi-e5707eabc31da78bc299029de2cefd84d77291cd.tar.bz2 |
translation fixes
Diffstat (limited to 'korganizer/koeditorrecurrence.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | korganizer/koeditorrecurrence.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/korganizer/koeditorrecurrence.cpp b/korganizer/koeditorrecurrence.cpp index ffc0fac..584d1ed 100644 --- a/korganizer/koeditorrecurrence.cpp +++ b/korganizer/koeditorrecurrence.cpp @@ -308,7 +308,7 @@ RecurYearly::RecurYearly( QWidget *parent, const char *name ) : mByMonthRadio = new QRadioButton( i18n("On day "), buttonGroup); buttonLayout->addWidget( mByMonthRadio, 0, 0 , Qt::AlignRight); - mByDayLabel = new QLabel( i18n(" 1 of "), buttonGroup ); + mByDayLabel = new QLabel( i18n("%1 of ").arg(1), buttonGroup ); buttonLayout->addWidget( mByDayLabel, 0, 1 ); mByMonthCombo = new QComboBox( buttonGroup ); @@ -331,7 +331,7 @@ RecurYearly::RecurYearly( QWidget *parent, const char *name ) : mByDayRadio = new QRadioButton( i18n("On day "), buttonGroup); buttonLayout->addWidget( mByDayRadio, 1, 0 , Qt::AlignRight); - mDayOfLabel = new QLabel( i18n("1 of the year"), buttonGroup ); + mDayOfLabel = new QLabel( i18n("%1 of the year").arg(1), buttonGroup ); buttonLayout->addMultiCellWidget( mDayOfLabel, 1, 1, 1,3 ); } |