~alexlauni/do-plugins/jolicloud

« back to all changes in this revision

Viewing changes to WindowManager/src/CurrentWindowItem.cs

  • Committer: Alex Launi
  • Date: 2009-06-24 13:17:29 UTC
  • mfrom: (618.1.17 do-plugins)
  • Revision ID: alex.launi@gmail.com-20090624131729-1l9g76ejqq4leka4
merge trunk

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 Window");
 
34
                                return AddinManager.CurrentLocalizer.GetString ("Current Window");
35
35
                        }
36
36
                }
37
37
 
38
38
                public override string Description {
39
39
                        get {
40
 
                                return Catalog.GetString ("Current Focused Window");
 
40
                                return AddinManager.CurrentLocalizer.GetString ("Current Focused Window");
41
41
                        }
42
42
                }
43
43