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

« back to all changes in this revision

Viewing changes to Translate/src/UI/ConfigUI.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 System.Threading;
24
24
using Do.Platform;
25
25
 
26
 
using Mono.Unix;
 
26
using Mono.Addins;
27
27
 
28
28
namespace Translate
29
29
{
127
127
                        const int scale_height = 20;
128
128
                        string[] Icon = null;
129
129
                        if (Translator.SupportsAutoDetect)
130
 
                                SourceList.AppendValues (null, Catalog.GetString ("Auto Detect (Recommended)"), Translator.AutoDetectCode);
 
130
                                SourceList.AppendValues (null, AddinManager.CurrentLocalizer.GetString ("Auto Detect (Recommended)"), Translator.AutoDetectCode);
131
131
                        foreach (LanguageItem Lang in Translator.SupportedLanguages)
132
132
                        {
133
133
                                Icon = Lang.Icon.Split (new char[] {'@'});