~ubuntu-branches/debian/squeeze/gnome-do-plugins/squeeze

« back to all changes in this revision

Viewing changes to Shelf/src/ShelfItemSource.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2009-06-27 16:11:49 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090627161149-b74nc297di2842u1
* New upstream release
  + Pidgin plugin now supports initial text for messages (LP: #338608)
  + Pidgin plugin opens conversations on the correct IM network (LP: #370965)
* debian/rules:
  + Update get-orig-source target.  Upstream no longer ships gdata* binaries,
    so we no longer need to strip them
* debian/patches/00_use_system_gdata
  + Drop.  Upstream now builds against system libgdata.
* debian/patches/04_fix_pidgin_dbus_ints
* debian/patches/10_fix_rhythmbox_file
* debian/patches/15_twitter_api
* debian/patches/20_twitter_overflow:
  + Drop.  Included upstream.
* debian/patches/01_firefox_iceweasel_rename:
  + Refresh for new version
* debian/patches/02_fix_banshee_plugin:
  + Drop refernce to /usr/lib/banshee-1/Banshee.CollectionIndexer.dll.
    This is unnecessary, and causes errors when Banshee isn't installed.
* debian/patches/00_debian_default_plugins:
  + Enable a bunch of useful plugins that do not require configuration from 
    the "Official" plugin set by default.  Makes Do more useful out of the 
    box.
* debian/control:
  + Bump versioned build-dep on gnome-do to 0.8.2
  + Split out gnome-do-plugin-evolution package, now that this is possible.
    libevolution5.0-cil has an annoyingly large dependency stack.
    (LP: #351535) (Closes: #524993).

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
using System.Runtime.Serialization.Formatters.Binary;
26
26
using Do.Platform;
27
27
using Do.Universe;
28
 
using Mono.Unix;
 
28
using Mono.Addins;
29
29
 
30
30
namespace Shelf
31
31
{               
46
46
 
47
47
                        public Item MaybeGetItem ()
48
48
                        {
49
 
                                return Services.Core.GetElement (UniqueId) as Item;
 
49
                                return Services.Core.GetItem (UniqueId);
50
50
                        }
51
51
                }
52
52
                
169
169
                }
170
170
                
171
171
                public override string Name {
172
 
                        get { return Catalog.GetString ("Shelves"); }
 
172
                        get { return AddinManager.CurrentLocalizer.GetString ("Shelves"); }
173
173
                }
174
174
 
175
175
                public override string Description {
176
 
                        get { return Catalog.GetString ("Your Shelves"); }
 
176
                        get { return AddinManager.CurrentLocalizer.GetString ("Your Shelves"); }
177
177
                }
178
178
 
179
179
                public override string Icon {