author | eilers <eilers> | 2003-01-13 13:23:20 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-01-13 13:23:20 (UTC) |
commit | 7f3e8539c2967e9c78cbd5fd4e676a0fba4e1fb1 (patch) (side-by-side diff) | |
tree | 645276629a58bbe1c1cec0dc307ded857d8283eb | |
parent | 55266a0b221b065a94dc1a83860f9603c1d3c2c5 (diff) | |
download | opie-7f3e8539c2967e9c78cbd5fd4e676a0fba4e1fb1.zip opie-7f3e8539c2967e9c78cbd5fd4e676a0fba4e1fb1.tar.gz opie-7f3e8539c2967e9c78cbd5fd4e676a0fba4e1fb1.tar.bz2 |
Minor changes for what's this !
-rw-r--r-- | core/pim/today/plugins/addressbook/addresspluginconfig.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp index 45d9a3e..8d7bec6 100644 --- a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp +++ b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp @@ -38,13 +38,13 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char* QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" ); TextLabel6->setText( tr( "Max Lines: " ) ); SpinBox2 = new QSpinBox( box1, "SpinBox2" ); SpinBox2->setMaxValue( 40 ); - QWhatsThis::add( SpinBox2 , tr( "Set the maximum number of lines that should be shown for each" ) ); + QWhatsThis::add( SpinBox2 , tr( "Set the maximum number of lines that should be shown for each anniversaries/birthdays" ) ); QHBox *box2 = new QHBox( this ); QLabel* clipLabel = new QLabel( box2, "" ); clipLabel->setText( tr( "Clip line after X chars: " ) ); @@ -60,13 +60,13 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char* SpinDaysClip->setMaxValue( 200 ); QWhatsThis::add( SpinDaysClip , tr( "How many days we should search forward" ) ); QHBox *box4 = new QHBox( this ); QLabel* colorLabel = new QLabel( box4, "" ); - colorLabel->setText( tr( "To activate color settings:\nRestart application !" ) ); + colorLabel->setText( tr( "To activate settings: Restart application !" ) ); QHBox *box5 = new QHBox( this ); QLabel* colorLabel2 = new QLabel( box5, "" ); colorLabel2->setText( tr( "Set Headline Color: " ) ); headlineColor = new OColorButton( box5, black , "headlineColor" ); @@ -85,20 +85,20 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char* colorLabel5->setText( tr( "Set Urgent\nColor if below " ) ); SpinUrgentClip = new QSpinBox( box7, "SpinDays" ); SpinUrgentClip->setMaxValue( 200 ); QLabel* colorLabel6 = new QLabel( box7, "" ); colorLabel6->setText( tr( "days: " ) ); urgentColor = new OColorButton( box7, red , "urgentColor" ); - QWhatsThis::add( urgentColor , tr( "This color will be used if we are close to the event !" ) ); - QWhatsThis::add( SpinUrgentClip , tr( "How many days we should search forward" ) ); + QWhatsThis::add( urgentColor , tr( "This urgent color will be used if we are close to the event !" ) ); + QWhatsThis::add( SpinUrgentClip , tr( "The urgent color will be used if the birthday/anniversary is closer than given days !" ) ); + layout->addWidget( box4 ); layout->addWidget( box1 ); layout->addWidget( box2 ); layout->addWidget( box3 ); - layout->addWidget( box4 ); layout->addWidget( box5 ); layout->addWidget( box6 ); layout->addWidget( box7 ); readConfig(); |