diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index 94053bd..adc2976 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -816,6 +816,11 @@ namespace AyaNova.PlugIn.V8 d = rOptions.ObjectResponse["data"]; d.uiColor = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(c.ScheduleBackColor)); d.emailAddress = string.IsNullOrWhiteSpace(c.EmailAddress) ? null : c.EmailAddress; + d.phone1 = c.Phone1; + d.phone2 = c.Phone2; + d.phone3 = c.PageAddress; + + if (LocaleMap.ContainsKey(c.DefaultLanguage)) d.translationId = LocaleMap[c.DefaultLanguage]; else @@ -993,6 +998,10 @@ namespace AyaNova.PlugIn.V8 d = rOptions.ObjectResponse["data"]; d.uiColor = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(c.ScheduleBackColor)); d.emailAddress = string.IsNullOrWhiteSpace(c.EmailAddress) ? null : c.EmailAddress; + d.phone1 = c.Phone1; + d.phone2 = c.Phone2; + d.phone3 = c.PageAddress; + if (LocaleMap.ContainsKey(c.DefaultLanguage)) d.translationId = LocaleMap[c.DefaultLanguage]; else