~do-core/do/fix-the-shitstorm

« back to all changes in this revision

Viewing changes to WindowManager/src/Screen/CurrentScreenItem.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:
20
20
using System.Linq;
21
21
using Wnck;
22
22
 
23
 
using Mono.Unix;
 
23
using Mono.Addins;
24
24
 
25
25
using Do.Universe;
26
26
using Do.Interface.Wink;
31
31
        {
32
32
                public override string Name {
33
33
                        get {
34
 
                                return Catalog.GetString ("Current Desktop");
 
34
                                return AddinManager.CurrentLocalizer.GetString ("Current Desktop");
35
35
                        }
36
36
                }
37
37
 
38
38
                public override string Description {
39
39
                        get {
40
 
                                return Catalog.GetString ("Everything on the Current Desktop");
 
40
                                return AddinManager.CurrentLocalizer.GetString ("Everything on the Current Desktop");
41
41
                        }
42
42
                }
43
43