~alexlauni/do-plugins/jolicloud

« back to all changes in this revision

Viewing changes to GoogleContacts/src/GMail.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:
23
23
using System.Threading;
24
24
using System.Collections.Generic;
25
25
 
26
 
using Mono.Unix;
 
26
using Mono.Addins;
27
27
 
28
28
using Do.Universe;
29
29
using Do.Platform;
32
32
{
33
33
        public static class GMail
34
34
        {
35
 
                static readonly string ConnectionErrorMessage = Catalog.GetString ("An error occurred connecting to google, "
 
35
                static readonly string ConnectionErrorMessage = AddinManager.CurrentLocalizer.GetString ("An error occurred connecting to google, "
36
36
                        + "are your credentials valid?");
37
37
                        
38
 
                static readonly string MissingCredentialsMessage = Catalog.GetString ("Missing login credentials. Please set "
 
38
                static readonly string MissingCredentialsMessage = AddinManager.CurrentLocalizer.GetString ("Missing login credentials. Please set "
39
39
                        + "login information in plugin configuration.");
40
40
                        
41
41
                static GMailClient client;