FSpot.MainWindow.UpdateStatusLabel C# (CSharp) Method

UpdateStatusLabel() private method

private UpdateStatusLabel ( ) : bool
return bool
		bool UpdateStatusLabel ()
		{
			update_status_label = false;
			int total_photos = Database.Photos.TotalPhotos;
			if (total_photos != query.Count)
				status_label.Text = String.Format (Catalog.GetPluralString ("{0} photo out of {1}", "{0} photos out of {1}", query.Count), query.Count, total_photos);
			else
				status_label.Text = String.Format (Catalog.GetPluralString ("{0} photo", "{0} photos", query.Count), query.Count);

			if ((Selection != null) && (Selection.Count > 0))
				status_label.Text += String.Format (Catalog.GetPluralString (" ({0} selected)", " ({0} selected)", Selection.Count), Selection.Count);
			status_label.UseMarkup = true;
			return update_status_label;
		}
MainWindow