~do-plugins/do-plugins/trunk

« back to all changes in this revision

Viewing changes to Microblogging/src/FriendItem.cs

  • Committer: Christopher James Halse Rogers
  • Date: 2009-06-22 04:05:16 UTC
  • Revision ID: raof@ubuntu.com-20090622040516-d7fi9w4m3n580i8w
Fix translations for plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
using System.Linq;
5
5
using System.Collections.Generic;
6
6
 
7
 
using Mono.Unix;
 
7
using Mono.Addins;
8
8
 
9
9
using Do.Platform;
10
10
using Do.Universe;
19
19
                SortedList<DateTime, MicroblogStatus> statuses;
20
20
                
21
21
                public FriendItem (int id, string name) : 
22
 
                        this (id, name, new MicroblogStatus (-1, Catalog.GetString ("No Status"), name, DateTime.MinValue))
 
22
                        this (id, name, new MicroblogStatus (-1, AddinManager.CurrentLocalizer.GetString ("No Status"), name, DateTime.MinValue))
23
23
                {
24
24
                }
25
25