~do-plugins/do-plugins/trunk

« back to all changes in this revision

Viewing changes to ManLookUp/src/ReadManualPageAction.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:
22
22
using System.Collections.Generic;
23
23
using System.Text.RegularExpressions;
24
24
 
25
 
using Mono.Unix;
 
25
using Mono.Addins;
26
26
 
27
27
using Do.Universe;
28
28
 
39
39
                ///     The name of the action
40
40
                /// </value>
41
41
                public override string Name {
42
 
                        get { return Catalog.GetString ("Read manual page (man)"); }
 
42
                        get { return AddinManager.CurrentLocalizer.GetString ("Read manual page (man)"); }
43
43
                }
44
44
 
45
45
                /// <value>
46
46
                ///     Action's description
47
47
                /// </value>
48
48
                public override string Description {
49
 
                        get { return Catalog.GetString ("Look up and read a manual page."); }
 
49
                        get { return AddinManager.CurrentLocalizer.GetString ("Look up and read a manual page."); }
50
50
                }
51
51
 
52
52
                /// <value>