~alexlauni/do-plugins/jolicloud

« back to all changes in this revision

Viewing changes to Launchpad/src/LaunchpadItem.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:
22
22
using System.Collections.Generic;
23
23
using System.Web;
24
24
 
25
 
using Mono.Unix;
 
25
using Mono.Addins;
26
26
 
27
27
using Do.Universe;
28
28
using Do.Platform;
44
44
 
45
45
                public LaunchpadItem (string name, string description, string iconFile, string url)
46
46
                {
47
 
                        this.name = Catalog.GetString (name);
48
 
                        this.description = Catalog.GetString (description);
 
47
                        this.name = AddinManager.CurrentLocalizer.GetString (name);
 
48
                        this.description = AddinManager.CurrentLocalizer.GetString (description);
49
49
                        this.icon_file = iconFile;
50
50
                        this.url = url;
51
51
                }