public ContactContainerSource(TelepathyService service) : base(AddinManager.CurrentLocalizer.GetString("Contacts"), "Contacts", 1000, "telepathy-container")
        {
            TelepathyService = service;
            TypeUniqueId     = "telepathy-container";

            Properties.SetString("Icon.Name", "stock_people");
            Properties.Set <ISourceContents> ("Nereid.SourceContents", new ContactSourceContents(this));
            Properties.Set <bool> ("Nereid.SourceContents.HeaderVisible", false);
            Properties.SetString("GtkActionPath", "/ContactSourceContainerPopup");

            actions = new TelepathyActions(this);
        }
        public ContactContainerSource(TelepathyService service)
            : base(Catalog.GetString ("Contacts"), "Contacts", 1000)
        {
            TelepathyService = service;
            TypeUniqueId = "telepathy-container";

            Properties.SetString ("Icon.Name", "stock_people");
            Properties.Set<ISourceContents> ("Nereid.SourceContents", new ContactSourceContents (this));
            Properties.Set<bool> ("Nereid.SourceContents.HeaderVisible", false);
            Properties.SetString ("GtkActionPath", "/ContactSourceContainerPopup");

            actions = new TelepathyActions (this);
        }