View | Details | Raw Unified | Return to bug 115757
Collapse All | Expand All

(-)amarok/Makefile (-2 / +6 lines)
Lines 5-12 Link Here
5
# $FreeBSD: ports/audio/amarok/Makefile,v 1.74 2007/08/15 17:24:04 sat Exp $
5
# $FreeBSD: ports/audio/amarok/Makefile,v 1.74 2007/08/15 17:24:04 sat Exp $
6
6
7
PORTNAME=	amarok
7
PORTNAME=	amarok
8
PORTVERSION=	1.4.5
8
PORTVERSION=	1.4.7
9
PORTREVISION=	8
10
CATEGORIES=	audio kde
9
CATEGORIES=	audio kde
11
MASTER_SITES=	${MASTER_SITE_KDE}
10
MASTER_SITES=	${MASTER_SITE_KDE}
12
MASTER_SITE_SUBDIR=	stable/${PORTNAME}/${PORTVERSION}/src
11
MASTER_SITE_SUBDIR=	stable/${PORTNAME}/${PORTVERSION}/src
Lines 36-41 Link Here
36
		AMAZON "Amazon cover fetching support" on \
35
		AMAZON "Amazon cover fetching support" on \
37
		MYSQL "Use MySQL as collection backend" off \
36
		MYSQL "Use MySQL as collection backend" off \
38
		POSTGRESQL "Use PostgreSQL as collection backend" off \
37
		POSTGRESQL "Use PostgreSQL as collection backend" off \
38
		HIDEMENUBAR "Revert the 'Hide Menubar' feature" off \
39
39
40
.include <bsd.port.pre.mk>
40
.include <bsd.port.pre.mk>
41
41
Lines 85-90 Link Here
85
.if defined(WITH_POSTGRESQL)
85
.if defined(WITH_POSTGRESQL)
86
USE_PGSQL=	yes
86
USE_PGSQL=	yes
87
CONFIGURE_ARGS+=--enable-postgresql
87
CONFIGURE_ARGS+=--enable-postgresql
88
.endif
89
90
.if defined(WITH_HIDEMENUBAR)
91
EXTRA_PATCHES=	${PATCHDIR}/hide-main-menu-bar-feature.patch
88
.endif
92
.endif
89
93
90
.if defined(DEBUG)
94
.if defined(DEBUG)
(-)amarok/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (amarok-1.4.5.tar.bz2) = 1dac1cb5ac9c9cdabdab5f69b39e92c8
1
MD5 (amarok-1.4.7.tar.bz2) = f1299e142da8a69bc3cff5d585e38d43
2
SHA256 (amarok-1.4.5.tar.bz2) = 45aa7cafe2a46dd988cd5034ae19da988926eecb2ac90d3e6912c57e558108c8
2
SHA256 (amarok-1.4.7.tar.bz2) = 7ef2691d0cda238696e021421052a04b3cfb068ea0d9854e0c617b33216340f8
3
SIZE (amarok-1.4.5.tar.bz2) = 18034110
3
SIZE (amarok-1.4.7.tar.bz2) = 12723499
(-)amarok/files/hide-main-menu-bar-feature.patch (+119 lines)
Line 0 Link Here
1
diff -ruN amarok.orig/src/amarokcore/amarok.kcfg amarok/src/amarokcore/amarok.kcfg
2
--- amarok.orig/src/amarokcore/amarok.kcfg	Mon Jun 18 01:51:49 2007
3
+++ amarok/src/amarokcore/amarok.kcfg	Thu Jun 21 22:42:23 2007
4
@@ -216,6 +216,11 @@
5
         <whatsthis>Set this to the style dir you want to use.</whatsthis>
6
         <default>Default</default>
7
     </entry>
8
+    <entry key="Show Menu Bar" type="Bool">
9
+        <label>Whether Menubar is shown</label>
10
+        <whatsthis>If set, Amarok displays a menubar on top of the application.</whatsthis>
11
+        <default>true</default>
12
+    </entry>
13
     <entry key="Relative Playlist" type="Bool">
14
         <label>Whether playlists store relative path</label>
15
         <whatsthis>If set, Amarok's manually saved playlists will contain a relative path to each track, not an absolute path.</whatsthis>
16
diff -ruN amarok.orig/src/app.cpp amarok/src/app.cpp
17
--- amarok.orig/src/app.cpp	Mon Jun 18 01:51:49 2007
18
+++ amarok/src/app.cpp	Thu Jun 21 22:43:27 2007
19
@@ -678,6 +674,11 @@
20
             m_pPlaylistWindow->setCaption( i18n("Amarok - %1").arg( EngineController::instance()->bundle().veryNiceTitle() ) );
21
         else
22
             m_pPlaylistWindow->setCaption( "Amarok" );
23
+	    
24
+        //m_pPlaylistWindow->show(); //must be shown //we do below now
25
+        //ensure that at least one Menu is plugged into an accessible UI element
26
+        if( !AmarokConfig::showMenuBar() && !Amarok::actionCollection()->action( "amarok_menu" )->isPlugged() )
27
+	    playlistWindow()->createGUI();
28
     }
29
 
30
     playlistWindow()->applySettings();
31
diff -ruN amarok.orig/src/playlistwindow.cpp amarok/src/playlistwindow.cpp
32
--- amarok.orig/src/playlistwindow.cpp	Mon Jun 18 01:51:49 2007
33
+++ amarok/src/playlistwindow.cpp	Thu Jun 21 22:48:15 2007
34
@@ -139,6 +139,7 @@
35
     ac->action( "stream_add" )->setIcon( Amarok::icon( "files" ) );
36
     KStdAction::save( this, SLOT(savePlaylist()), ac, "playlist_save" )->setText( i18n("&Save Playlist As...") );
37
     ac->action( "playlist_save" )->setIcon( Amarok::icon( "save" ) );
38
+    KStdAction::showMenubar( this, SLOT(slotToggleMenu()), ac );
39
 
40
     //FIXME: after string freeze rename to "Burn Current Playlist"?
41
     new KAction( i18n("Burn to CD"), Amarok::icon( "burn" ), 0, this, SLOT(slotBurnPlaylist()), ac, "playlist_burn" );
42
@@ -233,6 +236,7 @@
43
 
44
 PlaylistWindow::~PlaylistWindow()
45
 {
46
+    Amarok::config( "PlaylistWindow" )->writeEntry( "showMenuBar", m_menubar->isShown() );
47
     AmarokConfig::setPlaylistWindowPos( pos() );  //TODO de XT?
48
     AmarokConfig::setPlaylistWindowSize( size() ); //TODO de XT?
49
 }
50
@@ -307,6 +310,7 @@
51
     connect( repeatAction, SIGNAL( activated( int ) ), playlist, SLOT( slotRepeatTrackToggled( int ) ) );
52
 
53
     m_menubar = new KMenuBar( this );
54
+    m_menubar->setShown( AmarokConfig::showMenuBar() );
55
 
56
     //BEGIN Actions menu
57
     KPopupMenu *actionsMenu = new KPopupMenu( m_menubar );
58
@@ -381,6 +388,8 @@
59
     m_settingsMenu = new KPopupMenu( m_menubar );
60
     //TODO use KStdAction or KMainWindow
61
 #ifndef Q_WS_MAC
