Subversion Repositories Scribus

Compare Revisions

Ignore whitespace Rev 4821 → Rev 4822

/trunk/Scribus/scribus/pdfopts.cpp
195,8 → 195,8
CMethod = new QComboBox( true, CBox, "CMethod" );
CMethod->clear();
CMethod->insertItem( tr( "Automatic" ) );
CMethod->insertItem( tr( "JPEG" ) );
CMethod->insertItem( tr( "Zip" ) );
CMethod->insertItem( tr( "JPEG - Lossy" ) );
CMethod->insertItem( tr( "Zip - Lossless" ) );
CMethod->insertItem( tr( "None" ) );
CMethod->setEditable(false);
CMethod->setCurrentItem(Optionen->CompressMethod);
875,8 → 875,8
QToolTip::add( CheckBM, tr( "Embed the bookmarks you created in your document.\nThese are useful for navigating long PDF documents." ) );
QToolTip::add( Resolution, tr( "Export resolution of text and vector graphics.\nThis does not affect the resolution of bitmap images like photos." ) );
QToolTip::add( Compression, tr( " Lossless compression of text and graphics.\nUnless you have a reason, leave this checked. This reduces PDF size." ) );
QToolTip::add( CMethod, "<qt>" + tr( "Method of compression to use for images. Automatic allows Scribus to choose the best method. ZIP is lossless and good for images with solid colors. JPEG is better at creating smaller PDF files which have many photos (with slight image quality loss possible). Leave it set to Automatic, unless you have a need for special compression options." ) + "</qt>");
QToolTip::add( CQuality, tr( "Compression levels: Minimum (25%), Low (50%), Medium (75%), High (85%), Maximum (95%)" ) );
QToolTip::add( CMethod, "<qt>" + tr( "Method of compression to use for images. Automatic allows Scribus to choose the best method. ZIP is lossless and good for images with solid colors. JPEG is better at creating smaller PDF files which have many photos (with slight image quality loss possible). Leave it set to Automatic, unless you have a need for special compression options. This only applies to JPEG images" ) + "</qt>");
QToolTip::add( CQuality,"<qt>" tr( "Compression levels: Minimum (25%), Low (50%), Medium (75%), High (85%), Maximum (95%) - This only affects JPEG images." ) + "</qt>" );
QToolTip::add( DSColor, tr( "Re-sample your bitmap images to the selected DPI.\nLeaving this unchecked will render them at their native resolution.\nThis can increase memory usage and slow down export." ) );
QToolTip::add( ValC, tr( "DPI (Dots Per Inch) for image export.") );
QToolTip::add( EmbedFonts, tr( "Embed fonts into the PDF. Embedding the fonts\nwill preserve the layout and appearance of your document." ) );
/trunk/Scribus/scribus/libabout/about.cpp
66,7 → 66,7
tabLayout1->addWidget( PixmapLabel1 );
BuildID = new QLabel( tab, "BB" );
BuildID->setAlignment(Qt::AlignCenter);
QString bu = tr("%1 %2 %3 ").arg("11").arg("February").arg("2006");
QString bu = tr("%1 %2 %3 ").arg("6").arg("March").arg("2006");
#ifdef HAVE_CMS
bu += "C";
#else