banshee r4079 - in trunk/banshee: . src/Core/Banshee.Services/Banshee.Collection.Database
- From: jmas svn gnome org
- To: svn-commits-list gnome org
- Subject: banshee r4079 - in trunk/banshee: . src/Core/Banshee.Services/Banshee.Collection.Database
- Date: Tue, 3 Jun 2008 10:44:37 +0000 (UTC)
Author: jmas
Date: Tue Jun 3 10:44:36 2008
New Revision: 4079
URL: http://svn.gnome.org/viewvc/banshee?rev=4079&view=rev
Log:
Add localizable strings
Modified:
trunk/banshee/ChangeLog
trunk/banshee/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseAlbumListModel.cs
trunk/banshee/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseArtistListModel.cs
Modified: trunk/banshee/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseAlbumListModel.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseAlbumListModel.cs (original)
+++ trunk/banshee/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseAlbumListModel.cs Tue Jun 3 10:44:36 2008
@@ -31,6 +31,7 @@
using System.Data;
using System.Text;
using System.Collections.Generic;
+using Mono.Unix;
using Hyena;
using Hyena.Data.Sqlite;
@@ -65,7 +66,7 @@
public override void UpdateSelectAllItem (long count)
{
- select_all_item.Title = String.Format ("All Albums ({0})", count);
+ select_all_item.Title = String.Format (Catalog.GetString ("All Albums ({0})"), count);
}
}
}
Modified: trunk/banshee/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseArtistListModel.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseArtistListModel.cs (original)
+++ trunk/banshee/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseArtistListModel.cs Tue Jun 3 10:44:36 2008
@@ -30,6 +30,7 @@
using System;
using System.Data;
using System.Collections.Generic;
+using Mono.Unix;
using Hyena;
using Hyena.Data.Sqlite;
@@ -63,7 +64,7 @@
public override void UpdateSelectAllItem (long count)
{
- select_all_item.Name = String.Format ("All Artists ({0})", count);
+ select_all_item.Name = String.Format (Catalog.GetString ("All Artists ({0})"), count);
}
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]