public ActionResult Configure()
        {
            var model = new FeedGoogleMerchantCenterModel();

            model.GridPageSize            = _adminAreaSettings.Value.GridPageSize;
            model.LanguageSeoCode         = Services.WorkContext.WorkingLanguage.UniqueSeoCode.EmptyNull().ToLower();
            model.EnergyEfficiencyClasses = T("Plugins.Feed.Froogle.EnergyEfficiencyClasses").Text.SplitSafe(",");

            return(View(model));
        }
		public ActionResult Configure()
		{
			var model = new FeedGoogleMerchantCenterModel();

			model.GridPageSize = _adminAreaSettings.GridPageSize;
			model.AvailableGoogleCategories = _googleFeedService.GetTaxonomyList();
			model.EnergyEfficiencyClasses = T("Plugins.Feed.Froogle.EnergyEfficiencyClasses").Text.SplitSafe(",");

			return View(model);
		}