[banshee] Rename the Music and Video library sources



commit 134f32a90ebb47ff706c83a57b7dac30f80b5292
Author: Aaron Bockover <abockover novell com>
Date:   Thu Jul 16 12:48:52 2009 -0400

    Rename the Music and Video library sources
    
    Dropped the "Library" string from the names, so the sources are called
    just "Music" and "Videos". Who cares if they are "libraries"? Not I, Not I!

 .../Banshee.Library/MusicLibrarySource.cs          |    3 ++-
 .../Banshee.Library/VideoLibrarySource.cs          |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/src/Core/Banshee.Services/Banshee.Library/MusicLibrarySource.cs b/src/Core/Banshee.Services/Banshee.Library/MusicLibrarySource.cs
index e4cedc0..3f54bc1 100644
--- a/src/Core/Banshee.Services/Banshee.Library/MusicLibrarySource.cs
+++ b/src/Core/Banshee.Services/Banshee.Library/MusicLibrarySource.cs
@@ -42,7 +42,8 @@ namespace Banshee.Library
 {
     public class MusicLibrarySource : LibrarySource
     {
-        public MusicLibrarySource () : base (Catalog.GetString ("Music Library"), "Library", 40)
+        // Catalog.GetString ("Music Library")
+        public MusicLibrarySource () : base (Catalog.GetString ("Music"), "Library", 40)
         {
             MediaTypes = TrackMediaAttributes.Music | TrackMediaAttributes.AudioStream;
             NotMediaTypes = TrackMediaAttributes.Podcast | TrackMediaAttributes.VideoStream | TrackMediaAttributes.AudioBook;
diff --git a/src/Core/Banshee.Services/Banshee.Library/VideoLibrarySource.cs b/src/Core/Banshee.Services/Banshee.Library/VideoLibrarySource.cs
index 77434a9..8c66382 100644
--- a/src/Core/Banshee.Services/Banshee.Library/VideoLibrarySource.cs
+++ b/src/Core/Banshee.Services/Banshee.Library/VideoLibrarySource.cs
@@ -39,7 +39,8 @@ namespace Banshee.Library
 {
     public class VideoLibrarySource : LibrarySource
     {
-        public VideoLibrarySource () : base (Catalog.GetString ("Video Library"), "VideoLibrary", 50)
+        // Catalog.GetString ("Video Library")
+        public VideoLibrarySource () : base (Catalog.GetString ("Videos"), "VideoLibrary", 50)
         {
             MediaTypes = TrackMediaAttributes.VideoStream;
             NotMediaTypes = TrackMediaAttributes.Podcast;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]