~crisoagf/do-plugins/do-music

« back to all changes in this revision

Viewing changes to Empathy/src/EmpathyBrowseStatusItem.cs

  • Committer: Christopher James Halse Rogers
  • Date: 2011-02-06 08:01:08 UTC
  • mfrom: (687.1.12 empathy)
  • Revision ID: raof@ubuntu.com-20110206080108-cuzq3femqkmsiagy
Merge the long-sought Empathy plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  EmpathyBrowseStatusItem.cs
 
2
//
 
3
//  Author:
 
4
//       Xavier Calland <xavier.calland@gmail.com>
 
5
//
 
6
//  Copyright © 2010
 
7
//
 
8
//  This program is free software: you can redistribute it and/or modify
 
9
//  it under the terms of the GNU Lesser General Public License as published by
 
10
//  the Free Software Foundation, either version 3 of the License, or
 
11
//  (at your option) any later version.
 
12
//
 
13
//  This program is distributed in the hope that it will be useful,
 
14
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
//  GNU Lesser General Public License for more details.
 
17
//
 
18
//  You should have received a copy of the GNU Lesser General Public License
 
19
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 
 
21
using System;
 
22
 
 
23
using Mono.Addins;
 
24
 
 
25
using Do.Universe;
 
26
 
 
27
namespace EmpathyPlugin
 
28
{
 
29
        public class EmpathyBrowseStatusItem : Item
 
30
        {
 
31
                public override string Name
 
32
                {
 
33
                        get { return AddinManager.CurrentLocalizer.GetString ("Statuses"); }
 
34
                }
 
35
 
 
36
                public override string Description
 
37
                {
 
38
                        get { return AddinManager.CurrentLocalizer.GetString ("Browse Empathy Statuses"); }
 
39
                }
 
40
 
 
41
                public override string Icon
 
42
                {
 
43
                        get { return "empathy"; }
 
44
                }
 
45
        }
 
46
}