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

« back to all changes in this revision

Viewing changes to File/src/IgnorePathNodeView.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:
19
19
 */
20
20
 
21
21
using System;
22
 
using Mono.Unix;
 
22
using Mono.Addins;
23
23
 
24
24
using Gtk;
25
25
 
45
45
                        cell = new CellRendererText ();
46
46
                        (cell as CellRendererText).Width = 310;
47
47
                        (cell as CellRendererText).Ellipsize = Pango.EllipsizeMode.Middle;
48
 
                        AppendColumn (Catalog.GetString ("Folder"), cell, "text", Column.Path);
 
48
                        AppendColumn (AddinManager.CurrentLocalizer.GetString ("Folder"), cell, "text", Column.Path);
49
49
                        
50
50
                        Refresh ();
51
51
                }