author | zautrix <zautrix> | 2004-07-11 09:14:12 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-11 09:14:12 (UTC) |
commit | e5707eabc31da78bc299029de2cefd84d77291cd (patch) (unidiff) | |
tree | 4a9653227720a7d48fa543ab301eef1849f292dd /korganizer | |
parent | cf2f3f98a4811668f9e9d0d5f44ea5b51d268cef (diff) | |
download | kdepimpi-e5707eabc31da78bc299029de2cefd84d77291cd.zip kdepimpi-e5707eabc31da78bc299029de2cefd84d77291cd.tar.gz kdepimpi-e5707eabc31da78bc299029de2cefd84d77291cd.tar.bz2 |
translation fixes
-rw-r--r-- | korganizer/koeditorrecurrence.cpp | 4 | ||||
-rw-r--r-- | korganizer/wordsgerman.h | 4 |
2 files changed, 6 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 | |||
@@ -303,17 +303,17 @@ RecurYearly::RecurYearly( QWidget *parent, const char *name ) : | |||
303 | QButtonGroup *buttonGroup = new QButtonGroup( this ); | 303 | QButtonGroup *buttonGroup = new QButtonGroup( this ); |
304 | buttonGroup->setFrameStyle( QFrame::NoFrame ); | 304 | buttonGroup->setFrameStyle( QFrame::NoFrame ); |
305 | topLayout->addWidget( buttonGroup, 1, AlignVCenter ); | 305 | topLayout->addWidget( buttonGroup, 1, AlignVCenter ); |
306 | 306 | ||
307 | QGridLayout *buttonLayout = new QGridLayout( buttonGroup, 2, 3 ); | 307 | QGridLayout *buttonLayout = new QGridLayout( buttonGroup, 2, 3 ); |
308 | 308 | ||
309 | mByMonthRadio = new QRadioButton( i18n("On day "), buttonGroup); | 309 | mByMonthRadio = new QRadioButton( i18n("On day "), buttonGroup); |
310 | buttonLayout->addWidget( mByMonthRadio, 0, 0 , Qt::AlignRight); | 310 | buttonLayout->addWidget( mByMonthRadio, 0, 0 , Qt::AlignRight); |
311 | mByDayLabel = new QLabel( i18n(" 1 of "), buttonGroup ); | 311 | mByDayLabel = new QLabel( i18n("%1 of ").arg(1), buttonGroup ); |
312 | 312 | ||
313 | buttonLayout->addWidget( mByDayLabel, 0, 1 ); | 313 | buttonLayout->addWidget( mByDayLabel, 0, 1 ); |
314 | mByMonthCombo = new QComboBox( buttonGroup ); | 314 | mByMonthCombo = new QComboBox( buttonGroup ); |
315 | mByMonthCombo->insertItem( i18n("January") ); | 315 | mByMonthCombo->insertItem( i18n("January") ); |
316 | mByMonthCombo->insertItem( i18n("February") ); | 316 | mByMonthCombo->insertItem( i18n("February") ); |
317 | mByMonthCombo->insertItem( i18n("March") ); | 317 | mByMonthCombo->insertItem( i18n("March") ); |
318 | mByMonthCombo->insertItem( i18n("April") ); | 318 | mByMonthCombo->insertItem( i18n("April") ); |
319 | mByMonthCombo->insertItem( i18n("May") ); | 319 | mByMonthCombo->insertItem( i18n("May") ); |
@@ -326,17 +326,17 @@ RecurYearly::RecurYearly( QWidget *parent, const char *name ) : | |||
326 | mByMonthCombo->insertItem( i18n("December") ); | 326 | mByMonthCombo->insertItem( i18n("December") ); |
327 | buttonLayout->addWidget( mByMonthCombo, 0, 2,Qt::AlignLeft ); | 327 | buttonLayout->addWidget( mByMonthCombo, 0, 2,Qt::AlignLeft ); |
328 | if ( QApplication::desktop()->width() <= 640 ) { | 328 | if ( QApplication::desktop()->width() <= 640 ) { |
329 | mByMonthCombo->setSizeLimit( 6 ); | 329 | mByMonthCombo->setSizeLimit( 6 ); |
330 | } | 330 | } |
331 | 331 | ||
332 | mByDayRadio = new QRadioButton( i18n("On day "), buttonGroup); | 332 | mByDayRadio = new QRadioButton( i18n("On day "), buttonGroup); |
333 | buttonLayout->addWidget( mByDayRadio, 1, 0 , Qt::AlignRight); | 333 | buttonLayout->addWidget( mByDayRadio, 1, 0 , Qt::AlignRight); |
334 | mDayOfLabel = new QLabel( i18n("1 of the year"), buttonGroup ); | 334 | mDayOfLabel = new QLabel( i18n("%1 of the year").arg(1), buttonGroup ); |
335 | buttonLayout->addMultiCellWidget( mDayOfLabel, 1, 1, 1,3 ); | 335 | buttonLayout->addMultiCellWidget( mDayOfLabel, 1, 1, 1,3 ); |
336 | 336 | ||
337 | } | 337 | } |
338 | 338 | ||
339 | void RecurYearly::setByDay( int doy ) | 339 | void RecurYearly::setByDay( int doy ) |
340 | { | 340 | { |
341 | mByDayRadio->setChecked( true ); | 341 | mByDayRadio->setChecked( true ); |
342 | mDayOfLabel->setText(i18n("%1 of the year").arg( doy ) ); | 342 | mDayOfLabel->setText(i18n("%1 of the year").arg( doy ) ); |
diff --git a/korganizer/wordsgerman.h b/korganizer/wordsgerman.h index 4b53ecb..8310f2f 100644 --- a/korganizer/wordsgerman.h +++ b/korganizer/wordsgerman.h | |||
@@ -827,14 +827,18 @@ | |||
827 | { "(%1 min before)","(%1 min vorher)" }, | 827 | { "(%1 min before)","(%1 min vorher)" }, |
828 | { "<b>Categories: </b>","<b>Kategorien: </b>" }, | 828 | { "<b>Categories: </b>","<b>Kategorien: </b>" }, |
829 | { "Save Journal/Description...","Speichere Journal/Details..." }, | 829 | { "Save Journal/Description...","Speichere Journal/Details..." }, |
830 | { "This saves the text/details of selected\nJournals and Events/Todos\nto a text file.","Das speichert den Text bzw.\ndie Details von selektierten\nJournalen und Events/Todos\nin eine Textdatei." }, | 830 | { "This saves the text/details of selected\nJournals and Events/Todos\nto a text file.","Das speichert den Text bzw.\ndie Details von selektierten\nJournalen und Events/Todos\nin eine Textdatei." }, |
831 | { "Continue","Weitermachen" }, | 831 | { "Continue","Weitermachen" }, |
832 | { " birthdays/anniversaries added!"," Geburts-/Jahrestage hinzugefügt" }, | 832 | { " birthdays/anniversaries added!"," Geburts-/Jahrestage hinzugefügt" }, |
833 | { "Attendee:","Teilnehmer:" }, | 833 | { "Attendee:","Teilnehmer:" }, |
834 | { "Click OK to search ->","Klicke zum Suchen auf OK ->" }, | 834 | { "Click OK to search ->","Klicke zum Suchen auf OK ->" }, |
835 | { "On day ","Am Tag " }, | ||
836 | { "%1 of ","%1 des Monats" }, | ||
837 | { "%1 of the year","%1 des Jahres" }, | ||
838 | { "","" }, | ||
835 | { "","" }, | 839 | { "","" }, |
836 | { "","" }, | 840 | { "","" }, |
837 | { "","" }, | 841 | { "","" }, |
838 | { "","" }, | 842 | { "","" }, |
839 | { "","" }, | 843 | { "","" }, |
840 | { "","" }, | 844 | { "","" }, |