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

« back to all changes in this revision

Viewing changes to WindowManager/src/WindowItemSource.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:
28
28
using Do.Interface.Wink;
29
29
 
30
30
using Wnck;
31
 
using Mono.Unix;
 
31
using Mono.Addins;
32
32
 
33
33
namespace WindowManager
34
34
{
38
38
                
39
39
                public override string Name {
40
40
                        get {
41
 
                                return Catalog.GetString ("Generic Window Items");
 
41
                                return AddinManager.CurrentLocalizer.GetString ("Generic Window Items");
42
42
                        }
43
43
                }
44
44
 
45
45
                public override string Description {
46
46
                        get {
47
 
                                return Catalog.GetString ("Useful Generically Understood Window Items");
 
47
                                return AddinManager.CurrentLocalizer.GetString ("Useful Generically Understood Window Items");
48
48
                        }
49
49
                }
50
50