~ubuntu-branches/debian/sid/kmess/sid

« back to all changes in this revision

Viewing changes to src/settings/miscellaneouspage.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-05-26 22:58:41 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090526225841-yx7029u4euscd0f5
Tags: 2.0~beta2-1
* New upstream release 
  - Fixes "the '">' characters appears" (Closes: #530358)
* Add Build-Depends: libgif-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
  {
72
72
    useCustomBrowserRadio_->setChecked( true );
73
73
    useListedBrowserRadio_->setEnabled( false );
74
 
    browsersCombo_->addItem( i18n("No selectable browsers detected.") );
 
74
    browsersCombo_->addItem( i18n("No selectable web browsers detected.") );
75
75
    browsersCombo_->setEnabled( false );
76
76
  }
77
77
 
283
283
  {
284
284
    if( customBrowserEdit_->text().isEmpty() )
285
285
    {
286
 
      KMessageBox::error( 0, i18n( "You have to specify a console command to launch a custom browser!" ) );
 
286
      KMessageBox::error( 0, i18n( "You have to specify a console command to launch a custom web browser!" ) );
287
287
      return false;
288
288
    }
289
289
    else if( ! customBrowserEdit_->text().contains( "%u" ) )
290
290
    {
291
 
      int result = KMessageBox::warningYesNoCancel( 0, i18n( "<html>The console command you have specified to launch a custom browser "
292
 
                                                             "does not contain the '%u' parameter. Without this, opening Web "
 
291
      int result = KMessageBox::warningYesNoCancel( 0, i18n( "<html>The console command you have specified to launch a custom web browser "
 
292
                                                             "does not contain the '%u' parameter. Without this, opening web "
293
293
                                                             "sites will not work.<br />Do you want KMess to add it for you?</html>" ) );
294
294
 
295
295
      // Only add the parameter if the user wants to
320
320
    {
321
321
      int result = KMessageBox::warningYesNoCancel( 0, i18n( "<html>The console command you specified to launch a custom email client "
322
322
                                                             "does not contain the '%u' parameter. Without this, composing "
323
 
                                                             "mail will not work.<br />Do you want KMess to add it for you?</html>" ) );
 
323
                                                             "emails will not work.<br />Do you want KMess to add it for you?</html>" ) );
324
324
 
325
325
      // Only add the parameter if the user wants to
326
326
      switch( result )
403
403
{
404
404
  const KUrl url( KFileDialog::getExistingDirectoryUrl( receivedFilesDirEdit_->text(),
405
405
                                                        this,
406
 
                                                        i18n( "Select Files Directory") ) );
 
406
                                                        i18n( "Select Directory") ) );
407
407
 
408
408
  if( ! url.isEmpty() )
409
409
  {