[banshee] StreamPositionLabel: Fix label when loading



commit 85950accee6e08d296cd0d709ed1893b013057bb
Author: Olivier Dufour <olivier duff gmail com>
Date:   Sun Dec 18 17:28:06 2011 +0100

    StreamPositionLabel: Fix label when loading
    
    Signed-off-by: Bertrand Lorentz <bertrand lorentz gmail com>

 .../Banshee.Widgets/StreamPositionLabel.cs         |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/Core/Banshee.Widgets/Banshee.Widgets/StreamPositionLabel.cs b/src/Core/Banshee.Widgets/Banshee.Widgets/StreamPositionLabel.cs
index 2d3ed99..c135f18 100644
--- a/src/Core/Banshee.Widgets/Banshee.Widgets/StreamPositionLabel.cs
+++ b/src/Core/Banshee.Widgets/Banshee.Widgets/StreamPositionLabel.cs
@@ -149,6 +149,7 @@ namespace Banshee.Widgets
 
         private static string idle = Catalog.GetString ("Idle");
         private static string contacting = Catalog.GetString ("Contacting...");
+        private static string loading = Catalog.GetString ("Loading...");
 
         private void UpdateLabel ()
         {
@@ -162,8 +163,7 @@ namespace Banshee.Widgets
             } else if (IsContacting) {
                 UpdateLabel (contacting);
             } else if (IsLoading) {
-                // TODO replace w/ "Loading..." after string freeze
-                UpdateLabel (contacting);
+                UpdateLabel (loading);
             } else if (IsIdle) {
                 UpdateLabel (idle);
             } else if (seekRange.Duration == Int64.MaxValue) {



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