62
+    static_cast<KToggleAction *>(actionCollection()->action(KStdAction::name(KStdAction::ShowMenubar)))->setChecked( AmarokConfig::showMenuBar() );
63
+    actionCollection()->action(KStdAction::name(KStdAction::ShowMenubar))->plug( m_settingsMenu );
64
     m_settingsMenu->insertItem( AmarokConfig::showToolbar() ? i18n( "Hide Toolbar" ) : i18n("Show Toolbar"), ID_SHOW_TOOLBAR );
65
     m_settingsMenu->insertItem( AmarokConfig::showPlayerWindow() ? i18n("Hide Player &Window") : i18n("Show Player &Window"), ID_SHOW_PLAYERWINDOW );
66
     m_settingsMenu->insertSeparator();
67
@@ -569,6 +578,12 @@
68
     for( QStringList::ConstIterator it = list.constBegin(); it != end; ++it )
69
     {
70
         KToolBarButton* const button = static_cast<KToolBarButton*>( m_toolbar->child( (*it).latin1() ) );
71
+        if ( it == last ) {
72
+            //if the user has no PlayerWindow, he MUST have the menu action plugged
73
+            //NOTE this is not saved to the local XMLFile, which is what the user will want
74
+            if ( !AmarokConfig::showPlayerWindow() && !AmarokConfig::showMenuBar() && !button )
75
+                actionCollection()->action( "amarok_menu" )->plug( m_toolbar );
76
+        }
77
 
78
         if ( button ) {
79
             button->modeChange();
80
@@ -1031,6 +1046,20 @@
81
         Playlist::instance()->setFocus();
82
 }
83
 
84
+void PlaylistWindow::slotToggleMenu() //SLOT
85
+{
86
+    if( static_cast<KToggleAction *>(actionCollection()->action(KStdAction::name(KStdAction::ShowMenubar)))->isChecked() ) {
87
+        AmarokConfig::setShowMenuBar( true );
88
+        m_menubar->setShown( true );
89
+    }
90
+    else
91
+    {
92
+        AmarokConfig::setShowMenuBar( false );
93
+        m_menubar->setShown( false );
94
+    }
95
+    recreateGUI();
96
+}
97
+
98
 void PlaylistWindow::slotMenuActivated( int index ) //SLOT
99
 {
100
     switch( index )
101
@@ -1042,6 +1071,7 @@
102
     case ID_SHOW_TOOLBAR:
103
         m_toolbar->setShown( !m_toolbar->isShown() );
104
         AmarokConfig::setShowToolbar( !AmarokConfig::showToolbar() );
105
+        actionCollection()->action(KStdAction::name(KStdAction::ShowMenubar))->setEnabled( m_toolbar->isShown() );
106
         m_settingsMenu->changeItem( index, m_toolbar->isShown() ? i18n("Hide Toolbar") : i18n("Show Toolbar") );
107
         break;
108
     case ID_SHOW_PLAYERWINDOW:
109
diff -ruN amarok.orig/src/playlistwindow.h amarok/src/playlistwindow.h
110
--- amarok.orig/src/playlistwindow.h	Mon Jun 18 01:51:49 2007
111
+++ amarok/src/playlistwindow.h	Thu Jun 21 22:48:44 2007
112
@@ -91,6 +91,7 @@
113
         void slotMenuActivated( int );
114
         void actionsMenuAboutToShow();
115
         void toolsMenuAboutToShow();
116
+        void slotToggleMenu();	
117
         void slotToggleFocus();
118
         void slotEditFilter();
119
         void slotSetFilter( const QString &filter );
(-)amarok/files/patch-amarok_src_mediadevice_generic_genericmediadevice.cpp (-18 lines)
Lines 1-18 Link Here
1
--- amarok/src/mediadevice/generic/genericmediadevice.cpp.orig	Mon Feb 12 23:01:20 2007
2
+++ amarok/src/mediadevice/generic/genericmediadevice.cpp	Mon Feb 12 23:01:29 2007
3
@@ -418,13 +418,7 @@
4
         if( m_medium.mountPoint() == (*mountiter)->mountPoint() )
5
             m_medium.setFsType( (*mountiter)->mountType() );
6
     }
7
-    m_actuallyVfat = m_medium.fsType() == 
8
-#ifdef __FreeBSD__
9
-        "msdosfs"
10
-#else
11
-        "vfat" 
12
-#endif
13
-        ? true : false;
14
+    m_actuallyVfat = (m_medium.fsType() == "vfat" || m_medium.fsType() == "msdosfs") ? true : false;
15
     m_connected = true;
16
     m_transferDir = m_medium.mountPoint();
17
     m_initialFile = new GenericMediaFile( 0, m_medium.mountPoint(), this );
18
(-)amarok/files/patch-amarok_src_sqlite_fts1.c (-11 lines)
Lines 1-11 Link Here
1
--- amarok/src/sqlite/fts1.c.orig       Thu Feb  1 23:14:17 2007
2
+++ amarok/src/sqlite/fts1.c    Sat Feb  3 01:51:38 2007
3
@@ -19,7 +19,7 @@
4
 #endif
5
6
 #include <assert.h>
7
-#if !defined(__APPLE__)
8
+#if !defined(__APPLE__) && !defined(__FreeBSD__)
9
 #include <malloc.h>
10
 #else
11
 #include <stdlib.h>
(-)amarok/files/patch-amarok_src_sqlite_fts1__porter.c (-11 lines)
Lines 1-11 Link Here
1
--- amarok/src/sqlite/fts1_porter.c.orig        Thu Feb  1 23:14:17 2007
2
+++ amarok/src/sqlite/fts1_porter.c     Sat Feb  3 01:51:55 2007
3
@@ -26,7 +26,7 @@
4
5
6
 #include <assert.h>
7
-#if !defined(__APPLE__)
8
+#if !defined(__APPLE__) && !defined(__FreeBSD__)
9
 #include <malloc.h>
10
 #else
11
 #include <stdlib.h>
(-)amarok/files/patch-amarok_src_sqlite_fts1__tokenizer1.c (-11 lines)
Lines 1-11 Link Here
1
--- amarok/src/sqlite/fts1_tokenizer1.c.orig    Thu Feb  1 23:14:17 2007
2
+++ amarok/src/sqlite/fts1_tokenizer1.c Sat Feb  3 01:52:07 2007
3
@@ -18,7 +18,7 @@
4
5
6
 #include <assert.h>
7
-#if !defined(__APPLE__)
8
+#if !defined(__APPLE__) && !defined(__FreeBSD__)
9
 #include <malloc.h>
10
 #else
11
 #include <stdlib.h>
(-)amarok/pkg-plist (-69 / +158 lines)
Lines 1-50 Link Here
1
bin/amarok
1
bin/amarok
2
bin/amarokapp
3
bin/amarokcollectionscanner
4
bin/amarok_daapserver.rb
2
bin/amarok_daapserver.rb
5
bin/amarok_proxy.rb
3
bin/amarok_proxy.rb
6
lib/libamarok.a
4
bin/amarokapp
7
lib/libamarok.la
5
bin/amarokcollectionscanner
8
lib/libamarok.so
9
lib/libamarok.so.0
10
lib/kde3/konqsidebar_universalamarok.a
6
lib/kde3/konqsidebar_universalamarok.a
11
lib/kde3/konqsidebar_universalamarok.la
7
lib/kde3/konqsidebar_universalamarok.la
12
lib/kde3/konqsidebar_universalamarok.so
8
lib/kde3/konqsidebar_universalamarok.so
13
lib/kde3/libamarok_daap-mediadevice.so
14
lib/kde3/libamarok_daap-mediadevice.la
15
lib/kde3/libamarok_daap-mediadevice.a
9
lib/kde3/libamarok_daap-mediadevice.a
16
lib/kde3/libamarok_massstorage-device.so
10
lib/kde3/libamarok_daap-mediadevice.la
17
lib/kde3/libamarok_massstorage-device.la
11
lib/kde3/libamarok_daap-mediadevice.so
12
lib/kde3/libamarok_generic-mediadevice.a
13
lib/kde3/libamarok_generic-mediadevice.la
14
lib/kde3/libamarok_generic-mediadevice.so
18
lib/kde3/libamarok_massstorage-device.a
15
lib/kde3/libamarok_massstorage-device.a
19
%%GPOD%%lib/kde3/libamarok_ipod-mediadevice.so
16
lib/kde3/libamarok_massstorage-device.la
20
%%GPOD%%lib/kde3/libamarok_ipod-mediadevice.la
17
lib/kde3/libamarok_massstorage-device.so
21
%%GPOD%%lib/kde3/libamarok_ipod-mediadevice.a
18
%%GPOD%%lib/kde3/libamarok_ipod-mediadevice.a
22
%%MTP%%lib/kde3/libamarok_mtp-mediadevice.so
19
%%GPOD%%lib/kde3/libamarok_ipod-mediadevice.la
23
%%MTP%%lib/kde3/libamarok_mtp-mediadevice.la
20
%%GPOD%%lib/kde3/libamarok_ipod-mediadevice.so
24
%%MTP%%lib/kde3/libamarok_mtp-mediadevice.a
21
%%MTP%%lib/kde3/libamarok_mtp-mediadevice.a
25
lib/kde3/libamarok_nfs-device.so
22
%%MTP%%lib/kde3/libamarok_mtp-mediadevice.la
26
lib/kde3/libamarok_nfs-device.la
23
%%MTP%%lib/kde3/libamarok_mtp-mediadevice.so
27
lib/kde3/libamarok_nfs-device.a
24
lib/kde3/libamarok_nfs-device.a
28
lib/kde3/libamarok_smb-device.so
25
lib/kde3/libamarok_nfs-device.la
29
lib/kde3/libamarok_smb-device.la
26
lib/kde3/libamarok_nfs-device.so
30
lib/kde3/libamarok_smb-device.a
31
%%NJB%%lib/kde3/libamarok_njb-mediadevice.so
32
%%NJB%%lib/kde3/libamarok_njb-mediadevice.la
33
%%NJB%%lib/kde3/libamarok_njb-mediadevice.a
27
%%NJB%%lib/kde3/libamarok_njb-mediadevice.a
34
lib/kde3/libamarok_generic-mediadevice.so
28
%%NJB%%lib/kde3/libamarok_njb-mediadevice.la
35
lib/kde3/libamarok_generic-mediadevice.la
29
%%NJB%%lib/kde3/libamarok_njb-mediadevice.so
36
lib/kde3/libamarok_generic-mediadevice.a
30
lib/kde3/libamarok_smb-device.a
37
lib/kde3/libamarok_xine-engine.a
31
lib/kde3/libamarok_smb-device.la
38
lib/kde3/libamarok_xine-engine.la
32
lib/kde3/libamarok_smb-device.so
39
lib/kde3/libamarok_xine-engine.so
40
lib/kde3/libamarok_void-engine_plugin.a
33
lib/kde3/libamarok_void-engine_plugin.a
41
lib/kde3/libamarok_void-engine_plugin.la
34
lib/kde3/libamarok_void-engine_plugin.la
42
lib/kde3/libamarok_void-engine_plugin.so
35
lib/kde3/libamarok_void-engine_plugin.so
36
lib/kde3/libamarok_xine-engine.a
37
lib/kde3/libamarok_xine-engine.la
38
lib/kde3/libamarok_xine-engine.so
39
lib/libamarok.a
40
lib/libamarok.la
41
lib/libamarok.so
42
lib/libamarok.so.0
43
lib/ruby_lib/http11.rb
43
lib/ruby_lib/http11.rb
44
lib/ruby_lib/libhttp11.so.0
45
lib/ruby_lib/libhttp11.so
46
lib/ruby_lib/libhttp11.la
47
lib/ruby_lib/libhttp11.a
44
lib/ruby_lib/libhttp11.a
45
lib/ruby_lib/libhttp11.la
46
lib/ruby_lib/libhttp11.so
47
lib/ruby_lib/libhttp11.so.0
48
share/applications/kde/amarok.desktop
48
share/applications/kde/amarok.desktop
49
share/apps/amarok/amarokui.rc
49
share/apps/amarok/amarokui.rc
50
share/apps/amarok/data/Amarok_1.4_Welcome.ogg
50
share/apps/amarok/data/Amarok_1.4_Welcome.ogg
Lines 76-81 Link Here
76
share/apps/amarok/icons/crystalsvg/22x22/actions/player_playlist_2.png
76
share/apps/amarok/icons/crystalsvg/22x22/actions/player_playlist_2.png
77
share/apps/amarok/icons/crystalsvg/22x22/actions/random.png
77
share/apps/amarok/icons/crystalsvg/22x22/actions/random.png
78
share/apps/amarok/icons/crystalsvg/22x22/actions/repeat_playlist.png
78
share/apps/amarok/icons/crystalsvg/22x22/actions/repeat_playlist.png
79
share/apps/amarok/icons/crystalsvg/22x22/actions/visualizations.png
79
share/apps/amarok/icons/crystalsvg/64x64/actions/dynamic.png
80
share/apps/amarok/icons/crystalsvg/64x64/actions/dynamic.png
80
share/apps/amarok/icons/crystalsvg/64x64/actions/podcast.png
81
share/apps/amarok/icons/crystalsvg/64x64/actions/podcast.png
81
share/apps/amarok/icons/crystalsvg/64x64/actions/podcast_new.png
82
share/apps/amarok/icons/crystalsvg/64x64/actions/podcast_new.png
Lines 455-470 Link Here
455
share/apps/amarok/images/vol_speaker.png
456
share/apps/amarok/images/vol_speaker.png
456
share/apps/amarok/images/volumeslider-gradient.png
457
share/apps/amarok/images/volumeslider-gradient.png
457
share/apps/amarok/images/volumeslider-handle.png
458
share/apps/amarok/images/volumeslider-handle.png
458
share/apps/amarok/images/volumeslider-inset.png
459
share/apps/amarok/images/volumeslider-handle_glow.png
459
share/apps/amarok/images/volumeslider-handle_glow.png
460
share/apps/amarok/images/volumeslider-inset.png
460
share/apps/amarok/images/wizard_compact.png
461
share/apps/amarok/images/wizard_compact.png
461
share/apps/amarok/images/wizard_xmms.png
462
share/apps/amarok/images/wizard_xmms.png
462
share/apps/amarok/images/xine_logo.png
463
share/apps/amarok/images/xine_logo.png
463
share/apps/amarok/ruby_lib/codes.rb
464
share/apps/amarok/ruby_lib/codes.rb
464
share/apps/amarok/ruby_lib/gemconfigure.rb
465
share/apps/amarok/ruby_lib/gem_plugin.rb
465
share/apps/amarok/ruby_lib/gem_plugin.rb
466
share/apps/amarok/ruby_lib/gemconfigure.rb
466
share/apps/amarok/ruby_lib/mongrel.rb
467
share/apps/amarok/ruby_lib/mongrel.rb
467
share/apps/amarok/ruby_lib/rubygems.rb
468
share/apps/amarok/ruby_lib/mongrel/cgi.rb
468
share/apps/amarok/ruby_lib/mongrel/cgi.rb
469
share/apps/amarok/ruby_lib/mongrel/command.rb
469
share/apps/amarok/ruby_lib/mongrel/command.rb
470
share/apps/amarok/ruby_lib/mongrel/configurator.rb
470
share/apps/amarok/ruby_lib/mongrel/configurator.rb
Lines 475-480 Link Here
475
share/apps/amarok/ruby_lib/mongrel/stats.rb
475
share/apps/amarok/ruby_lib/mongrel/stats.rb
476
share/apps/amarok/ruby_lib/mongrel/tcphack.rb
476
share/apps/amarok/ruby_lib/mongrel/tcphack.rb
477
share/apps/amarok/ruby_lib/rbconfig/datadir.rb
477
share/apps/amarok/ruby_lib/rbconfig/datadir.rb
478
share/apps/amarok/ruby_lib/rubygems.rb
478
share/apps/amarok/ruby_lib/rubygems/._gem_commands.rb
479
share/apps/amarok/ruby_lib/rubygems/._gem_commands.rb
479
share/apps/amarok/ruby_lib/rubygems/builder.rb
480
share/apps/amarok/ruby_lib/rubygems/builder.rb
480
share/apps/amarok/ruby_lib/rubygems/cmd_manager.rb
481
share/apps/amarok/ruby_lib/rubygems/cmd_manager.rb
Lines 514-530 Link Here
514
share/apps/amarok/scripts/lyrics_lyrc/lyrics_lyrc.spec
515
share/apps/amarok/scripts/lyrics_lyrc/lyrics_lyrc.spec
515
share/apps/amarok/scripts/playlist2html/Playlist.py
516
share/apps/amarok/scripts/playlist2html/Playlist.py
516
share/apps/amarok/scripts/playlist2html/PlaylistServer.py
517
share/apps/amarok/scripts/playlist2html/PlaylistServer.py
518
share/apps/amarok/scripts/playlist2html/PlaylistServer.spec
517
share/apps/amarok/scripts/playlist2html/README
519
share/apps/amarok/scripts/playlist2html/README
518
share/apps/amarok/scripts/playlist2html/playlist2html.py
520
share/apps/amarok/scripts/playlist2html/playlist2html.py
521
share/apps/amarok/scripts/playlist2html/playlist2html.spec
519
share/apps/amarok/scripts/ruby_debug/debug.rb
522
share/apps/amarok/scripts/ruby_debug/debug.rb
520
share/apps/amarok/scripts/score_default/COPYING
523
share/apps/amarok/scripts/score_default/COPYING
521
share/apps/amarok/scripts/score_default/README
524
share/apps/amarok/scripts/score_default/README
522
share/apps/amarok/scripts/score_default/score_default.spec
523
share/apps/amarok/scripts/score_default/score_default.rb
525
share/apps/amarok/scripts/score_default/score_default.rb
526
share/apps/amarok/scripts/score_default/score_default.spec
524
share/apps/amarok/scripts/score_impulsive/COPYING
527
share/apps/amarok/scripts/score_impulsive/COPYING
525
share/apps/amarok/scripts/score_impulsive/README
528
share/apps/amarok/scripts/score_impulsive/README
526
share/apps/amarok/scripts/score_impulsive/score_impulsive.spec
527
share/apps/amarok/scripts/score_impulsive/score_impulsive.rb
529
share/apps/amarok/scripts/score_impulsive/score_impulsive.rb
530
share/apps/amarok/scripts/score_impulsive/score_impulsive.spec
528
share/apps/amarok/scripts/templates/amarok.rb
531
share/apps/amarok/scripts/templates/amarok.rb
529
share/apps/amarok/scripts/templates/python_qt_template.py
532
share/apps/amarok/scripts/templates/python_qt_template.py
530
share/apps/amarok/scripts/templates/ruby_qt_template.rb
533
share/apps/amarok/scripts/templates/ruby_qt_template.rb
Lines 544-552 Link Here
544
share/apps/amarok/scripts/webcontrol/player_play.png
547
share/apps/amarok/scripts/webcontrol/player_play.png
545
share/apps/amarok/scripts/webcontrol/player_start.png
548
share/apps/amarok/scripts/webcontrol/player_start.png
546
share/apps/amarok/scripts/webcontrol/player_stop.png
549
share/apps/amarok/scripts/webcontrol/player_stop.png
547
share/apps/amarok/scripts/webcontrol/template.thtml
548
share/apps/amarok/scripts/webcontrol/smallstar.png
550
share/apps/amarok/scripts/webcontrol/smallstar.png
549
share/apps/amarok/scripts/webcontrol/star.png
551
share/apps/amarok/scripts/webcontrol/star.png
552
share/apps/amarok/scripts/webcontrol/template.thtml
550
share/apps/amarok/scripts/webcontrol/vol_speaker.png
553
share/apps/amarok/scripts/webcontrol/vol_speaker.png
551
share/apps/amarok/themes/example/stylesheet.css
554
share/apps/amarok/themes/example/stylesheet.css
552
share/apps/amarok/themes/reinhardt/images/background.png
555
share/apps/amarok/themes/reinhardt/images/background.png
Lines 572-583 Link Here
572
share/doc/HTML/da/amarok/requirements.docbook
575
share/doc/HTML/da/amarok/requirements.docbook
573
share/doc/HTML/da/amarok/using.docbook
576
share/doc/HTML/da/amarok/using.docbook
574
share/doc/HTML/de/amarok/add_dynamic.png
577
share/doc/HTML/de/amarok/add_dynamic.png
575
share/doc/HTML/de/amarok/amarok_playlist.png
576
share/doc/HTML/de/amarok/advanced.docbook
578
share/doc/HTML/de/amarok/advanced.docbook
579
share/doc/HTML/de/amarok/amarok_playlist.png
577
share/doc/HTML/de/amarok/analyzer.png
580
share/doc/HTML/de/amarok/analyzer.png
578
share/doc/HTML/de/amarok/buttons.png
581
share/doc/HTML/de/amarok/buttons.png
579
share/doc/HTML/de/amarok/collection.png
582
share/doc/HTML/de/amarok/collection.png
580
share/doc/HTML/de/amarok/common
581
share/doc/HTML/de/amarok/config.docbook
583
share/doc/HTML/de/amarok/config.docbook
582
share/doc/HTML/de/amarok/config_appearance.png
584
share/doc/HTML/de/amarok/config_appearance.png
583
share/doc/HTML/de/amarok/config_collection.png
585
share/doc/HTML/de/amarok/config_collection.png
Lines 587-600 Link Here
587
share/doc/HTML/de/amarok/config_playback.png
589
share/doc/HTML/de/amarok/config_playback.png
588
share/doc/HTML/de/amarok/config_scrobbler.png
590
share/doc/HTML/de/amarok/config_scrobbler.png
589
share/doc/HTML/de/amarok/context.png
591
share/doc/HTML/de/amarok/context.png
592
share/doc/HTML/de/amarok/common
590
share/doc/HTML/de/amarok/coverman.png
593
share/doc/HTML/de/amarok/coverman.png
591
share/doc/HTML/de/amarok/develop.docbook
592
share/doc/HTML/de/amarok/dynamic_bar.png
594
share/doc/HTML/de/amarok/dynamic_bar.png
593
share/doc/HTML/de/amarok/dynamic_settings.png
595
share/doc/HTML/de/amarok/dynamic_settings.png
594
share/doc/HTML/de/amarok/equalizer.png
596
share/doc/HTML/de/amarok/equalizer.png
595
share/doc/HTML/de/amarok/faq.docbook
597
share/doc/HTML/de/amarok/faq.docbook
596
share/doc/HTML/de/amarok/file_browser.png
598
share/doc/HTML/de/amarok/file_browser.png
597
share/doc/HTML/de/amarok/hidden.docbook
598
share/doc/HTML/de/amarok/index.cache.bz2
599
share/doc/HTML/de/amarok/index.cache.bz2
599
share/doc/HTML/de/amarok/index.docbook
600
share/doc/HTML/de/amarok/index.docbook
600
share/doc/HTML/de/amarok/logo.png
601
share/doc/HTML/de/amarok/logo.png
Lines 616-623 Link Here
616
share/doc/HTML/de/amarok/using.docbook
617
share/doc/HTML/de/amarok/using.docbook
617
share/doc/HTML/de/amarok/vis_window.png
618
share/doc/HTML/de/amarok/vis_window.png
618
share/doc/HTML/en/amarok/add_dynamic.png
619
share/doc/HTML/en/amarok/add_dynamic.png
619
share/doc/HTML/en/amarok/amarok_playlist.png
620
share/doc/HTML/en/amarok/advanced.docbook
620
share/doc/HTML/en/amarok/advanced.docbook
621
share/doc/HTML/en/amarok/amarok_playlist.png
621
share/doc/HTML/en/amarok/analyzer.png
622
share/doc/HTML/en/amarok/analyzer.png
622
share/doc/HTML/en/amarok/buttons.png
623
share/doc/HTML/en/amarok/buttons.png
623
share/doc/HTML/en/amarok/collection.png
624
share/doc/HTML/en/amarok/collection.png
Lines 704-711 Link Here
704
share/doc/HTML/es/amarok/using.docbook
705
share/doc/HTML/es/amarok/using.docbook
705
share/doc/HTML/es/amarok/vis_window.png
706
share/doc/HTML/es/amarok/vis_window.png
706
share/doc/HTML/et/amarok/advanced.docbook
707
share/doc/HTML/et/amarok/advanced.docbook
707
share/doc/HTML/et/amarok/common
708
share/doc/HTML/et/amarok/config.docbook
708
share/doc/HTML/et/amarok/config.docbook
709
share/doc/HTML/et/amarok/common
709
share/doc/HTML/et/amarok/develop.docbook
710
share/doc/HTML/et/amarok/develop.docbook
710
share/doc/HTML/et/amarok/faq.docbook
711
share/doc/HTML/et/amarok/faq.docbook
711
share/doc/HTML/et/amarok/feature_guide.docbook
712
share/doc/HTML/et/amarok/feature_guide.docbook
Lines 718-725 Link Here
718
share/doc/HTML/et/amarok/requirements.docbook
719
share/doc/HTML/et/amarok/requirements.docbook
719
share/doc/HTML/et/amarok/using.docbook
720
share/doc/HTML/et/amarok/using.docbook
720
share/doc/HTML/fr/amarok/advanced.docbook
721
share/doc/HTML/fr/amarok/advanced.docbook
721
share/doc/HTML/fr/amarok/common
722
share/doc/HTML/fr/amarok/config.docbook
722
share/doc/HTML/fr/amarok/config.docbook
723
share/doc/HTML/fr/amarok/common
723
share/doc/HTML/fr/amarok/faq.docbook
724
share/doc/HTML/fr/amarok/faq.docbook
724
share/doc/HTML/fr/amarok/feature_guide.docbook
725
share/doc/HTML/fr/amarok/feature_guide.docbook
725
share/doc/HTML/fr/amarok/index.cache.bz2
726
share/doc/HTML/fr/amarok/index.cache.bz2
Lines 727-734 Link Here
727
share/doc/HTML/fr/amarok/quick.docbook
728
share/doc/HTML/fr/amarok/quick.docbook
728
share/doc/HTML/fr/amarok/requirements.docbook
729
share/doc/HTML/fr/amarok/requirements.docbook
729
share/doc/HTML/fr/amarok/using.docbook
730
share/doc/HTML/fr/amarok/using.docbook
730
share/doc/HTML/it/amarok/advanced.docbook
731
share/doc/HTML/it/amarok/add_dynamic.png
731
share/doc/HTML/it/amarok/add_dynamic.png
732
share/doc/HTML/it/amarok/advanced.docbook
732
share/doc/HTML/it/amarok/amarok_playlist.png
733
share/doc/HTML/it/amarok/amarok_playlist.png
733
share/doc/HTML/it/amarok/analyzer.png
734
share/doc/HTML/it/amarok/analyzer.png
734
share/doc/HTML/it/amarok/buttons.png
735
share/doc/HTML/it/amarok/buttons.png
Lines 776-783 Link Here
776
share/doc/HTML/it/amarok/using.docbook
777
share/doc/HTML/it/amarok/using.docbook
777
share/doc/HTML/it/amarok/vis_window.png
778
share/doc/HTML/it/amarok/vis_window.png
778
share/doc/HTML/nl/amarok/add_dynamic.png
779
share/doc/HTML/nl/amarok/add_dynamic.png
779
share/doc/HTML/nl/amarok/amarok_playlist.png
780
share/doc/HTML/nl/amarok/advanced.docbook
780
share/doc/HTML/nl/amarok/advanced.docbook
781
share/doc/HTML/nl/amarok/amarok_playlist.png
781
share/doc/HTML/nl/amarok/analyzer.png
782
share/doc/HTML/nl/amarok/analyzer.png
782
share/doc/HTML/nl/amarok/buttons.png
783
share/doc/HTML/nl/amarok/buttons.png
783
share/doc/HTML/nl/amarok/collection.png
784
share/doc/HTML/nl/amarok/collection.png
Lines 794-799 Link Here
794
share/doc/HTML/nl/amarok/coverman.png
795
share/doc/HTML/nl/amarok/coverman.png
795
share/doc/HTML/nl/amarok/develop.docbook
796
share/doc/HTML/nl/amarok/develop.docbook
796
share/doc/HTML/nl/amarok/dynamic_bar.png
797
share/doc/HTML/nl/amarok/dynamic_bar.png
798
share/doc/HTML/nl/amarok/dynamic_settings.png
797
share/doc/HTML/nl/amarok/equalizer.png
799
share/doc/HTML/nl/amarok/equalizer.png
798
share/doc/HTML/nl/amarok/faq.docbook
800
share/doc/HTML/nl/amarok/faq.docbook
799
share/doc/HTML/nl/amarok/feature_guide.docbook
801
share/doc/HTML/nl/amarok/feature_guide.docbook
Lines 801-813 Link Here
801
share/doc/HTML/nl/amarok/hidden.docbook
803
share/doc/HTML/nl/amarok/hidden.docbook
802
share/doc/HTML/nl/amarok/index.cache.bz2
804
share/doc/HTML/nl/amarok/index.cache.bz2
803
share/doc/HTML/nl/amarok/index.docbook
805
share/doc/HTML/nl/amarok/index.docbook
806
share/doc/HTML/nl/amarok/logo.png
804
share/doc/HTML/nl/amarok/media_device.png
807
share/doc/HTML/nl/amarok/media_device.png
805
share/doc/HTML/nl/amarok/menubar.png
808
share/doc/HTML/nl/amarok/menubar.png
809
share/doc/HTML/nl/amarok/musicbrainz.png
806
share/doc/HTML/nl/amarok/pl_browser.png
810
share/doc/HTML/nl/amarok/pl_browser.png
807
share/doc/HTML/nl/amarok/pl_tip1.png
811
share/doc/HTML/nl/amarok/pl_tip1.png
808
share/doc/HTML/nl/amarok/play_list.png
812
share/doc/HTML/nl/amarok/play_list.png
809
share/doc/HTML/nl/amarok/playlist_browser.png
810
share/doc/HTML/nl/amarok/player_window.png
813
share/doc/HTML/nl/amarok/player_window.png
814
share/doc/HTML/nl/amarok/playlist_browser.png
811
share/doc/HTML/nl/amarok/playlist_window.png
815
share/doc/HTML/nl/amarok/playlist_window.png
812
share/doc/HTML/nl/amarok/plugin.docbook
816
share/doc/HTML/nl/amarok/plugin.docbook
813
share/doc/HTML/nl/amarok/queue_manager.png
817
share/doc/HTML/nl/amarok/queue_manager.png
Lines 822-836 Link Here
822
share/doc/HTML/nl/amarok/tab_wiki.png
826
share/doc/HTML/nl/amarok/tab_wiki.png
823
share/doc/HTML/nl/amarok/using.docbook
827
share/doc/HTML/nl/amarok/using.docbook
824
share/doc/HTML/nl/amarok/vis_window.png
828
share/doc/HTML/nl/amarok/vis_window.png
825
share/doc/HTML/pl/amarok/requirements.docbook
826
share/doc/HTML/pl/amarok/advanced.docbook
829
share/doc/HTML/pl/amarok/advanced.docbook
827
share/doc/HTML/pl/amarok/config.docbook
830
share/doc/HTML/pl/amarok/config.docbook
828
share/doc/HTML/pl/amarok/using.docbook
831
share/doc/HTML/pl/amarok/common
829
share/doc/HTML/pl/amarok/faq.docbook
832
share/doc/HTML/pl/amarok/faq.docbook
833
share/doc/HTML/pl/amarok/index.cache.bz2
830
share/doc/HTML/pl/amarok/index.docbook
834
share/doc/HTML/pl/amarok/index.docbook
831
share/doc/HTML/pl/amarok/quick.docbook
835
share/doc/HTML/pl/amarok/quick.docbook
832
share/doc/HTML/pl/amarok/index.cache.bz2
836
share/doc/HTML/pl/amarok/requirements.docbook
833
share/doc/HTML/pl/amarok/common
837
share/doc/HTML/pl/amarok/using.docbook
834
share/doc/HTML/pt/amarok/add_dynamic.png
838
share/doc/HTML/pt/amarok/add_dynamic.png
835
share/doc/HTML/pt/amarok/advanced.docbook
839
share/doc/HTML/pt/amarok/advanced.docbook
836
share/doc/HTML/pt/amarok/amarok_playlist.png
840
share/doc/HTML/pt/amarok/amarok_playlist.png
Lines 876-883 Link Here
876
share/doc/HTML/pt/amarok/using.docbook
880
share/doc/HTML/pt/amarok/using.docbook
877
share/doc/HTML/pt/amarok/vis_window.png
881
share/doc/HTML/pt/amarok/vis_window.png
878
share/doc/HTML/pt_BR/amarok/advanced.docbook
882
share/doc/HTML/pt_BR/amarok/advanced.docbook
879
share/doc/HTML/pt_BR/amarok/common
880
share/doc/HTML/pt_BR/amarok/config.docbook
883
share/doc/HTML/pt_BR/amarok/config.docbook
884
share/doc/HTML/pt_BR/amarok/common
881
share/doc/HTML/pt_BR/amarok/faq.docbook
885
share/doc/HTML/pt_BR/amarok/faq.docbook
882
share/doc/HTML/pt_BR/amarok/feature_guide.docbook
886
share/doc/HTML/pt_BR/amarok/feature_guide.docbook
883
share/doc/HTML/pt_BR/amarok/index.cache.bz2
887
share/doc/HTML/pt_BR/amarok/index.cache.bz2
Lines 977-983 Link Here
977
share/locale/af/LC_MESSAGES/amarok.mo
981
share/locale/af/LC_MESSAGES/amarok.mo
978
share/locale/ar/LC_MESSAGES/amarok.mo
982
share/locale/ar/LC_MESSAGES/amarok.mo
979
share/locale/az/LC_MESSAGES/amarok.mo
983
share/locale/az/LC_MESSAGES/amarok.mo
984
share/locale/be/LC_MESSAGES/amarok.mo
980
share/locale/bg/LC_MESSAGES/amarok.mo
985
share/locale/bg/LC_MESSAGES/amarok.mo
986
share/locale/bn/LC_MESSAGES/amarok.mo
981
share/locale/br/LC_MESSAGES/amarok.mo
987
share/locale/br/LC_MESSAGES/amarok.mo
982
share/locale/ca/LC_MESSAGES/amarok.mo
988
share/locale/ca/LC_MESSAGES/amarok.mo
983
share/locale/cs/LC_MESSAGES/amarok.mo
989
share/locale/cs/LC_MESSAGES/amarok.mo
Lines 986-993 Link Here
986
share/locale/de/LC_MESSAGES/amarok.mo
992
share/locale/de/LC_MESSAGES/amarok.mo
987
share/locale/el/LC_MESSAGES/amarok.mo
993
share/locale/el/LC_MESSAGES/amarok.mo
988
share/locale/en_GB/LC_MESSAGES/amarok.mo
994
share/locale/en_GB/LC_MESSAGES/amarok.mo
995
share/locale/eo/LC_MESSAGES/amarok.mo
989
share/locale/es/LC_MESSAGES/amarok.mo
996
share/locale/es/LC_MESSAGES/amarok.mo
990
share/locale/et/LC_MESSAGES/amarok.mo
997
share/locale/et/LC_MESSAGES/amarok.mo
998
share/locale/eu/LC_MESSAGES/amarok.mo
991
share/locale/fa/LC_MESSAGES/amarok.mo
999
share/locale/fa/LC_MESSAGES/amarok.mo
992
share/locale/fi/LC_MESSAGES/amarok.mo
1000
share/locale/fi/LC_MESSAGES/amarok.mo
993
share/locale/fr/LC_MESSAGES/amarok.mo
1001
share/locale/fr/LC_MESSAGES/amarok.mo
Lines 996-1010 Link Here
996
share/locale/he/LC_MESSAGES/amarok.mo
1004
share/locale/he/LC_MESSAGES/amarok.mo
997
share/locale/hi/LC_MESSAGES/amarok.mo
1005
share/locale/hi/LC_MESSAGES/amarok.mo
998
share/locale/hu/LC_MESSAGES/amarok.mo
1006
share/locale/hu/LC_MESSAGES/amarok.mo
1007
share/locale/id/LC_MESSAGES/amarok.mo
999
share/locale/is/LC_MESSAGES/amarok.mo
1008
share/locale/is/LC_MESSAGES/amarok.mo
1000
share/locale/it/LC_MESSAGES/amarok.mo
1009
share/locale/it/LC_MESSAGES/amarok.mo
1001
share/locale/ja/LC_MESSAGES/amarok.mo
1010
share/locale/ja/LC_MESSAGES/amarok.mo
1002
share/locale/ka/LC_MESSAGES/amarok.mo
1003
share/locale/km/LC_MESSAGES/amarok.mo
1011
share/locale/km/LC_MESSAGES/amarok.mo
1004
share/locale/ko/LC_MESSAGES/amarok.mo
1012
share/locale/ko/LC_MESSAGES/amarok.mo
1013
share/locale/ku/LC_MESSAGES/amarok.mo
1014
share/locale/lo/LC_MESSAGES/amarok.mo
1005
share/locale/lt/LC_MESSAGES/amarok.mo
1015
share/locale/lt/LC_MESSAGES/amarok.mo
1016
share/locale/mk/LC_MESSAGES/amarok.mo
1006
share/locale/ms/LC_MESSAGES/amarok.mo
1017
share/locale/ms/LC_MESSAGES/amarok.mo
1007
share/locale/nb/LC_MESSAGES/amarok.mo
1018
share/locale/nb/LC_MESSAGES/amarok.mo
1019
share/locale/nds/LC_MESSAGES/amarok.mo
1020
share/locale/ne/LC_MESSAGES/amarok.mo
1008
share/locale/nl/LC_MESSAGES/amarok.mo
1021
share/locale/nl/LC_MESSAGES/amarok.mo
1009
share/locale/nn/LC_MESSAGES/amarok.mo
1022
share/locale/nn/LC_MESSAGES/amarok.mo
1010
share/locale/pa/LC_MESSAGES/amarok.mo
1023
share/locale/pa/LC_MESSAGES/amarok.mo
Lines 1014-1025 Link Here
1014
share/locale/ro/LC_MESSAGES/amarok.mo
1027
share/locale/ro/LC_MESSAGES/amarok.mo
1015
share/locale/ru/LC_MESSAGES/amarok.mo
1028
share/locale/ru/LC_MESSAGES/amarok.mo
1016
share/locale/rw/LC_MESSAGES/amarok.mo
1029
share/locale/rw/LC_MESSAGES/amarok.mo
1017
share/locale/sl/LC_MESSAGES/amarok.mo
1018
share/locale/se/LC_MESSAGES/amarok.mo
1030
share/locale/se/LC_MESSAGES/amarok.mo
1019
share/locale/sk/LC_MESSAGES/amarok.mo
1031
share/locale/sk/LC_MESSAGES/amarok.mo
1032
share/locale/sl/LC_MESSAGES/amarok.mo
1020
share/locale/sq/LC_MESSAGES/amarok.mo
1033
share/locale/sq/LC_MESSAGES/amarok.mo
1021
share/locale/sr/LC_MESSAGES/amarok.mo
1034
share/locale/sr/LC_MESSAGES/amarok.mo
1022
share/locale/sr@Latn/LC_MESSAGES/amarok.mo
1035
share/locale/sr@Latn/LC_MESSAGES/amarok.mo
1036
share/locale/ss/LC_MESSAGES/amarok.mo
1023
share/locale/sv/LC_MESSAGES/amarok.mo
1037
share/locale/sv/LC_MESSAGES/amarok.mo
1024
share/locale/ta/LC_MESSAGES/amarok.mo
1038
share/locale/ta/LC_MESSAGES/amarok.mo
1025
share/locale/tg/LC_MESSAGES/amarok.mo
1039
share/locale/tg/LC_MESSAGES/amarok.mo
Lines 1032-1068 Link Here
1032
%%GPOD%%share/services/amarok_ipod-mediadevice.desktop
1046
%%GPOD%%share/services/amarok_ipod-mediadevice.desktop
1033
%%MTP%%share/services/amarok_mtp-mediadevice.desktop
1047
%%MTP%%share/services/amarok_mtp-mediadevice.desktop
1034
%%NJB%%share/services/amarok_njb-mediadevice.desktop
1048
%%NJB%%share/services/amarok_njb-mediadevice.desktop
1035
share/services/amarokitpc.protocol
1036
share/services/amaroklastfm.protocol
1037
share/services/amarokpcast.protocol
1038
share/services/amarok_daap-mediadevice.desktop
1049
share/services/amarok_daap-mediadevice.desktop
1039
share/services/amarok_generic-mediadevice.desktop
1050
share/services/amarok_generic-mediadevice.desktop
1040
share/services/amarok_massstorage-device.desktop
1051
share/services/amarok_massstorage-device.desktop
1041
share/services/amarok_nfs-device.desktop
1052
share/services/amarok_nfs-device.desktop
1042
share/services/amarok_smb-device.desktop
1053
share/services/amarok_smb-device.desktop
1043
share/services/amarok_xine-engine.desktop
1044
share/services/amarok_void-engine_plugin.desktop
1054
share/services/amarok_void-engine_plugin.desktop
1055
share/services/amarok_xine-engine.desktop
1056
share/services/amarokitpc.protocol
1057
share/services/amaroklastfm.protocol
1058
share/services/amarokpcast.protocol
1045
share/servicetypes/amarok_codecinstall.desktop
1059
share/servicetypes/amarok_codecinstall.desktop
1046
share/servicetypes/amarok_plugin.desktop
1060
share/servicetypes/amarok_plugin.desktop
1047
@dirrmtry share/locale/km/LC_MESSAGES
1061
@dirrmtry share/locale/zh_TW/LC_MESSAGES
1048
@dirrmtry share/locale/km
1062
@dirrmtry share/locale/zh_TW
1049
@dirrmtry share/locale/rw/LC_MESSAGES
1063
@dirrmtry share/locale/zh_CN/LC_MESSAGES
1050
@dirrmtry share/locale/rw
1064
@dirrmtry share/locale/zh_CN
1065
@dirrmtry share/locale/uz/LC_MESSAGES
1066
@dirrmtry share/locale/uz
1067
@dirrmtry share/locale/uk/LC_MESSAGES
1068
@dirrmtry share/locale/uk
1069
@dirrmtry share/locale/tk/LC_MESSAGES
1070
@dirrmtry share/locale/tk
1071
@dirrmtry share/locale/tg/LC_MESSAGES
1072
@dirrmtry share/locale/tg
1073
@dirrmtry share/locale/ss/LC_MESSAGES
1074
@dirrmtry share/locale/ss
1075
@dirrmtry share/locale/sr/LC_MESSAGES
1076
@dirrmtry share/locale/sr
1077
@dirrmtry share/locale/sl/LC_MESSAGES
1078
@dirrmtry share/locale/sl
1079
@dirrmtry share/locale/sk/LC_MESSAGES
1080
@dirrmtry share/locale/sk
1051
@dirrmtry share/locale/se/LC_MESSAGES
1081
@dirrmtry share/locale/se/LC_MESSAGES
1052
@dirrmtry share/locale/se
1082
@dirrmtry share/locale/se
1083
@dirrmtry share/locale/rw/LC_MESSAGES
1084
@dirrmtry share/locale/rw
1085
@dirrmtry share/locale/ro/LC_MESSAGES
1086
@dirrmtry share/locale/ro
1087
@dirrmtry share/locale/pt/LC_MESSAGES
1088
@dirrmtry share/locale/pt
1089
@dirrmtry share/locale/pl/LC_MESSAGES
1090
@dirrmtry share/locale/pl
1091
@dirrmtry share/locale/no/LC_MESSAGES
1092
@dirrmtry share/locale/no
1093
@dirrmtry share/locale/nn/LC_MESSAGES
1094
@dirrmtry share/locale/nn
1095
@dirrmtry share/locale/ne/LC_MESSAGES
1096
@dirrmtry share/locale/ne
1097
@dirrmtry share/locale/nds/LC_MESSAGES
1098
@dirrmtry share/locale/nds
1099
@dirrmtry share/locale/lo/LC_MESSAGES
1100
@dirrmtry share/locale/lo
1101
@dirrmtry share/locale/li/LC_MESSAGES
1102
@dirrmtry share/locale/li
1103
@dirrmtry share/locale/ku/LC_MESSAGES
1104
@dirrmtry share/locale/ku
1105
@dirrmtry share/locale/ko/LC_MESSAGES
1106
@dirrmtry share/locale/ko
1107
@dirrmtry share/locale/km/LC_MESSAGES
1108
@dirrmtry share/locale/km
1109
@dirrmtry share/locale/gl/LC_MESSAGES
1110
@dirrmtry share/locale/gl
1111
@dirrmtry share/locale/fr_FR/LC_MESSAGES
1112
@dirrmtry share/locale/fr_FR
1113
@dirrmtry share/locale/fi/LC_MESSAGES
1114
@dirrmtry share/locale/fi
1115
@dirrmtry share/locale/fa_IR/LC_MESSAGES
1116
@dirrmtry share/locale/fa_IR
1117
@dirrmtry share/locale/en_AU/LC_MESSAGES
1118
@dirrmtry share/locale/en_AU
1119
@dirrmtry share/locale/el/LC_MESSAGES
1120
@dirrmtry share/locale/el
1121
@dirrmtry share/locale/de_AT/LC_MESSAGES
1122
@dirrmtry share/locale/de_AT
1123
@dirrmtry share/locale/cs/LC_MESSAGES
1124
@dirrmtry share/locale/cs
1125
@dirrmtry share/locale/ca/LC_MESSAGES
1126
@dirrmtry share/locale/ca
1127
@dirrmtry share/locale/be/LC_MESSAGES
1128
@dirrmtry share/locale/be
1053
@dirrm share/doc/HTML/sv/amarok
1129
@dirrm share/doc/HTML/sv/amarok
1130
@dirrmtry share/doc/HTML/sv
1054
@dirrm share/doc/HTML/ru/amarok
1131
@dirrm share/doc/HTML/ru/amarok
1132
@dirrmtry share/doc/HTML/ru
1055
@dirrm share/doc/HTML/pt_BR/amarok
1133
@dirrm share/doc/HTML/pt_BR/amarok
1134
@dirrmtry share/doc/HTML/pt_BR
1056
@dirrm share/doc/HTML/pt/amarok
1135
@dirrm share/doc/HTML/pt/amarok
1136
@dirrmtry share/doc/HTML/pt
1057
@dirrm share/doc/HTML/pl/amarok
1137
@dirrm share/doc/HTML/pl/amarok
1138
@dirrmtry share/doc/HTML/pl
1058
@dirrm share/doc/HTML/nl/amarok
1139
@dirrm share/doc/HTML/nl/amarok
1140
@dirrmtry share/doc/HTML/nl
1059
@dirrm share/doc/HTML/it/amarok
1141
@dirrm share/doc/HTML/it/amarok
1142
@dirrmtry share/doc/HTML/it
1060
@dirrm share/doc/HTML/fr/amarok
1143
@dirrm share/doc/HTML/fr/amarok
1144
@dirrmtry share/doc/HTML/fr
1061
@dirrm share/doc/HTML/et/amarok
1145
@dirrm share/doc/HTML/et/amarok
1146
@dirrmtry share/doc/HTML/et
1062
@dirrm share/doc/HTML/es/amarok
1147
@dirrm share/doc/HTML/es/amarok
1148
@dirrmtry share/doc/HTML/es
1063
@dirrm share/doc/HTML/en/amarok
1149
@dirrm share/doc/HTML/en/amarok
1150
@dirrmtry share/doc/HTML/en
1064
@dirrm share/doc/HTML/de/amarok
1151
@dirrm share/doc/HTML/de/amarok
1152
@dirrmtry share/doc/HTML/de
1065
@dirrm share/doc/HTML/da/amarok
1153
@dirrm share/doc/HTML/da/amarok
1154
@dirrmtry share/doc/HTML/da
1066
@dirrm share/apps/amarok/themes/reinhardt/images
1155
@dirrm share/apps/amarok/themes/reinhardt/images
1067
@dirrm share/apps/amarok/themes/reinhardt
1156
@dirrm share/apps/amarok/themes/reinhardt
1068
@dirrm share/apps/amarok/themes/example
1157
@dirrm share/apps/amarok/themes/example
Lines 1082-1094 Link Here
1082
@dirrm share/apps/amarok/ruby_lib/mongrel
1171
@dirrm share/apps/amarok/ruby_lib/mongrel
1083
@dirrm share/apps/amarok/ruby_lib
1172
@dirrm share/apps/amarok/ruby_lib
1084
@dirrm share/apps/amarok/images
1173
@dirrm share/apps/amarok/images
1085
@dirrm share/apps/amarok/icons/crystalsvg/64x64/actions
1086
@dirrm share/apps/amarok/icons/crystalsvg/64x64
1087
@dirrm share/apps/amarok/icons/crystalsvg/22x22/actions
1088
@dirrm share/apps/amarok/icons/crystalsvg/22x22
1089
@dirrm share/apps/amarok/icons/crystalsvg/16x16/actions
1090
@dirrm share/apps/amarok/icons/crystalsvg/16x16
1091
@dirrm share/apps/amarok/icons/crystalsvg
1092
@dirrm share/apps/amarok/icons/hicolor/64x64/actions
1174
@dirrm share/apps/amarok/icons/hicolor/64x64/actions
1093
@dirrm share/apps/amarok/icons/hicolor/64x64
1175
@dirrm share/apps/amarok/icons/hicolor/64x64
1094
@dirrm share/apps/amarok/icons/hicolor/48x48/actions
1176
@dirrm share/apps/amarok/icons/hicolor/48x48/actions
Lines 1100-1106 Link Here
1100
@dirrm share/apps/amarok/icons/hicolor/16x16/actions
1182
@dirrm share/apps/amarok/icons/hicolor/16x16/actions
1101
@dirrm share/apps/amarok/icons/hicolor/16x16
1183
@dirrm share/apps/amarok/icons/hicolor/16x16
1102
@dirrm share/apps/amarok/icons/hicolor
1184
@dirrm share/apps/amarok/icons/hicolor
1185
@dirrm share/apps/amarok/icons/crystalsvg/64x64/actions
1186
@dirrm share/apps/amarok/icons/crystalsvg/64x64
1187
@dirrm share/apps/amarok/icons/crystalsvg/22x22/actions
1188
@dirrm share/apps/amarok/icons/crystalsvg/22x22
1189
@dirrm share/apps/amarok/icons/crystalsvg/16x16/actions
1190
@dirrm share/apps/amarok/icons/crystalsvg/16x16
1191
@dirrm share/apps/amarok/icons/crystalsvg
1103
@dirrm share/apps/amarok/icons
1192
@dirrm share/apps/amarok/icons
1104
@dirrm share/apps/amarok/data
1193
@dirrm share/apps/amarok/data
1105
@dirrm share/apps/amarok
1194
@dirrm share/apps/amarok
1106
@dirrm lib/ruby_lib
1195
@dirrmtry lib/ruby_lib

Return to bug 115757