banshee r4071 - in trunk/banshee: . src/Core/Banshee.ThickClient/Banshee.Gui.Widgets
- From: jmas svn gnome org
- To: svn-commits-list gnome org
- Subject: banshee r4071 - in trunk/banshee: . src/Core/Banshee.ThickClient/Banshee.Gui.Widgets
- Date: Mon, 2 Jun 2008 20:12:34 +0000 (UTC)
Author: jmas
Date: Mon Jun 2 20:12:34 2008
New Revision: 4071
URL: http://svn.gnome.org/viewvc/banshee?rev=4071&view=rev
Log:
Localizable strings
Modified:
trunk/banshee/ChangeLog
trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/TrackInfoDisplay.cs
Modified: trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/TrackInfoDisplay.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/TrackInfoDisplay.cs (original)
+++ trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/TrackInfoDisplay.cs Mon Jun 2 20:12:34 2008
@@ -525,25 +525,25 @@
// Translators: {0} and {1} are for markup, {2} and {3}
// are Podcast Name and Published Date, respectively;
// e.g. 'from BBtv published 7/26/2007'
- markup = String.Format ("{0}from{1} {2} {0}published{1} {3}", markup_begin, markup_end,
+ markup = String.Format (Catalog.GetString ("{0}from{1} {2} {0}published{1} {3}"), markup_begin, markup_end,
GLib.Markup.EscapeText (track.DisplayAlbumTitle),
GLib.Markup.EscapeText (track.ReleaseDate.ToShortDateString ()));
} else if (!String.IsNullOrEmpty (track.ArtistName) && !String.IsNullOrEmpty (track.AlbumTitle)) {
// Translators: {0} and {1} are for markup, {2} and {3}
// are Artist Name and Album Title, respectively;
// e.g. 'by Parkway Drive from Killing with a Smile'
- markup = String.Format ("{0}by{1} {2} {0}from{1} {3}", markup_begin, markup_end,
+ markup = String.Format (Catalog.GetString ("{0}by{1} {2} {0}from{1} {3}"), markup_begin, markup_end,
GLib.Markup.EscapeText (track.DisplayArtistName),
GLib.Markup.EscapeText (track.DisplayAlbumTitle));
} else if (!String.IsNullOrEmpty (track.AlbumTitle)) {
// Translators: {0} and {1} are for markup, {2} is for Album Title;
// e.g. 'from Killing with a Smile'
- markup = String.Format ("{0}from{1} {2}", markup_begin, markup_end,
+ markup = String.Format (Catalog.GetString ("{0}from{1} {2}"), markup_begin, markup_end,
GLib.Markup.EscapeText (track.DisplayAlbumTitle));
} else {
// Translators: {0} and {1} are for markup, {2} is for Artist Name;
// e.g. 'by Parkway Drive'
- markup = String.Format ("{0}by{1} {2}", markup_begin, markup_end,
+ markup = String.Format (Catalog.GetString ("{0}by{1} {2}"), markup_begin, markup_end,
GLib.Markup.EscapeText (track.DisplayArtistName));
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]