author | fbarros <fbarros> | 2002-07-17 18:11:28 (UTC) |
---|---|---|
committer | fbarros <fbarros> | 2002-07-17 18:11:28 (UTC) |
commit | b498618d255732f8620055439bf25eab8feefdc0 (patch) (side-by-side diff) | |
tree | 41020f7fb72d6816910b86d4373df727c6b6476d | |
parent | f9a3edf09f28811d57ee834833dd6fb49cb4178f (diff) | |
download | opie-b498618d255732f8620055439bf25eab8feefdc0.zip opie-b498618d255732f8620055439bf25eab8feefdc0.tar.gz opie-b498618d255732f8620055439bf25eab8feefdc0.tar.bz2 |
just 2 tr()
-rw-r--r-- | noncore/multimedia/showimg/showimg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/multimedia/showimg/showimg.cpp b/noncore/multimedia/showimg/showimg.cpp index 7c43e11..24218e6 100644 --- a/noncore/multimedia/showimg/showimg.cpp +++ b/noncore/multimedia/showimg/showimg.cpp @@ -112,50 +112,50 @@ void ImageWidget::mouseReleaseEvent(QMouseEvent *) //=========================================================================== ImageViewer::ImageViewer( QWidget *parent, const char *name, int wFlags ) : QMainWindow( parent, name, wFlags ), filename( 0 ), pickx( -1 ), picky( -1 ), clickx( -1 ), clicky( -1 ), bFromDocView( FALSE ) { setCaption( tr("Image Viewer") ); setIcon( Resource::loadPixmap( "ImageViewer" ) ); isFullScreen = FALSE; setToolBarsMovable( FALSE ); toolBar = new QPEToolBar( this ); toolBar->setHorizontalStretchable( TRUE ); menubar = new QPEMenuBar( toolBar ); QStrList fmt = QImage::outputFormats(); QPopupMenu *edit = new QPopupMenu( menubar ); QPopupMenu *view = new QPopupMenu( menubar ); - menubar->insertItem( "Edit", edit ); - menubar->insertItem( "View", view ); + menubar->insertItem(tr("Edit"), edit ); + menubar->insertItem(tr("View"), view ); edit->insertItem(tr("Horizontal flip"), this, SLOT(hFlip()), 0); edit->insertItem(tr("Vertical flip"), this, SLOT(vFlip()), 0); stack = new QWidgetStack( this ); stack->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) ); setCentralWidget( stack ); imagePanel = new ImagePane( stack ); connect(imagePanel, SIGNAL(clicked()), this, SLOT(normalView())); fileSelector = new FileSelector("image/*", stack, "fs"); fileSelector->setNewVisible(FALSE); fileSelector->setCloseVisible(FALSE); connect( fileSelector, SIGNAL( closeMe() ), this, SLOT( closeFileSelector() ) ); connect( fileSelector, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( openFile( const DocLnk & ) ) ); toolBar = new QPEToolBar( this ); QAction *a; a = new QAction( tr( "Open" ), Resource::loadPixmap( "fileopen" ), QString::null, 0, this, 0 ); connect( a, SIGNAL( activated() ), this, SLOT( open() ) ); a->addTo( toolBar ); |