f-spot r4119 - in trunk: . src
- From: jmas svn gnome org
- To: svn-commits-list gnome org
- Subject: f-spot r4119 - in trunk: . src
- Date: Sat, 28 Jun 2008 12:02:07 +0000 (UTC)
Author: jmas
Date: Sat Jun 28 12:02:07 2008
New Revision: 4119
URL: http://svn.gnome.org/viewvc/f-spot?rev=4119&view=rev
Log:
Make strings localizable
Modified:
trunk/ChangeLog
trunk/src/PhotoView.cs
Modified: trunk/src/PhotoView.cs
==============================================================================
--- trunk/src/PhotoView.cs (original)
+++ trunk/src/PhotoView.cs Sat Jun 28 12:02:07 2008
@@ -146,9 +146,9 @@
count_label.Text = String.Empty;
else {
if (query.Count == 0)
- count_label.Text = String.Format ("{0} of {1}", 0, 0);
+ count_label.Text = String.Format (Catalog.GetString ("{0} of {1}"), 0, 0);
else
- count_label.Text = String.Format ("{0} of {1}", Item.Index + 1, Query.Count);
+ count_label.Text = String.Format (Catalog.GetString ("{0} of {1}"), Item.Index + 1, Query.Count);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]