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

« back to all changes in this revision

Viewing changes to WindowManager/src/WindowActions/WindowCloseAction.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:
23
23
using Do.Interface.Wink;
24
24
 
25
25
using Wnck;
26
 
using Mono.Unix;
 
26
using Mono.Addins;
27
27
 
28
28
namespace WindowManager
29
29
{
31
31
        public class WindowCloseAction : WindowActionAction
32
32
        {
33
33
                public override string Name {
34
 
                        get { return Catalog.GetString ("Close"); }
 
34
                        get { return AddinManager.CurrentLocalizer.GetString ("Close"); }
35
35
                }
36
36
                
37
37
                public override string Description {
38
 
                        get { return Catalog.GetString ("Close selected windows."); }
 
38
                        get { return AddinManager.CurrentLocalizer.GetString ("Close selected windows."); }
39
39
                }
40
40
 
41
41
                public override string Icon {