wilder-work
			
			
		
Andrew Coles 22 years ago
parent 6857d170d4
commit ac90d259cf
  1. 4
      identitydialog.cpp
  2. 12
      signatureconfigurator.cpp

@ -331,8 +331,8 @@ namespace KMail {
"be visible to other recipients.</p>"
"<p>This is commonly used to send a copy of each sent message to "
"another account of yours.</p>"
"<p>To specify more than one address, use a comma to seperate "
"the list of BCC recpients.</p>"
"<p>To specify more than one address, use commas to separate "
"the list of BCC recipients.</p>"
"<p>If in doubt, leave this field blank.</p></qt>");
QWhatsThis::add( label, msg );
QWhatsThis::add( mBccEdit, msg );

@ -101,7 +101,7 @@ namespace KMail {
// page 0: input field for direct entering:
mTextEdit = new QTextEdit( widgetStack );
QWhatsThis::add(mTextEdit,
i18n("Use this field to enter an abitrary static signature."));
i18n("Use this field to enter an arbitrary static signature."));
widgetStack->addWidget( mTextEdit, pageno );
mTextEdit->setFont( KGlobalSettings::fixedFont() );
mTextEdit->setWordWrap( QTextEdit::NoWrap );
@ -117,7 +117,7 @@ namespace KMail {
hlay = new QHBoxLayout( page_vlay ); // inherits spacing
mFileRequester = new KURLRequester( page );
QWhatsThis::add(mFileRequester,
i18n("Use this requester to specifiy a text file that contains your "
i18n("Use this requester to specify a text file that contains your "
"signature. It will be read every time you create a new mail or "
"append a new signature."));
hlay->addWidget( new QLabel( mFileRequester,
@ -144,10 +144,10 @@ namespace KMail {
mCommandEdit->setCompletionObject( new KShellCompletion() );
mCommandEdit->setAutoDeleteCompletionObject( true );
QWhatsThis::add(mCommandEdit,
i18n("You can add an abitrary command here, either with or without path "
"depending on wether or not the command is in your Path. For every "
"new mail, KMail will execute the command and show its output to "
"standard output as signature. Usual commands for use with this "
i18n("You can add an arbitrary command here, either with or without path "
"depending on whether or not the command is in your Path. For every "
"new mail, KMail will execute the command and use what it outputs (to "
"standard output) as a signature. Usual commands for use with this "
"mechanism are \"fortune\" or \"ksig -random\"."));
hlay->addWidget( new QLabel( mCommandEdit,
i18n("S&pecify command:"), page ) );

Loading…
Cancel
Save