You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(98) |
Sep
(138) |
Oct
(100) |
Nov
(49) |
Dec
(131) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(94) |
Feb
(65) |
Mar
(100) |
Apr
(83) |
May
(72) |
Jun
(29) |
Jul
(167) |
Aug
(127) |
Sep
(131) |
Oct
(269) |
Nov
(122) |
Dec
(100) |
2005 |
Jan
(228) |
Feb
(266) |
Mar
(63) |
Apr
(135) |
May
(157) |
Jun
(52) |
Jul
(25) |
Aug
(49) |
Sep
(184) |
Oct
(159) |
Nov
(75) |
Dec
(37) |
2006 |
Jan
(60) |
Feb
(129) |
Mar
(110) |
Apr
(34) |
May
(31) |
Jun
(42) |
Jul
(72) |
Aug
(90) |
Sep
(57) |
Oct
(66) |
Nov
(42) |
Dec
(90) |
2007 |
Jan
(106) |
Feb
(54) |
Mar
(93) |
Apr
(27) |
May
(21) |
Jun
(17) |
Jul
(19) |
Aug
(22) |
Sep
(25) |
Oct
(2) |
Nov
(1) |
Dec
(1) |
2008 |
Jan
(65) |
Feb
(70) |
Mar
(29) |
Apr
(45) |
May
(91) |
Jun
(20) |
Jul
(11) |
Aug
(24) |
Sep
(23) |
Oct
(13) |
Nov
(23) |
Dec
(39) |
2009 |
Jan
(23) |
Feb
(39) |
Mar
(15) |
Apr
(56) |
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ck...@us...> - 2008-08-12 21:26:26
|
Revision: 6061 http://krusader.svn.sourceforge.net/krusader/?rev=6061&view=rev Author: ckarai Date: 2008-08-12 21:26:34 +0000 (Tue, 12 Aug 2008) Log Message: ----------- FIXED: [ 2017011 ] Crash when changing the Qt theme Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/GUI/krlistwidget.cpp trunk/krusader_kde4/krusader/GUI/krstyleproxy.cpp trunk/krusader_kde4/krusader/GUI/krstyleproxy.h trunk/krusader_kde4/krusader/GUI/krtreewidget.cpp trunk/krusader_kde4/krusader/Panel/krview.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-08-12 19:45:52 UTC (rev 6060) +++ trunk/krusader_kde4/ChangeLog 2008-08-12 21:26:34 UTC (rev 6061) @@ -1,6 +1,7 @@ ADDED: Useractions: added checkbox "enabled" and run mode option "Run in embedded terminal emulator" + FIXED: [ 2017011 ] Crash when changing the Qt theme FIXED: icons for symlinks are corrupted FIXED: [ 2023599 ] start root mode Krusader works again (thanks to gladiac) FIXED: [ 1980765 ] error at creating ../dir directory Modified: trunk/krusader_kde4/krusader/GUI/krlistwidget.cpp =================================================================== --- trunk/krusader_kde4/krusader/GUI/krlistwidget.cpp 2008-08-12 19:45:52 UTC (rev 6060) +++ trunk/krusader_kde4/krusader/GUI/krlistwidget.cpp 2008-08-12 21:26:34 UTC (rev 6061) @@ -34,7 +34,7 @@ #include <qevent.h> KrListWidget::KrListWidget( QWidget * parent ) : QListWidget( parent ) { - setStyle( new KrStyleProxy( style() ) ); + setStyle( new KrStyleProxy() ); } bool KrListWidget::event ( QEvent * event ) Modified: trunk/krusader_kde4/krusader/GUI/krstyleproxy.cpp =================================================================== --- trunk/krusader_kde4/krusader/GUI/krstyleproxy.cpp 2008-08-12 19:45:52 UTC (rev 6060) +++ trunk/krusader_kde4/krusader/GUI/krstyleproxy.cpp 2008-08-12 21:26:34 UTC (rev 6061) @@ -32,25 +32,22 @@ #include <qpen.h> #include <qpainter.h> #include <QStyleOptionViewItem> +#include <qapplication.h> -KrStyleProxy::KrStyleProxy( QStyle * style ) { - _style = style; -} - void KrStyleProxy::drawComplexControl ( ComplexControl control, const QStyleOptionComplex * option, QPainter * painter, const QWidget * widget ) const { - _style->drawComplexControl( control, option, painter, widget ); + QApplication::style()->drawComplexControl( control, option, painter, widget ); } void KrStyleProxy::drawControl ( ControlElement element, const QStyleOption * option, QPainter * painter, const QWidget * widget ) const { - _style->drawControl( element, option, painter, widget ); + QApplication::style()->drawControl( element, option, painter, widget ); } void KrStyleProxy::drawItemPixmap ( QPainter * painter, const QRect & rectangle, int alignment, const QPixmap & pixmap ) const { - _style->drawItemPixmap( painter, rectangle, alignment, pixmap ); + QApplication::style()->drawItemPixmap( painter, rectangle, alignment, pixmap ); } void KrStyleProxy::drawItemText ( QPainter * painter, const QRect & rectangle, int alignment, const QPalette & palette, bool enabled, const QString & text, QPalette::ColorRole textRole ) const { - _style->drawItemText( painter, rectangle, alignment, palette, enabled, text, textRole ); + QApplication::style()->drawItemText( painter, rectangle, alignment, palette, enabled, text, textRole ); } void KrStyleProxy::drawPrimitive ( PrimitiveElement element, const QStyleOption * option, QPainter * painter, const QWidget * widget ) const { @@ -78,69 +75,69 @@ } } else - _style->drawPrimitive( element, option, painter, widget ); + QApplication::style()->drawPrimitive( element, option, painter, widget ); } QPixmap KrStyleProxy::generatedIconPixmap ( QIcon::Mode iconMode, const QPixmap & pixmap, const QStyleOption * option ) const { - return _style->generatedIconPixmap( iconMode, pixmap, option ); + return QApplication::style()->generatedIconPixmap( iconMode, pixmap, option ); } QStyle::SubControl KrStyleProxy::hitTestComplexControl ( ComplexControl control, const QStyleOptionComplex * option, const QPoint & position, const QWidget * widget ) const { - return _style->hitTestComplexControl ( control, option, position, widget ); + return QApplication::style()->hitTestComplexControl ( control, option, position, widget ); } QRect KrStyleProxy::itemPixmapRect ( const QRect & rectangle, int alignment, const QPixmap & pixmap ) const { - return _style->itemPixmapRect ( rectangle, alignment, pixmap ); + return QApplication::style()->itemPixmapRect ( rectangle, alignment, pixmap ); } QRect KrStyleProxy::itemTextRect ( const QFontMetrics & metrics, const QRect & rectangle, int alignment, bool enabled, const QString & text ) const { - return _style->itemTextRect ( metrics, rectangle, alignment, enabled, text ); + return QApplication::style()->itemTextRect ( metrics, rectangle, alignment, enabled, text ); } int KrStyleProxy::pixelMetric ( PixelMetric metric, const QStyleOption * option, const QWidget * widget ) const { - return _style->pixelMetric ( metric, option, widget ); + return QApplication::style()->pixelMetric ( metric, option, widget ); } void KrStyleProxy::polish ( QWidget * widget ) { - _style->polish( widget ); + QApplication::style()->polish( widget ); } void KrStyleProxy::polish ( QApplication * application ) { - _style->polish( application ); + QApplication::style()->polish( application ); } void KrStyleProxy::polish ( QPalette & palette ) { - _style->polish( palette ); + QApplication::style()->polish( palette ); } QSize KrStyleProxy::sizeFromContents ( ContentsType type, const QStyleOption * option, const QSize & contentsSize, const QWidget * widget ) const { - return _style->sizeFromContents ( type, option, contentsSize, widget ); + return QApplication::style()->sizeFromContents ( type, option, contentsSize, widget ); } QPalette KrStyleProxy::standardPalette () const { - return _style->standardPalette (); + return QApplication::style()->standardPalette (); } int KrStyleProxy::styleHint ( StyleHint hint, const QStyleOption * option, const QWidget * widget, QStyleHintReturn * returnData ) const { - return _style->styleHint( hint, option, widget, returnData ); + return QApplication::style()->styleHint( hint, option, widget, returnData ); } QRect KrStyleProxy::subControlRect ( ComplexControl control, const QStyleOptionComplex * option, SubControl subControl, const QWidget * widget ) const { - return _style->subControlRect ( control, option, subControl, widget ); + return QApplication::style()->subControlRect ( control, option, subControl, widget ); } QRect KrStyleProxy::subElementRect ( SubElement element, const QStyleOption * option, const QWidget * widget ) const { - return _style->subElementRect ( element, option, widget ); + return QApplication::style()->subElementRect ( element, option, widget ); } QPixmap KrStyleProxy::standardPixmap(QStyle::StandardPixmap pixmap, const QStyleOption* option, const QWidget*widget) const { - return _style->standardPixmap ( pixmap, option, widget ); + return QApplication::style()->standardPixmap ( pixmap, option, widget ); } void KrStyleProxy::unpolish ( QWidget * widget ) { - _style->unpolish( widget ); + QApplication::style()->unpolish( widget ); } void KrStyleProxy::unpolish ( QApplication * application ) { - _style->unpolish( application ); + QApplication::style()->unpolish( application ); } Modified: trunk/krusader_kde4/krusader/GUI/krstyleproxy.h =================================================================== --- trunk/krusader_kde4/krusader/GUI/krstyleproxy.h 2008-08-12 19:45:52 UTC (rev 6060) +++ trunk/krusader_kde4/krusader/GUI/krstyleproxy.h 2008-08-12 21:26:34 UTC (rev 6061) @@ -39,7 +39,7 @@ class KrStyleProxy: public QStyle { public: - KrStyleProxy( QStyle * style ); + KrStyleProxy() {} virtual void drawComplexControl( ComplexControl control, const QStyleOptionComplex * option, QPainter * painter, const QWidget * widget = 0 ) const; virtual void drawControl ( ControlElement element, const QStyleOption * option, QPainter * painter, const QWidget * widget = 0 ) const; virtual void drawItemPixmap ( QPainter * painter, const QRect & rectangle, int alignment, const QPixmap & pixmap ) const; @@ -61,9 +61,6 @@ virtual QPixmap standardPixmap(QStyle::StandardPixmap pixmap, const QStyleOption* option, const QWidget*widget = 0) const; virtual void unpolish ( QWidget * widget ); virtual void unpolish ( QApplication * application ); - -protected: - QStyle * _style; }; Modified: trunk/krusader_kde4/krusader/GUI/krtreewidget.cpp =================================================================== --- trunk/krusader_kde4/krusader/GUI/krtreewidget.cpp 2008-08-12 19:45:52 UTC (rev 6060) +++ trunk/krusader_kde4/krusader/GUI/krtreewidget.cpp 2008-08-12 21:26:34 UTC (rev 6061) @@ -43,7 +43,7 @@ _stretchingColumn = -1; - setStyle( new KrStyleProxy( style() ) ); + setStyle( new KrStyleProxy() ); } bool KrTreeWidget::event ( QEvent * event ) Modified: trunk/krusader_kde4/krusader/Panel/krview.cpp =================================================================== --- trunk/krusader_kde4/krusader/Panel/krview.cpp 2008-08-12 19:45:52 UTC (rev 6060) +++ trunk/krusader_kde4/krusader/Panel/krview.cpp 2008-08-12 21:26:34 UTC (rev 6061) @@ -120,7 +120,7 @@ // bitBlt ( &icon, 0, icon.height() - 11, &link, 0, 21, 10, 11, Qt::CopyROP, false ); QPainter painter( &icon ); painter.drawPixmap( 0, icon.height() - 11, link, 0, 21, 10, 11 ); - icon.setMask( icon.createHeuristicMask( false ) ); + //icon.setMask( icon.createHeuristicMask( false ) ); } return icon; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ck...@us...> - 2008-08-12 19:45:44
|
Revision: 6060 http://krusader.svn.sourceforge.net/krusader/?rev=6060&view=rev Author: ckarai Date: 2008-08-12 19:45:52 +0000 (Tue, 12 Aug 2008) Log Message: ----------- FIXED: icons for symlinks are corrupted Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/Panel/krview.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-08-12 18:12:01 UTC (rev 6059) +++ trunk/krusader_kde4/ChangeLog 2008-08-12 19:45:52 UTC (rev 6060) @@ -1,6 +1,7 @@ ADDED: Useractions: added checkbox "enabled" and run mode option "Run in embedded terminal emulator" + FIXED: icons for symlinks are corrupted FIXED: [ 2023599 ] start root mode Krusader works again (thanks to gladiac) FIXED: [ 1980765 ] error at creating ../dir directory FIXED: [ 2014344 ] CTRL-C (copy) does not work in internal editor Modified: trunk/krusader_kde4/krusader/Panel/krview.cpp =================================================================== --- trunk/krusader_kde4/krusader/Panel/krview.cpp 2008-08-12 18:12:01 UTC (rev 6059) +++ trunk/krusader_kde4/krusader/Panel/krview.cpp 2008-08-12 19:45:52 UTC (rev 6060) @@ -118,7 +118,8 @@ if ( vf->vfile_isSymLink() ) { QPixmap link( link_xpm ); // bitBlt ( &icon, 0, icon.height() - 11, &link, 0, 21, 10, 11, Qt::CopyROP, false ); - QPainter( &icon ).drawPixmap( 0, icon.height() - 11, link, 0, 21, 10, 11 ); + QPainter painter( &icon ); + painter.drawPixmap( 0, icon.height() - 11, link, 0, 21, 10, 11 ); icon.setMask( icon.createHeuristicMask( false ) ); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ck...@us...> - 2008-08-12 18:11:51
|
Revision: 6059 http://krusader.svn.sourceforge.net/krusader/?rev=6059&view=rev Author: ckarai Date: 2008-08-12 18:12:01 +0000 (Tue, 12 Aug 2008) Log Message: ----------- FIXED: [ 2023599 ] start root mode Krusader (thanks to gladiac) Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/krslots.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-08-11 06:05:57 UTC (rev 6058) +++ trunk/krusader_kde4/ChangeLog 2008-08-12 18:12:01 UTC (rev 6059) @@ -1,6 +1,7 @@ ADDED: Useractions: added checkbox "enabled" and run mode option "Run in embedded terminal emulator" + FIXED: [ 2023599 ] start root mode Krusader works again (thanks to gladiac) FIXED: [ 1980765 ] error at creating ../dir directory FIXED: [ 2014344 ] CTRL-C (copy) does not work in internal editor FIXED: Viewing directories are disabled to prevent KDE 4 crash Modified: trunk/krusader_kde4/krusader/krslots.cpp =================================================================== --- trunk/krusader_kde4/krusader/krslots.cpp 2008-08-11 06:05:57 UTC (rev 6058) +++ trunk/krusader_kde4/krusader/krslots.cpp 2008-08-12 18:12:01 UTC (rev 6059) @@ -547,8 +547,8 @@ KProcess proc; proc << KrServices::fullPathName( "kdesu" ) << KrServices::fullPathName( "krusader" ) - << "--left=" + MAIN_VIEW->left->func->files()->vfs_getOrigin().url() - << "--right=" + MAIN_VIEW->right->func->files()->vfs_getOrigin().url(); + + " --left=" + MAIN_VIEW->left->func->files()->vfs_getOrigin().url() + + " --right=" + MAIN_VIEW->right->func->files()->vfs_getOrigin().url(); if (!proc.startDetached()) KMessageBox::error(0,i18n("Error executing %1!", proc.program()[0])); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ck...@us...> - 2008-08-11 06:05:49
|
Revision: 6058 http://krusader.svn.sourceforge.net/krusader/?rev=6058&view=rev Author: ckarai Date: 2008-08-11 06:05:57 +0000 (Mon, 11 Aug 2008) Log Message: ----------- FIXED: [ 1980765 ] error at creating ../dir directory Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/Panel/panelfunc.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-08-10 21:42:27 UTC (rev 6057) +++ trunk/krusader_kde4/ChangeLog 2008-08-11 06:05:57 UTC (rev 6058) @@ -1,6 +1,7 @@ ADDED: Useractions: added checkbox "enabled" and run mode option "Run in embedded terminal emulator" + FIXED: [ 1980765 ] error at creating ../dir directory FIXED: [ 2014344 ] CTRL-C (copy) does not work in internal editor FIXED: Viewing directories are disabled to prevent KDE 4 crash FIXED: [Debian: 492955] useraction's availability section was dumped to Modified: trunk/krusader_kde4/krusader/Panel/panelfunc.cpp =================================================================== --- trunk/krusader_kde4/krusader/Panel/panelfunc.cpp 2008-08-10 21:42:27 UTC (rev 6057) +++ trunk/krusader_kde4/krusader/Panel/panelfunc.cpp 2008-08-11 06:05:57 UTC (rev 6058) @@ -493,6 +493,12 @@ QStringList dirTree = dirName.split( "/" ); for ( QStringList::Iterator it = dirTree.begin(); it != dirTree.end(); ++it ) { + if( *it == "." ) + continue; + if( *it == ".." ) { + immediateOpenUrl( *it ); + continue; + } // check if the name is already taken if ( files() ->vfs_search( *it ) ) { // if it is the last dir to be created - quit This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ck...@us...> - 2008-08-10 21:42:20
|
Revision: 6057 http://krusader.svn.sourceforge.net/krusader/?rev=6057&view=rev Author: ckarai Date: 2008-08-10 21:42:27 +0000 (Sun, 10 Aug 2008) Log Message: ----------- FIXED: [ 2014344 ] CTRL-C (copy) does not work in internal editor Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/KViewer/krviewer.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-08-10 16:02:40 UTC (rev 6056) +++ trunk/krusader_kde4/ChangeLog 2008-08-10 21:42:27 UTC (rev 6057) @@ -1,6 +1,7 @@ ADDED: Useractions: added checkbox "enabled" and run mode option "Run in embedded terminal emulator" + FIXED: [ 2014344 ] CTRL-C (copy) does not work in internal editor FIXED: Viewing directories are disabled to prevent KDE 4 crash FIXED: [Debian: 492955] useraction's availability section was dumped to "command" element. (thanks Iván Forcada Atienza) Modified: trunk/krusader_kde4/krusader/KViewer/krviewer.cpp =================================================================== --- trunk/krusader_kde4/krusader/KViewer/krviewer.cpp 2008-08-10 16:02:40 UTC (rev 6056) +++ trunk/krusader_kde4/krusader/KViewer/krviewer.cpp 2008-08-10 21:42:27 UTC (rev 6057) @@ -95,8 +95,20 @@ //no point in detaching only one tab.. detachAction->setEnabled(false); viewerMenu->addSeparator(); - viewerMenu->addAction( printAction->icon(), printAction->text(), this, SLOT( print() ))->setShortcut( printAction->shortcut().primary() ); - viewerMenu->addAction( copyAction->icon(), copyAction->text(), this, SLOT( copy() ))->setShortcut( copyAction->shortcut().primary() ); + QList<QAction *> actList = menuBar()->actions(); + bool hasPrint = false, hasCopy = false; + foreach( QAction *a, actList ) { + if( a->shortcut().matches( printAction->shortcut().primary() ) != QKeySequence::NoMatch ) + hasPrint = true; + if( a->shortcut().matches( copyAction->shortcut().primary() ) != QKeySequence::NoMatch ) + hasCopy = true; + } + QAction *printAct = viewerMenu->addAction( printAction->icon(), printAction->text(), this, SLOT( print() )); + if( hasPrint ) + printAct->setShortcut( printAction->shortcut().primary() ); + QAction *copyAct = viewerMenu->addAction( copyAction->icon(), copyAction->text(), this, SLOT( copy() )); + if( hasCopy ) + copyAct->setShortcut( copyAction->shortcut().primary() ); viewerMenu->addSeparator(); ( tabClose = viewerMenu->addAction( i18n( "&Close current tab" ), this, SLOT( tabCloseRequest() )))->setShortcut( Qt::Key_Escape ); ( closeAct = viewerMenu->addAction( i18n( "&Quit" ), this, SLOT( close() )))->setShortcut( Qt::CTRL + Qt::Key_Q ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ck...@us...> - 2008-08-10 16:02:33
|
Revision: 6056 http://krusader.svn.sourceforge.net/krusader/?rev=6056&view=rev Author: ckarai Date: 2008-08-10 16:02:40 +0000 (Sun, 10 Aug 2008) Log Message: ----------- FIXED: crash at viewing folders Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/KViewer/panelviewer.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-08-06 10:51:56 UTC (rev 6055) +++ trunk/krusader_kde4/ChangeLog 2008-08-10 16:02:40 UTC (rev 6056) @@ -1,6 +1,7 @@ ADDED: Useractions: added checkbox "enabled" and run mode option "Run in embedded terminal emulator" + FIXED: Viewing directories are disabled to prevent KDE 4 crash FIXED: [Debian: 492955] useraction's availability section was dumped to "command" element. (thanks Iván Forcada Atienza) FIXED: Do not duplicate menu entries in UserAction menu while still not crashing when Modified: trunk/krusader_kde4/krusader/KViewer/panelviewer.cpp =================================================================== --- trunk/krusader_kde4/krusader/KViewer/panelviewer.cpp 2008-08-06 10:51:56 UTC (rev 6055) +++ trunk/krusader_kde4/krusader/KViewer/panelviewer.cpp 2008-08-10 16:02:40 UTC (rev 6056) @@ -68,6 +68,11 @@ if( mode == KrViewer::Generic ){ KMimeType::Ptr mt = KMimeType::findByUrl( curl ); cmimetype = mt ? mt->name() : QString(); + // KDE 4 HACK : START + // KDE 4 crashes at viewing directories + if( cmimetype == "inode/directory" ) + return 0; + // KDE 4 HACK : END if( mimes->find( cmimetype ) == mimes->end() ) { cpart = getPart( cmimetype ); mimes->insert( cmimetype, cpart ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jb...@us...> - 2008-08-06 10:51:48
|
Revision: 6055 http://krusader.svn.sourceforge.net/krusader/?rev=6055&view=rev Author: jbaehr Date: 2008-08-06 10:51:56 +0000 (Wed, 06 Aug 2008) Log Message: ----------- doc fix: you need at least kdebase-runtime Modified Paths: -------------- trunk/krusader_kde4/INSTALL Modified: trunk/krusader_kde4/INSTALL =================================================================== --- trunk/krusader_kde4/INSTALL 2008-08-03 20:13:59 UTC (rev 6054) +++ trunk/krusader_kde4/INSTALL 2008-08-06 10:51:56 UTC (rev 6055) @@ -141,7 +141,7 @@ the to command line tools Install KDE binaries available from http://mac.kde.org/ -You need at least kdelibs, better kdebase-runtime, and all its dependencies. +You need at least kdebase-runtime and all its dependencies. Setup the build envorinment --------------------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cod...@us...> - 2008-08-03 20:13:49
|
Revision: 6054 http://krusader.svn.sourceforge.net/krusader/?rev=6054&view=rev Author: codeknight Date: 2008-08-03 20:13:59 +0000 (Sun, 03 Aug 2008) Log Message: ----------- xml2pot is now part of the "poxml-kde4" package (in a debian distro) Modified Paths: -------------- trunk/krusader_kde4/doc/update_pot Modified: trunk/krusader_kde4/doc/update_pot =================================================================== --- trunk/krusader_kde4/doc/update_pot 2008-08-03 20:12:00 UTC (rev 6053) +++ trunk/krusader_kde4/doc/update_pot 2008-08-03 20:13:59 UTC (rev 6054) @@ -26,6 +26,7 @@ # Requirements: bash, xml2pot, perl # usage: run ./update_pot +# xml2pot is part of the "poxml-kde4" package (in a debian distro) # jump into the english folder cd en This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cod...@us...> - 2008-08-03 20:11:54
|
Revision: 6053 http://krusader.svn.sourceforge.net/krusader/?rev=6053&view=rev Author: codeknight Date: 2008-08-03 20:12:00 +0000 (Sun, 03 Aug 2008) Log Message: ----------- pot files update for current handbook (3 aug 2008) Modified Paths: -------------- trunk/krusader_kde4/doc/i18n/pot/archives.docbook.pot trunk/krusader_kde4/doc/i18n/pot/bookmarks.docbook.pot trunk/krusader_kde4/doc/i18n/pot/checksum.docbook.pot trunk/krusader_kde4/doc/i18n/pot/commands.docbook.pot trunk/krusader_kde4/doc/i18n/pot/compare.docbook.pot trunk/krusader_kde4/doc/i18n/pot/configuration-files.docbook.pot trunk/krusader_kde4/doc/i18n/pot/credits.docbook.pot trunk/krusader_kde4/doc/i18n/pot/diskusage.docbook.pot trunk/krusader_kde4/doc/i18n/pot/editors-note.docbook.pot trunk/krusader_kde4/doc/i18n/pot/faq.docbook.pot trunk/krusader_kde4/doc/i18n/pot/features.docbook.pot trunk/krusader_kde4/doc/i18n/pot/glossary.docbook.pot trunk/krusader_kde4/doc/i18n/pot/help.docbook.pot trunk/krusader_kde4/doc/i18n/pot/index.docbook.pot trunk/krusader_kde4/doc/i18n/pot/installation.docbook.pot trunk/krusader_kde4/doc/i18n/pot/introduction.docbook.pot trunk/krusader_kde4/doc/i18n/pot/java.docbook.pot trunk/krusader_kde4/doc/i18n/pot/keyboard.docbook.pot trunk/krusader_kde4/doc/i18n/pot/konfigurator.docbook.pot trunk/krusader_kde4/doc/i18n/pot/krusader-tools.docbook.pot trunk/krusader_kde4/doc/i18n/pot/locate.docbook.pot trunk/krusader_kde4/doc/i18n/pot/more.docbook.pot trunk/krusader_kde4/doc/i18n/pot/mount.docbook.pot trunk/krusader_kde4/doc/i18n/pot/mouse.docbook.pot trunk/krusader_kde4/doc/i18n/pot/occupied-space.docbook.pot trunk/krusader_kde4/doc/i18n/pot/profiles.docbook.pot trunk/krusader_kde4/doc/i18n/pot/release-overview.docbook.pot trunk/krusader_kde4/doc/i18n/pot/remote-connections.docbook.pot trunk/krusader_kde4/doc/i18n/pot/search.docbook.pot trunk/krusader_kde4/doc/i18n/pot/splitter.docbook.pot trunk/krusader_kde4/doc/i18n/pot/synchronizer.docbook.pot trunk/krusader_kde4/doc/i18n/pot/user-interface.docbook.pot trunk/krusader_kde4/doc/i18n/pot/useraction-xml.docbook.pot trunk/krusader_kde4/doc/i18n/pot/useractions.docbook.pot trunk/krusader_kde4/doc/i18n/pot/using-krusader.docbook.pot trunk/krusader_kde4/doc/i18n/pot/vfs.docbook.pot trunk/krusader_kde4/doc/i18n/pot/viewer-editor.docbook.pot Modified: trunk/krusader_kde4/doc/i18n/pot/archives.docbook.pot =================================================================== --- trunk/krusader_kde4/doc/i18n/pot/archives.docbook.pot 2008-08-02 18:49:34 UTC (rev 6052) +++ trunk/krusader_kde4/doc/i18n/pot/archives.docbook.pot 2008-08-03 20:12:00 UTC (rev 6053) @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Krusader-doc-1.80.03 2007-05-08\n" +"Project-Id-Version: Krusader-doc-2.0.0-2 2008-08-03\n" "Report-Msgid-Bugs-To: <fra...@ya...>\n" -"POT-Creation-Date: 2007-05-08 20:26+0000\n" +"POT-Creation-Date: 2008-08-03 20:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <kru...@go...>\n" Modified: trunk/krusader_kde4/doc/i18n/pot/bookmarks.docbook.pot =================================================================== --- trunk/krusader_kde4/doc/i18n/pot/bookmarks.docbook.pot 2008-08-02 18:49:34 UTC (rev 6052) +++ trunk/krusader_kde4/doc/i18n/pot/bookmarks.docbook.pot 2008-08-03 20:12:00 UTC (rev 6053) @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Krusader-doc-1.80.03 2007-05-08\n" +"Project-Id-Version: Krusader-doc-2.0.0-2 2008-08-03\n" "Report-Msgid-Bugs-To: <fra...@ya...>\n" -"POT-Creation-Date: 2007-05-08 20:26+0000\n" +"POT-Creation-Date: 2008-08-03 20:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <kru...@go...>\n" Modified: trunk/krusader_kde4/doc/i18n/pot/checksum.docbook.pot =================================================================== --- trunk/krusader_kde4/doc/i18n/pot/checksum.docbook.pot 2008-08-02 18:49:34 UTC (rev 6052) +++ trunk/krusader_kde4/doc/i18n/pot/checksum.docbook.pot 2008-08-03 20:12:00 UTC (rev 6053) @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Krusader-doc-1.80.03 2007-05-08\n" +"Project-Id-Version: Krusader-doc-2.0.0-2 2008-08-03\n" "Report-Msgid-Bugs-To: <fra...@ya...>\n" -"POT-Creation-Date: 2007-05-08 20:26+0000\n" +"POT-Creation-Date: 2008-08-03 20:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <kru...@go...>\n" Modified: trunk/krusader_kde4/doc/i18n/pot/commands.docbook.pot =================================================================== --- trunk/krusader_kde4/doc/i18n/pot/commands.docbook.pot 2008-08-02 18:49:34 UTC (rev 6052) +++ trunk/krusader_kde4/doc/i18n/pot/commands.docbook.pot 2008-08-03 20:12:00 UTC (rev 6053) @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Krusader-doc-1.80.03 2007-05-08\n" +"Project-Id-Version: Krusader-doc-2.0.0-2 2008-08-03\n" "Report-Msgid-Bugs-To: <fra...@ya...>\n" -"POT-Creation-Date: 2007-05-08 20:26+0000\n" +"POT-Creation-Date: 2008-08-03 20:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <kru...@go...>\n" @@ -37,1343 +37,1343 @@ #. Tag: title #: commands.docbook:28 #, no-c-format -msgid "<guimenu>File</guimenu> Menu" +msgid "File Menu" msgstr "" #. Tag: menuchoice -#: commands.docbook:33 +#: commands.docbook:32 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Shift; <keycap>F4</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>New Text File</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:43 +#: commands.docbook:42 #, no-c-format msgid "Creates a new text file in the current directory, unless another directory is specified. The new file is opened for editing after it is created." msgstr "" #. Tag: menuchoice -#: commands.docbook:50 +#: commands.docbook:49 #, no-c-format msgid "<shortcut> <keycap>F7</keycap> </shortcut> <guimenu>File</guimenu> <guimenuitem>New Directory</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:59 +#: commands.docbook:58 #, no-c-format msgid "Creates a new directory in the current directory." msgstr "" #. Tag: menuchoice -#: commands.docbook:65 +#: commands.docbook:64 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Alt;&Ctrl; <keycap>S</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>New Symlink</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:76 +#: commands.docbook:75 #, no-c-format msgid "Creates a symbolic link to the currently selected file." msgstr "" #. Tag: menuchoice -#: commands.docbook:82 +#: commands.docbook:81 #, no-c-format msgid "<shortcut> <keycap>F3</keycap> </shortcut> <guimenu>File</guimenu> <guimenuitem>View File</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:91 +#: commands.docbook:90 #, no-c-format msgid "Opens the currently selected file for <link linkend=\"kredit\">viewing</link>." msgstr "" #. Tag: menuchoice -#: commands.docbook:97 +#: commands.docbook:96 #, no-c-format msgid "<shortcut> <keycap>F4</keycap> </shortcut> <guimenu>File</guimenu> <guimenuitem>Edit File</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:106 +#: commands.docbook:105 #, no-c-format msgid "Opens the currently selected file for <link linkend=\"kredit\">editing</link>." msgstr "" #. Tag: menuchoice -#: commands.docbook:112 +#: commands.docbook:111 #, no-c-format msgid "<shortcut> <keycap>F5</keycap> </shortcut> <guimenu>File</guimenu> <guimenuitem>Copy</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:121 +#: commands.docbook:120 #, no-c-format msgid "Opens a dialog to <link linkend=\"copying\">copy</link> the currently selected files or directories to a specified location." msgstr "" #. Tag: menuchoice -#: commands.docbook:128 +#: commands.docbook:127 #, no-c-format msgid "<shortcut> <keycap>F6</keycap> </shortcut> <guimenu>File</guimenu> <guimenuitem>Move</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:137 +#: commands.docbook:136 #, no-c-format msgid "Opens a dialog to <link linkend=\"copying\">move</link> the currently selected files or directories to a specified location." msgstr "" #. Tag: menuchoice -#: commands.docbook:144 +#: commands.docbook:143 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>P</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>Pack</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:154 +#: commands.docbook:153 #, no-c-format msgid "Creates a <link linkend=\"pack-archive\">new archive</link> of all the selected files and directories in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:162 +#: commands.docbook:161 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>U</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>Unpack</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:172 +#: commands.docbook:171 #, no-c-format msgid "<link linkend=\"unpacking-archives\">Unpacks</link> all the selected files in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:179 +#: commands.docbook:178 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>E</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>Test Archive</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:189 +#: commands.docbook:188 #, no-c-format msgid "<link linkend=\"test-archive\">Tests archive</link> for corruption." msgstr "" #. Tag: menuchoice -#: commands.docbook:196 +#: commands.docbook:195 #, no-c-format msgid "<guimenu>File</guimenu> <guimenuitem>Compare by content</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:202 +#: commands.docbook:201 #, no-c-format msgid "Compares two current files by content - one from each panel via an external graphical diff utility. By default &kompare; (part of the kdebase package) is used, but you can also use ⪚ &xxdiff-url; or &kdiff3-url; , change it in the &konfigdependencie-lnk;." msgstr "" #. Tag: menuchoice -#: commands.docbook:213 +#: commands.docbook:212 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Shift; <keycap>F9</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>Multi Rename</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:223 +#: commands.docbook:222 #, no-c-format msgid "This menu option starts &krename-url; a very powerful external batch renamer for &kde; 3.x." msgstr "" #. Tag: title -#: commands.docbook:227 +#: commands.docbook:226 #, no-c-format msgid "Krename Features" msgstr "" #. Tag: para -#: commands.docbook:229 +#: commands.docbook:228 #, no-c-format msgid "Renaming a list of files based on a set of expressions" msgstr "" #. Tag: para -#: commands.docbook:233 +#: commands.docbook:232 #, no-c-format msgid "Copying/moving a list of files to another directory" msgstr "" #. Tag: para -#: commands.docbook:237 +#: commands.docbook:236 #, no-c-format msgid "Convert filenames to upper/lower case" msgstr "" #. Tag: para -#: commands.docbook:240 +#: commands.docbook:239 #, no-c-format msgid "Adding numbers to filenames" msgstr "" #. Tag: para -#: commands.docbook:243 +#: commands.docbook:242 #, no-c-format msgid "Finding and replacing parts of the filename" msgstr "" #. Tag: para -#: commands.docbook:247 +#: commands.docbook:246 #, no-c-format msgid "Renaming MP3/OGG Vorbis files based on their ID3 tags" msgstr "" #. Tag: para -#: commands.docbook:251 +#: commands.docbook:250 #, no-c-format msgid "Setting access and modification dates" msgstr "" #. Tag: para -#: commands.docbook:254 +#: commands.docbook:253 #, no-c-format msgid "Changing permissions and file ownership" msgstr "" #. Tag: para -#: commands.docbook:257 +#: commands.docbook:256 #, no-c-format msgid "A plug-in API which allows you to extend Krename's features" msgstr "" #. Tag: para -#: commands.docbook:261 +#: commands.docbook:260 #, no-c-format msgid "Renaming directories recursively" msgstr "" #. Tag: para -#: commands.docbook:264 +#: commands.docbook:263 #, no-c-format msgid "Support for KFilePlugins" msgstr "" #. Tag: para -#: commands.docbook:267 +#: commands.docbook:266 #, no-c-format msgid "Create undo file" msgstr "" #. Tag: para -#: commands.docbook:270 +#: commands.docbook:269 #, no-c-format msgid "And many more...." msgstr "" #. Tag: menuchoice -#: commands.docbook:277 +#: commands.docbook:276 #, no-c-format msgid "<guimenu>File</guimenu> <guimenuitem>Create Checksum</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:283 +#: commands.docbook:282 #, no-c-format msgid "<link linkend=\"checksum\">Checksum creation</link> on file(s) and/or folder(s)." msgstr "" #. Tag: menuchoice -#: commands.docbook:290 +#: commands.docbook:289 #, no-c-format msgid "<guimenu>File</guimenu> <guimenuitem>Verify Checksum</guimenuitem>" msgstr "" #. Tag: link -#: commands.docbook:297 +#: commands.docbook:296 #, no-c-format msgid "Verify Checksum" msgstr "" #. Tag: menuchoice -#: commands.docbook:304 +#: commands.docbook:303 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>P</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>Split file</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:314 +#: commands.docbook:313 #, no-c-format msgid "The &splitfile-lnk; function splits a file up into multiple smaller files so that it can be stored on several smaller media (like <hardware>diskettes, zip-drives, ...</hardware>) or sent by e-mail." msgstr "" #. Tag: menuchoice -#: commands.docbook:323 +#: commands.docbook:322 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>B</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>Combine files</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:333 +#: commands.docbook:332 #, no-c-format msgid "The &combinefiles-lnk; function combines multiple files into one file after the &splitfile-lnk; function was used." msgstr "" #. Tag: menuchoice -#: commands.docbook:341 +#: commands.docbook:340 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>Q</keycap></keycombo> </shortcut> <guimenu>File</guimenu> <guimenuitem>Quit</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:351 +#: commands.docbook:350 #, no-c-format msgid "Closes &krusader; and cleans up the temporary directory, the same as pressing <keycap>F10</keycap> key." msgstr "" #. Tag: title -#: commands.docbook:359 +#: commands.docbook:358 #, no-c-format -msgid "<guimenu>Edit</guimenu>Menu" +msgid "Edit Menu" msgstr "" #. Tag: menuchoice -#: commands.docbook:364 +#: commands.docbook:362 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>X</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Cut to Clipboard</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:374 +#: commands.docbook:372 #, no-c-format msgid "<link linkend=\"copying\">Cuts</link> the selected file(s) to the clipboard to be moved to another location." msgstr "" #. Tag: menuchoice -#: commands.docbook:381 +#: commands.docbook:379 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>C</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Copy to Clipboard</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:391 +#: commands.docbook:389 #, no-c-format msgid "<link linkend=\"copying\">Copies</link> the selected file(s) to the clipboard to be moved to another location." msgstr "" #. Tag: menuchoice -#: commands.docbook:398 +#: commands.docbook:396 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>V</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Paste from Clipboard</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:408 +#: commands.docbook:406 #, no-c-format msgid "<link linkend=\"copying\">Pastes</link> previously cut or copied items from the clipboard to the current directory." msgstr "" #. Tag: menuchoice -#: commands.docbook:416 +#: commands.docbook:414 #, no-c-format msgid "<shortcut> <keycap>F9</keycap> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Rename</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:425 +#: commands.docbook:423 #, no-c-format msgid "<link linkend=\"renaming\">Renames</link> the currently selected file." msgstr "" #. Tag: menuchoice -#: commands.docbook:432 +#: commands.docbook:430 #, no-c-format msgid "<shortcut> <keycap>F8</keycap> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Delete</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:441 +#: commands.docbook:439 #, no-c-format msgid "<link linkend=\"deleting\">Deletes</link> the currently selected file(s)." msgstr "" #. Tag: menuchoice -#: commands.docbook:448 +#: commands.docbook:446 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>+</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Select Group</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:458 +#: commands.docbook:456 #, no-c-format msgid "Opens a dialog which allows you to select files in the active panel. In the <guilabel>Search for</guilabel> dialog place the main search criteria. Enter a filename, a wildcard ( <literal role=\"extension\">*.o.*</literal>, <literal role=\"extension\">*.c</literal> &etc;) or both - separated by a space. When using <literal>'text'</literal>, the results are the same as <literal>'*text*'</literal>. You can exclude files from the search with '|' (⪚ <literal role=\"extension\">'*.cpp *.h | *.moc.cpp'</literal>). With the <link linkend=\"profiles\">profile handler</link> you can manage your selections for future usage. A double-click on a profile is the same as entering the selection and pressing the <guibutton>OK</guibutton> button. More options for <guilabel>Select Group</guilabel> dialog are explained in the <link linkend=\"krusearcher\">Search dialog</link>, which are basically almost the same dialogs." msgstr "" #. Tag: menuchoice -#: commands.docbook:483 +#: commands.docbook:481 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>-</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Unselect Group</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:493 +#: commands.docbook:491 #, no-c-format msgid "The opposite of <guimenuitem>Select Group</guimenuitem>. The files that match the pattern in the active panel will be deselected." msgstr "" #. Tag: menuchoice -#: commands.docbook:501 +#: commands.docbook:499 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>+</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Select All</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:511 +#: commands.docbook:509 #, no-c-format msgid "Selects all files in the active panel. You can also select all directories by activating the <guilabel>Automark directories</guilabel> option in the &konfiglookandfeel-lnk;." msgstr "" #. Tag: menuchoice -#: commands.docbook:519 +#: commands.docbook:517 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>-</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Unselect All</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:529 +#: commands.docbook:527 #, no-c-format msgid "Unselects all the files in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:534 +#: commands.docbook:532 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>*</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Invert Selection</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:544 +#: commands.docbook:542 #, no-c-format msgid "Inverts the selection status of all the files in the active panel (&ie; selected files will become unselected and deselected files will become selected)." msgstr "" #. Tag: menuchoice -#: commands.docbook:552 +#: commands.docbook:550 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>C</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Compare Directories</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:562 +#: commands.docbook:560 #, no-c-format msgid "Toggles &krusader; &comparedir-lnk; function." msgstr "" #. Tag: menuchoice -#: commands.docbook:568 +#: commands.docbook:566 #, no-c-format msgid "<guimenu>Edit</guimenu> <guimenuitem>Compare setup</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:574 +#: commands.docbook:572 #, no-c-format msgid "Configures the <guimenuitem>Compare Directories</guimenuitem> function." msgstr "" #. Tag: para -#: commands.docbook:578 +#: commands.docbook:576 #, no-c-format msgid "<guimenuitem>Select Newer and Single</guimenuitem> (default)" msgstr "" #. Tag: guimenuitem -#: commands.docbook:583 +#: commands.docbook:581 #, no-c-format msgid "Select Single" msgstr "" #. Tag: guimenuitem -#: commands.docbook:588 +#: commands.docbook:586 #, no-c-format msgid "Select Newer" msgstr "" #. Tag: guimenuitem -#: commands.docbook:593 +#: commands.docbook:591 #, no-c-format msgid "Select Different and Single" msgstr "" #. Tag: guimenuitem -#: commands.docbook:598 +#: commands.docbook:596 #, no-c-format msgid "Select Different" msgstr "" #. Tag: menuchoice -#: commands.docbook:606 +#: commands.docbook:604 #, no-c-format msgid "<guimenu>Edit</guimenu> <guimenuitem>Calculate Occupied Space</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:612 +#: commands.docbook:610 #, no-c-format msgid "<link linkend=\"calculate\">Calculates occupied space</link> of files and folders, archives and remote filesystems." msgstr "" #. Tag: menuchoice -#: commands.docbook:620 +#: commands.docbook:618 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>KP_Enter</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Properties</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:630 +#: commands.docbook:628 #, no-c-format msgid "Opens the properties dialog for the currently selected file. (KP refers to Key Pad.)" msgstr "" #. Tag: title -#: commands.docbook:637 +#: commands.docbook:635 #, no-c-format -msgid "<guimenu>View</guimenu>Menu" +msgid "View Menu" msgstr "" #. Tag: para -#: commands.docbook:639 +#: commands.docbook:636 #, no-c-format msgid "The action in this submenu usually affects the current &krusader; session. If you want to make permanent changes use &konfigstartpg-lnk;." msgstr "" #. Tag: menuchoice -#: commands.docbook:645 +#: commands.docbook:642 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Alt;&Shift; <keycap>D</keycap></keycombo> </shortcut> <guimenu>View</guimenu> <guimenuitem>Detailed View</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:656 +#: commands.docbook:653 #, no-c-format msgid "Shows the file names, file size, creation date and time and their attributes." msgstr "" #. Tag: menuchoice -#: commands.docbook:661 +#: commands.docbook:658 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Alt;&Shift; <keycap>B</keycap></keycombo> </shortcut> <guimenu>View</guimenu> <guimenuitem>Brief View</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:672 +#: commands.docbook:669 #, no-c-format msgid "Shows only the file names." msgstr "" #. Tag: menuchoice -#: commands.docbook:677 +#: commands.docbook:674 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>.</keycap></keycombo> </shortcut> <guimenu>View</guimenu> <guimenuitem>Show Hidden Files</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:687 +#: commands.docbook:684 #, no-c-format msgid "Toggles the option to display the hidden files in the &krusader; panels." msgstr "" #. Tag: menuchoice -#: commands.docbook:693 +#: commands.docbook:690 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Shift; <keycap>F10</keycap></keycombo> </shortcut> <guimenu>View</guimenu> <guimenuitem>All Files</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:703 +#: commands.docbook:700 #, no-c-format msgid "Turns off all filters and display all files." msgstr "" #. Tag: menuchoice -#: commands.docbook:708 +#: commands.docbook:705 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Shift; <keycap>F12</keycap></keycombo> </shortcut> <guimenu>View</guimenu> <guimenuitem>Custom</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:718 +#: commands.docbook:715 #, no-c-format msgid "Allows you to install a custom filter on the &krusader; panel. Only files that match the filter pattern(s) and directories will be displayed. Do not forget to deactivate the custom filter after use, or some files may not be visible." msgstr "" #. Tag: menuchoice -#: commands.docbook:727 +#: commands.docbook:724 #, no-c-format msgid "<guimenu>View</guimenu> <guimenuitem>Select Remote Charset</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:733 +#: commands.docbook:730 #, no-c-format msgid "Selects the remote charset for &remote-connections-lnk;." msgstr "" #. Tag: menuchoice -#: commands.docbook:739 +#: commands.docbook:736 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>R</keycap></keycombo> </shortcut> <guimenu>View</guimenu> <guimenuitem>Reload</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:749 +#: commands.docbook:746 #, no-c-format msgid "Refreshes the contents of the active panel." msgstr "" #. Tag: title -#: commands.docbook:755 +#: commands.docbook:752 #, no-c-format -msgid "<guimenu>Go</guimenu>Menu" +msgid "Go Menu" msgstr "" #. Tag: menuchoice -#: commands.docbook:760 +#: commands.docbook:756 #, no-c-format msgid "<guimenu>Go</guimenu> <guimenuitem>Back</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:766 +#: commands.docbook:762 #, no-c-format msgid "Navigates to the previously viewed directory in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:772 +#: commands.docbook:768 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>PageUp</keycap></keycombo> </shortcut> <guimenu>Go</guimenu> <guimenuitem>Up</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:782 +#: commands.docbook:778 #, no-c-format msgid "Navigates to the parent directory of the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:788 +#: commands.docbook:784 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>Backspace</keycap></keycombo> </shortcut> <guimenu>Go</guimenu> <guimenuitem>Root</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:798 +#: commands.docbook:794 #, no-c-format msgid "Navigates to the root directory of the system." msgstr "" #. Tag: menuchoice -#: commands.docbook:804 +#: commands.docbook:800 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>Home</keycap></keycombo> </shortcut> <guimenu>Go</guimenu> <guimenuitem>Home</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:814 +#: commands.docbook:810 #, no-c-format msgid "Navigates to the home directory of the current user." msgstr "" #. Tag: menuchoice -#: commands.docbook:820 +#: commands.docbook:816 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>Z</keycap></keycombo> </shortcut> <guimenu>Go</guimenu> <guimenuitem>Popular URLs</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:830 +#: commands.docbook:826 #, no-c-format msgid "Displays a listing of frequently viewed directories from which you may navigate to one by double-clicking on it." msgstr "" #. Tag: menuchoice -#: commands.docbook:837 +#: commands.docbook:833 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Ctrl;&Shift; <keycap>J</keycap></keycombo> </shortcut> <guimenu>Go</guimenu> <guimenuitem>Set Jump Back Point</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:848 +#: commands.docbook:844 #, no-c-format msgid "Sets the current directory as a \"jump back\" point. To navigate to this directory quickly, select the \"Jump Back\" command from the Go Menu." msgstr "" #. Tag: menuchoice -#: commands.docbook:855 +#: commands.docbook:851 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>J</keycap></keycombo> </shortcut> <guimenu>Go</guimenu> <guimenuitem>Jump Back</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:865 +#: commands.docbook:861 #, no-c-format msgid "Returns to a previous \"jump back\" point." msgstr "" #. Tag: title -#: commands.docbook:871 +#: commands.docbook:867 #, no-c-format -msgid "<guimenu>Useractions</guimenu>Menu" +msgid "Useractions Menu" msgstr "" #. Tag: menuchoice -#: commands.docbook:876 +#: commands.docbook:871 #, no-c-format msgid "<guimenu>Useractions</guimenu> <guimenuitem>Manage useractions</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:882 +#: commands.docbook:877 #, no-c-format msgid "Opens the &useractions-lnk; manager." msgstr "" #. Tag: menuchoice -#: commands.docbook:888 +#: commands.docbook:883 #, no-c-format msgid "<guimenu>Useractions</guimenu> <guimenuitem>Your own Useractions</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:894 +#: commands.docbook:889 #, no-c-format msgid "Opens the default user actions and those created by the user." msgstr "" #. Tag: menuchoice -#: commands.docbook:900 +#: commands.docbook:895 #, no-c-format msgid "<guimenu>Useractions</guimenu> <guimenuitem>Equal panel-size</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:906 +#: commands.docbook:901 #, no-c-format msgid "Sets the ratio between the two panels to 50/50." msgstr "" #. Tag: menuchoice -#: commands.docbook:912 +#: commands.docbook:907 #, no-c-format msgid "<guimenu>Useractions</guimenu> <guimenuitem>Edit as root</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:918 +#: commands.docbook:913 #, no-c-format msgid "Allows you to edit a file with kwrite using root permissions." msgstr "" #. Tag: menuchoice -#: commands.docbook:924 +#: commands.docbook:919 #, no-c-format msgid "<guimenu>Useractions</guimenu> <guimenuitem>Mount</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:930 +#: commands.docbook:925 #, no-c-format msgid "Mounts a new filesystem." msgstr "" #. Tag: menuchoice -#: commands.docbook:935 +#: commands.docbook:930 #, no-c-format msgid "<guimenu>Useractions</guimenu> <guimenuitem>Enqueue in Amarok</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:941 +#: commands.docbook:936 #, no-c-format msgid "Appends selected item(s) to Amarok playlist." msgstr "" #. Tag: menuchoice -#: commands.docbook:946 +#: commands.docbook:941 #, no-c-format msgid "<guimenu>Useractions</guimenu> <guimenuitem>Copy current item to clipboard</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:953 +#: commands.docbook:948 #, no-c-format msgid "Copies selected item(s) to the clipboard." msgstr "" #. Tag: menuchoice -#: commands.docbook:958 +#: commands.docbook:953 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> <keycap>Win</keycap> <keycap>1</keycap> </keycombo> </shortcut> <guimenu>Useractions</guimenu> <guimenuitem>Sort By Name</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:970 +#: commands.docbook:965 #, no-c-format msgid "When this action is turned on, the main sorting key in the &krusader; panel becomes the file name." msgstr "" #. Tag: menuchoice -#: commands.docbook:977 +#: commands.docbook:972 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> <keycap>Win</keycap> <keycap>2</keycap> </keycombo> </shortcut> <guimenu>Useractions</guimenu> <guimenuitem>Sort By Extension</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:989 +#: commands.docbook:984 #, no-c-format msgid "When this action is turned on, the main sorting key in the &krusader; panel becomes the file extension (the part of the filename after the last '.'). This is useful for grouping files of the same type closer together." msgstr "" #. Tag: menuchoice -#: commands.docbook:998 +#: commands.docbook:993 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> <keycap>Win</keycap> <keycap>3</keycap> </keycombo> </shortcut> <guimenu>Useractions</guimenu> <guimenuitem>Sort By Size</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1010 +#: commands.docbook:1005 #, no-c-format msgid "When this action is turned on, the main sorting key in the &krusader; panel becomes the file size. This is useful for determining the largest files in a particular directory." msgstr "" #. Tag: menuchoice -#: commands.docbook:1018 +#: commands.docbook:1013 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> <keycap>Win</keycap> <keycap>4</keycap> </keycombo> </shortcut> <guimenu>Useractions</guimenu> <guimenuitem>Sort By Modified</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1030 +#: commands.docbook:1025 #, no-c-format msgid "When this action is turned on, the main sorting key in the &krusader; panel becomes the last modified date for each file. This is useful for finding files you recently worked on." msgstr "" #. Tag: menuchoice -#: commands.docbook:1038 +#: commands.docbook:1033 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Shift;<keycap>F5</keycap> </keycombo> </shortcut> <guimenu>Useractions</guimenu> <guimenuitem>Backup current</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1049 +#: commands.docbook:1044 #, no-c-format msgid "Backups current file in current directory and asks the user for a new filename. By default <filename>.old</filename> is appended to the original filename." msgstr "" #. Tag: title -#: commands.docbook:1056 +#: commands.docbook:1051 #, no-c-format -msgid "<guimenu>Tools</guimenu>Menu" +msgid "Tools Menu" msgstr "" #. Tag: menuchoice -#: commands.docbook:1061 +#: commands.docbook:1055 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>S</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>Search</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1071 +#: commands.docbook:1065 #, no-c-format msgid "Opens <link linkend=\"krusearcher\">KruSearcher</link> - the Krusader search module." msgstr "" #. Tag: menuchoice -#: commands.docbook:1078 +#: commands.docbook:1072 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Ctrl;&Shift; <keycap>L</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>Locate</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1089 +#: commands.docbook:1083 #, no-c-format msgid "Opens the &locate-lnk; for fast file searching." msgstr "" #. Tag: menuchoice -#: commands.docbook:1095 +#: commands.docbook:1089 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>Y</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>Synchronize Directories</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1105 +#: commands.docbook:1099 #, no-c-format msgid "The &syncdirs-lnk; function compares the left and right panels and shows the differences between them. After the compare function, you can move files/directories so that they can be synchronized." msgstr "" #. Tag: menuchoice -#: commands.docbook:1114 +#: commands.docbook:1108 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>/</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>MountMan</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1124 +#: commands.docbook:1118 #, no-c-format msgid "Opens <link linkend=\"mount-man\">MountMan</link> - the Mount-Manager." msgstr "" #. Tag: menuchoice -#: commands.docbook:1131 +#: commands.docbook:1125 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>D</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>Disk Usage</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1141 +#: commands.docbook:1135 #, no-c-format msgid "Opens &diskusage-lnk;." msgstr "" #. Tag: menuchoice -#: commands.docbook:1146 +#: commands.docbook:1140 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>N</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>New Net Connection</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1156 +#: commands.docbook:1150 #, no-c-format msgid "Opens the <link linkend=\"remote-connections\">New Network Connection</link>dialog to start a &FTP;, SMB, FISH or SFTP connection to a remote host. If you leave the user name and password fields empty, you will login as anonymous. You can <link linkend=\"bookman\">Bookmark</link> these remote sessions." msgstr "" #. Tag: menuchoice -#: commands.docbook:1168 +#: commands.docbook:1162 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Shift;&Ctrl; <keycap>F</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>Disconnect From Net</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1179 +#: commands.docbook:1173 #, no-c-format msgid "Ends the <link linkend=\"remote-connections\">remote connection</link> in the active panel and returns to the start-up path." msgstr "" #. Tag: menuchoice -#: commands.docbook:1188 +#: commands.docbook:1182 #, no-c-format msgid "<guimenu>Tools</guimenu> <guimenuitem>Start Terminal</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1194 +#: commands.docbook:1188 #, no-c-format msgid "Opens a terminal window in the default directory (usually your home directory). You can choose your favorite terminal application in the &konfiggereral-lnk;." msgstr "" #. Tag: menuchoice -#: commands.docbook:1202 +#: commands.docbook:1196 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> <keycap>F2</keycap> </keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>Start Terminal Here</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1213 +#: commands.docbook:1207 #, no-c-format msgid "Opens a terminal window in the currently browsed directory of the active panel. You can choose your favorite terminal application in the &konfiggereral-lnk;." msgstr "" #. Tag: menuchoice -#: commands.docbook:1222 +#: commands.docbook:1216 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>K</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>Start Root Mode Krusader</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1232 +#: commands.docbook:1226 #, no-c-format msgid "Starts &krusader; in &rootmode-lnk; at the same location." msgstr "" #. Tag: para -#: commands.docbook:1235 +#: commands.docbook:1229 #, no-c-format msgid "Be careful when using &krusader; with ROOT PRIVILEGES." msgstr "" #. Tag: menuchoice -#: commands.docbook:1243 +#: commands.docbook:1237 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Alt;&Ctrl; <keycap>J</keycap></keycombo> </shortcut> <guimenu>Tools</guimenu> <guimenuitem>Javascript Console</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1254 +#: commands.docbook:1248 #, no-c-format msgid "Opens the <link linkend=\"javascript_console\">Javascript Console</link>." msgstr "" #. Tag: title -#: commands.docbook:1281 +#: commands.docbook:1275 #, no-c-format -msgid "<guimenu>Settings</guimenu> Menu" +msgid "Settings Menu" msgstr "" #. Tag: menuchoice -#: commands.docbook:1286 +#: commands.docbook:1279 #, no-c-format msgid "<guimenu>View</guimenu> <guimenuitem>Show Toolbar</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1292 +#: commands.docbook:1285 #, no-c-format msgid "Shows the &main-toolbar-lnk; if checked." msgstr "" #. Tag: menuchoice -#: commands.docbook:1298 +#: commands.docbook:1291 #, no-c-format msgid "<guimenu>View</guimenu> <guimenuitem>Show Actions Toolbar</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1304 +#: commands.docbook:1297 #, no-c-format msgid "Shows the &actions-toolbar-lnk; if checked." msgstr "" #. Tag: menuchoice -#: commands.docbook:1310 +#: commands.docbook:1303 #, no-c-format msgid "<guimenu>View</guimenu> <guimenuitem>Show Statusbar</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1316 +#: commands.docbook:1309 #, no-c-format msgid "Shows the <link linkend=\"mainwindow\">Statusbar</link> if chosen." msgstr "" #. Tag: menuchoice -#: commands.docbook:1323 +#: commands.docbook:1316 #, no-c-format msgid "<guimenu>View</guimenu> <guimenuitem>Hide Statusbar</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1329 +#: commands.docbook:1322 #, no-c-format msgid "Hides the <link linkend=\"mainwindow\">Statusbar</link> if chosen." msgstr "" #. Tag: menuchoice -#: commands.docbook:1336 +#: commands.docbook:1329 #, no-c-format msgid "<guimenu>View</guimenu> <guimenuitem>Show FN Keys bar</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1342 +#: commands.docbook:1335 #, no-c-format msgid "Shows the &fnkeybar-lnk; if checked." msgstr "" #. Tag: menuchoice -#: commands.docbook:1348 +#: commands.docbook:1341 #, no-c-format msgid "<guimenu>View</guimenu> <guimenuitem>Show Command Line</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1354 +#: commands.docbook:1347 #, no-c-format msgid "Shows the <link linkend=\"cmdline\">Command Line</link> if checked." msgstr "" #. Tag: menuchoice -#: commands.docbook:1361 +#: commands.docbook:1354 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Alt;&Ctrl; <keycap>T</keycap></keycombo> </shortcut> <guimenu>View</guimenu> <guimenuitem>Show Terminal Emulator</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1372 +#: commands.docbook:1365 #, no-c-format msgid "Show the <link linkend=\"cmdline\">Terminal Emulator</link> if checked." msgstr "" #. Tag: menuchoice -#: commands.docbook:1379 +#: commands.docbook:1372 #, no-c-format msgid "<guimenu>Settings</guimenu> <guimenuitem>Configure Shortcuts</guimenuitem>" msgstr "" #. Tag: primary -#: commands.docbook:1386 +#: commands.docbook:1379 #, no-c-format msgid "Configure" msgstr "" #. Tag: secondary -#: commands.docbook:1387 +#: commands.docbook:1380 #, no-c-format msgid "Shortcuts" msgstr "" #. Tag: para -#: commands.docbook:1389 +#: commands.docbook:1382 #, no-c-format msgid "Opens a dialog which allows you to configure the &krusader; key bindings." msgstr "" #. Tag: para -#: commands.docbook:1391 +#: commands.docbook:1384 #, no-c-format msgid "With the <guibutton>Import shortcuts</guibutton> and <guibutton>Export shortcuts</guibutton> buttons you can load and save a Key-binding profile. This allows &krusader; to have the &tcmd;, &mc;, foo-commander, or your custom Key-bindings. The only limitation is that global &kde; key-bindings and some &krusader; key-bindings can not be changed yet, as well as some features in foo-commander that we either do not have or need. The Key-bindings are stored in <filename>$KDEDIR/share/apps/krusader</filename>, <filename>foo.keymap.info</filename> contains a description, <filename>foo.keymap</filename> is an ini file that holds the Key-bindings. Until &krusader;-1.70.1 this was a binary file, &krusader; is backwards compatible for importing this legacy binary format. If a <filename>*.keymap.info</filename> text file exists, &krusader; will display it, showing additional information regarding the loaded Key-bindings file. Here you have a chance to exit without importing the proposed Key-bindings file." msgstr "" #. Tag: para -#: commands.docbook:1415 +#: commands.docbook:1408 #, no-c-format msgid "A &tcmd; Key-bindings file is provided. Please <link linkend=\"help_krusader\"> upload your favorite Key-bindings schemes</link> so that they become available for the &krusader; community. Thanks!" msgstr "" #. Tag: menuchoice -#: commands.docbook:1426 +#: commands.docbook:1419 #, no-c-format msgid "<guimenu>Settings</guimenu> <guimenuitem>Configure Toolbars</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1432 +#: commands.docbook:1425 #, no-c-format msgid "Opens a dialog which allows you to configure the &main-toolbar-lnk; or the &actions-toolbar-lnk;. You can add action buttons of your favourite &useractions-lnk; to the desired toolbar." msgstr "" #. Tag: menuchoice -#: commands.docbook:1441 +#: commands.docbook:1434 #, no-c-format msgid "<guimenu>Settings</guimenu> <guimenuitem>Configure &krusader;</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1448 +#: commands.docbook:1441 #, no-c-format msgid "Opens <link linkend=\"konfigurator\">Konfigurator</link> - the &krusader; configuration center." msgstr "" #. Tag: title -#: commands.docbook:1456 +#: commands.docbook:1449 #, no-c-format -msgid "<guimenu>Window</guimenu>Menu" +msgid "Window Menu" msgstr "" #. Tag: menuchoice -#: commands.docbook:1461 +#: commands.docbook:1453 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Alt;&Ctrl; <keycap>N</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>New Tab</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1472 +#: commands.docbook:1464 #, no-c-format msgid "Opens a new tab in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:1477 +#: commands.docbook:1469 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Alt;&Ctrl;&Shift; <keycap>N</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Duplicate Current Tab</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1488 +#: commands.docbook:1480 #, no-c-format msgid "Opens a new tab that is a duplicate of the active tab in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:1494 +#: commands.docbook:1486 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>W</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Close Current Tab</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1504 +#: commands.docbook:1496 #, no-c-format msgid "Closes the current tab in the active panel. This command is only available if there is more than one tab in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:1511 +#: commands.docbook:1503 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Shift; <keycap>Right</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Next Tab</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1521 +#: commands.docbook:1513 #, no-c-format msgid "Navigates to the next tab in the active panel. This command is only available if there is more than one tab in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:1528 +#: commands.docbook:1520 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Shift; <keycap>Left</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Previous Tab</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1538 +#: commands.docbook:1530 #, no-c-format msgid "Navigates to the previous tab in the active panel. This command is only available if there is more than one tab in the active panel." msgstr "" #. Tag: menuchoice -#: commands.docbook:1545 +#: commands.docbook:1537 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Alt; <keycap>L</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Profiles</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1555 +#: commands.docbook:1547 #, no-c-format msgid "Opens a menu where <link linkend=\"panel_profiles\">Panel profiles</link> can be saved and restored." msgstr "" #. Tag: menuchoice -#: commands.docbook:1562 +#: commands.docbook:1554 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>U</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Swap Panels</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1572 +#: commands.docbook:1564 #, no-c-format msgid "The left panel will become the right panel and vice versa, only the current tabs will be swapped." msgstr "" #. Tag: menuchoice -#: commands.docbook:1578 +#: commands.docbook:1570 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Ctrl;&Shift; <keycap>U</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Swap Sides</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1589 +#: commands.docbook:1581 #, no-c-format msgid "The complete left panel will become the right panel and vice versa, and all tabs will be swapped." msgstr "" #. Tag: menuchoice -#: commands.docbook:1595 +#: commands.docbook:1587 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\"> &Alt;&Ctrl; <keycap>r</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Vertical Mode</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1606 +#: commands.docbook:1598 #, no-c-format msgid "Toggles the &list-panel-lnk; between horizontal and vertical mode." msgstr "" #. Tag: menuchoice -#: commands.docbook:1612 +#: commands.docbook:1604 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Ctrl; <keycap>F</keycap></keycombo> </shortcut> <guimenu>Window</guimenu> <guimenuitem>Toggle Fullwidget Terminal Emulator</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1623 +#: commands.docbook:1615 #, no-c-format msgid "Toggles full screen mode of the terminal editor. This option is only available when \"Show Terminal Emulator\" is activated." msgstr "" #. Tag: menuchoice -#: commands.docbook:1630 +#: commands.docbook:1622 #, no-c-format msgid "<guimenu>Window</guimenu> <guimenuitem>Save Position</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1636 +#: commands.docbook:1628 #, no-c-format msgid "Saves the current size and position of the &krusader; main window. This action can be automated with <guilabel>\"Save settings on exit\"</guilabel> in &konfigstartpg-lnk;" msgstr "" #. Tag: title -#: commands.docbook:1646 +#: commands.docbook:1638 #, no-c-format -msgid "<guimenu>Help</guimenu>Menu" +msgid "Help Menu" msgstr "" #. Tag: menuchoice -#: commands.docbook:1651 +#: commands.docbook:1642 #, no-c-format msgid "<guimenu>Help</guimenu> <guimenuitem>Krusader Handbook</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1657 +#: commands.docbook:1648 #, no-c-format msgid "Opens the &kde; Help system starting at the &krusader; help pages (this document)." msgstr "" #. Tag: menuchoice -#: commands.docbook:1664 +#: commands.docbook:1655 #, no-c-format msgid "<shortcut> <keycombo action=\"simul\">&Shift; <keycap>F1</keycap></keycombo> </shortcut> <guimenu>Help</guimenu> <guimenuitem>What's This?</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1674 +#: commands.docbook:1665 #, no-c-format msgid "The &whatsthis-url; help function changes the mouse cursor to a combination arrow and question mark. Clicking on items within &krusader; will open a help window (if one exists for that particular item) explaining the item function. Use this feature if you want to know more about a specific item. A right-click on an item will also open the &whatsthis-url; help." msgstr "" #. Tag: menuchoice -#: commands.docbook:1687 +#: commands.docbook:1678 #, no-c-format msgid "<guimenu>Help</guimenu> <guimenuitem>Report Bug</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1693 +#: commands.docbook:1684 #, no-c-format msgid "Opens the bug report dialog for sending bug reports via mail." msgstr "" #. Tag: remark -#: commands.docbook:1697 +#: commands.docbook:1688 #, no-c-format msgid "If you have bugs to report please do not use &kde;'s bugzilla http://bugs.kde.org/, &kde;'s Bug Tracking System. We use Sourceforge.net for reporting and managing our &faqbugreports-lnk;." msgstr "" #. Tag: para -#: commands.docbook:1704 +#: commands.docbook:1695 #, no-c-format msgid "Wishes, patches, and comments are always <link linkend=\"faqg_wish\">welcome</link>." msgstr "" #. Tag: menuchoice -#: commands.docbook:1711 +#: commands.docbook:1702 #, no-c-format msgid "<guimenu>Help</guimenu> <guimenuitem>About Krusader</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1717 +#: commands.docbook:1708 #, no-c-format msgid "Displays version, author, and license information." msgstr "" #. Tag: menuchoice -#: commands.docbook:1723 +#: commands.docbook:1714 #, no-c-format msgid "<guimenu>Help</guimenu> <guimenuitem>About KDE</guimenuitem>" msgstr "" #. Tag: para -#: commands.docbook:1729 +#: commands.docbook:1720 #, no-c-format msgid "Displays the &kde; version and basic information." msgstr "" Modified: trunk/krusader_kde4/doc/i18n/pot/compare.docbook.pot =================================================================== --- trunk/krusader_kde4/doc/i18n/pot/compare.docbook.pot 2008-08-02 18:49:34 UTC (rev 6052) +++ trunk/krusader_kde4/doc/i18n/pot/compare.docbook.pot 2008-08-03 20:12:00 UTC (rev 6053) @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Krusader-doc-1.80.03 2007-05-08\n" +"Project-Id-Version: Krusader-doc-2.0.0-2 2008-08-03\n" "Report-Msgid-Bugs-To: <fra...@ya...>\n" -"POT-Creation-Date: 2007-05-08 20:26+0000\n" +"POT-Creation-Date: 2008-08-03 20:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <kru...@go...>\n" Modified: trunk/krusader_kde4/doc/i18n/pot/configuration-files.docbook.pot =================================================================== --- trunk/krusader_kde4/doc/i18n/pot/configuration-files.docbook.pot 2008-08-02 18:49:34 UTC (rev 6052) +++ trunk/krusader_kde4/doc/i18n/pot/configuration-files.docbook.pot 2008-08-03 20:12:00 UTC (rev 6053) @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Krusader-doc-1.80.03 2007-05-08\n" +"Project-Id-Version: Krusader-doc-2.0.0-2 2008-08-03\n" "Report-Msgid-Bugs-To: <fra...@ya...>\n" -"POT-Creation-Date: 2007-05-08 20:26+0000\n" +"POT-Creation-Date: 2008-08-03 20:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <kru...@go...>\n" Modified: trunk/krusader_kde4/doc/i18n/pot/credits.docbook.pot =================================================================== --- trunk/krusader_kde4/doc/i18n/pot/credits.docbook.pot 2008-08-02 18:49:34 UTC (rev 6052) +++ trunk/krusader_kde4/doc/i18n/pot/credits.docbook.pot 2008-08-03 20:12:00 UTC (rev 6053) @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Krusader-doc-1.80.03 2007-05-08\n" +"Project-Id-Version: Krusader-doc-2.0.0-2 2008-08-03\n" "Report-Msgid-Bugs-To: <fra...@ya...>\n" -"POT-Creation-Date: 2007-05-08 20:26+0000\n" +"POT-Creation-Date: 2008-08-03 20:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <kru...@go...>\n" @@ -43,233 +43,239 @@ #. Tag: para #: credits.docbook:32 #, no-c-format -msgid "Program copyright 2000-2003 Shie Erlich and Rafi Yanai, 2004-2007 &krusader; Krew <email>kru...@us...</email>" +msgid "Program copyright 2000-2003 Shie Erlich and Rafi Yanai, 2004-2008 &krusader; Krew <email>kru...@us...</email>" msgstr "" #. Tag: para #: credits.docbook:35 #, no-c-format -msgid "&krusader; is developed by a dedicated team of individuals, known as the &krusader; Krew. <itemizedlist> <listitem> <para>Shie Erlich, author <email>er...@us...</email></para> </listitem> <listitem> <para>Rafi Yanai, author <email>ya...@us...</email></para> </listitem> <listitem> <para>Dirk Eschler, webmaster & i18n coordinator <email>des...@us...</email></para> </listitem> <listitem> <para>Csaba Karai, developer <email>ck...@us...</email></para> </listitem> <listitem> <para>Heiner Eichmann, developer <email>h.e...@gm...</email></para> </listitem> <listitem> <para>Jonas Bähr, developer <email>jon...@we...</email></para> </listitem> <listitem> <para>Frank Schoolmeesters, Documentation & Marketing coordinator <email>fra...@ya...</email></para> </listitem> <listitem> <para>Richard Holt, Documentation & Proofing <email>ric...@gm...</email></para> </listitem> <listitem> <para>Matej Urbančič, Marketing & Product Research <email>mat...@gm...</email></para> </listitem> </itemizedlist>The project is written using <application>KDevelop</application>and <application>&Qt; Designer</application>." +msgid "&krusader; is developed by a dedicated team of individuals, known as the &krusader; Krew. <itemizedlist> <listitem> <para>Shie Erlich, author <email>er...@us...</email></para> </listitem> <listitem> <para>Rafi Yanai, author <email>ya...@us...</email></para> </listitem> <listitem> <para>Dirk Eschler, webmaster & i18n coordinator <email>des...@us...</email></para> </listitem> <listitem> <para>Csaba Karai, developer <email>ck...@us...</email></para> </listitem> <listitem> <para>Heiner Eichmann, developer <email>h.e...@gm...</email></para> </listitem> <listitem> <para>Jonas Bähr, developer <email>jon...@we...</email></para> </listitem> <listitem> <para>Václav Jůza, developer <email>vac...@se...</email></para> </listitem> <listitem> <para>Frank Schoolmeesters, Documentation & Marketing coordinator <email>fra...@ya...</email></para> </listitem> <listitem> <para>Richard Holt, Documentation & Proofing <email>ric...@gm...</email></para> </listitem> <listitem> <para>Matej Urbančič, Marketing & Product Research <email>mat...@gm...</email></para> </listitem> </itemizedlist>The project is written using <application>KDevelop</application>and <application>&Qt; Designer</application>." msgstr "" #. Tag: para -#: credits.docbook:80 +#: credits.docbook:84 #, no-c-format msgid "We would especially like to thank Dirk Eschler the &krusader; web master. If you visit the &kruwebsite-url; you'll appreciate the hard work and effort that Dirk has put into the site as much as we do." msgstr "" #. Tag: para -#: credits.docbook:84 +#: credits.docbook:88 #, no-c-format msgid "Contributors: We would like to thank all the &krusader; users who submitted bugs, wishes and patches. Sorry we can't mention all of you." msgstr "" #. Tag: para -#: credits.docbook:87 +#: credits.docbook:91 #, no-c-format msgid "Donations: We would like to thank the following organisations and individuals for their recent financial <ulink url=\"http://sourceforge.net/project/project_donations.php?group_id=6488\"> support</ulink>. In addition we would to thank those who have contributed <ulink url=\"http://sourceforge.net/project/project_donations.php?group_id=6488\"> anonymously</ulink>. Your support is very much appreciated." msgstr "" #. Tag: para -#: credits.docbook:96 +#: credits.docbook:100 #, no-c-format msgid "<ulink url=\"http://Distrowatch.com\"> distroWatch.com</ulink> (donation)" msgstr "" #. Tag: para -#: credits.docbook:101 +#: credits.docbook:105 #, no-c-format msgid "Sven Opitz (the first donation ever !)" msgstr "" #. Tag: para -#: credits.docb... [truncated message content] |
From: <jb...@us...> - 2008-08-02 18:49:27
|
Revision: 6052 http://krusader.svn.sourceforge.net/krusader/?rev=6052&view=rev Author: jbaehr Date: 2008-08-02 18:49:34 +0000 (Sat, 02 Aug 2008) Log Message: ----------- amended the MAC OS X installation instructions Modified Paths: -------------- trunk/krusader_kde4/INSTALL Modified: trunk/krusader_kde4/INSTALL =================================================================== --- trunk/krusader_kde4/INSTALL 2008-07-30 18:20:25 UTC (rev 6051) +++ trunk/krusader_kde4/INSTALL 2008-08-02 18:49:34 UTC (rev 6052) @@ -15,7 +15,9 @@ Platforms --------- * All POSIX (Linux®/BSD/UNIX®-like OSes), Solaris™ -* All BSD Platforms (FreeBSD®/NetBSD®/OpenBSD®/Mac® OS) +* All BSD Platforms (FreeBSD®/NetBSD®/OpenBSD®) +* Tested on Mac® OS X 10.4 "Tiger" on ppc, should work on all versions and + architectures supported by KDE. * Tested on Windows XP®, not yet tested on Windows Vista® but it should work. @@ -128,24 +130,78 @@ -Installation on Mac® OS-X +Installation on Mac® OS X ========================= -Follow the next guidelines -http://techbase.kde.org/Getting_Started/Build/KDE4/Mac_OS_X +With KDE-4 Krusader runs natively on Mac OS X, using it's Aqua user interface +(No more X11 needed!). -Install the dependencies (including cmake) with Fink -http://www.finkproject.org/ +Install the required libs and tools +----------------------------------- +Install CMake from http://cmake.org/ and allow the installer to create symlinks +the to command line tools -Install the Qt-4 binaries available from -http://mac.kde.org/ +Install KDE binaries available from http://mac.kde.org/ +You need at least kdelibs, better kdebase-runtime, and all its dependencies. -Once kdelibs and it's dependencies are up and running. +Setup the build envorinment +--------------------------- +These packages install KDE-4 in /opt/kde4, Qt-4 in /opt/qt4 and all the unix +dependencies in /opt/kde4-deps. These paths need to become part of your +environment: -Proceed with the step of techbase.kde.org -"#Setting_Up_Your_Build_Environment" and -"#Building_kdelibs" (here replacing "kdelibs" by "krusader" ;-)) +$ export PATH="/opt/qt4/bin:/opt/kde4/bin:/opt/kde4-deps/bin:$PATH" +$ export CMAKE_LIBRARY_PATH="/opt/kde4-deps/lib" +$ export CMAKE_INCLUDE_PATH="/opt/kde4-deps/include" +$ export PKG_CONFIG_PATH="/opt/qt4/lib/" +Build Krusader using GNU make +----------------------------- +Now you can proceed with the standard unix build process for Krusader. Note +that we create a build directory with the suffix ".build" for the compiled +objects. This tells Spotlight not to index the content of this directory. +$ tar -xzvf krusader_kde4.tar.gz +$ mkdir krusader.build +$ cd krusader.build +$ cmake ../krusader_kde4 -DCMAKE_INSTALL_PREFIX=/opt/kde4/ +$ make +$ sudo make install + +Now you should have a working Krusader.app instide /opt/kde4/bin. See below +how to create a relocatable aplication bundle. + +Build Krusader using XCode +-------------------------- +An other method is to use Apple's IDE XCode to build Krusader. You have to +install the Apple Developer Tools and change the commands above to: + +$ tar -xzvf krusader_kde4.tar.gz +$ mkdir krusader_xcode +$ cd krusader_xcode +$ cmake ../krusader_kde4 -G Xcode +$ open Project.xcodeproj + +Please consult the XCode manual for details about how to proceed. Any feetback +is wellcome, since we have no XCode gugu in our team ;-) + +Create a relocatable application bundle +--------------------------------------- +To create a Krusader.app which has all resources embedded (like icons and stuff) +tell cmake to use an empty directory as installation prefix, let's say /opt/tmp. +Now build and install Krusader normaly, which should result in a /opt/tmp/share/ +directory. Move this dir into Krusader.app: + +$ mv /opt/tmp/share /opt/tmp/bin/Krusader.app/Contents/ + +As of KDE-4.1 Krusader.app should find it's resources this way as +"<self>.app/Contents/" is added as possible KDEDIR. If you really need an older +version of KDE-4, you have to use a wrapper script as described a mail from +Jonas Bähr to the kde-mac mailing list on 2008-02-03. + +We hope to integrate this resource bundling into the normal build process for +future versions. + + Installation on Windows® ======================== It's the first time that Krusader compiles on Windows®, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <vac...@us...> - 2008-07-30 18:20:19
|
Revision: 6051 http://krusader.svn.sourceforge.net/krusader/?rev=6051&view=rev Author: vaclavjuza Date: 2008-07-30 18:20:25 +0000 (Wed, 30 Jul 2008) Log Message: ----------- FIXED: [Debian: 492955] useraction's availability section was dumped to "command" element. (thanks Iv?\195?\161n Forcada Atienza) Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/UserAction/kraction.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-07-29 20:40:39 UTC (rev 6050) +++ trunk/krusader_kde4/ChangeLog 2008-07-30 18:20:25 UTC (rev 6051) @@ -1,6 +1,8 @@ ADDED: Useractions: added checkbox "enabled" and run mode option "Run in embedded terminal emulator" + FIXED: [Debian: 492955] useraction's availability section was dumped to + "command" element. (thanks Iván Forcada Atienza) FIXED: Do not duplicate menu entries in UserAction menu while still not crashing when configuring toolbars. Modified: trunk/krusader_kde4/krusader/UserAction/kraction.cpp =================================================================== --- trunk/krusader_kde4/krusader/UserAction/kraction.cpp 2008-07-29 20:40:39 UTC (rev 6050) +++ trunk/krusader_kde4/krusader/UserAction/kraction.cpp 2008-07-30 18:20:25 UTC (rev 6051) @@ -611,7 +611,7 @@ } //KrAction::readAvailability QDomElement KrAction::dumpAvailability( QDomDocument& doc ) const { - QDomElement availabilityElement = doc.createElement("command"); + QDomElement availabilityElement = doc.createElement("availability"); # define LIST_ELEMENT( TAGNAME, LIST ) \ { \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <vac...@us...> - 2008-07-29 20:40:30
|
Revision: 6050 http://krusader.svn.sourceforge.net/krusader/?rev=6050&view=rev Author: vaclavjuza Date: 2008-07-29 20:40:39 +0000 (Tue, 29 Jul 2008) Log Message: ----------- ADDED: Useractions: added checkbox "enabled" and run mode option "Run in embedded terminal emulator" Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/ActionMan/actionproperty.cpp trunk/krusader_kde4/krusader/ActionMan/actionproperty.ui trunk/krusader_kde4/krusader/UserAction/kraction.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-07-29 20:08:07 UTC (rev 6049) +++ trunk/krusader_kde4/ChangeLog 2008-07-29 20:40:39 UTC (rev 6050) @@ -1,3 +1,6 @@ + ADDED: Useractions: added checkbox "enabled" + and run mode option "Run in embedded terminal emulator" + FIXED: Do not duplicate menu entries in UserAction menu while still not crashing when configuring toolbars. Modified: trunk/krusader_kde4/krusader/ActionMan/actionproperty.cpp =================================================================== --- trunk/krusader_kde4/krusader/ActionMan/actionproperty.cpp 2008-07-29 20:08:07 UTC (rev 6049) +++ trunk/krusader_kde4/krusader/ActionMan/actionproperty.cpp 2008-07-29 20:40:39 UTC (rev 6050) @@ -80,6 +80,7 @@ connect( bgExecType, SIGNAL( clicked(int) ), SLOT( setModified() ) ); connect( bgAccept, SIGNAL( clicked(int) ), SLOT( setModified() ) ); connect( KeyButtonShortcut, SIGNAL( keySequenceChanged(const QKeySequence&) ), SLOT( setModified() ) ); + connect( chkEnabled, SIGNAL( clicked() ), SLOT( setModified() ) ); connect( leDifferentUser, SIGNAL( textChanged(const QString&) ), SLOT( setModified() ) ); connect( chkDifferentUser, SIGNAL( clicked() ), SLOT( setModified() ) ); connect( chkConfirmExecution, SIGNAL( clicked() ), SLOT( setModified() ) ); @@ -119,6 +120,8 @@ radioNormal->setChecked( true ); radioLocal->setChecked( true ); + + chkEnabled->setChecked( true ); chkConfirmExecution->setChecked( false ); @@ -170,6 +173,9 @@ case KrAction::Terminal: radioTerminal->setChecked( true ); break; + case KrAction::RunInTE: + radioTE->setChecked( true ); + break; default: // case KrAction::Normal: radioNormal->setChecked( true ); break; @@ -179,6 +185,8 @@ radioUrl->setChecked( true ); else radioLocal->setChecked( true ); + + chkEnabled->setChecked( _action->isVisible() ); chkConfirmExecution->setChecked( _action->confirmExecution() ); @@ -257,6 +265,8 @@ _action->setExecType( KrAction::CollectOutput ); else if ( radioTerminal->isChecked() ) _action->setExecType( KrAction::Terminal ); + else if ( radioTE->isChecked() ) + _action->setExecType( KrAction::RunInTE ); else _action->setExecType( KrAction::Normal ); @@ -264,6 +274,9 @@ _action->setAcceptURLs( true ); else _action->setAcceptURLs( false ); + + _action->setEnabled( chkEnabled->isChecked() ); + _action->setVisible( chkEnabled->isChecked() ); _action->setConfirmExecution( chkConfirmExecution->isChecked() ); Modified: trunk/krusader_kde4/krusader/ActionMan/actionproperty.ui =================================================================== --- trunk/krusader_kde4/krusader/ActionMan/actionproperty.ui 2008-07-29 20:08:07 UTC (rev 6049) +++ trunk/krusader_kde4/krusader/ActionMan/actionproperty.ui 2008-07-29 20:40:39 UTC (rev 6050) @@ -389,7 +389,20 @@ </item> </layout> </item> - <item rowspan="2" row="9" column="0" colspan="2" > + <item row="11" column="2" colspan="2" > + <widget class="QCheckBox" name="chkEnabled" > + <property name="enabled" > + <bool>true</bool> + </property> + <property name="whatsThis" > + <string>If not checked, the action is not shown in the menus.</string> + </property> + <property name="text" > + <string>Enabled</string> + </property> + </widget> + </item> + <item rowspan="3" row="9" column="0" colspan="2" > <widget class="KButtonGroup" name="bgExecType" > <property name="sizePolicy" > <sizepolicy vsizetype="Minimum" hsizetype="Preferred" > @@ -401,7 +414,7 @@ <string>Execution mode</string> </property> <layout class="QGridLayout" > - <item row="2" column="0" > + <item row="3" column="0" > <widget class="QRadioButton" name="radioCollectOutput" > <property name="whatsThis" > <string>Collect the output of the executed program.</string> @@ -411,7 +424,7 @@ </property> </widget> </item> - <item row="3" column="0" > + <item row="4" column="0" > <widget class="QCheckBox" name="chkSeparateStdError" > <property name="enabled" > <bool>false</bool> @@ -444,6 +457,16 @@ </property> </widget> </item> + <item row="2" column="0" > + <widget class="QRadioButton" name="radioTE" > + <property name="whatsThis" > + <string>Run the command in the embedded terminal emulator.</string> + </property> + <property name="text" > + <string>Run in the embedded terminal emulator</string> + </property> + </widget> + </item> </layout> </widget> </item> Modified: trunk/krusader_kde4/krusader/UserAction/kraction.cpp =================================================================== --- trunk/krusader_kde4/krusader/UserAction/kraction.cpp 2008-07-29 20:08:07 UTC (rev 6049) +++ trunk/krusader_kde4/krusader/UserAction/kraction.cpp 2008-07-29 20:40:39 UTC (rev 6050) @@ -413,7 +413,14 @@ setName( element.attribute( "name" ).toLatin1() ); */ + QString attr; + attr = element.attribute( "enabled", "true" ); // default: "true" + if ( attr == "false" ) { + setEnabled( false ); + setVisible( false ); + } + for ( QDomNode node = element.firstChild(); !node.isNull(); node = node.nextSibling() ) { QDomElement e = node.toElement(); if ( e.isNull() ) @@ -459,6 +466,10 @@ QDomElement KrAction::xmlDump( QDomDocument& doc ) const { QDomElement actionElement = doc.createElement("action"); actionElement.setAttribute( "name", _name ); + + if ( ! isVisible() ) { + actionElement.setAttribute( "enabled", "false" ); + } #define TEXT_ELEMENT( TAGNAME, TEXT ) \ { \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <vac...@us...> - 2008-07-29 20:07:58
|
Revision: 6049 http://krusader.svn.sourceforge.net/krusader/?rev=6049&view=rev Author: vaclavjuza Date: 2008-07-29 20:08:07 +0000 (Tue, 29 Jul 2008) Log Message: ----------- FIXED: Do not duplicate menu entries in UserAction menu while still not crashing when configuring toolbars (5998). Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/Panel/krpopupmenu.cpp trunk/krusader_kde4/krusader/UserAction/useraction.cpp trunk/krusader_kde4/krusader/UserAction/useraction.h trunk/krusader_kde4/krusader/UserAction/useractionpopupmenu.cpp trunk/krusader_kde4/krusader/UserAction/useractionpopupmenu.h trunk/krusader_kde4/krusader/krusader.cpp trunk/krusader_kde4/krusader/krusaderui.rc Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-07-29 18:00:39 UTC (rev 6048) +++ trunk/krusader_kde4/ChangeLog 2008-07-29 20:08:07 UTC (rev 6049) @@ -1,3 +1,6 @@ + FIXED: Do not duplicate menu entries in UserAction menu while still not crashing when + configuring toolbars. + I18N: Updated Ukrainian translation (thanks Yuri Chornoivan) I18N: Updated Slovenian translation (thanks Matej Urbancic) Modified: trunk/krusader_kde4/krusader/Panel/krpopupmenu.cpp =================================================================== --- trunk/krusader_kde4/krusader/Panel/krpopupmenu.cpp 2008-07-29 18:00:39 UTC (rev 6048) +++ trunk/krusader_kde4/krusader/Panel/krpopupmenu.cpp 2008-07-29 20:08:07 UTC (rev 6049) @@ -118,7 +118,8 @@ } // --------------- user actions - QAction *uAct = addMenu( new UserActionPopupMenu( panel->func->files()->vfs_getFile( item->name() ).url() ) ); + QAction *uAct = new UserActionPopupMenu( panel->func->files()->vfs_getFile( item->name() ).url() ); + addAction( uAct ); uAct->setText( i18n("User Actions") ); for ( KrViewItemList::Iterator it = items.begin(); it != items.end(); ++it ) { vfile *file = panel->func->files()->vfs_search(((*it)->name())); Modified: trunk/krusader_kde4/krusader/UserAction/useraction.cpp =================================================================== --- trunk/krusader_kde4/krusader/UserAction/useraction.cpp 2008-07-29 18:00:39 UTC (rev 6048) +++ trunk/krusader_kde4/krusader/UserAction/useraction.cpp 2008-07-29 20:08:07 UTC (rev 6049) @@ -13,6 +13,7 @@ #include <kdebug.h> #include <kurl.h> #include <kactioncollection.h> +#include <kactionmenu.h> #include <kmenu.h> #include <kstandarddirs.h> #include <kmessagebox.h> @@ -62,10 +63,10 @@ } } -void UserAction::populateMenu( KMenu* menu, const KUrl *currentURL ) { +void UserAction::populateMenu( KActionMenu* menu, const KUrl *currentURL ) { // I have not found any method in Qt/KDE // for non-recursive searching of childs by name ... - QMap<QString, KMenu *> categoryMap; + QMap<QString, KActionMenu *> categoryMap; QList<KrAction *> uncategorised; foreach( KrAction* action, _actions ) @@ -83,21 +84,20 @@ { if (! categoryMap.contains( category ) ) { - KMenu *categoryMenu = new KMenu(); - categoryMenu->setTitle( category ); // use i18n in the future? + KActionMenu *categoryMenu = new KActionMenu( category, menu ); categoryMenu->setObjectName( category ); categoryMap.insert( category, categoryMenu ); } - KMenu *targetMenu = categoryMap.value( category ); + KActionMenu *targetMenu = categoryMap.value( category ); targetMenu->addAction( action ); } } - QMapIterator<QString, KMenu *> mapIter(categoryMap); + QMutableMapIterator<QString, KActionMenu *> mapIter(categoryMap); while ( mapIter.hasNext() ) { mapIter.next(); - menu->addMenu( mapIter.value() ); + menu->addAction( mapIter.value() ); } foreach ( KrAction* action, uncategorised ) Modified: trunk/krusader_kde4/krusader/UserAction/useraction.h =================================================================== --- trunk/krusader_kde4/krusader/UserAction/useraction.h 2008-07-29 18:00:39 UTC (rev 6048) +++ trunk/krusader_kde4/krusader/UserAction/useraction.h 2008-07-29 20:08:07 UTC (rev 6049) @@ -21,7 +21,7 @@ class QStringList; class KrAction; class KUrl; -class KMenu; +class KActionMenu; /** * Useractions are Krusaders backend for user-defined actions on current/selected files in its panels @@ -86,10 +86,10 @@ void setAvailability(const KUrl& currentURL); /** - * Fills a KMenu with all available UserActions in the list + * Fills a KActionMenu with all available UserActions in the list * @param popupmenu to populate */ - void populateMenu(KMenu* menu, const KUrl *currentURL); + void populateMenu(KActionMenu* menu, const KUrl *currentURL); QStringList allCategories(); QStringList allNames(); Modified: trunk/krusader_kde4/krusader/UserAction/useractionpopupmenu.cpp =================================================================== --- trunk/krusader_kde4/krusader/UserAction/useractionpopupmenu.cpp 2008-07-29 18:00:39 UTC (rev 6048) +++ trunk/krusader_kde4/krusader/UserAction/useractionpopupmenu.cpp 2008-07-29 20:08:07 UTC (rev 6049) @@ -13,11 +13,13 @@ #include "useractionpopupmenu.h" #include <kurl.h> +#include <klocale.h> #include "../krusader.h" #include "useraction.h" #include "kraction.h" -UserActionPopupMenu::UserActionPopupMenu( const KUrl ¤tURL, QWidget *parent ) : KMenu( parent ) { +UserActionPopupMenu::UserActionPopupMenu( const KUrl ¤tURL, QWidget *parent ) + : KActionMenu( i18n("User Actions"), parent ) { krUserAction->populateMenu( this, ¤tURL ); } Modified: trunk/krusader_kde4/krusader/UserAction/useractionpopupmenu.h =================================================================== --- trunk/krusader_kde4/krusader/UserAction/useractionpopupmenu.h 2008-07-29 18:00:39 UTC (rev 6048) +++ trunk/krusader_kde4/krusader/UserAction/useractionpopupmenu.h 2008-07-29 20:08:07 UTC (rev 6049) @@ -13,11 +13,11 @@ #ifndef USERACTIONPOPUPMENU_H #define USERACTIONPOPUPMENU_H -#include <kmenu.h> +#include <kactionmenu.h> class KUrl; -class UserActionPopupMenu : public KMenu { +class UserActionPopupMenu : public KActionMenu { public: UserActionPopupMenu( const KUrl ¤tURL, QWidget *parent = 0 ); }; Modified: trunk/krusader_kde4/krusader/krusader.cpp =================================================================== --- trunk/krusader_kde4/krusader/krusader.cpp 2008-07-29 18:00:39 UTC (rev 6048) +++ trunk/krusader_kde4/krusader/krusader.cpp 2008-07-29 20:08:07 UTC (rev 6049) @@ -760,6 +760,9 @@ #if 0 actUserMenu = new KAction( i18n( "User Menu" ), ALT + Qt::Key_QuoteLeft, SLOTS, SLOT( userMenu() ), actionCollection(), "user menu" ); +#else + actUserMenu = new KActionMenu( i18n( "User&actions" ), this); + actionCollection()->addAction( "useractionmenu", actUserMenu ); #endif NEW_KACTION(actManageUseractions, i18n( "Manage User Actions..." ), 0, 0, SLOTS, SLOT( manageUseractions() ), "manage useractions" ); @@ -1044,21 +1047,12 @@ } void Krusader::updateUserActions() { - userActionMenu = (KMenu*) guiFactory()->container( "useractionmenu", this ); + KActionMenu *userActionMenu = (KActionMenu *) actUserMenu; if ( userActionMenu ) { - bool hasManageActs = false; - QList<QAction *> acts = userActionMenu->actions(); - foreach( QAction * act, acts ) { - if( act->objectName() == "manage useractions" ) { - hasManageActs = true; - break; - } - } + userActionMenu->menu()->clear(); - if( !hasManageActs ) - userActionMenu->addAction( krApp->actManageUseractions ); - + userActionMenu->addAction( krApp->actManageUseractions ); userActionMenu->addSeparator(); userAction->populateMenu( userActionMenu, NULL ); } Modified: trunk/krusader_kde4/krusader/krusaderui.rc =================================================================== --- trunk/krusader_kde4/krusader/krusaderui.rc 2008-07-29 18:00:39 UTC (rev 6048) +++ trunk/krusader_kde4/krusader/krusaderui.rc 2008-07-29 20:08:07 UTC (rev 6049) @@ -86,11 +86,13 @@ <Action name="set_jump_back" /> <Action name="jump_back" /> </Menu> - <Menu name="useractionmenu" > + <Action name="useractionmenu"> + <!-- <text>User&actions</text> <Action name="manage useractions" /> <Separator/> - </Menu> + --> + </Action> <Menu name="_tools" ><!-- FIXME tools menu won't show up before the options menu, but does when the name attribute is renamed?! --> <text>&Tools</text> <Action name="find" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cod...@us...> - 2008-07-29 18:00:32
|
Revision: 6048 http://krusader.svn.sourceforge.net/krusader/?rev=6048&view=rev Author: codeknight Date: 2008-07-29 18:00:39 +0000 (Tue, 29 Jul 2008) Log Message: ----------- ADDED: Mac OS-X installation instructions for KDE4, thanks to Jonas Modified Paths: -------------- trunk/krusader_kde4/INSTALL trunk/krusader_kde4/doc/ChangeLog trunk/krusader_kde4/doc/en/index.docbook trunk/krusader_kde4/doc/en/installation.docbook Modified: trunk/krusader_kde4/INSTALL =================================================================== --- trunk/krusader_kde4/INSTALL 2008-07-07 18:53:52 UTC (rev 6047) +++ trunk/krusader_kde4/INSTALL 2008-07-29 18:00:39 UTC (rev 6048) @@ -19,8 +19,8 @@ * Tested on Windows XP®, not yet tested on Windows Vista® but it should work. -Installing on Linux® and BSD platforms -====================================== +Installation on Linux® and BSD platforms +======================================== Krusader dependencies --------------------- @@ -94,7 +94,7 @@ $ tar -xzvf krusader_kde4.tar.gz -$ cd krusader_kde4 +$ cd krusader_kde4 $ cmake -DCMAKE_INSTALL_PREFIX=/usr/ -DQT_INCLUDES=/usr/share/qt4/include @@ -128,14 +128,24 @@ -Installing on Mac® OS-X -======================= -TODO: instructions for Krusader-2.x for KDE4.x +Installation on Mac® OS-X +========================= +Follow the next guidelines +http://techbase.kde.org/Getting_Started/Build/KDE4/Mac_OS_X -The next url explains howto install Krusader-1.x for KDE3 -http://www.krusader.org/handbook/mac-port.html +Install the dependencies (including cmake) with Fink +http://www.finkproject.org/ +Install the Qt-4 binaries available from +http://mac.kde.org/ +Once kdelibs and it's dependencies are up and running. + +Proceed with the step of techbase.kde.org +"#Setting_Up_Your_Build_Environment" and +"#Building_kdelibs" (here replacing "kdelibs" by "krusader" ;-)) + + Installation on Windows® ======================== It's the first time that Krusader compiles on Windows®, Modified: trunk/krusader_kde4/doc/ChangeLog =================================================================== --- trunk/krusader_kde4/doc/ChangeLog 2008-07-07 18:53:52 UTC (rev 6047) +++ trunk/krusader_kde4/doc/ChangeLog 2008-07-29 18:00:39 UTC (rev 6048) @@ -1,12 +1,18 @@ The Krusader Handbook ChangeLog ------------------------------- +2.0.0-beta2 "Space Odyssey" +================================== +Date: + +ADDED: Mac OS-X installation instructions for KDE4 + 2.0.0-beta1 "Phoenix Egg" ================================== -Date: - - ADDED: Windows installation instructions +Date: 2008-07-06 + + ADDED: Windows installation instructions for KDE4 ADDED: KDE4.x installation instructions ADDED: synchronizer_keybindings ADDED: compilation requirements for KDE4 Modified: trunk/krusader_kde4/doc/en/index.docbook =================================================================== --- trunk/krusader_kde4/doc/en/index.docbook 2008-07-07 18:53:52 UTC (rev 6047) +++ trunk/krusader_kde4/doc/en/index.docbook 2008-07-29 18:00:39 UTC (rev 6048) @@ -551,8 +551,8 @@ Back-Cover Texts. A copy of the license is included in the &krusader; sources.</para> </legalnotice> - <date>2008-06-18</date> - <releaseinfo>2.0.0-beta1 "Phoenix Egg"</releaseinfo> + <date>2008-07-26</date> + <releaseinfo>2.0.0-beta2 "Space Odyssey"</releaseinfo> <abstract> <para>&krusader; is an advanced, twin-panel (commander-style) file-manager for KDE, and other desktops in Modified: trunk/krusader_kde4/doc/en/installation.docbook =================================================================== --- trunk/krusader_kde4/doc/en/installation.docbook 2008-07-07 18:53:52 UTC (rev 6047) +++ trunk/krusader_kde4/doc/en/installation.docbook 2008-07-29 18:00:39 UTC (rev 6048) @@ -629,14 +629,36 @@ </sect1> <sect1 id="kde4_mac_install"> - <title>Installing on the MAC platform</title> + <title>Installing on the &MacOS;-X platform</title> -<para><link linkend="mac-port">KDE3 install instructions</link> (FIXME)</para> + <itemizedlist> + <listitem> + <para>Follow the install guidelines of + <ulink url="http://techbase.kde.org/Getting_Started/Build/KDE4/Mac_OS_X">techbase.kde.org</ulink></para> + </listitem> + <listitem> + <para>Install the dependencies (including cmake) with + <ulink url="http://www.finkproject.org/">Fink</ulink>.</para> + </listitem> + <listitem> + <para>Install the &Qt;-4 binaries available from + <ulink url="http://mac.kde.org/">mac.kde.org</ulink></para> + </listitem> + <listitem> + <para>Once kdelibs and it's dependencies are up and running. + </para> + </listitem> + <listitem> + <para>Proceed with the step of techbase.kde.org + "# Setting_Up_Your_Build_Environment" and + "# Building_kdelibs" (here replacing "kdelibs" by "Krusader" ;-)).</para> + </listitem> + </itemizedlist> </sect1> <sect1 id="kde4_win_install"> - <title>Installing on the Windows platform</title> + <title>Installing on the &Windows; platform</title> <para>Tested on &Windows; XP, not yet tested on &Windows; Vista but it should work.</para> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <des...@us...> - 2008-07-07 18:53:43
|
Revision: 6047 http://krusader.svn.sourceforge.net/krusader/?rev=6047&view=rev Author: deschler Date: 2008-07-07 11:53:52 -0700 (Mon, 07 Jul 2008) Log Message: ----------- Modified Paths: -------------- trunk/krusader_kde4/ChangeLog Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-07-07 18:34:25 UTC (rev 6046) +++ trunk/krusader_kde4/ChangeLog 2008-07-07 18:53:52 UTC (rev 6047) @@ -1,3 +1,7 @@ + I18N: Updated Ukrainian translation (thanks Yuri Chornoivan) + I18N: Updated Slovenian translation (thanks Matej Urbancic) + + 2.0.0-beta1 "Phoenix Egg" ========================= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cod...@us...> - 2008-07-07 18:34:16
|
Revision: 6046 http://krusader.svn.sourceforge.net/krusader/?rev=6046&view=rev Author: codeknight Date: 2008-07-07 11:34:25 -0700 (Mon, 07 Jul 2008) Log Message: ----------- Version incrementation to not confuse the 2.0.0-beta-1 release and SVN TRUNK. Version: 2.0.0-beta2 Name: SVN TRUNK Space Odyssey Happend serveral times in the past that Krusader-cvs users where confused because the version number in CVS was not incremented after a release. Modified Paths: -------------- trunk/krusader_kde4/CMakeLists.txt Modified: trunk/krusader_kde4/CMakeLists.txt =================================================================== --- trunk/krusader_kde4/CMakeLists.txt 2008-07-07 18:27:42 UTC (rev 6045) +++ trunk/krusader_kde4/CMakeLists.txt 2008-07-07 18:34:25 UTC (rev 6046) @@ -7,8 +7,8 @@ set(CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE ON) add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS}) -add_definitions( -DVERSION='"2.0.0-beta1"' ) -add_definitions( -DRELEASE_NAME='"Phoenix` Egg"' ) +add_definitions( -DVERSION='"2.0.0-beta2"' ) +add_definitions( -DRELEASE_NAME='"SVN TRUNK Space Odyssey"' ) link_directories(${KDE4_LIB_DIR}) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <des...@us...> - 2008-07-07 18:27:32
|
Revision: 6045 http://krusader.svn.sourceforge.net/krusader/?rev=6045&view=rev Author: deschler Date: 2008-07-07 11:27:42 -0700 (Mon, 07 Jul 2008) Log Message: ----------- Modified Paths: -------------- trunk/krusader_kde4/po/sl.po trunk/krusader_kde4/po/uk.po Modified: trunk/krusader_kde4/po/sl.po =================================================================== --- trunk/krusader_kde4/po/sl.po 2008-07-07 18:25:20 UTC (rev 6044) +++ trunk/krusader_kde4/po/sl.po 2008-07-07 18:27:42 UTC (rev 6045) @@ -1,114 +1,133 @@ -# Translation of krusader.pot to Slovenian -# # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai # Copyright (C) 2004-2008, Krusader Krew # This file is distributed under the same license as the Krusader package # -# Matej Urbancic <mat...@gm...>, 2005, 2006, 2007. +# Matej Urbancic <mat...@gm...>, 2005 - 2008. # msgid "" msgstr "" "Project-Id-Version: krusader-2.0.0-beta1\n" -"Report-Msgid-Bugs-To: krusader-i18n <kru...@go...>\n" -"POT-Creation-Date: 2008-04-16 22:49+0200\n" -"PO-Revision-Date: 2007-04-04 15:43+0100\n" -"Last-Translator: Matej Urbancic <mat...@gm...>\n" +"Report-Msgid-Bugs-To: kru...@go...\n" +"POT-Creation-Date: 2008-05-03 14:14+0200\n" +"PO-Revision-Date: 2008-07-07 14:34+0100\n" +"Last-Translator: Matej Urbančič <ma...@sv...>\n" "Language-Team: krusader-i18n <kru...@go...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" +"X-Poedit-Language: Slovenian\n" "X-Poedit-Country: SLOVENIA\n" "X-Poedit-SourceCharset: utf-8\n" -"X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" #: Dialogs/krpleasewait.cpp:49 +#, kde-format msgid "Krusader::Wait" msgstr "Krusader::Čakanje" -#: Dialogs/krpleasewait.cpp:65 Dialogs/newftpgui.cpp:145 +#: Dialogs/krpleasewait.cpp:65 +#: Dialogs/newftpgui.cpp:152 #: Splitter/splittergui.cpp:126 +#, kde-format msgid "&Cancel" msgstr "&Prekliči" #: Dialogs/krmaskchoice.cpp:57 +#, kde-format msgid "Choose Files" msgstr "Izberi datoteke" #: Dialogs/krmaskchoice.cpp:81 +#, kde-format msgid "Select the following files:" msgstr "Izberi sledeče datoteke:" #: Dialogs/krmaskchoice.cpp:86 +#, kde-format msgid "Predefined Selections" msgstr "Privzeta izbira" #: Dialogs/krmaskchoice.cpp:99 +#, kde-format msgid "" "A predefined selection is a file-mask which you use often.\n" "Some examples are: \"*.c, *.h\", \"*.c, *.o\", etc.\n" -"You can add these masks to the list by typing them and pressing the Add " -"button.\n" +"You can add these masks to the list by typing them and pressing the Add button.\n" "Delete removes a predefined selection and Clear removes all of them.\n" -"Notice that the line in which you edit the mask has it's own history, you " -"can scroll it, if needed." +"Notice that the line in which you edit the mask has it's own history, you can scroll it, if needed." msgstr "" "Pripravljene so maske iskanja, ki jih pogosto uporabljamo.\n" "Dober primer so *.c, *.h, *.c, *.o, itd. Maske lahko dodate\n" -"spisku z vpisom maske in potrdilom na gumb 'Dodaj'.\n" -"Vnose lahko zbrišemo ločeno ali spraznimo celoten izbor. Maske imajo lastno " -"zgodovino, ki jo lahko pregledujemo." +"seznamu z vpisom maske in potrdilom na gumb 'Dodaj'.\n" +"Vnose lahko zbrišemo ločeno ali izpraznimo celoten izbor. Maske imajo lastno zgodovino, ki jo lahko pregledujemo." #: Dialogs/krmaskchoice.cpp:107 +#, kde-format msgid "Add" msgstr "Dodaj" #: Dialogs/krmaskchoice.cpp:108 +#, kde-format msgid "Adds the selection in the line-edit to the list" -msgstr "Doda izbor v urejevalni vrstici na spisek" +msgstr "Doda izbor v urejevalni vrstici na seznam" -#: Dialogs/krmaskchoice.cpp:112 Dialogs/kurllistrequester.cpp:142 -#: BookMan/krbookmarkhandler.cpp:563 Konfigurator/kgcolors.cpp:483 -#: DiskUsage/diskusage.cpp:770 Panel/krpopupmenu.cpp:158 krusader.cpp:739 +#: Dialogs/krmaskchoice.cpp:112 +#: Dialogs/kurllistrequester.cpp:142 +#: BookMan/krbookmarkhandler.cpp:563 +#: Konfigurator/kgcolors.cpp:489 +#: DiskUsage/diskusage.cpp:776 +#: Panel/krpopupmenu.cpp:158 +#: krusader.cpp:778 +#, kde-format msgid "Delete" msgstr "Izbriši" #: Dialogs/krmaskchoice.cpp:113 +#, kde-format msgid "Delete the marked selection from the list" -msgstr "Izbriši označeno iz spiska" +msgstr "Izbriši označeno iz seznama" #: Dialogs/krmaskchoice.cpp:117 +#, kde-format msgid "Clear" msgstr "Počisti" #: Dialogs/krmaskchoice.cpp:118 +#, kde-format msgid "Clears the entire list of selections" -msgstr "Očisti označeni vnos s spiska" +msgstr "Očisti označeni vnos s seznama" #: Dialogs/krmaskchoice.cpp:133 +#, kde-format msgid "OK" msgstr "V Redu" -#: Dialogs/krmaskchoice.cpp:137 Dialogs/packguibase.cpp:298 -#: DiskUsage/diskusage.cpp:162 Panel/listpanel.cpp:874 -#: Panel/panelpopup.cpp:402 Panel/listpanel.cpp~:874 +#: Dialogs/krmaskchoice.cpp:137 +#: Dialogs/packguibase.cpp:302 +#: DiskUsage/diskusage.cpp:165 +#: Panel/listpanel.cpp:818 +#: Panel/panelpopup.cpp:402 +#, kde-format msgid "Cancel" msgstr "Prekliči" #: Dialogs/krspecialwidgets.cpp:119 +#, kde-format msgid "Capacity: " msgstr "Kapaciteta: " #: Dialogs/krspecialwidgets.cpp:129 +#, kde-format msgid "Used: " msgstr "Zasedeno: " #: Dialogs/krspecialwidgets.cpp:130 +#, kde-format msgid "Free: " msgstr "Prosto:" #: Dialogs/krspecialwidgets.cpp:157 +#, kde-format msgid "Not mounted." msgstr "Ni priklopljeno." @@ -121,26 +140,33 @@ "*|vse datoteke" #: Dialogs/krkeydialog.cpp:41 +#, kde-format msgid "Import shortcuts" msgstr "Uvozi bližnjice" #: Dialogs/krkeydialog.cpp:42 +#, kde-format msgid "Load a keybinding profile, e.g., total_commander.keymap" msgstr "Naloži tipkovni profil, npr. total_commander.keymap" #: Dialogs/krkeydialog.cpp:46 +#, kde-format msgid "Export shortcuts" msgstr "Izvozi bližnjice" #: Dialogs/krkeydialog.cpp:47 +#, kde-format msgid "Save current keybindings in a keymap file." msgstr "Shrani trenutne tipkovne povezave v tipkovni zemljevid - keymap" -#: Dialogs/krkeydialog.cpp:64 Dialogs/krkeydialog.cpp:129 +#: Dialogs/krkeydialog.cpp:64 +#: Dialogs/krkeydialog.cpp:129 +#, kde-format msgid "Select a keymap file" msgstr "Izberi datoteko s preglednico tipkovnih bližnic" #: Dialogs/krkeydialog.cpp:71 +#, kde-format msgid "" "This file does not seem to be a valid keymap.\n" "It may be a keymap using a legacy format. The import can't be undone!" @@ -149,70 +175,79 @@ "Morda je datoteka v podedovanem formatu. Uvoza ni mogoče razveljaviti.!" #: Dialogs/krkeydialog.cpp:73 +#, kde-format msgid "Try to import legacy format?" msgstr "Poskušate uvoziti podedovan format?" #: Dialogs/krkeydialog.cpp:74 +#, kde-format msgid "Import anyway" msgstr "Vseeno uvozi" #: Dialogs/krkeydialog.cpp:96 -msgid "" -"The following information was attached to the keymap. Do you really want to " -"import this keymap?" -msgstr "" -"Izpisane podrobnosti so bile pripete k tipkovnemu zemljevidu. Naj res uvozim " -"ta zemljevid ?" +#, kde-format +msgid "The following information was attached to the keymap. Do you really want to import this keymap?" +msgstr "Izpisane podrobnosti so bile pripete k tipkovnemu zemljevidu. Naj res uvozim ta zemljevid ?" #: Dialogs/krkeydialog.cpp:123 +#, kde-format msgid "Please restart this dialog in order to see the changes" msgstr "Prosim ponovno zaženite dialog, če želite videti spremembe." #: Dialogs/krkeydialog.cpp:124 +#, kde-format msgid "Legacy import completed" msgstr "Podedovan uvoz končan" #: Dialogs/krkeydialog.cpp:135 -#, qt-format -msgid "" -"<qt>File <b>%1</b> already exists. Do you really want to overwrite it?</qt>" +#, kde-format +msgid "<qt>File <b>%1</b> already exists. Do you really want to overwrite it?</qt>" msgstr "<qt>Datoteka <b>%1</b> že obstaja. Jo zares želite prepisati?</qt>" -#: Dialogs/krkeydialog.cpp:136 Dialogs/checksumdlg.cpp:630 -#: Konfigurator/kgcolors.cpp:532 DiskUsage/diskusage.cpp:614 -#: Panel/panelfunc.cpp:666 Panel/panelfunc.cpp~:667 +#: Dialogs/krkeydialog.cpp:136 +#: Dialogs/checksumdlg.cpp:630 +#: Konfigurator/kgcolors.cpp:538 +#: DiskUsage/diskusage.cpp:620 +#: Panel/panelfunc.cpp:667 +#, kde-format msgid "Warning" msgstr "Opozorilo" -#: Dialogs/krkeydialog.cpp:136 Dialogs/checksumdlg.cpp:630 -#: Konfigurator/kgcolors.cpp:532 UserAction/kraction.cpp:160 +#: Dialogs/krkeydialog.cpp:136 +#: Dialogs/checksumdlg.cpp:630 +#: Konfigurator/kgcolors.cpp:538 +#: UserAction/kraction.cpp:160 +#, kde-format msgid "Overwrite" msgstr "Prepiši" #: Dialogs/krkeydialog.cpp:144 -#, qt-format +#, kde-format msgid "<qt>Can't open <b>%1</b> for writing!</qt>" msgstr "</qt>Ni mogoče odpreti <b>%1</b> za pisanje!</qt>" #: Dialogs/krdialogs.cpp:155 +#, kde-format msgid "Preserve attributes (only for local targets)" msgstr "Ohrani atribute (samo za lokalne cilje)" #: Dialogs/krdialogs.cpp:162 +#, kde-format msgid "Keep virtual directory structure" msgstr "Ohrani strukturo navideznih map" #: Dialogs/krdialogs.cpp:168 +#, kde-format msgid "Base URL:" msgstr "Osnovna povezava:" #: Dialogs/packgui.cpp:55 -#, qt-format +#, kde-format msgid "Pack %1" msgstr "Stisni <b>%1</b>" #: Dialogs/packgui.cpp:57 -#, qt-format +#, kde-format msgid "Pack %1 file" msgid_plural "Pack %1 files" msgstr[0] "Stisni %1 datotek" @@ -220,247 +255,280 @@ msgstr[2] "Stisni %1 datoteki" msgstr[3] "Stisni %1 datoteke" -#: Dialogs/packgui.cpp:96 +#: Dialogs/packgui.cpp:97 +#, kde-format msgid "Please select a directory" msgstr "Izberi mapo " #: Dialogs/popularurls.cpp:64 +#, kde-format msgid "Saved 'Popular Urls' are invalid. List will be cleared" -msgstr "Shranjeni pogosti naslovi so nepravilni. Spisek bo spraznjen." +msgstr "Shranjeni pogosti naslovi so nepravilni. Seznam bo izpraznjen." #: Dialogs/popularurls.cpp:235 +#, kde-format msgid "Popular Urls" msgstr "Pogosti naslovi" #: Dialogs/popularurls.cpp:254 +#, kde-format msgid " &Search: " msgstr "I&skanje: " -#: Dialogs/newftpgui.cpp:51 +#: Dialogs/newftpgui.cpp:50 +#, kde-format msgid "New Network Connection" msgstr "Nova Omrežna Povezava" -#: Dialogs/newftpgui.cpp:65 +#: Dialogs/newftpgui.cpp:66 +#, kde-format msgid "About to connect to..." msgstr "Omrežna povezava ..." -#: Dialogs/newftpgui.cpp:75 +#: Dialogs/newftpgui.cpp:77 +#, kde-format msgid "Protocol:" msgstr "Protokol" -#: Dialogs/newftpgui.cpp:76 +#: Dialogs/newftpgui.cpp:78 +#, kde-format msgid "Host:" msgstr "Gostitelj:" -#: Dialogs/newftpgui.cpp:77 +#: Dialogs/newftpgui.cpp:79 +#, kde-format msgid "Port:" msgstr "Vrata:" -#: Dialogs/newftpgui.cpp:85 +#: Dialogs/newftpgui.cpp:87 +#, kde-format msgid "ftp://" msgstr "ftp://" -#: Dialogs/newftpgui.cpp:87 +#: Dialogs/newftpgui.cpp:89 +#, kde-format msgid "smb://" msgstr "smb://" -#: Dialogs/newftpgui.cpp:89 +#: Dialogs/newftpgui.cpp:91 +#, kde-format msgid "fish://" msgstr "fish://" -#: Dialogs/newftpgui.cpp:91 +#: Dialogs/newftpgui.cpp:93 +#, kde-format msgid "sftp://" msgstr "sftp://" -#: Dialogs/newftpgui.cpp:122 +#: Dialogs/newftpgui.cpp:125 +#, kde-format msgid "Username:" msgstr "Uporabniško ime:" -#: Dialogs/newftpgui.cpp:124 +#: Dialogs/newftpgui.cpp:129 +#, kde-format msgid "Password:" msgstr "Geslo:" -#: Dialogs/newftpgui.cpp:136 +#: Dialogs/newftpgui.cpp:143 +#, kde-format msgid "&Connect" msgstr "&Povezovanje" -#: Dialogs/checksumdlg.cpp:205 Dialogs/checksumdlg.cpp:507 +#: Dialogs/checksumdlg.cpp:205 +#: Dialogs/checksumdlg.cpp:507 +#, kde-format msgid "Create Checksum" msgstr "Izračun nadzorne vsote" #: Dialogs/checksumdlg.cpp:211 -msgid "" -"<qt>Can't calculate checksum since no supported tool was found. Please check " -"the <b>Dependencies</b> page in Krusader's settings.</qt>" -msgstr "" -"<qt>Ni mogoče izračunati nadzornih vsot, ker ne najdem primernega orodja. " -"Preverite <b>Odvisnosti</b> med nastavitvami Krusaderja.</qt>" +#, kde-format +msgid "<qt>Can't calculate checksum since no supported tool was found. Please check the <b>Dependencies</b> page in Krusader's settings.</qt>" +msgstr "<qt>Ni mogoče izračunati nadzornih vsot, ker ne najdem primernega orodja. Preverite <b>Odvisnosti</b> med nastavitvami Krusaderja.</qt>" -#: Dialogs/checksumdlg.cpp:214 Dialogs/checksumdlg.cpp:333 -msgid "" -"<qt><b>Note</b>: you've selected directories, and probably have no recursive " -"checksum tool installed. Krusader currently supports <i>md5deep, sha1deep, " -"sha256deep, tigerdeep and cfv</i></qt>" -msgstr "" -"<qt><b>Opozorilo</b>: izbrane so tudi mape, vendar verjetno ni orodja za " -"ustvarjanje nadzorno vsot po celotni strukturi map. Krusader podpira " -"<i>md5deep, sha1deep, sha256deep, cfv</i> in <i>tigerdeep</i>.</qt>" +#: Dialogs/checksumdlg.cpp:214 +#: Dialogs/checksumdlg.cpp:333 +#, kde-format +msgid "<qt><b>Note</b>: you've selected directories, and probably have no recursive checksum tool installed. Krusader currently supports <i>md5deep, sha1deep, sha256deep, tigerdeep and cfv</i></qt>" +msgstr "<qt><b>Opozorilo</b>: izbrane so tudi mape, vendar verjetno ni orodja za ustvarjanje nadzorno vsot po celotni strukturi map. Krusader podpira <i>md5deep, sha1deep, sha256deep, cfv</i> in <i>tigerdeep</i>.</qt>" #: Dialogs/checksumdlg.cpp:233 +#, kde-format msgid "About to calculate checksum for the following files" msgstr "Izračun nadzornih vsot za naslednje datoteke" -#: Dialogs/checksumdlg.cpp:234 Dialogs/checksumdlg.cpp:353 +#: Dialogs/checksumdlg.cpp:234 +#: Dialogs/checksumdlg.cpp:353 +#, kde-format msgid " and folders:" msgstr " in mape:" #: Dialogs/checksumdlg.cpp:248 +#, kde-format msgid "Select the checksum method:" msgstr "Izberite metodo za izračun nadzornih vsot:" #: Dialogs/checksumdlg.cpp:277 +#, kde-format msgid "Calculating checksums ..." msgstr "Izračunavanje nadzorne vsote ..." -#: Dialogs/checksumdlg.cpp:294 Dialogs/checksumdlg.cpp:428 -#, qt-format +#: Dialogs/checksumdlg.cpp:294 +#: Dialogs/checksumdlg.cpp:428 +#, kde-format msgid "<qt>There was an error while running <b>%1</b>.</qt>" msgstr "<qt>Prišlo je do napake med nalaganjem <b>%1</b>.</qt>" -#: Dialogs/checksumdlg.cpp:306 Dialogs/checksumdlg.cpp:437 +#: Dialogs/checksumdlg.cpp:306 +#: Dialogs/checksumdlg.cpp:437 +#, kde-format msgid "Error reading stdout or stderr" msgstr "Napaka pri branju stdout ali stderr" -#: Dialogs/checksumdlg.cpp:324 Dialogs/checksumdlg.cpp:462 +#: Dialogs/checksumdlg.cpp:324 +#: Dialogs/checksumdlg.cpp:462 +#, kde-format msgid "Verify Checksum" msgstr "Overi nadzorno vsoto" #: Dialogs/checksumdlg.cpp:330 -msgid "" -"<qt>Can't verify checksum since no supported tool was found. Please check " -"the <b>Dependencies</b> page in Krusader's settings.</qt>" -msgstr "" -"<qt>Ni mogoče preveriti nadzorno vsot, ker ni določenih primernih orodij. " -"Preverite <b>Odvisnosti</b> med nastavitvami Krusaderja.</qt>" +#, kde-format +msgid "<qt>Can't verify checksum since no supported tool was found. Please check the <b>Dependencies</b> page in Krusader's settings.</qt>" +msgstr "<qt>Ni mogoče preveriti nadzorno vsot, ker ni določenih primernih orodij. Preverite <b>Odvisnosti</b> med nastavitvami Krusaderja.</qt>" #: Dialogs/checksumdlg.cpp:352 +#, kde-format msgid "About to verify checksum for the following files" msgstr "Preveril bom nadzorne vsote za naslednje datoteke" #: Dialogs/checksumdlg.cpp:367 +#, kde-format msgid "Checksum file:" msgstr "Datoteka s nadzornimi vsotami:" #: Dialogs/checksumdlg.cpp:382 -#, qt-format -msgid "" -"<qt>Error reading checksum file <i>%1</i>.<br />Please specify a valid " -"checksum file.</qt>" -msgstr "" -"<qt>Napaka pri branju datoteke s nadzornimi števili <i>%1</i>.<br />Izberite " -"primerno datoteko.</qt>" +#, kde-format +msgid "<qt>Error reading checksum file <i>%1</i>.<br />Please specify a valid checksum file.</qt>" +msgstr "<qt>Napaka pri branju datoteke s nadzornimi števili <i>%1</i>.<br />Izberite primerno datoteko.</qt>" #: Dialogs/checksumdlg.cpp:395 -#, qt-format -msgid "" -"<qt>Krusader can't find a checksum tool that handles %1 on your system. " -"Please check the <b>Dependencies</b> page in Krusader's settings.</qt>" -msgstr "" -"<qt>Ne najdem orodja za izračunavanje nadzornih vsot %1. Preverite " -"<b>Odvisnosti</b> med nastavitvami Krusaderja.</qt>" +#, kde-format +msgid "<qt>Krusader can't find a checksum tool that handles %1 on your system. Please check the <b>Dependencies</b> page in Krusader's settings.</qt>" +msgstr "<qt>Ne najdem orodja za izračunavanje nadzornih vsot %1. Preverite <b>Odvisnosti</b> med nastavitvami Krusaderja.</qt>" #: Dialogs/checksumdlg.cpp:413 +#, kde-format msgid "Verifying checksums ..." msgstr "Overjanje nadzorne vsote ..." #: Dialogs/checksumdlg.cpp:480 +#, kde-format msgid "Errors were detected while verifying the checksums" msgstr "Pojavile so se napake pri preverjanju nadzornih vsot" #: Dialogs/checksumdlg.cpp:481 +#, kde-format msgid "Checksums were verified successfully" msgstr "Nadzorne vsote so uspešno overjene" #: Dialogs/checksumdlg.cpp:487 +#, kde-format msgid "The following files have failed:" msgstr "Naslednje datoteke imajo napake:" #: Dialogs/checksumdlg.cpp:527 +#, kde-format msgid "Errors were detected while creating the checksums" msgstr "Pojavile so se napake pri ustvarjanju nadzornih vsot" #: Dialogs/checksumdlg.cpp:528 +#, kde-format msgid "Checksums were created successfully" msgstr "Nadzorne vsote so bile uspešno ustvarjene" #: Dialogs/checksumdlg.cpp:535 +#, kde-format msgid "Here are the calculated checksums:" msgstr "Izpis izračunanih nadzornih vsot:" #: Dialogs/checksumdlg.cpp:543 +#, kde-format msgid "Hash" msgstr "Razpršilo" -#: Dialogs/checksumdlg.cpp:544 Konfigurator/kgcolors.cpp:427 +#: Dialogs/checksumdlg.cpp:544 +#: Konfigurator/kgcolors.cpp:426 +#, kde-format msgid "File" msgstr "Datoteka " #: Dialogs/checksumdlg.cpp:547 +#, kde-format msgid "File and hash" msgstr "Datoteka in razpršilo" #: Dialogs/checksumdlg.cpp:577 +#, kde-format msgid "Here are the errors received:" -msgstr "Tu so napake, ki so se pojavile:" +msgstr "Izpis napak, ki so se pojavile:" #: Dialogs/checksumdlg.cpp:592 +#, kde-format msgid "Save checksum to file:" msgstr "Shrani nadzorne vsote v datoteko:" #: Dialogs/checksumdlg.cpp:606 +#, kde-format msgid "Checksum file for each source file" msgstr "Nadzorne vsote za vsako datoteko posebej" #: Dialogs/checksumdlg.cpp:629 -#, fuzzy, qt-format +#, kde-format msgid "" "File %1 already exists.\n" "Are you sure you want to overwrite it?" msgstr "" -"Datoteka 1% že obstaja.\n" -"Naj jo prepišem?" +"Datoteka %1 že obstaja.\n" +"Ali naj jo prepišem?" #: Dialogs/checksumdlg.cpp:632 +#, kde-format msgid "Select a file to save to" msgstr "Označi datoteko za shranjevanje" #: Dialogs/checksumdlg.cpp:637 -#, qt-format +#, kde-format msgid "Error saving file %1" msgstr "Napaka pri shranjevanju datoteke <b>%1</b>" #: Dialogs/checksumdlg.cpp:649 +#, kde-format msgid "Saving checksum files..." msgstr "Shranjevanje nadzorne vsote ..." #: Dialogs/checksumdlg.cpp:656 +#, kde-format msgid "Errors occured while saving multiple checksums. Stopping" msgstr "Pojavile so se napake pri shranjevanju nadzornih vsot. Prekinjam." #: Dialogs/krprogress.cpp:65 +#, kde-format msgid "Source:" msgstr "Izvor:" -#: Dialogs/krprogress.cpp:70 Dialogs/krprogress.cpp:246 +#: Dialogs/krprogress.cpp:70 +#: Dialogs/krprogress.cpp:246 +#, kde-format msgid "Destination:" msgstr "Cilj:" #: Dialogs/krprogress.cpp:118 +#, kde-format msgid "Krusader Progress" msgstr "Prikaz napredka" #: Dialogs/krprogress.cpp:171 -#, qt-format +#, kde-format msgid "%1 directory" msgid_plural "%1 directories" msgstr[0] "%1 map" @@ -469,7 +537,7 @@ msgstr[3] "%1 mape" #: Dialogs/krprogress.cpp:172 -#, qt-format +#, kde-format msgid "%1 file" msgid_plural "%1 files" msgstr[0] "%1 datotek" @@ -478,16 +546,18 @@ msgstr[3] "%1 datoteke" #: Dialogs/krprogress.cpp:180 +#, kde-format msgid " (Reading)" msgstr " (Berem)" #: Dialogs/krprogress.cpp:197 -#, qt-format +#, kde-format msgid "%1 of %2 complete" msgstr "Končano %1 od %2" -#: Dialogs/krprogress.cpp:207 Dialogs/krprogress.cpp:220 -#, qt-format +#: Dialogs/krprogress.cpp:207 +#: Dialogs/krprogress.cpp:220 +#, kde-format msgid "%2 / %1 directory" msgid_plural "%2 / %1 directories" msgstr[0] "%2 / %1 map" @@ -495,8 +565,9 @@ msgstr[2] "%2 / %1 map" msgstr[3] "%2 / %1 map" -#: Dialogs/krprogress.cpp:209 Dialogs/krprogress.cpp:223 -#, qt-format +#: Dialogs/krprogress.cpp:209 +#: Dialogs/krprogress.cpp:223 +#, kde-format msgid "%2 / %1 file" msgid_plural "%2 / %1 files" msgstr[0] "%2 / %1 datotek" @@ -505,110 +576,137 @@ msgstr[3] "%2 / %1 datotek" #: Dialogs/krprogress.cpp:231 +#, kde-format msgid "Working" msgstr "Delam" #: Dialogs/krprogress.cpp:235 -#, qt-format +#, kde-format msgid "%1/s ( %2 remaining )" msgstr "%1/s (še %2)" #: Dialogs/krspwidgets.cpp:155 +#, kde-format msgid "Enter a selection:" msgstr "Vnesite izbor:" -#: Dialogs/krspwidgets.cpp:307 Dialogs/krspwidgets.cpp:318 +#: Dialogs/krspwidgets.cpp:308 +#: Dialogs/krspwidgets.cpp:319 +#, kde-format msgid "Quick Navigation" msgstr "Hitra Navigacija" -#: Dialogs/krspwidgets.cpp:308 -#, qt-format +#: Dialogs/krspwidgets.cpp:309 +#, kde-format msgid "Already at <i>%1</i>" msgstr "Že pri <i>%1</i>" -#: Dialogs/krspwidgets.cpp:319 -#, qt-format +#: Dialogs/krspwidgets.cpp:320 +#, kde-format msgid "Click to go to <i>%1</i>" msgstr "Klikni za odhod na <i>%1</i>" -#: Dialogs/packguibase.cpp:68 Dialogs/packguibase.cpp:122 +#: Dialogs/packguibase.cpp:68 +#: Dialogs/packguibase.cpp:122 +#, kde-format msgid "Pack" msgstr "Stisni" #: Dialogs/packguibase.cpp:78 +#, kde-format msgid "To archive" msgstr "v arhiv" #: Dialogs/packguibase.cpp:97 +#, kde-format msgid "In directory" msgstr "v mapo" #: Dialogs/packguibase.cpp:147 +#, kde-format msgid "Multiple volume archive" msgstr "Več enotni arhiv" -#: Dialogs/packguibase.cpp:156 DiskUsage/diskusage.cpp:1077 +#: Dialogs/packguibase.cpp:156 +#: DiskUsage/diskusage.cpp:1083 +#, kde-format msgid "Size:" msgstr "Velikost:" #: Dialogs/packguibase.cpp:174 +#, kde-format msgid "Set compression level" msgstr "Določi stopnjo stiskanja" -#: Dialogs/packguibase.cpp:195 +#: Dialogs/packguibase.cpp:199 +#, kde-format msgid "MIN" msgstr "MIN" -#: Dialogs/packguibase.cpp:196 +#: Dialogs/packguibase.cpp:200 +#, kde-format msgid "MAX" msgstr "MAX" -#: Dialogs/packguibase.cpp:220 +#: Dialogs/packguibase.cpp:224 +#, kde-format msgid "Password" msgstr "Geslo" -#: Dialogs/packguibase.cpp:230 +#: Dialogs/packguibase.cpp:234 +#, kde-format msgid "Again" msgstr "Znova" -#: Dialogs/packguibase.cpp:248 +#: Dialogs/packguibase.cpp:252 +#, kde-format msgid "Encrypt headers" msgstr "Šifriranje glave" -#: Dialogs/packguibase.cpp:260 +#: Dialogs/packguibase.cpp:264 +#, kde-format msgid "Command line switches:" msgstr "Zastavice ukazne vrstice:" -#: Dialogs/packguibase.cpp:286 Dialogs/packguibase.cpp:326 +#: Dialogs/packguibase.cpp:290 +#: Dialogs/packguibase.cpp:330 #: Filter/filtertabs.cpp:49 +#, kde-format msgid "&Advanced" msgstr "&Napredno" -#: Dialogs/packguibase.cpp:293 +#: Dialogs/packguibase.cpp:297 +#, kde-format msgid "Ok" msgstr "V redu" -#: Dialogs/packguibase.cpp:342 +#: Dialogs/packguibase.cpp:347 +#, kde-format msgid "No password specified" msgstr "Ni določenega gesla" -#: Dialogs/packguibase.cpp:347 +#: Dialogs/packguibase.cpp:352 +#, kde-format msgid "The passwords are equal" msgstr "Gesli sta enaki" -#: Dialogs/packguibase.cpp:351 +#: Dialogs/packguibase.cpp:356 +#, kde-format msgid "The passwords are different" msgstr "Gesli sta različni" -#: Dialogs/packguibase.cpp:388 +#: Dialogs/packguibase.cpp:394 +#, kde-format msgid "Cannot pack! The passwords are different!" msgstr "Ni mogoče stisniti! Gesli nista enaki!" -#: Dialogs/packguibase.cpp:413 +#: Dialogs/packguibase.cpp:419 +#, kde-format msgid "Invalid volume size!" msgstr "Napačna velikost enote!" -#: Dialogs/packguibase.cpp:443 +#: Dialogs/packguibase.cpp:449 +#, kde-format msgid "" "Invalid command line switch!\n" "Switch must start with '-'!" @@ -616,7 +714,8 @@ "Nepravilna zastavica ukaza!\n" "Zastavica se mora začeti z '-'!" -#: Dialogs/packguibase.cpp:455 +#: Dialogs/packguibase.cpp:461 +#, kde-format msgid "" "Invalid command line switch!\n" "Backslash cannot be the last character" @@ -624,7 +723,8 @@ "Nepravilna zastavica ukaza!\n" "Povratni delivec ne more biti zadnji znak." -#: Dialogs/packguibase.cpp:463 +#: Dialogs/packguibase.cpp:469 +#, kde-format msgid "" "Invalid command line switch!\n" "Unclosed quotation mark!" @@ -633,808 +733,951 @@ "Nezaključeni znaki \"\"!" #: BookMan/krbookmarkbutton.cpp:15 +#: BookMan/krbookmarkbutton.cpp:16 +#, kde-format msgid "BookMan II" msgstr "BookMan II" -#: BookMan/krbookmarkbutton.cpp:19 BookMan/krbookmarkhandler.cpp:32 -#: BookMan/kraddbookmarkdlg.cpp:80 krusader.cpp:707 +#: BookMan/krbookmarkbutton.cpp:20 +#: BookMan/krbookmarkhandler.cpp:32 +#: BookMan/kraddbookmarkdlg.cpp:80 +#: krusader.cpp:746 +#, kde-format msgid "Bookmarks" msgstr "Zaznamki" #: BookMan/krbookmarkhandler.cpp:171 -#, qt-format +#, kde-format msgid "Unable to write to %1" msgstr "Ni mogoče pisati na %1" -#: BookMan/krbookmarkhandler.cpp:171 BookMan/krbookmarkhandler.cpp:267 -#: Synchronizer/synchronizerdirlist.cpp:120 Konfigurator/kgcolors.cpp:517 -#: Konfigurator/kgcolors.cpp:534 Konfigurator/kggeneral.cpp:223 -#: VFS/krarchandler.cpp:207 VFS/krarchandler.cpp:266 VFS/krarchandler.cpp:284 -#: VFS/krarchandler.cpp:345 VFS/krarchandler.cpp:519 VFS/krarchandler.cpp:526 -#: VFS/virt_vfs.cpp:90 VFS/virt_vfs.cpp:180 VFS/normal_vfs.cpp:91 -#: VFS/normal_vfs.cpp:101 VFS/normal_vfs.cpp:108 MountMan/kmountman.cpp:205 +#: BookMan/krbookmarkhandler.cpp:171 +#: BookMan/krbookmarkhandler.cpp:267 +#: Synchronizer/synchronizerdirlist.cpp:120 +#: Konfigurator/kgcolors.cpp:523 +#: Konfigurator/kgcolors.cpp:540 +#: Konfigurator/kggeneral.cpp:223 +#: VFS/krarchandler.cpp:207 +#: VFS/krarchandler.cpp:266 +#: VFS/krarchandler.cpp:284 +#: VFS/krarchandler.cpp:345 +#: VFS/krarchandler.cpp:519 +#: VFS/krarchandler.cpp:526 +#: VFS/virt_vfs.cpp:90 +#: VFS/virt_vfs.cpp:180 +#: VFS/normal_vfs.cpp:91 +#: VFS/normal_vfs.cpp:101 +#: VFS/normal_vfs.cpp:108 +#: MountMan/kmountman.cpp:205 +#, kde-format msgid "Error" msgstr "Napaka" #: BookMan/krbookmarkhandler.cpp:179 +#, kde-format msgid " instead of " msgstr " namesto " -#: BookMan/krbookmarkhandler.cpp:184 BookMan/krbookmarkhandler.cpp:190 +#: BookMan/krbookmarkhandler.cpp:184 +#: BookMan/krbookmarkhandler.cpp:190 #: BookMan/krbookmarkhandler.cpp:221 +#, kde-format msgid "missing tag " msgstr "manjkajoči zaznamek " #: BookMan/krbookmarkhandler.cpp:260 -#, qt-format +#, kde-format msgid "%1 doesn't seem to be a valid Bookmarks file" msgstr "%1 ni videti kot veljavna datoteka zaznamkov" #: BookMan/krbookmarkhandler.cpp:267 -#, qt-format +#, kde-format msgid "Error reading bookmarks file: %1" msgstr "Napaka pri branju zaznamkov: %1" -#: BookMan/krbookmarkhandler.cpp:330 BookMan/krbookmarkhandler.cpp:489 +#: BookMan/krbookmarkhandler.cpp:330 +#: BookMan/krbookmarkhandler.cpp:489 +#, kde-format msgid "Popular URLs" msgstr "Pogosti naslovi" -#: BookMan/krbookmarkhandler.cpp:399 krusader.cpp:708 +#: BookMan/krbookmarkhandler.cpp:399 +#: krusader.cpp:747 +#, kde-format msgid "Bookmark Current" msgstr "Trenutni zaznamek" #: BookMan/krbookmarkhandler.cpp:402 +#, kde-format msgid "Manage Bookmarks" msgstr "Uredi zaznamke" #: BookMan/krbookmarkhandler.cpp:485 +#, kde-format msgid "Enable special bookmarks" msgstr "Omogoči posebne zaznamke" #: BookMan/krbookmarkhandler.cpp:493 +#, kde-format msgid "Devices" msgstr "Naprave" -#: BookMan/krbookmarkhandler.cpp:497 BookMan/krbookmark.cpp:13 +#: BookMan/krbookmarkhandler.cpp:497 +#: BookMan/krbookmark.cpp:13 +#, kde-format msgid "Local Network" msgstr "Lokalno Omrežje" -#: BookMan/krbookmarkhandler.cpp:501 BookMan/krbookmark.cpp:12 +#: BookMan/krbookmarkhandler.cpp:501 +#: BookMan/krbookmark.cpp:12 +#, kde-format msgid "Virtual Filesystem" msgstr "Navidezni datotečni sistem" #: BookMan/krbookmarkhandler.cpp:505 +#, kde-format msgid "Jump back" msgstr "Skoči nazaj" -#: BookMan/krbookmarkhandler.cpp:557 GUI/mediabutton.cpp:540 +#: BookMan/krbookmarkhandler.cpp:557 +#: GUI/mediabutton.cpp:542 #: Panel/krpopupmenu.cpp:69 +#, kde-format msgid "Open" msgstr "Odpri" -#: BookMan/krbookmarkhandler.cpp:559 GUI/mediabutton.cpp:542 +#: BookMan/krbookmarkhandler.cpp:559 +#: GUI/mediabutton.cpp:544 +#, kde-format msgid "Open in a new tab" msgstr "Odpri v novem zavihku" #: BookMan/kraddbookmarkdlg.cpp:17 +#, kde-format msgid "Add Bookmark" msgstr "Dodaj zaznamek" -#: BookMan/kraddbookmarkdlg.cpp:20 BookMan/kraddbookmarkdlg.cpp:118 +#: BookMan/kraddbookmarkdlg.cpp:20 +#: BookMan/kraddbookmarkdlg.cpp:118 +#, kde-format msgid "New Folder" msgstr "Nova mapa" -#: BookMan/kraddbookmarkdlg.cpp:34 DiskUsage/diskusage.cpp:1075 +#: BookMan/kraddbookmarkdlg.cpp:34 +#: DiskUsage/diskusage.cpp:1081 +#, kde-format msgid "Name:" msgstr "Ime:" #: BookMan/kraddbookmarkdlg.cpp:41 +#, kde-format msgid "URL:" msgstr "Povezava:" #: BookMan/kraddbookmarkdlg.cpp:48 +#, kde-format msgid "Create in:" msgstr "Ustvari v:" #: BookMan/kraddbookmarkdlg.cpp:74 -#, fuzzy +#, kde-format msgid "Folders" -msgstr "Mapa ..." +msgstr "Mape" #: BookMan/kraddbookmarkdlg.cpp:118 +#, kde-format msgid "Folder name:" msgstr "Ime mape:" -#: BookMan/krbookmark.cpp:11 krusader.cpp:713 +#: BookMan/krbookmark.cpp:11 +#: krusader.cpp:752 +#, kde-format msgid "Media" msgstr "Priklopi" -#: Synchronizer/synchronizergui.cpp:1108 Synchronizer/synchronizergui.cpp:2332 +#: Synchronizer/synchronizergui.cpp:1108 +#: Synchronizer/synchronizergui.cpp:2344 #: Synchronizer/synchronizergui.cpp~:1108 #: Synchronizer/synchronizergui.cpp~:2332 +#, kde-format msgid "Krusader::Synchronize Directories" msgstr "Krusader::Usklajevanje map" #: Synchronizer/synchronizergui.cpp:1127 #: Synchronizer/synchronizergui.cpp~:1127 +#, kde-format msgid "Directory Comparison" msgstr "Primerjava vsebine map" #: Synchronizer/synchronizergui.cpp:1138 #: Synchronizer/synchronizergui.cpp~:1138 +#, kde-format msgid "File &Filter:" msgstr "Maska &filtriranja:" #: Synchronizer/synchronizergui.cpp:1160 #: Synchronizer/synchronizergui.cpp~:1160 +#, kde-format msgid "The left base directory used during the synchronisation process." msgstr "Leva mapa uporabljena med usklajevanjem." #: Synchronizer/synchronizergui.cpp:1177 -#: Synchronizer/synchronizergui.cpp~:1177 Filter/generalfilter.cpp:80 -msgid "" -"<p>The filename filtering criteria is defined here.</p><p>You can make use " -"of wildcards. Multiple patterns are separated by space (means logical OR) " -"and patterns are excluded from the search using the pipe symbol.</p><p>If " -"the pattern is ended with a slash (<code>*pattern*/</code>), that means that " -"pattern relates to recursive search of directories.<ul><li><code>pattern</" -"code> - means to search those files/directories that name is <code>pattern</" -"code>, recursive search goes through all subdirectories independently of the " -"value of <code>pattern</code></li><li><code>pattern/</code> - means to " -"search all files/directories, but recursive search goes through/excludes the " -"directories that name is <code>pattern</code></li></ul><p></p><p>It's " -"allowed to use quotation marks for names that contain space. Filter <code>" -"\"Program Files\"</code> searches out those files/directories that name " -"is <code>Program Files</code>.</p><p>Examples:<ul><code><li>*.o</" -"li><li>*.h *.c??</li><li>*.cpp *.h | *.moc.cpp</li><li>* | CVS/ .svn/</li></" -"code></ul><b>Note</b>: the search term '<code>text</code>' is equivalent to " -"'<code>*text*</code>'.</p>" -msgstr "" -"<p>kriterij filtriranje imena datoteke je določen na tem mestu.</" -"p><p>Dovoljena je uporaba nadomestnih znakov. Več vzorcev ločite s " -"presledkom (predstavlja logični OR), izločite pa jih z znakom | (cev).</" -"p><p>Če vzorcu dodate znak / (<code>*vzorec*/</code>), vzorec med iskanjem " -"upošteva celotno strukturo map.<ul><li><code>vzorec</code> - določa iskanje " -"tistih datotek in map, katerih ime vsebuje <code>vzorec</code>, iskanje po " -"strukturi pa teče po celotni strukturi map neodvisno od vrednosti " -"<code>vzorca</code></li><li><code>vzorec/</code> - predstavlja iskanje vseh " -"map in datotek, vendar iskanje po strukturi išče/izloči mape z imenom " -"<code>vzorec</code></li></ul><p></p><p>Dovoljena je uporaba narekovajev za " -"imena, ki vsebujejo presledke. Filter <code>\"Program Files\"</code> " -"išče mape in datoteke, katerih ime vsebuje <code>Program Files</code>.</" -"p><p>Primeri:<ul><code><li>*.o</li><li>*.h *.c??</li><li>*.cpp *.h | *.moc." -"cpp</li><li>* | CVS/ .svn/</li></code></ul><b>Opomba</b>: predmet iskanja " -"'<code>besedilo</code>' je enak iskanju '<code>*besedilo*</code>'.</p>" +#: Synchronizer/synchronizergui.cpp~:1177 +#: Filter/generalfilter.cpp:82 +#, kde-format +msgid "<p>The filename filtering criteria is defined here.</p><p>You can make use of wildcards. Multiple patterns are separated by space (means logical OR) and patterns are excluded from the search using the pipe symbol.</p><p>If the pattern is ended with a slash (<code>*pattern*/</code>), that means that pattern relates to recursive search of directories.<ul><li><code>pattern</code> - means to search those files/directories that name is <code>pattern</code>, recursive search goes through all subdirectories independently of the value of <code>pattern</code></li><li><code>pattern/</code> - means to search all files/directories, but recursive search goes through/excludes the directories that name is <code>pattern</code></li></ul><p></p><p>It's allowed to use quotation marks for names that contain space. Filter <code>\"Program Files\"</code> searches out those files/directories that name is <code>Program Files</code>.</p><p>Examples:<ul><code><li>*.o</li><li>*.h *.c??</li><li>*.cpp *.h | *.moc.cpp</li><li>* | CVS/ .svn/</li></code></ul><b>Note</b>: the search term '<code>text</code>' is equivalent to '<code>*text*</code>'.</p>" +msgstr "<p>kriterij filtriranje imena datoteke je določen na tem mestu.</p><p>Dovoljena je uporaba nadomestnih znakov. Več vzorcev ločite s presledkom (predstavlja logični OR), izločite pa jih z znakom | (cev).</p><p>Če vzorcu dodate znak / (<code>*vzorec*/</code>), vzorec med iskanjem upošteva celotno strukturo map.<ul><li><code>vzorec</code> - določa iskanje tistih datotek in map, katerih ime vsebuje <code>vzorec</code>, iskanje po strukturi pa teče po celotni strukturi map neodvisno od vrednosti <code>vzorca</code></li><li><code>vzorec/</code> - predstavlja iskanje vseh map in datotek, vendar iskanje po strukturi išče/izloči mape z imenom <code>vzorec</code></li></ul><p></p><p>Dovoljena je uporaba narekovajev za imena, ki vsebujejo presledke. Filter <code>\"Program Files\"</code> išče mape in datoteke, katerih ime vsebuje <code>Program Files</code>.</p><p>Primeri:<ul><code><li>*.o</li><li>*.h *.c??</li><li>*.cpp *.h | *.moc.cpp</li><li>* | CVS/ .svn/</li></code></ul><b>Opomba</b>: predmet iskanja '<code>besedilo</code>' je enak iskanju '<code>*besedilo*</code>'.</p>" #: Synchronizer/synchronizergui.cpp:1193 #: Synchronizer/synchronizergui.cpp~:1193 +#, kde-format msgid "The right base directory used during the synchronisation process." msgstr "Desna mapa uporabljena med usklajevanjem." #: Synchronizer/synchronizergui.cpp:1207 #: Synchronizer/synchronizergui.cpp~:1207 +#, kde-format msgid "Recurse subdirectories" -msgstr "Vključi podmape" +msgstr "Upoštevaj podmape" #: Synchronizer/synchronizergui.cpp:1210 #: Synchronizer/synchronizergui.cpp~:1210 +#, kde-format msgid "Compare not only the base directories but their subdirectories as well." msgstr "Primerja mape in vse njihove podmape." #: Synchronizer/synchronizergui.cpp:1211 #: Synchronizer/synchronizergui.cpp~:1211 +#, kde-format msgid "Follow symlinks" msgstr "Sledi povezavam" #: Synchronizer/synchronizergui.cpp:1215 #: Synchronizer/synchronizergui.cpp~:1215 +#, kde-format msgid "Follow symbolic links during the compare process." msgstr "Sledi simbolnim povezavam med postopkom primerjave." #: Synchronizer/synchronizergui.cpp:1216 #: Synchronizer/synchronizergui.cpp~:1216 +#, kde-format msgid "Compare by content" msgstr "Primerjava vsebine" #: Synchronizer/synchronizergui.cpp:1219 #: Synchronizer/synchronizergui.cpp~:1219 +#, kde-format msgid "Compare duplicated files with same size by content." msgstr "Primerjave vsebine podvojenih datotek enakih velikosti." #: Synchronizer/synchronizergui.cpp:1220 #: Synchronizer/synchronizergui.cpp~:1220 +#, kde-format msgid "Ignore Date" msgstr "Zanemari datum" #: Synchronizer/synchronizergui.cpp:1223 #: Synchronizer/synchronizergui.cpp~:1223 -msgid "" -"<p>Ignore date information during the compare process.</p><p><b>Note</b>: " -"useful if the files are located on network filesystems or in archives.</p>" -msgstr "" -"<p>Prezri podrobnosti o datumu med postopkom primerjave.</p><p><b>Opozorilo</" -"b>: koristno, ko so oddaljene datoteke na mrežnem datotečnem sistemu ali v " -"arhivih.</p>" +#, kde-format +msgid "<p>Ignore date information during the compare process.</p><p><b>Note</b>: useful if the files are located on network filesystems or in archives.</p>" +msgstr "<p>Prezri podrobnosti o datumu med postopkom primerjave.</p><p><b>Opozorilo</b>: koristno, ko so oddaljene datoteke na mrežnem datotečnem sistemu ali v arhivih.</p>" #: Synchronizer/synchronizergui.cpp:1224 #: Synchronizer/synchronizergui.cpp~:1224 +#, kde-format msgid "Asymmetric" msgstr "Neskladne strani" #: Synchronizer/synchronizergui.cpp:1227 #: Synchronizer/synchronizergui.cpp~:1227 -msgid "" -"<p><b>Asymmetric mode</b></p><p>The left side is the destination, the right " -"is the source directory. Files existing only in the left directory will be " -"deleted, the other differing ones will be copied from right to left.</" -"p><p><b>Note</b>: useful when updating a directory from a file server.</p>" -msgstr "" -"<p><b>Neskladni način</b></p><p>Leva stran je ciljna mapa, desna pa izvorna. " -"Datoteke, ki so samo na levi bodo izbrisane, ostale pa bodo kopirane iz " -"desne na levo.</p><p><b>Opozorilo</b>: uporabno pri posodobitvi s strežnika." -"</p>" +#, kde-format +msgid "<p><b>Asymmetric mode</b></p><p>The left side is the destination, the right is the source directory. Files existing only in the left directory will be deleted, the other differing ones will be copied from right to left.</p><p><b>Note</b>: useful when updating a directory from a file server.</p>" +msgstr "<p><b>Neskladni način</b></p><p>Leva stran je ciljna mapa, desna pa izvorna. Datoteke, ki so samo na levi bodo izbrisane, ostale pa bodo kopirane iz desne na levo.</p><p><b>Opozorilo</b>: uporabno pri posodobitvi s strežnika.</p>" #: Synchronizer/synchronizergui.cpp:1228 #: Synchronizer/synchronizergui.cpp~:1228 +#, kde-format msgid "Ignore Case" msgstr "Zanemari velikost črk" #: Synchronizer/synchronizergui.cpp:1231 #: Synchronizer/synchronizergui.cpp~:1231 -msgid "" -"<p>Case insensitive filename compare.</p><p><b>Note</b>: useful when " -"synchronizing Windows filesystems.</p>" -msgstr "" -"<p>Primerjava občutljiva za velikost črk.</p><p><b>Opozorilo</b>: uporabno " -"pri usklajevanju z MS Windows datotečnim sistemom.</p>" +#, kde-format +msgid "<p>Case insensitive filename compare.</p><p><b>Note</b>: useful when synchronizing Windows filesystems.</p>" +msgstr "<p>Primerjava občutljiva za velikost črk.</p><p><b>Opozorilo</b>: uporabno pri usklajevanju z MS Windows datotečnim sistemom.</p>" #: Synchronizer/synchronizergui.cpp:1238 #: Synchronizer/synchronizergui.cpp~:1238 +#, kde-format msgid "S&how options" msgstr "Prikaži &možnosti" #: Synchronizer/synchronizergui.cpp:1257 #: Synchronizer/synchronizergui.cpp~:1257 +#, kde-format msgid "Show files marked to <i>Copy from left to right</i> (CTRL+L)." -msgstr "" -"Prikaže datoteke označene za <i>kopiranje z leve na desno</i> (CTRL+L)." +msgstr "Prikaže datoteke označene za <i>kopiranje z leve na desno</i> (CTRL+L)." #: Synchronizer/synchronizergui.cpp:1267 #: Synchronizer/synchronizergui.cpp~:1267 +#, kde-format msgid "Show files considered to be identical (CTRL+E)." msgstr "Pokaži datoteke, ki naj bi bile povsem enake (CTRL+E)." #: Synchronizer/synchronizergui.cpp:1277 #: Synchronizer/synchronizergui.cpp~:1277 +#, kde-format msgid "Show excluded files (CTRL+D)." msgstr "Pokaži izločene datoteke (CTRL+D)." #: Synchronizer/synchronizergui.cpp:1287 #: Synchronizer/synchronizergui.cpp~:1287 +#, kde-format msgid "Show files marked to <i>Copy from right to left</i> (CTRL+R)." msgstr "Pokaži datoteke označene za <i>Kopiranje z desne na levo</i> (CTRL+R)." #: Synchronizer/synchronizergui.cpp:1297 #: Synchronizer/synchronizergui.cpp~:1297 +#, kde-format msgid "Show files marked to delete. (CTRL+T)" msgstr "Pokaži datoteke označene za brisanje (CTRL+T)." #: Synchronizer/synchronizergui.cpp:1302 #: Synchronizer/synchronizergui.cpp~:1302 +#, kde-format msgid "Duplicates" msgstr "Podvojene datoteke" #: Synchronizer/synchronizergui.cpp:1307 #: Synchronizer/synchronizergui.cpp~:1307 +#, kde-format msgid "Show files that exist on both sides." msgstr "Prikaže datoteke ki so na obeh straneh." #: Synchronizer/synchronizergui.cpp:1311 #: Synchronizer/synchronizergui.cpp~:1311 +#, kde-format msgid "Singles" msgstr "Posamezne datoteke" #: Synchronizer/synchronizergui.cpp:1316 #: Synchronizer/synchronizergui.cpp~:1316 +#, kde-format msgid "Show files that exist on one side only." msgstr "Prikaže datoteke ki so samo na eni strani." #: Synchronizer/synchronizergui.cpp:1325 #: Synchronizer/synchronizergui.cpp~:1325 +#, kde-format msgid "The compare results of the synchronizer (CTRL+M)." msgstr "Rezultati primerjave usklajevanja (CTRL+M)." -#: Synchronizer/synchronizergui.cpp:1334 Synchronizer/synchronizergui.cpp:1340 +#: Synchronizer/synchronizergui.cpp:1336 +#: Synchronizer/synchronizergui.cpp:1342 #: Synchronizer/synchronizergui.cpp~:1334 -#: Synchronizer/synchronizergui.cpp~:1340 Konfigurator/krresulttable.cpp:133 -#: DiskUsage/dulistview.cpp:55 DiskUsage/dulines.cpp:197 -#: MountMan/kmountmangui.cpp:125 Panel/krdetailedview.cpp:108 -#: Panel/krbriefview.cpp:156 Search/krsearchdialog.cpp:71 +#: Synchronizer/synchronizergui.cpp~:1340 +#: Konfigurator/krresulttable.cpp:139 +#: DiskUsage/dulistview.cpp:55 +#: DiskUsage/dulines.cpp:197 +#: MountMan/kmountmangui.cpp:125 +#: Panel/krdetailedview.cpp:113 +#: Panel/krbriefview.cpp:160 +#: Search/krsearchdialog.cpp:71 #: Search/krsearchdialog.cpp~:71 +#, kde-format msgid "Name" msgstr "Ime" -#: Synchronizer/synchronizergui.cpp:1335 Synchronizer/synchronizergui.cpp:1339 +#: Synchronizer/synchronizergui.cpp:1337 +#: Synchronizer/synchronizergui.cpp:1341 #: Synchronizer/synchronizergui.cpp~:1335 -#: Synchronizer/synchronizergui.cpp~:1339 Filter/advancedfilter.cpp:63 -#: Panel/krdetailedview.cpp:111 Panel/krdetailedview.cpp:1484 -#: Search/krsearchdialog.cpp:73 Search/krsearchdialog.cpp~:73 +#: Synchronizer/synchronizergui.cpp~:1339 +#: Filter/advancedfilter.cpp:65 +#: Panel/krdetailedview.cpp:116 +#: Panel/krdetailedview.cpp:1508 +#: Search/krsearchdialog.cpp:73 +#: Search/krsearchdialog.cpp~:73 +#, kde-format msgid "Size" msgstr "Velikost" -#: Synchronizer/synchronizergui.cpp:1336 Synchronizer/synchronizergui.cpp:1338 +#: Synchronizer/synchronizergui.cpp:1338 +#: Synchronizer/synchronizergui.cpp:1340 #: Synchronizer/synchronizergui.cpp~:1336 -#: Synchronizer/synchronizergui.cpp~:1338 DiskUsage/dulistview.cpp:60 -#: Filter/advancedfilter.cpp:115 Search/krsearchdialog.cpp:74 +#: Synchronizer/synchronizergui.cpp~:1338 +#: DiskUsage/dulistview.cpp:60 +#: Filter/advancedfilter.cpp:121 +#: Search/krsearchdialog.cpp:74 #: Search/krsearchdialog.cpp~:74 +#, kde-format msgid "Date" msgstr "Datum" -#: Synchronizer/synchronizergui.cpp:1337 +#: Synchronizer/synchronizergui.cpp:1339 #: Synchronizer/synchronizergui.cpp~:1337 +#, kde-format msgid "<=>" msgstr "<=>" -#: Synchronizer/synchronizergui.cpp:1384 +#: Synchronizer/synchronizergui.cpp:1386 #: Synchronizer/synchronizergui.cpp~:1384 +#, kde-format msgid "&Synchronizer" msgstr "&Usklajevalnik" -#: Synchronizer/synchronizergui.cpp:1395 +#: Synchronizer/synchronizergui.cpp:1397 #: Synchronizer/synchronizergui.cpp~:1395 +#, kde-format msgid "&Options" msgstr "&Možnosti" -#: Synchronizer/synchronizergui.cpp:1402 +#: Synchronizer/synchronizergui.cpp:1404 #: Synchronizer/synchronizergui.cpp~:1402 +#, kde-format msgid "Parallel threads:" msgstr "Vzporedni prenosi:" -#: Synchronizer/synchronizergui.cpp:1412 +#: Synchronizer/synchronizergui.cpp:1414 #: Synchronizer/synchronizergui.cpp~:1412 +#, kde-format msgid "Equality threshold:" msgstr "Stopnja enakosti:" -#: Synchronizer/synchronizergui.cpp:1420 Synchronizer/synchronizergui.cpp:1435 +#: Synchronizer/synchronizergui.cpp:1422 +#: Synchronizer/synchronizergui.cpp:1437 #: Synchronizer/synchronizergui.cpp~:1420 #: Synchronizer/synchronizergui.cpp~:1435 +#, kde-format msgid "sec" msgstr "sek" -#: Synchronizer/synchronizergui.cpp:1421 Synchronizer/synchronizergui.cpp:1436 +#: Synchronizer/synchronizergui.cpp:1423 +#: Synchronizer/synchronizergui.cpp:1438 #: Synchronizer/synchronizergui.cpp~:1421 #: Synchronizer/synchronizergui.cpp~:1436 +#, kde-format msgid "min" msgstr "min" -#: Synchronizer/synchronizergui.cpp:1422 Synchronizer/synchronizergui.cpp:1437 +#: Synchronizer/synchronizergui.cpp:1424 +#: Synchronizer/synchronizergui.cpp:1439 #: Synchronizer/synchronizergui.cpp~:1422 #: Synchronizer/synchronizergui.cpp~:1437 +#, kde-format msgid "hour" msgstr "ura" -#: Synchronizer/synchronizergui.cpp:1423 Synchronizer/synchronizergui.cpp:1438 +#: Synchronizer/synchronizergui.cpp:1425 +#: Synchronizer/synchronizergui.cpp:1440 #: Synchronizer/synchronizergui.cpp~:1423 #: Synchronizer/synchronizergui.cpp~:1438 +#, kde-format msgid "day" msgstr "dan" -#: Synchronizer/synchronizergui.cpp:1426 +#: Synchronizer/synchronizergui.cpp:1428 #: Synchronizer/synchronizergui.cpp~:1426 +#, kde-format msgid "Time shift (right-left):" msgstr "Določilo časa (desno - levo):" -#: Synchronizer/synchronizergui.cpp:1445 +#: Synchronizer/synchronizergui.cpp:1447 #: Synchronizer/synchronizergui.cpp~:1445 +#, kde-format msgid "Ignore hidden files" msgstr "Prezri skrite datoteke" -#: Synchronizer/synchronizergui.cpp:1459 +#: Synchronizer/synchronizergui.cpp:1461 #: Synchronizer/synchronizergui.cpp~:1459 +#, kde-format msgid "Profile manager (Ctrl+P)." msgstr "Upravljalec profilov (Ctrl+P)." -#: Synchronizer/synchronizergui.cpp:1466 +#: Synchronizer/synchronizergui.cpp:1468 #: Synchronizer/synchronizergui.cpp~:1466 +#, kde-format msgid "Swap sides (Ctrl+S)." msgstr "Zamenjava strani (Ctrl+S)." -#: Synchronizer/synchronizergui.cpp:1477 +#: Synchronizer/synchronizergui.cpp:1479 #: Synchronizer/synchronizergui.cpp~:1477 +#, kde-format msgid "Compare" msgstr "Primerjaj" -#: Synchronizer/synchronizergui.cpp:1486 Synchronizer/synchronizergui.cpp:2443 +#: Synchronizer/synchronizergui.cpp:1488 +#: Synchronizer/synchronizergui.cpp:2521 #: Synchronizer/synchronizergui.cpp~:1486 #: Synchronizer/synchronizergui.cpp~:2443 +#, kde-format msgid "Quiet" msgstr "Tiho" -#: Synchronizer/synchronizergui.cpp:1488 Synchronizer/synchronizergui.cpp:2445 +#: Synchronizer/synchronizergui.cpp:1490 +#: Synchronizer/synchronizergui.cpp:2523 #: Synchronizer/synchronizergui.cpp~:1488 #: Synchronizer/synchronizergui.cpp~:2445 +#, kde-format msgid "Scroll Results" msgstr "Pregled rezultatov" -#: Synchronizer/synchronizergui.cpp:1492 -#: Synchronizer/synchronizergui.cpp~:1492 Locate/locate.cpp:121 -#: Locate/locate.cpp:284 Locate/locate.cpp~:121 Locate/locate.cpp~:284 -#: Search/krsearchdialog.cpp:232 Search/krsearchdialog.cpp~:233 +#: Synchronizer/synchronizergui.cpp:1494 +#: Synchronizer/synchronizergui.cpp~:1492 +#: Locate/locate.cpp:121 +#: Locate/locate.cpp:284 +#: Locate/locate.cpp~:121 +#: Locate/locate.cpp~:284 +#: Search/krsearchdialog.cpp:232 +#: Search/krsearchdialog.cpp~:233 +#, kde-format msgid "Stop" msgstr "Stop" -#: Synchronizer/synchronizergui.cpp:1497 -#: Synchronizer/synchronizergui.cpp~:1497 Locate/locate.cpp:332 -#: Locate/locate.cpp~:332 Search/krsearchdialog.cpp:221 +#: Synchronizer/synchronizergui.cpp:1499 +#: Synchronizer/synchronizergui.cpp~:1497 +#: Locate/locate.cpp:332 +#: Locate/locate.cpp~:332 +#: Search/krsearchdialog.cpp:221 #: Search/krsearchdialog.cpp~:222 +#, kde-format msgid "Feed to listbox" -msgstr "Napolni spisek" +msgstr "Napolni seznam" -#: Synchronizer/synchronizergui.cpp:1503 +#: Synchronizer/synchronizergui.cpp:1505 #: Synchronizer/synchronizergui.cpp~:1503 +#, kde-format msgid "Synchronize" msgstr "Uskladi" -#: Synchronizer/synchronizergui.cpp:1508 -#: Synchronizer/synchronizergui.cpp~:1508 Konfigurator/konfigurator.cpp:73 -#: UserAction/kraction.cpp:59 Search/krsearchdialog.cpp:236 +#: Synchronizer/synchronizergui.cpp:1510 +#: Synchronizer/synchronizergui.cpp~:1508 +#: Konfigurator/konfigurator.cpp:73 +#: UserAction/kraction.cpp:59 +#: Search/krsearchdialog.cpp:236 #: Search/krsearchdialog.cpp~:237 +#, kde-format msgid "Close" msgstr "Zapri" -#: Synchronizer/synchronizergui.cpp:1623 +#: Synchronizer/synchronizergui.cpp:1628 #: Synchronizer/synchronizergui.cpp~:1623 +#, kde-format msgid "Selected files from targ&et directory:" msgstr "Označene datoteke iz &ciljne mape" -#: Synchronizer/synchronizergui.cpp:1624 +#: Synchronizer/synchronizergui.cpp:1629 #: Synchronizer/synchronizergui.cpp~:1624 +#, kde-format msgid "Selected files from sou&rce directory:" msgstr "Izbrane datoteke iz izvo&rne mape:" -#: Synchronizer/synchronizergui.cpp:1628 +#: Synchronizer/synchronizergui.cpp:1633 #: Synchronizer/synchronizergui.cpp~:1628 +#, kde-format msgid "Selected files from &left directory:" msgstr "Izbrane datoteke iz &leve mape:" -#: Synchronizer/synchronizergui.cpp:1629 +#: Synchronizer/synchronizergui.cpp:1634 #: Synchronizer/synchronizergui.cpp~:1629 +#, kde-format msgid "Selected files from &right directory:" msgstr "Izbrane datoteke iz &desne mape:" -#: Synchronizer/synchronizergui.cpp:1633 +#: Synchronizer/synchronizergui.cpp:1638 #: Synchronizer/synchronizergui.cpp~:1633 +#, kde-format msgid "Targ&et directory:" msgstr "&Ciljna mapa:" -#: Synchronizer/synchronizergui.cpp:1634 +#: Synchronizer/synchronizergui.cpp:1639 #: Synchronizer/synchronizergui.cpp~:1634 +#, kde-format msgid "Sou&rce directory:" msgstr "Izvo&rna mapa:" -#: Synchronizer/synchronizergui.cpp:1638 +#: Synchronizer/synchronizergui.cpp:1643 #: Synchronizer/synchronizergui.cpp~:1638 +#, kde-format msgid "&Left directory:" msgstr "&Leva mapa:" -#: Synchronizer/synchronizergui.cpp:1639 +#: Synchronizer/synchronizergui.cpp:1644 #: Synchronizer/synchronizergui.cpp~:1639 +#, kde-format msgid "&Right directory:" msgstr "&Desna mapa:" -#: Synchronizer/synchronizergui.cpp:1674 +#: Synchronizer/synchronizergui.cpp:1679 #: Synchronizer/synchronizergui.cpp~:1674 +#, kde-format msgid "URL must be the descendant of either the left or the right base URL!" -msgstr "" -"Povezava mora biti podrejena levemi ali desnemi povezavi osnovnega naslova." +msgstr "Povezava mora biti podrejena levemi ali desnemi povezavi osnovnega naslova." #: Synchronizer/synchronizergui.cpp:1739 #: Synchronizer/synchronizergui.cpp~:1739 +#, kde-format msgid "Synchronize Directories" msgstr "Uskladi mape" #: Synchronizer/synchronizergui.cpp:1741 #: Synchronizer/synchronizergui.cpp~:1741 +#, kde-format msgid "E&xclude" msgstr "I&zključi" #: Synchronizer/synchronizergui.cpp:1743 #: Synchronizer/synchronizergui.cpp~:1743 +#, kde-format msgid "Restore ori&ginal operation" msgstr "Povrni ori&ginalne operacije" #: Synchronizer/synchronizergui.cpp:1745 #: Synchronizer/synchronizergui.cpp~:1745 +#, kde-format msgid "Re&verse direction" msgstr "Obrni &smer" #: Synchronizer/synchronizergui.cpp:1747 #: Synchronizer/synchronizergui.cpp~:1747 +#, kde-format msgid "Copy from &right to left" msgstr "Kopiranje z de&sne na levo" #: Synchronizer/synchronizergui.cpp:1749 #: Synchronizer/synchronizergui.cpp~:1749 +#, kde-format msgid "Copy from &left to right" msgstr "Kopiranje z le&ve na desno" #: Synchronizer/synchronizergui.cpp:1751 #: Synchronizer/synchronizergui.cpp~:1751 +#, kde-format msgid "&Delete (left single)" msgstr "&Izbriši (levo samostojno)" #: Synchronizer/synchronizergui.cpp:1756 #: Synchronizer/synchronizergui.cpp~:1756 +#, kde-format msgid "V&iew left file" msgstr "Pogled &leve datoteke" #: Synchronizer/synchronizergui.cpp:1759 #: Synchronizer/synchronizergui.cpp~:1759 +#, kde-format msgid "Vi&ew right file" msgstr "Pogled &desne datoteke" #: Synchronizer/synchronizergui.cpp:1762 #: Synchronizer/synchronizergui.cpp~:1762 +#, kde-format msgid "&Compare Files" msgstr "&Primerjava datotek" #: Synchronizer/synchronizergui.cpp:1768 #: Synchronizer/synchronizergui.cpp~:1768 +#, kde-format msgid "C&opy selected to clipboard (left)" msgstr "Kopiranje izbranega v odložišče (levo)" #: Synchronizer/synchronizergui.cpp:1770 #: Synchronizer/synchronizergui.cpp~:1770 +#, kde-format msgid "Co&py selected to clipboard (right)" msgstr "Kopiranje izbranega v odložišče (desno)" #: Synchronizer/synchronizergui.cpp:1775 #: Synchronizer/synchronizergui.cpp~:1775 +#, kde-format msgid "&Select items" msgstr "&Označi predmete" #: Synchronizer/synchronizergui.cpp:1777 #: Synchronizer/synchronizergui.cpp~:1777 +#, kde-format msgid "Deselec&t items" msgstr "&Počisti predmete" #: Synchronizer/synchronizergui.cpp:1779 #: Synchronizer/synchronizergui.cpp~:1779 +#, kde-format msgid "I&nvert selection" msgstr "O&brni označeno" #: Synchronizer/synchronizergui.cpp:1790 #: Synchronizer/synchronizergui.cpp~:1790 +#, kde-format msgid "Synchronize with &KGet" msgstr "Uskladi s &KGet" -#: Synchronizer/synchronizergui.cpp:1858 +#: Synchronizer/synchronizergui.cpp:1869 #: Synchronizer/synchronizergui.cpp~:1858 +#, kde-format msgid "Select items" msgstr "Označi predmete" -#: Synchronizer/synchronizergui.cpp:1859 +#: Synchronizer/synchronizergui.cpp:1870 #: Synchronizer/synchronizergui.cpp~:1859 +#, kde-format msgid "Deselect items" msgstr "Počisti predmete" -#: Synchronizer/synchronizergui.cpp:2049 Synchronizer/synchronizergui.cpp:2056 -#: Synchronizer/synchronizergui.cpp:2108 Synchronizer/synchronizergui.cpp:2115 +#: Synchronizer/synchronizergui.cpp:2060 +#: Synchronizer/synchronizergui.cpp:2067 +#: Synchronizer/synchronizergui.cpp:2119 +#: Synchronizer/synchronizergui.cpp:2126 #: Synchronizer/synchronizergui.cpp~:2049 #: Synchronizer/synchronizergui.cpp~:2056 #: Synchronizer/synchronizergui.cpp~:2108 -#: Synchronizer/synchronizergui.cpp~:2115 Panel/krdetailedviewitem.cpp:79 +#: Synchronizer/synchronizergui.cpp~:2115 +#: Panel/krdetailedviewitem.cpp:79 #: Panel/krdetailedviewitem.cpp:113 +#, kde-format msgid "<DIR>" msgstr "<DIR>" -#: Synchronizer/synchronizergui.cpp:2210 +#: Synchronizer/synchronizergui.cpp:2221 #: Synchronizer/synchronizergui.cpp~:2210 +#, kde-format msgid "Synchronizer has nothing to do!" msgstr "Usklajevalnik nima dela!" -#: Synchronizer/synchronizergui.cpp:2331 +#: Synchronizer/synchronizergui.cpp:2343 #: Synchronizer/synchronizergui.cpp~:2331 -msgid "" -"The synchronizer window contains data from a previous compare. If you exit, " -"this data will be lost. Do you really want to exit?" -msgstr "" -"Usklajevalnik vsebuje podatke predhodne primerjave. Če zapustite program " -"bodo podatki izgubljeni. Zares želite zapustiti program?" +#, kde-format +msgid "The synchronizer window contains data from a previous compare. If you exit, this data will be lost. Do you really want to exit?" +msgstr "Usklajevalnik vsebuje podatke predhodne primerjave. Če zapustite program bodo podatki izgubljeni. Zares želite zapustiti program?" -#: Synchronizer/synchronizertask.cpp:134 Synchronizer/synchronizertask.cpp:141 -#, qt-format +#: Synchronizer/synchronizertask.cpp:134 +#: Synchronizer/synchronizertask.cpp:141 +#, kde-format msgid "Error at opening %1!" msgstr "Napaka pri odpiranju %1!" -#: Synchronizer/synchronizertask.cpp:302 -#, qt-format +#: Synchronizer/synchronizertask.cpp:314 +#, kde-format msgid "IO error at comparing file %1 with %2!" msgstr "IO napaka pri primerjavi datoteke %1 z %2!" -#: Synchronizer/synchronizertask.cpp:338 -#, qt-format +#: Synchronizer/synchronizertask.cpp:350 +#, kde-format msgid "Comparing file %1 (%2)..." msgstr "Primerjanje datotek %1 (%2) ..." -#: Synchronizer/synchronizerdirlist.cpp:120 VFS/normal_vfs.cpp:101 -#, qt-format +#: Synchronizer/synchronizerdirlist.cpp:120 +#: VFS/normal_vfs.cpp:101 +#, kde-format msgid "Can't open the %1 directory!" msgstr "Mape %1 ni mogoče odpreti!" #: Synchronizer/synchronizedialog.cpp:50 +#, kde-format msgid "Krusader::Synchronize" msgstr "Krusader::Usklajevanje" #: Synchronizer/synchronizedialog.cpp:57 -#, qt-format +#, kde-format msgid "Right to left: Copy 1 file" msgid_plural "Right to left: Copy %1 files" -msgstr[0] "_n: Z desne na levo: kopiraj %1 datotek" +msgstr[0] "Z desne na levo: kopiraj %1 datotek" msgstr[1] "Z desne na levo: kopiraj %1 datoteko" msgstr[2] "Z desne na levo: kopiraj %1 datoteki" msgstr[3] "Z desne na levo: kopiraj %1 datoteke" -#: Synchronizer/synchronizedialog.cpp:58 Synchronizer/synchronizedialog.cpp:71 +#: Synchronizer/synchronizedialog.cpp:58 +#: Synchronizer/synchronizedialog.cpp:71 #: Synchronizer/synchronizedialog.cpp:84 -#, qt-format +#, kde-format msgid "(1 byte)" msgid_plural "(%1 bytes)" -msgstr[0] "_n: (1 bajt)" -msgstr[1] "(%1 bajtov)" +msgstr[0] "(%1 bajtov)" +msgstr[1] "(%1 bajt)" +msgstr[2] "(%1 bajta)" +msgstr[3] "(%1 bajti)" -#: Synchronizer/synchronizedialog.cpp:64 Synchronizer/synchronizedialog.cpp:77 +#: Synchronizer/synchronizedialog.cpp:64 +#: Synchronizer/synchronizedialog.cpp:77 #: Synchronizer/synchronizedialog.cpp:90 -#, fuzzy, qt-format +#, kde-format msgid "Ready: %2/1 file, %3/%4" msgid_plural "Ready: %2/%1 files, %3/%4" -msgstr[0] "_n: Pripravljeno: %2/%1 datotek, %4/%5" -msgstr[1] "Pripravljeno: %2/%1 datoteke, %4/%5" -msgstr[2] "Pripravljeno: %2/%1 datotek, %4/%5" -msgstr[3] "Pripravljeno: %2/%1 datotek, %4/%5" +msgstr[0] "Pripravljeno: %2/%1 datotek, %3/%4" +msgstr[1] "Pripravljeno: %2/%1 datoteke, %3/%4" +msgstr[2] "Pripravljeno: %2/%1 datotek, %3/%4" +msgstr[3] "Pripravljeno: %2/%1 datotek, %3/%4" #: Synchronizer/synchronizedialog.cpp:70 -#, qt-format +#, kde-format msgid "Left to right: Copy 1 file" msgid_plural "Left to right: Copy %1 files" -msgstr[0] "_n: Z leve na desno: kopiraj %1 datotek" +msgstr[0] "Z leve na desno: kopiraj %1 datotek" msgstr[1] "Z leve na desno: kopiraj %1 datoteko" msgstr[2] "Z leve na desno: kopiraj %1 datoteki" msgstr[3] "Z leve na desno: kopiraj %1 datoteke" #: Synchronizer/synchronizedialog.cpp:83 -#, qt-format +#, kde-format msgid "Left: Delete 1 file" msgid_plural "Left: Delete %1 files" -msgstr[0] "_n: Levo: Brišem %1 datotek" -msgstr[1] "Levo: Brišem %1 datoteko" -msgstr[2] "Levo: Brišem %1 datoteki" -msgstr[3] "Levo: Brišem %1 datoteke" +msgstr[0] "Levo: Izbriši %1 datotek" +msgstr[1] "Levo: Izbriši %1 datoteko" +msgstr[2] "Levo: Izbriši %1 datoteki" +msgstr[3] "Levo: Izbriši %1 datoteke" #: Synchronizer/synchronizedialog.cpp:108 +#, kde-format msgid "Confirm overwrites" msgstr "Potrdi prepisovanje" #: Synchronizer/synchronizedialog.cpp:117 +#, kde-format msgid "&Start" msgstr "&Začetek" #: Synchronizer/synchronizedialog.cpp:122 +#, kde-format msgid "&Pause" msgstr "&Pavza" -#: Synchronizer/synchronizedialog.c... [truncated message content] |
From: <cod...@us...> - 2008-07-07 18:25:12
|
Revision: 6044 http://krusader.svn.sourceforge.net/krusader/?rev=6044&view=rev Author: codeknight Date: 2008-07-07 11:25:20 -0700 (Mon, 07 Jul 2008) Log Message: ----------- 2.0.0-beta-1 url update Modified Paths: -------------- trunk/krusader_kde4/doc/en/release-overview.docbook Modified: trunk/krusader_kde4/doc/en/release-overview.docbook =================================================================== --- trunk/krusader_kde4/doc/en/release-overview.docbook 2008-07-06 19:28:32 UTC (rev 6043) +++ trunk/krusader_kde4/doc/en/release-overview.docbook 2008-07-07 18:25:20 UTC (rev 6044) @@ -55,7 +55,7 @@ </row> <row> <entry> - <para>2.0.0-beta2 "?"</para> + <para>2.0.0-beta2 "Space Odyssey"</para> </entry> <entry> <para>2008-??-?? under construction</para> @@ -66,10 +66,11 @@ </row> <row> <entry> - <para>2.0.0-beta1 "Phoenix Egg"</para> + <para><ulink url="http://krusader.org/phpBB/viewtopic.php?t=2116"> + 2.0.0-beta1 "Phoenix Egg"</ulink></para> </entry> <entry> - <para>2008-??-?? under construction</para> + <para>2008-06-07</para> </entry> <entry> <para>&kde; 4.0 - 4.1</para> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <des...@us...> - 2008-07-06 19:28:22
|
Revision: 6043 http://krusader.svn.sourceforge.net/krusader/?rev=6043&view=rev Author: deschler Date: 2008-07-06 12:28:32 -0700 (Sun, 06 Jul 2008) Log Message: ----------- Tagging krusader-2.0.0-beta1 Added Paths: ----------- tags/krusader-2.0.0-beta1/ Copied: tags/krusader-2.0.0-beta1 (from rev 6042, trunk) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <des...@us...> - 2008-07-06 14:20:57
|
Revision: 6042 http://krusader.svn.sourceforge.net/krusader/?rev=6042&view=rev Author: deschler Date: 2008-07-06 07:21:06 -0700 (Sun, 06 Jul 2008) Log Message: ----------- Modified Paths: -------------- trunk/krusader_kde4/README Modified: trunk/krusader_kde4/README =================================================================== --- trunk/krusader_kde4/README 2008-07-01 21:05:58 UTC (rev 6041) +++ trunk/krusader_kde4/README 2008-07-06 14:21:06 UTC (rev 6042) @@ -1,53 +1,30 @@ Krusader-2.0.0-beta1 "Phoenix Egg" ================================== -Well, here we are! +The Krew is proud to present the first KDE4 release of your favourite file +manager! This beta is all about porting, all dependencies to the Qt3 support +libs have been removed. This is also the first release that comes with +experimental support for the Windows platform. Who thought that day will ever +come? -The Krew is proud to present the first beta release of the Krusader2 -release generation for the KDE4.x. -We have left the solid third stone and have landed on the fourth stone -to start exploring new possibilties ;) -The first big possibility is already available, this tarball can -be compiled and installed on Windows! +Even though this release contains some new features our main focus is to create +a stable KDE4 version. Overall the release is usable but surely contains bugs +that haven't been present in prior versions. Please provide us bug reports, +feedback and patches to make it as solid as the KDE3 version. Many thanks to +everyone who supported us in the porting process! -This release is usable but contains some bugs on the *nix platforms. -Please provide us bugreports, feedback and patches to hunt the bugs down! +The highlights of this release are: -It's the first time that Krusader compiles on Windows, -some work needs to be done to make it usable on the Windows platform. -All feedback is welcome! +- Ported to KDE4 not using any of the Qt3 support libs +- Experimental support for the Windows platform +- Send emails with Thunderbird +- Attach multiple files to emails +- Submenus for categories in UserAction menu and context menu +- Select encoding in content search and krarc +- New synchronizer shortcuts -Our first goal is to make Krusader-2.0 stable. New features are for -afterwards, though small improvements are already added in this release. -Many thanks to everyone who has helped to port Krusader from KDE3 to KDE4! - -New features in this release: -# ported to Windows! - -# Krusader is able to send e-mails by thunderbird -- one can set up thunderbird as an e-mail sender in the dependencies -- from now more than one file can be sent in an attachment - -# For content searching (searcher, advanced selection, synchronizer), - the content encoding can be given. - -# Select remote encoding for krarc -- the file name encoding for zip, rar, arj, lha can be set from now -- as 7z always uses UTF-16, remote encoding will not work for 7z -- it's imporant because zip files that were created on Windows can -have different encoding - -# New synchronizer shortcuts -- CTRL + W : reverse direction -- ALT + Down : exclude -- ALT + Up : restore original task -- ALT + Left : copy to left -- ALT + Right : copy to right -- ALT + Delete : mark for delete - - Notice: if you've got bugs to report, please do so using Krusader's - website, and not using KDE's bugzilla (bugs.kde.org). + website, and not using KDE's bugzilla (bugs.kde.org). as always, enjoy Krusader Krew. @@ -83,8 +60,8 @@ -To checkout the Krusader-2.x for KDE4 from svn: -=============================================== +To checkout Krusader-2.x for KDE4 from svn: +=========================================== $ svn co https://krusader.svn.sourceforge.net/svnroot/krusader/trunk/krusader_kde4 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <des...@us...> - 2008-07-01 21:05:49
|
Revision: 6041 http://krusader.svn.sourceforge.net/krusader/?rev=6041&view=rev Author: deschler Date: 2008-07-01 14:05:58 -0700 (Tue, 01 Jul 2008) Log Message: ----------- Merged against krusader-1.90.0, cleanups Modified Paths: -------------- trunk/krusader_kde4/ChangeLog Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-06-22 19:33:29 UTC (rev 6040) +++ trunk/krusader_kde4/ChangeLog 2008-07-01 21:05:58 UTC (rev 6041) @@ -1,50 +1,109 @@ -Codebase in sync with the KDE3 2.00.0-beta1 release -==================================================== +2.0.0-beta1 "Phoenix Egg" +========================= - PORTED: Krusader to KDE4 - ADDED: [ 1962519 ] searching by regexp ADDED: [ 1172426 ] loading user defined folder icons (can be turned off) - ADDED: posibility to remove default useractions - ADDED: thunderbird can be used as the default e-mail sender - ADDED: sending more than one file in e-mail is possible - ADDED: submenus for categories in UserAction menu and context menu - ADDED: character encoding for content search - ADDED: select remote encoding for krarc - ADDED: new synchronizer shortcuts for modifying the synchronizer tasks - ADDED: credit for Václav in the about box + ADDED: Posibility to remove default useractions + ADDED: Thunderbird can be used as the default e-mail sender + ADDED: Sending more than one file in e-mail is possible + ADDED: Submenus for categories in UserAction menu and context menu + ADDED: Character encoding for content search + ADDED: Select remote encoding for krarc + ADDED: New synchronizer shortcuts for modifying the synchronizer tasks + ARCH: Ported to KDE4! + ARCH: Removed all dependencies to the Qt3 support libs + ARCH: Codebase in sync with last KDE3 release (krusader-1.90.0) + ARCH: Added experimental support for the Windows platform + FIXED: [ 1506205 ] krviewer crash at urls with non-existing redirection FIXED: [ 1854760 ] [ 1516619 ] inconsistent search FIXED: [ 1920084 ] kdiff3 is allowed to handle remote URL-s FIXED: [ 1638817 ] toolbar loses orientation when modified FIXED: [ 1578310 ] can't open ISO image by symbolic link - FIXED: enabled KRename on remote files + FIXED: Enabled KRename on remote files FIXED: Right arrow in the detailed view can now go even inside iso files FIXED: Konfigurator: Dependency lists are now scrollable FIXED: Filter: Don't list comments in user/group chooser + FIXED: Current working directory not returned in populateVfsList + FIXED: Eject DVD with right-click menu + FIXED: Actionman, sometimes the command field is empty (the text was rolled) + FIXED: GCC 4.3: missing #includes (thanks to Fathi Boudra) + FIXED: Searcher doesn't always find content in binary files + FIXED: [ 1619452 ] Profile doesn't save status of sync-browse mode + FIXED: [ 1681270 ] right clicking pops context menu immediately + FIXED: [ 1645179 ] shortcut keys are not sent to the terminal + FIXED: [ 1736496 ] always sort dirs by name not working - REMOVED: Clear location button (In KDE4 it is part of the KLineEdit). - Thanks Fathi Boudra for the patch. + I18N: Merged krarc.pot and iso.pot into krusader.pot (thanks Vaclav Juza) + I18N: Updated Hungarian translation + I18N: Updated French translation (thanks Henry Nicolas) + I18N: Fixed [ 1725003 ] bad spanish translation + I18N: Fixed untranslatable strings (thanks Vaclav Juza) + I18N: Updated Ukrainian translation (thanks Yuri Chornoivan) + I18N: Updated Catalan translation (thanks Joaquim Perez) + I18N: Updated French translation (thanks Tourneur Henry-Nicolas) - I18N: Updated Ukrainian translation (thanks to Yuri Chornoivan) - I18N: Updated French translation (thanks Tourneur Henry-Nicolas) + REMOVED: Clear location button (in KDE4 it is part of the KLineEdit) + (thanks Fathi Boudra) -Codebase in sync with the KDE3 1.90.0 release "Power Stone" -=========================================================== - FIXED: Current working directory not returned in populateVfsList +1.90.0 "Power Stone" +==================== + + ADDED: Useraction, Unpack multiple zip archives + (thanks Ernest Beinrohr [OERNii] and Jonas) + ADDED: Useraction, uuencode and uudecode (thanks Andrew Svet) + ADDED: Useraction, Unpack current tar.7z + ADDED: Useraction, tar.7z selected files + ADDED: Useraction, Unpack current tar.lzma + ADDED: Useraction, tar.lzma selected files + ADDED: Useraction, Unpack current lzma + ADDED: Useraction, Lzma current file + ADDED: Useraction, 7zip current (thanks Vaclav Juza) + ADDED: Javascript useraction, select from file + ADDED: Useraction, tar.gz selected files (thanks Fathi Boudra) + ADDED: Useraction, gzip current (thanks Vaclav Juza) + ADDED: Useraction, Eject cd/dvd (thanks Andrew Svet) + ADDED: Javascript useraction, calculator + ADDED: Javascript useraction, Mount as root + ADDED: Javascript useraction, Recode files using GNU recode + (thanks Vaclav Juza) + ADDED: Javascript useraction, Recode files using iconv + (thanks Vaclav Juza) + ADDED: Useraction, (Un)Pack an ar archive (.a, .deb,...) + (thanks Vaclav Juza) + ADDED: Useraction, Verify signature with kgpg + ADDED: Useraction, Sign with kgpg + ADDED: Useraction, Decrypt with kgpg + ADDED: Useraction, Encrypt with kgpg + ADDED: Useraction, Split large mp3 (thanks Andrew Svet) + ADDED: Useraction, Archive to Dir + ADDED: Useraction, Copy as root (thanks Andrew Svet and MaxiPunkt) + ADDED: Useraction, Unmount (thanks Stefan Endrullis) + ADDED: Useraction, Search and Replace in file + ADDED: Midnight commander keymap (thanks Alejandro Hamann) + ADDED: Alpa-yellow color scheme (thanks Aldo Palmeri [alpa]) + ADDED: Bash color scheme (thanks Alejandro Hamann) + ADDED: Improved midnight commander color scheme (thanks Alejandro Hamann) + ADDED: Pleasent total commander color scheme + ADDED: DOS Navigator color scheme (thanks to Vovan [Koqep]) + + FIXED: Useractions, after pwd command current workdir was not changed + (thanks Vaclav Juza ) FIXED: Eject DVD with right-click menu - FIXED: Actionman, sometimes the command field is empty (the text was rolled), - FIXED: GCC 4.3: missing #includes thanks to Fathi Boudra + FIXED: Actionman, sometimes the command field is empty, + (thanks Vaclav Juza) + FIXED: GCC 4.3: missing #includes (thanks Fathi Boudra) + FIXED: krpermhandler.cpp didn't compile on kde 3.2.x I18N: Updated Catalan translation (thanks Joaquim Perez) I18N: Updated French translation (thanks Tourneur Henry-Nicolas) -Codebase in sync with the KDE3 1.80.0 release "Final 3rd Stone" -=============================================================== - +1.80.0 "Final 3rd Stone" +======================== + FIXED: searcher doesn't always find content in binary files FIXED: [ 1619452 ] Profile doesn't save status of sync-browse mode FIXED: [ 1681270 ] right clicking pops context menu immediately @@ -54,10 +113,6 @@ I18N: Updated Hungarian translation I18N: Updated French translation (thanks Henry Nicolas) I18N: Fixed [ 1725003 ] bad spanish translation - -Branched of KDE4 development -============================ - I18N: Fixed untranslatable strings, patch by Vaclav Juza, thanks This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ck...@us...> - 2008-06-22 19:33:20
|
Revision: 6040 http://krusader.svn.sourceforge.net/krusader/?rev=6040&view=rev Author: ckarai Date: 2008-06-22 12:33:29 -0700 (Sun, 22 Jun 2008) Log Message: ----------- compile fix Modified Paths: -------------- trunk/krusader_kde4/krusader/KViewer/panelviewer.cpp Modified: trunk/krusader_kde4/krusader/KViewer/panelviewer.cpp =================================================================== --- trunk/krusader_kde4/krusader/KViewer/panelviewer.cpp 2008-06-22 18:28:15 UTC (rev 6039) +++ trunk/krusader_kde4/krusader/KViewer/panelviewer.cpp 2008-06-22 19:33:29 UTC (rev 6040) @@ -257,7 +257,7 @@ } if( create ){ - if( static_cast<KParts::ReadWritePart *>(cpart.data())->saveAs( curl ) ) { + if( static_cast<KParts::ReadWritePart *>((KParts::ReadOnlyPart *)cpart)->saveAs( curl ) ) { connect( cpart, SIGNAL( destroyed() ), this, SLOT( slotCPartDestroyed() ) ); return cpart; } @@ -273,13 +273,13 @@ bool PanelEditor::queryClose() { if ( !cpart ) return true; - return static_cast<KParts::ReadWritePart *>(cpart.data())->queryClose(); + return static_cast<KParts::ReadWritePart *>((KParts::ReadOnlyPart *)cpart)->queryClose(); } bool PanelEditor::closeUrl() { if ( !cpart ) return false; - static_cast<KParts::ReadWritePart *>(cpart.data())->closeUrl( false ); + static_cast<KParts::ReadWritePart *>((KParts::ReadOnlyPart *)cpart)->closeUrl( false ); setCurrentWidget( fallback ); cpart = 0; @@ -324,7 +324,7 @@ } bool PanelEditor::isModified(){ - return static_cast<KParts::ReadWritePart *>(cpart.data())->isModified(); + return static_cast<KParts::ReadWritePart *>((KParts::ReadOnlyPart *)cpart)->isModified(); } #include "panelviewer.moc" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ck...@us...> - 2008-06-22 18:28:08
|
Revision: 6039 http://krusader.svn.sourceforge.net/krusader/?rev=6039&view=rev Author: ckarai Date: 2008-06-22 11:28:15 -0700 (Sun, 22 Jun 2008) Log Message: ----------- FIXED: packing to remote URL Modified Paths: -------------- trunk/krusader_kde4/krusader/Panel/panelfunc.cpp Modified: trunk/krusader_kde4/krusader/Panel/panelfunc.cpp =================================================================== --- trunk/krusader_kde4/krusader/Panel/panelfunc.cpp 2008-06-21 20:00:04 UTC (rev 6038) +++ trunk/krusader_kde4/krusader/Panel/panelfunc.cpp 2008-06-22 18:28:15 UTC (rev 6039) @@ -823,8 +823,9 @@ else { tempDestFile = new KTemporaryFile(); tempDestFile->setSuffix( QString(".") + PackGUI::type ); - tempDestFile->open(); tempDestFile->close(); // nessesary to create the filename + tempDestFile->open(); arcFile = tempDestFile->fileName(); + tempDestFile->close(); // nessesary to create the filename QFile::remove ( arcFile ); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cod...@us...> - 2008-06-21 20:43:57
|
Revision: 6037 http://krusader.svn.sourceforge.net/krusader/?rev=6037&view=rev Author: codeknight Date: 2008-06-21 12:55:47 -0700 (Sat, 21 Jun 2008) Log Message: ----------- minor updates and fixes Modified Paths: -------------- trunk/krusader_kde4/INSTALL trunk/krusader_kde4/README Modified: trunk/krusader_kde4/INSTALL =================================================================== --- trunk/krusader_kde4/INSTALL 2008-06-20 20:51:27 UTC (rev 6036) +++ trunk/krusader_kde4/INSTALL 2008-06-21 19:55:47 UTC (rev 6037) @@ -3,19 +3,20 @@ Note ---- -Krusader-2.0 versions and higher are for KDE 4 only and will not work anymore on KDE 3. +Krusader-2.0 versions and higher are for KDE 4.x only and will not work anymore on KDE 3.x SVN development download ------------------------ -You can download the latest available krusader-2.x from SVN with the next command: +You can download the latest available Krusader-2.x from SVN with the next command: $ svn co https://krusader.svn.sourceforge.net/svnroot/krusader/trunk/krusader_kde4 + Platforms --------- * All POSIX (Linux®/BSD/UNIX®-like OSes), Solaris™ * All BSD Platforms (FreeBSD®/NetBSD®/OpenBSD®/Mac® OS) -* Windows XP® (not yet tested on Vista but it should work) +* Tested on Windows XP®, not yet tested on Windows Vista\xC2\xAE but it should work. Installing on Linux® and BSD platforms @@ -82,10 +83,16 @@ cmake options ------------- --DCMAKE_INSTALL_PREFIX is the location of the KDE DQT_INCLUDES --DCMAKE_INSTALL_PREFIX=/usr/ is the location where Krusader will be - installed with the make command +-DQT_INCLUDES=/usr/share/qt4/include + is the location of the QT4 includes +-DCMAKE_INSTALL_PREFIX=/usr/ + is the location where Krusader will be installed with the make command. + An other example is: -DCMAKE_INSTALL_PRFIX=/opt/krusader + to install the compiled Krusader in an other directory to not overwrite + the Krusader version installed by your package manager. + + $ tar -xzvf krusader_kde4.tar.gz $ cd krusader_kde4 $ cmake -DCMAKE_INSTALL_PREFIX=/usr/ -DQT_INCLUDES=/usr/share/qt4/include @@ -116,16 +123,24 @@ Uninstall --------- $ su -c "make uninstall" +or +$ sudo make uninstall + Installing on Mac® OS-X ======================= +TODO: instructions for Krusader-2.x for KDE4.x + +The next url explains howto install Krusader-1.x for KDE3 http://www.krusader.org/handbook/mac-port.html Installation on Windows® ======================== -http://groups.google.com/group/krusader-devel/browse_thread/thread/3507c5dc7b866845 +It's the first time that Krusader compiles on Windows®, +some work is needs to be done to make it usable on the Windows® platform. +All feedback is welcome! - Install the KDE installer http://winkde.org/pub/kde/ports/win32/installer/ (tested with version 0.9.2). See also http://windows.kde.org/ @@ -171,6 +186,8 @@ - Run make from mingw: C:\MinGW\bin\mingw32-make.exe install +- Run krusader.exe and enjoy! + - Known severe run-time problems on windows at the moment (19 Jun 2008): + Konfigurator crashes (launched even in the first run) + Slow start before the splashscreen appears @@ -186,6 +203,10 @@ This is the cmake output on Kubuntu 8.04 (KDE 4 Remix) frank@kubuntu:~/krusader_kde4$ cmake -DCMAKE_INSTALL_PREFIX=/usr -DQT_INCLUDES=/usr/share/qt4/include +-- Check for working C compiler: /usr/bin/gcc +-- Check for working C compiler: /usr/bin/gcc -- works +-- Check size of void* +-- Check size of void* - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Looking for Q_WS_X11 @@ -244,7 +265,6 @@ - FYI The output of make (partial) ---------------------------- Modified: trunk/krusader_kde4/README =================================================================== --- trunk/krusader_kde4/README 2008-06-20 20:51:27 UTC (rev 6036) +++ trunk/krusader_kde4/README 2008-06-21 19:55:47 UTC (rev 6037) @@ -2,24 +2,24 @@ ================================== Well, here we are! -The Krew is happy to present the first release of the Krusader2 series for KDE4.x. +The Krew is proud to present the first beta release of the Krusader2 +release generation for the KDE4.x. We have left the solid third stone and have landed on the fourth stone -to start exploring new possibilties. -And the first big possibility is already available, this tarball can +to start exploring new possibilties ;) +The first big possibility is already available, this tarball can be compiled and installed on Windows! -This release is ustable and contains some bugs. Though it works! and -hard work is done to improve it. -Other bugs are caused by kde4libs and qt4libs where we can't do much -about it, except generate bug reports. +This release is usable but contains some bugs on the *nix platforms. +Please provide us bugreports, feedback and patches to hunt the bugs down! -Please send in bug reports and patches to hunt the Krusader bugs down. +It's the first time that Krusader compiles on Windows, +some work needs to be done to make it usable on the Windows platform. +All feedback is welcome! Our first goal is to make Krusader-2.0 stable. New features are for -afterwards, though small improvements are already added in this -release. +afterwards, though small improvements are already added in this release. -Many thanks to everyone who has helped to port Krusader from KDE3 to KDE4. +Many thanks to everyone who has helped to port Krusader from KDE3 to KDE4! New features in this release: # ported to Windows! This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cod...@us...> - 2008-06-21 20:37:52
|
Revision: 6038 http://krusader.svn.sourceforge.net/krusader/?rev=6038&view=rev Author: codeknight Date: 2008-06-21 13:00:04 -0700 (Sat, 21 Jun 2008) Log Message: ----------- windows installation updates and fixes Modified Paths: -------------- trunk/krusader_kde4/doc/ChangeLog trunk/krusader_kde4/doc/en/faq.docbook trunk/krusader_kde4/doc/en/installation.docbook trunk/krusader_kde4/doc/en/release-overview.docbook Modified: trunk/krusader_kde4/doc/ChangeLog =================================================================== --- trunk/krusader_kde4/doc/ChangeLog 2008-06-21 19:55:47 UTC (rev 6037) +++ trunk/krusader_kde4/doc/ChangeLog 2008-06-21 20:00:04 UTC (rev 6038) @@ -12,7 +12,6 @@ ADDED: compilation requirements for KDE4 ADDED: credits for Václav Jůza - UPDATED: Handbook update from CVS krusader_kde3 to SVN krusader_kde4 at 18 january 2008 ADDED: Howto executing jar files (and not enter the jar archive)? @@ -26,9 +25,18 @@ FIXED: removed all <guimenu> tags inside <title>, no additional tags needed inside <title>, it looks bad in HTML version (stylesheet) + +1.90.0 "Power Stone" +================================== +Date: 2008-03-15 + +Handbook 1.80.0 + Useractions explenations of the Power Stone release. +These Useractions are not shipped in the 2.0.0 series. + + 1.80.0 "Final 3rd Stone" ================================== -Date: 2007-07-05 scheduled release date +Date: 2007-07-21 ADDED: Terminal Emulator, paste with SHIFT+INSERT and CTRL+V Modified: trunk/krusader_kde4/doc/en/faq.docbook =================================================================== --- trunk/krusader_kde4/doc/en/faq.docbook 2008-06-21 19:55:47 UTC (rev 6037) +++ trunk/krusader_kde4/doc/en/faq.docbook 2008-06-21 20:00:04 UTC (rev 6038) @@ -1784,10 +1784,9 @@ <para>Is there a &Windows; port?</para> </question> <answer> - <para>Yes since 18 June 2008, Krusader-2.x compiles on Windows, - but several libraries need to be installed before it can be used. - A recommended native file manager for &Windows; - is &tcmd-url; (shareware).</para> + <para>Yes, since 18 June 2008, Krusader-2.x compiles on &Windows;. + Before Krusader can be used several &Qt;4-libraries and &kde;4-libraries need to be installed. + A recommended native file manager for &Windows; is &tcmd-url; (shareware).</para> <para></para> <!-- Empty line to make it more readable --> </answer> Modified: trunk/krusader_kde4/doc/en/installation.docbook =================================================================== --- trunk/krusader_kde4/doc/en/installation.docbook 2008-06-21 19:55:47 UTC (rev 6037) +++ trunk/krusader_kde4/doc/en/installation.docbook 2008-06-21 20:00:04 UTC (rev 6038) @@ -504,15 +504,12 @@ <para>kdiff3: compares and merges 2 or 3 files or directories</para> </listitem> <listitem> - <para>OR kompare: a KDE GUI for viewing differences between files </para> + <para>OR kompare: a KDE GUI for viewing differences between files</para> </listitem> <listitem> - <para>OR kompare: a KDE GUI for viewing differences between files </para> + <para>OR xxdiff: a graphical file and directories comparison and merge tool</para> </listitem> <listitem> - <para>kompare: a KDE GUI for viewing differences between files </para> - </listitem> - <listitem> <para>khexedit: KDE hex editor</para> </listitem> <listitem> @@ -603,7 +600,15 @@ <sect1 id="kde4_lin_install"> <title>Installing on Linux and BSD platforms</title> -<para><command>DCMAKE_INSTALL_PREFIX</command> is the location of the KDE DQT_INCLUDES</para> +<para><command>-DQT_INCLUDES=/usr/share/qt4/include</command> is the location of the QT4 includes</para> + +<para><command>-DCMAKE_INSTALL_PREFIX=/usr/</command> is the location where Krusader will be + installed with the make command.</para> + +<para>An other example is: <command>-DCMAKE_INSTALL_PRFIX=/opt/krusader</command> + to install the compiled Krusader in an other directory to not overwrite + the Krusader version installed by your package manager.</para> + <para> <screen> <prompt>$</prompt> <userinput><command>tar -xzvf</command> <option>krusader_kde4.tar.gz</option></userinput> @@ -634,6 +639,11 @@ <title>Installing on the Windows platform</title> <para>Tested on &Windows; XP, not yet tested on &Windows; Vista but it should work.</para> + +<para>It's the first time that Krusader compiles on &Windows;, + some work needs to be done to make Krusader stable and usable on the &Windows; platform. + All feedback is welcome!</para> + <para> <itemizedlist> <listitem> @@ -691,10 +701,13 @@ <filename>C:\MinGW\bin\mingw32-make.exe install</filename></para> </listitem> <listitem> + <para>Run <filename>krusader.exe</filename> and enjoy!</para> + </listitem> + <listitem> <para>Known severe run-time problems on windows at the moment (19 Jun 2008): <itemizedlist> <listitem> - <para>Konfigurator (launched even in the first run)</para> + <para>Konfigurator crashes (launched even in the first run)</para> </listitem> <listitem> <para>Slow start before the splashscreen appears</para> Modified: trunk/krusader_kde4/doc/en/release-overview.docbook =================================================================== --- trunk/krusader_kde4/doc/en/release-overview.docbook 2008-06-21 19:55:47 UTC (rev 6037) +++ trunk/krusader_kde4/doc/en/release-overview.docbook 2008-06-21 20:00:04 UTC (rev 6038) @@ -81,7 +81,7 @@ 1.90.0 "Power Stone"</ulink></para> </entry> <entry> - <para>2008-03-?? under construction</para> + <para>2008-03-15</para> </entry> <entry> <para>&kde; 3.2 - 3.5</para> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |