diff --git a/.gitignore b/.gitignore index d8fabe46ef..c4bc566998 100644 --- a/.gitignore +++ b/.gitignore @@ -12,11 +12,17 @@ /Website/Composite/InstalledPackages /Website/Composite/scripts/compressed /Website/Composite/styles/styles.* +/Website/Composite/content/forms/InstalledPackages /Website/Composite/lib /Website/Frontend /Website/node_modules /Website/Composite/images/sprite.svg +/Website/Views +/Website/Web.config + /Website/Blog*.ashx +/Website/Newsletter.ashx + /Bin/Composite.dll /Bin/Composite.Workflows.dll diff --git a/Composite.Workflows/C1Console/Tools/SetTimeZoneWorkflow.cs b/Composite.Workflows/C1Console/Tools/SetTimeZoneWorkflow.cs new file mode 100644 index 0000000000..f0096146e2 --- /dev/null +++ b/Composite.Workflows/C1Console/Tools/SetTimeZoneWorkflow.cs @@ -0,0 +1,88 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web.Hosting; +using System.Workflow.Runtime; +using System.Xml.Linq; +using Composite.C1Console.Actions; +using Composite.C1Console.Events; +using Composite.C1Console.Workflow; +using Composite.Core.Configuration; +using Composite.Core.ResourceSystem; + +namespace Composite.C1Console.Tools +{ + public sealed partial class SetTimeZoneWorkflow : Workflow.Activities.FormsWorkflow + { + private const string TimezoneXslt = @" + + + + + + + + + + + + + + + + + + + + + + "; + public SetTimeZoneWorkflow() + { + InitializeComponent(); + } + + + private void initializeCodeActivity_InitializeBindings_ExecuteCode(object sender, EventArgs e) + { + var tzs = TimeZoneInfo.GetSystemTimeZones().ToDictionary(systemTimeZone => systemTimeZone.Id, systemTimeZone => + StringResourceSystemFacade.GetString("Composite.Plugins.TimezoneDisplayNames", + "TimezoneDisplayName." + systemTimeZone.Id)); + var bindings = new Dictionary + { + {"TimeZones", tzs}, + {"TimeZonesSelected",GlobalSettingsFacade.TimeZone.Id } + }; + + Bindings = bindings; + } + + + + private void sendMessageCodeActivity_SendMessage_ExecuteCode(object sender, EventArgs e) + { + CloseCurrentView(); + + var timeZoneStandardName = GetBinding("TimeZonesSelected"); + + var timezoneId = TimeZoneInfo.FindSystemTimeZoneById(timeZoneStandardName); + + var timezoneTransform = XDocument.Parse(String.Format(TimezoneXslt, timezoneId.Id)); + + ConfigurationServices.TransformConfiguration(timezoneTransform,false); + + HostingEnvironment.InitiateShutdown(); + + FlowControllerServicesContainer flowControllerServicesContainer = WorkflowFacade.GetFlowControllerServicesContainer(WorkflowEnvironment.WorkflowInstanceId); + IManagementConsoleMessageService managementConsoleMessageService = flowControllerServicesContainer.GetService(); + + managementConsoleMessageService.ShowGlobalMessage(DialogType.Message, + StringResourceSystemFacade.GetString("Composite.Management", "SendMessageToConsolesWorkflow.SuccessMessage.TimezoneChangedTitle"), + StringResourceSystemFacade.GetString("Composite.Management", "SendMessageToConsolesWorkflow.SuccessMessage.TimezoneChangedMessage")); + + managementConsoleMessageService.RebootConsole(); + + } + } +} diff --git a/Composite.Workflows/C1Console/Tools/SetTimeZoneWorkflow.designer.cs b/Composite.Workflows/C1Console/Tools/SetTimeZoneWorkflow.designer.cs new file mode 100644 index 0000000000..43cd961d49 --- /dev/null +++ b/Composite.Workflows/C1Console/Tools/SetTimeZoneWorkflow.designer.cs @@ -0,0 +1,330 @@ +using System; +using System.ComponentModel; +using System.ComponentModel.Design; +using System.Collections; +using System.Drawing; +using System.Reflection; +using System.Workflow.ComponentModel.Compiler; +using System.Workflow.ComponentModel.Serialization; +using System.Workflow.ComponentModel; +using System.Workflow.ComponentModel.Design; +using System.Workflow.Runtime; +using System.Workflow.Activities; +using System.Workflow.Activities.Rules; +using Composite.C1Console.Workflow; + +namespace Composite.C1Console.Tools +{ + partial class SetTimeZoneWorkflow + { + #region Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this� method with the code editor. + /// + [System.Diagnostics.DebuggerNonUserCode] + private void InitializeComponent() + { + this.CanModifyActivities = true; + this.setStateActivity5 = new System.Workflow.Activities.SetStateActivity(); + this.sendMessageCodeActivity_SendMessage = new System.Workflow.Activities.CodeActivity(); + this.setStateActivity3 = new System.Workflow.Activities.SetStateActivity(); + this.cancelHandleExternalEventActivity2 = new Composite.C1Console.Workflow.Activities.CancelHandleExternalEventActivity(); + this.setStateActivity4 = new System.Workflow.Activities.SetStateActivity(); + this.finishHandleExternalEventActivity1 = new Composite.C1Console.Workflow.Activities.FinishHandleExternalEventActivity(); + this.dataDialogFormActivity1 = new Composite.C1Console.Workflow.Activities.DataDialogFormActivity(); + this.setStateActivity2 = new System.Workflow.Activities.SetStateActivity(); + this.initializeCodeActivity_InitializeBindings = new System.Workflow.Activities.CodeActivity(); + this.sendMessageStateInitializationActivity = new System.Workflow.Activities.StateInitializationActivity(); + this.enterMessageEventDrivenActivity_Cancel = new System.Workflow.Activities.EventDrivenActivity(); + this.enterMessageEventDrivenActivity_Ok = new System.Workflow.Activities.EventDrivenActivity(); + this.enterMessageStateInitializationActivity = new System.Workflow.Activities.StateInitializationActivity(); + this.initializeStateInitializationActivity = new System.Workflow.Activities.StateInitializationActivity(); + this.setStateActivity1 = new System.Workflow.Activities.SetStateActivity(); + this.cancelHandleExternalEventActivity1 = new Composite.C1Console.Workflow.Activities.CancelHandleExternalEventActivity(); + this.sendMessageStateActivity = new System.Workflow.Activities.StateActivity(); + this.enterMessageStateActivity = new System.Workflow.Activities.StateActivity(); + this.finalStateActivity = new System.Workflow.Activities.StateActivity(); + this.initializeStateActivity = new System.Workflow.Activities.StateActivity(); + this.eventDrivenActivity_GlobalCancel = new System.Workflow.Activities.EventDrivenActivity(); + // + // setStateActivity5 + // + this.setStateActivity5.Name = "setStateActivity5"; + this.setStateActivity5.TargetStateName = "finalStateActivity"; + // + // sendMessageCodeActivity_SendMessage + // + this.sendMessageCodeActivity_SendMessage.Name = "sendMessageCodeActivity_SendMessage"; + this.sendMessageCodeActivity_SendMessage.ExecuteCode += new System.EventHandler(this.sendMessageCodeActivity_SendMessage_ExecuteCode); + // + // setStateActivity3 + // + this.setStateActivity3.Name = "setStateActivity3"; + this.setStateActivity3.TargetStateName = "finalStateActivity"; + // + // cancelHandleExternalEventActivity2 + // + this.cancelHandleExternalEventActivity2.EventName = "Cancel"; + this.cancelHandleExternalEventActivity2.InterfaceType = typeof(Composite.C1Console.Workflow.IFormsWorkflowEventService); + this.cancelHandleExternalEventActivity2.Name = "cancelHandleExternalEventActivity2"; + // + // setStateActivity4 + // + this.setStateActivity4.Name = "setStateActivity4"; + this.setStateActivity4.TargetStateName = "sendMessageStateActivity"; + // + // finishHandleExternalEventActivity1 + // + this.finishHandleExternalEventActivity1.EventName = "Finish"; + this.finishHandleExternalEventActivity1.InterfaceType = typeof(Composite.C1Console.Workflow.IFormsWorkflowEventService); + this.finishHandleExternalEventActivity1.Name = "finishHandleExternalEventActivity1"; + // + // dataDialogFormActivity1 + // + this.dataDialogFormActivity1.ContainerLabel = null; + this.dataDialogFormActivity1.FormDefinitionFileName = "/Administrative/SetTimeZone_select.xml"; + this.dataDialogFormActivity1.Name = "dataDialogFormActivity1"; + // + // setStateActivity2 + // + this.setStateActivity2.Name = "setStateActivity2"; + this.setStateActivity2.TargetStateName = "enterMessageStateActivity"; + // + // initializeCodeActivity_InitializeBindings + // + this.initializeCodeActivity_InitializeBindings.Name = "initializeCodeActivity_InitializeBindings"; + this.initializeCodeActivity_InitializeBindings.ExecuteCode += new System.EventHandler(this.initializeCodeActivity_InitializeBindings_ExecuteCode); + // + // sendMessageStateInitializationActivity + // + this.sendMessageStateInitializationActivity.Activities.Add(this.sendMessageCodeActivity_SendMessage); + this.sendMessageStateInitializationActivity.Activities.Add(this.setStateActivity5); + this.sendMessageStateInitializationActivity.Name = "sendMessageStateInitializationActivity"; + // + // enterMessageEventDrivenActivity_Cancel + // + this.enterMessageEventDrivenActivity_Cancel.Activities.Add(this.cancelHandleExternalEventActivity2); + this.enterMessageEventDrivenActivity_Cancel.Activities.Add(this.setStateActivity3); + this.enterMessageEventDrivenActivity_Cancel.Name = "enterMessageEventDrivenActivity_Cancel"; + // + // enterMessageEventDrivenActivity_Ok + // + this.enterMessageEventDrivenActivity_Ok.Activities.Add(this.finishHandleExternalEventActivity1); + this.enterMessageEventDrivenActivity_Ok.Activities.Add(this.setStateActivity4); + this.enterMessageEventDrivenActivity_Ok.Name = "enterMessageEventDrivenActivity_Ok"; + // + // enterMessageStateInitializationActivity + // + this.enterMessageStateInitializationActivity.Activities.Add(this.dataDialogFormActivity1); + this.enterMessageStateInitializationActivity.Name = "enterMessageStateInitializationActivity"; + // + // initializeStateInitializationActivity + // + this.initializeStateInitializationActivity.Activities.Add(this.initializeCodeActivity_InitializeBindings); + this.initializeStateInitializationActivity.Activities.Add(this.setStateActivity2); + this.initializeStateInitializationActivity.Name = "initializeStateInitializationActivity"; + // + // setStateActivity1 + // + this.setStateActivity1.Name = "setStateActivity1"; + this.setStateActivity1.TargetStateName = "finalStateActivity"; + // + // cancelHandleExternalEventActivity1 + // + this.cancelHandleExternalEventActivity1.EventName = "Cancel"; + this.cancelHandleExternalEventActivity1.InterfaceType = typeof(Composite.C1Console.Workflow.IFormsWorkflowEventService); + this.cancelHandleExternalEventActivity1.Name = "cancelHandleExternalEventActivity1"; + // + // sendMessageStateActivity + // + this.sendMessageStateActivity.Activities.Add(this.sendMessageStateInitializationActivity); + this.sendMessageStateActivity.Name = "sendMessageStateActivity"; + // + // enterMessageStateActivity + // + this.enterMessageStateActivity.Activities.Add(this.enterMessageStateInitializationActivity); + this.enterMessageStateActivity.Activities.Add(this.enterMessageEventDrivenActivity_Ok); + this.enterMessageStateActivity.Activities.Add(this.enterMessageEventDrivenActivity_Cancel); + this.enterMessageStateActivity.Name = "enterMessageStateActivity"; + // + // finalStateActivity + // + this.finalStateActivity.Name = "finalStateActivity"; + // + // initializeStateActivity + // + this.initializeStateActivity.Activities.Add(this.initializeStateInitializationActivity); + this.initializeStateActivity.Name = "initializeStateActivity"; + // + // eventDrivenActivity_GlobalCancel + // + this.eventDrivenActivity_GlobalCancel.Activities.Add(this.cancelHandleExternalEventActivity1); + this.eventDrivenActivity_GlobalCancel.Activities.Add(this.setStateActivity1); + this.eventDrivenActivity_GlobalCancel.Name = "eventDrivenActivity_GlobalCancel"; + // + // SendMessageToConsolesWorkflow + // + this.Activities.Add(this.eventDrivenActivity_GlobalCancel); + this.Activities.Add(this.initializeStateActivity); + this.Activities.Add(this.finalStateActivity); + this.Activities.Add(this.enterMessageStateActivity); + this.Activities.Add(this.sendMessageStateActivity); + this.CompletedStateName = "finalStateActivity"; + this.DynamicUpdateCondition = null; + this.InitialStateName = "initializeStateActivity"; + this.Name = "SendMessageToConsolesWorkflow"; + this.CanModifyActivities = false; + + } + + #endregion + + private C1Console.Workflow.Activities.CancelHandleExternalEventActivity cancelHandleExternalEventActivity1; + + private StateInitializationActivity initializeStateInitializationActivity; + + private SetStateActivity setStateActivity1; + + private StateActivity finalStateActivity; + + private StateActivity initializeStateActivity; + + private SetStateActivity setStateActivity3; + + private C1Console.Workflow.Activities.CancelHandleExternalEventActivity cancelHandleExternalEventActivity2; + + private SetStateActivity setStateActivity4; + + private C1Console.Workflow.Activities.FinishHandleExternalEventActivity finishHandleExternalEventActivity1; + + private C1Console.Workflow.Activities.DataDialogFormActivity dataDialogFormActivity1; + + private SetStateActivity setStateActivity2; + + private EventDrivenActivity enterMessageEventDrivenActivity_Cancel; + + private EventDrivenActivity enterMessageEventDrivenActivity_Ok; + + private StateInitializationActivity enterMessageStateInitializationActivity; + + private StateActivity sendMessageStateActivity; + + private StateActivity enterMessageStateActivity; + + private SetStateActivity setStateActivity5; + + private CodeActivity initializeCodeActivity_InitializeBindings; + + private StateInitializationActivity sendMessageStateInitializationActivity; + + private CodeActivity sendMessageCodeActivity_SendMessage; + + private EventDrivenActivity eventDrivenActivity_GlobalCancel; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } +} diff --git a/Composite.Workflows/C1Console/Users/Workflows/ChangeOwnForeignLocaleWorkflow.cs b/Composite.Workflows/C1Console/Users/Workflows/ChangeOwnForeignLocaleWorkflow.cs index 550b2791ae..d199998978 100644 --- a/Composite.Workflows/C1Console/Users/Workflows/ChangeOwnForeignLocaleWorkflow.cs +++ b/Composite.Workflows/C1Console/Users/Workflows/ChangeOwnForeignLocaleWorkflow.cs @@ -31,7 +31,7 @@ private void step1CodeActivity_Initialize_ExecuteCode(object sender, EventArgs e from l in DataLocalizationFacade.ActiveLocalizationCultures select l; - List> foreignCulturesDictionary = foreignCultures.Select(f => new KeyValuePair(f.Name, DataLocalizationFacade.GetCultureTitle(f))).ToList(); + List> foreignCulturesDictionary = foreignCultures.Select(f => new KeyValuePair(f.Name, DataLocalizationFacade.GetCultureTitle(f))).OrderBy(f => f.Value).ToList(); foreignCulturesDictionary.Insert(0, new KeyValuePair("NONE", StringResourceSystemFacade.GetString("Composite.C1Console.Users", "ChangeForeignLocaleWorkflow.NoForeignLocaleLabel"))); string selectedForeignCultureName = "NONE"; diff --git a/Composite.Workflows/Composite.Workflows.csproj b/Composite.Workflows/Composite.Workflows.csproj index ef18d86344..c61235d38a 100644 --- a/Composite.Workflows/Composite.Workflows.csproj +++ b/Composite.Workflows/Composite.Workflows.csproj @@ -227,6 +227,12 @@ Component + + Component + + + SetTimeZoneWorkflow.cs + Component diff --git a/Composite.Workflows/Plugins/Elements/ElementProviders/LocalizationElementProvider/AddSystemLocaleWorkflow.cs b/Composite.Workflows/Plugins/Elements/ElementProviders/LocalizationElementProvider/AddSystemLocaleWorkflow.cs index bd514053dd..6256c89662 100644 --- a/Composite.Workflows/Plugins/Elements/ElementProviders/LocalizationElementProvider/AddSystemLocaleWorkflow.cs +++ b/Composite.Workflows/Plugins/Elements/ElementProviders/LocalizationElementProvider/AddSystemLocaleWorkflow.cs @@ -3,7 +3,6 @@ using System.Globalization; using System.Linq; using System.Workflow.Activities; -using Composite.C1Console.Actions; using Composite.C1Console.Events; using Composite.C1Console.Workflow; using Composite.Core.Localization; @@ -14,7 +13,7 @@ namespace Composite.Plugins.Elements.ElementProviders.LocalizationElementProvider { - [EntityTokenLock()] + [EntityTokenLock] [AllowPersistingWorkflow(WorkflowPersistingType.Idle)] public sealed partial class AddSystemLocaleWorkflow : Composite.C1Console.Workflow.Activities.FormsWorkflow { @@ -33,7 +32,7 @@ private void HasAnyWhiteListedLocales(object sender, ConditionalEventArgs e) IEnumerable cultures = from cul in DataLocalizationFacade.WhiteListedLocales - where alreadyAddedCultureNames.Contains(cul.Name) == false + where !alreadyAddedCultureNames.Contains(cul.Name) orderby cul.DisplayName select cul; @@ -63,12 +62,15 @@ where alreadyAddedCultureNames.Contains(cul.Name) == false orderby cul.DisplayName select cul; - Dictionary culturesDictionary = cultures.ToDictionary(f => f.Name, DataLocalizationFacade.GetCultureTitle); + var culturesDictionary = cultures.ToDictionary(f => f.Name, DataLocalizationFacade.GetCultureTitle); - this.Bindings.Add("CultureName", ""); - this.Bindings.Add("RegionLanguageList", culturesDictionary); - this.Bindings.Add("UrlMappingName", ""); - this.Bindings.Add("AccessToAllUsers", true); + this.Bindings = new Dictionary + { + {"CultureName", ""}, + {"RegionLanguageList", culturesDictionary}, + {"UrlMappingName", ""}, + {"AccessToAllUsers", true} + }; } @@ -79,16 +81,22 @@ private void finalizeCodeActivity_Finalize_ExecuteCode(object sender, EventArgs string urlMappingName = this.GetBinding("UrlMappingName"); bool accessToAllUsers = this.GetBinding("AccessToAllUsers"); - LocalizationFacade.AddLocale(cultureName, urlMappingName, accessToAllUsers); + LocalizationFacade.AddLocale(cultureName, urlMappingName, accessToAllUsers); this.CloseCurrentView(); - ConsoleMessageQueueFacade.Enqueue(new CollapseAndRefreshConsoleMessageQueueItem(), null); ConsoleMessageQueueFacade.Enqueue(new BroadcastMessageQueueItem { Name = "LocalesUpdated", Value = "" }, null); - SpecificTreeRefresher specificTreeRefresher = this.CreateSpecificTreeRefresher(); + var specificTreeRefresher = this.CreateSpecificTreeRefresher(); specificTreeRefresher.PostRefreshMesseges(this.EntityToken); + + var newLocaleDataItem = DataFacade.GetData().FirstOrDefault(l => l.CultureName == cultureName); + + if (newLocaleDataItem != null) + { + SelectElement(newLocaleDataItem.GetDataEntityToken()); + } } @@ -107,7 +115,7 @@ private string GetDefaultUrlMappingNameFromCultureName(string cultureName) string urlMappingName = cultureName; if (urlMappingName.Contains("-")) { - urlMappingName = urlMappingName.Substring(0, urlMappingName.IndexOf("-")); + urlMappingName = urlMappingName.Substring(0, urlMappingName.IndexOf("-", StringComparison.Ordinal)); } return urlMappingName; } diff --git a/Composite.Workflows/Plugins/Elements/ElementProviders/LocalizationElementProvider/RemoveSystemLocaleWorkflow.cs b/Composite.Workflows/Plugins/Elements/ElementProviders/LocalizationElementProvider/RemoveSystemLocaleWorkflow.cs index 9acef705ae..04e8f8c065 100644 --- a/Composite.Workflows/Plugins/Elements/ElementProviders/LocalizationElementProvider/RemoveSystemLocaleWorkflow.cs +++ b/Composite.Workflows/Plugins/Elements/ElementProviders/LocalizationElementProvider/RemoveSystemLocaleWorkflow.cs @@ -1,5 +1,6 @@ using System; using System.Globalization; +using System.Linq; using System.Workflow.Activities; using Composite.C1Console.Actions; using Composite.C1Console.Events; @@ -11,7 +12,7 @@ namespace Composite.Plugins.Elements.ElementProviders.LocalizationElementProvider { - [EntityTokenLock()] + [EntityTokenLock] [AllowPersistingWorkflow(WorkflowPersistingType.Idle)] public sealed partial class RemoveSystemLocaleWorkflow : Composite.C1Console.Workflow.Activities.FormsWorkflow { @@ -72,11 +73,27 @@ private void finalizeCodeActivity_Finalize_ExecuteCode(object sender, EventArgs ISystemActiveLocale systemActiveLocale = this.GetDataItemFromEntityToken(); - LocalizationFacade.RemoveLocale(systemActiveLocale.CultureName); + var cultureName = systemActiveLocale.CultureName; - ConsoleMessageQueueFacade.Enqueue(new CollapseAndRefreshConsoleMessageQueueItem(), null); + var consolesToBeUpdated = + (from consoleInformation in DataFacade.GetData() + join userSettings in DataFacade.GetData() + on consoleInformation.Username equals userSettings.Username + where userSettings.CurrentActiveLocaleCultureName == cultureName + || userSettings.ForeignLocaleCultureName == cultureName + select consoleInformation.ConsoleId).ToList(); + + LocalizationFacade.RemoveLocale(cultureName); + + foreach (var consoleId in consolesToBeUpdated) + { + ConsoleMessageQueueFacade.Enqueue(new CollapseAndRefreshConsoleMessageQueueItem(), consoleId); + } + ConsoleMessageQueueFacade.Enqueue(new BroadcastMessageQueueItem { Name = "LocalesUpdated", Value = "" }, null); + SelectElement(new LocalizationElementProviderRootEntityToken()); + deleteTreeRefresher.PostRefreshMesseges(); } } diff --git a/Composite.Workflows/Plugins/Elements/ElementProviders/PageElementProvider/AddNewPageWorkflow.cs b/Composite.Workflows/Plugins/Elements/ElementProviders/PageElementProvider/AddNewPageWorkflow.cs index bb17992d79..c83ee87d1f 100644 --- a/Composite.Workflows/Plugins/Elements/ElementProviders/PageElementProvider/AddNewPageWorkflow.cs +++ b/Composite.Workflows/Plugins/Elements/ElementProviders/PageElementProvider/AddNewPageWorkflow.cs @@ -12,13 +12,11 @@ using Composite.Data.ProcessControlled.ProcessControllers.GenericPublishProcessController; using Composite.Data.Types; using Composite.Data.Validation; -using Composite.Core.Linq; using Composite.Core.ResourceSystem; using Composite.Core.Extensions; using Composite.C1Console.Users; -using Composite.C1Console.Trees; using Composite.C1Console.Workflow; - +using Composite.Core.Serialization; using Microsoft.Practices.EnterpriseLibrary.Validation; @@ -28,8 +26,15 @@ namespace Composite.Plugins.Elements.ElementProviders.PageElementProvider public sealed partial class AddNewPageWorkflow : Composite.C1Console.Workflow.Activities.FormsWorkflow { [NonSerialized] - private List _selectablePageTypes = null; + private List _selectablePageTypes; + private static class SortOrder + { + internal static string Bottom = "Bottom"; + internal static string Top = "Top"; + internal static string Relative = "Relative"; + internal static string Alphabetic = "Alphabetic"; + } public AddNewPageWorkflow() { @@ -53,7 +58,7 @@ private Guid GetParentId() return selectedPage.Id; } - throw new NotImplementedException(); + throw new NotSupportedException(); } @@ -84,8 +89,13 @@ private List GetSelectablePageTypes() - private Guid? GetDefaultPageTypeId(IEnumerable selectablePageTypes) + private Guid? GetDefaultPageTypeId(ICollection selectablePageTypes) { + if (!string.IsNullOrEmpty(Payload)) + { + return ((IPage)SerializerHandlerFacade.Deserialize(Payload)).PageTypeId; + } + if (!(this.EntityToken is PageElementProviderEntityToken)) { IPage parentPage = this.GetDataItemFromEntityToken(); @@ -101,9 +111,7 @@ private List GetSelectablePageTypes() } } - var pageType = selectablePageTypes.FirstOrDefault(); - - return pageType != null ? pageType.Id : new Guid?(); + return selectablePageTypes.FirstOrDefault()?.Id; } @@ -177,19 +185,19 @@ private void CheckActiveLanguagesExists(object sender, ConditionalEventArgs e) private void CheckPageTypeExists(object sender, ConditionalEventArgs e) { + PageTypeHomepageRelation relationToExclude; if (this.EntityToken is PageElementProviderEntityToken) { - e.Result = - DataFacade.GetData(). - Any(f => f.Available && f.HomepageRelation != PageTypeHomepageRelation.OnlySubPages.ToString()); + relationToExclude = PageTypeHomepageRelation.OnlySubPages; } else { - e.Result = - DataFacade.GetData(). - Any(f => f.Available && f.HomepageRelation != PageTypeHomepageRelation.OnlyHomePages.ToString()); + relationToExclude = PageTypeHomepageRelation.OnlyHomePages; } + + e.Result = DataFacade.GetData() + .Any(f => f.Available && f.HomepageRelation != relationToExclude.ToString()); } @@ -245,7 +253,7 @@ private void stepInitialize_codeActivity_ExecuteCode(object sender, EventArgs e) } else { - throw new NotImplementedException(); + throw new NotSupportedException(); } @@ -257,17 +265,7 @@ private void stepInitialize_codeActivity_ExecuteCode(object sender, EventArgs e) Guid parentId = GetParentId(); - Dictionary bindings = new Dictionary(); - - - - List> pageTypeOptions = - selectablePageTypes. - Select(f => new KeyValuePair(f.Id, f.Name)). - ToList(); - - bindings.Add("PageTypeOptions", pageTypeOptions); - + string pageType = selectablePageTypes.First(f => f.Id == pageTypeId).Name; IPage newPage = DataFacade.BuildNew(); newPage.Id = Guid.NewGuid(); @@ -279,29 +277,36 @@ private void stepInitialize_codeActivity_ExecuteCode(object sender, EventArgs e) newPage.FriendlyUrl = ""; newPage.PublicationStatus = GenericPublishProcessController.Draft; - bindings.Add("NewPage", newPage); - bindings.Add("UrlTitleIsRequired", true /* ThereAreOtherPages()*/); int existingPagesCount = PageServices.GetChildrenCount(parentId); - Dictionary sortOrder = new Dictionary(); - sortOrder.Add("Bottom", GetText("AddNewPageStep1.LabelAddToBottom")); + var sortOrder = new Dictionary + { + {SortOrder.Bottom, GetText("AddNewPageStep1.LabelAddToBottom")} + }; if (existingPagesCount > 0) { - sortOrder.Add("Top", GetText("AddNewPageStep1.LabelAddToTop")); + sortOrder.Add(SortOrder.Top, GetText("AddNewPageStep1.LabelAddToTop")); if (existingPagesCount > 1) { - sortOrder.Add("Relative", GetText("AddNewPageStep1.LabelAddBelowOtherPage")); + sortOrder.Add(SortOrder.Relative, GetText("AddNewPageStep1.LabelAddBelowOtherPage")); } bool isAlpabeticOrdered = PageServices.IsChildrenAlphabeticOrdered(parentId); if (isAlpabeticOrdered) { - sortOrder.Add("Alphabetic", GetText("AddNewPageStep1.LabelAddAlphabetic")); + sortOrder.Add(SortOrder.Alphabetic, GetText("AddNewPageStep1.LabelAddAlphabetic")); } } - bindings.Add("SortOrder", sortOrder); - bindings.Add("SelectedSortOrder", sortOrder.Keys.First()); + + var bindings = new Dictionary + { + {"NewPage", newPage}, + {"Title", string.Format(GetText("AddNewPageStep1.DialogLabelFormat"), pageType)}, + {"UrlTitleIsRequired", true}, + {"SortOrder", sortOrder}, + {"SelectedSortOrder", sortOrder.Keys.First()} + }; if (parentId == Guid.Empty) { @@ -323,7 +328,7 @@ private void CanSkipStep2(object sender, ConditionalEventArgs e) IPage newPage = this.GetBinding("NewPage"); var dataTypeDescriptor = DynamicTypeManager.GetDataTypeDescriptor(typeof(IPage)); - e.Result = this.GetBinding("SelectedSortOrder") != "Relative" + e.Result = this.GetBinding("SelectedSortOrder") != SortOrder.Relative && UrlTitleIsUniqueAmongSiblings() && newPage.UrlTitle.Length <= dataTypeDescriptor.Fields["UrlTitle"].StoreType.MaximumLength && newPage.MenuTitle.Length <= dataTypeDescriptor.Fields["MenuTitle"].StoreType.MaximumLength; @@ -364,7 +369,7 @@ private void ValidateUrlTitle(object sender, ConditionalEventArgs e) } } - DataTypeDescriptor dataTypeDescriptor = DynamicTypeManager.GetDataTypeDescriptor(typeof(IPage)); + var dataTypeDescriptor = DynamicTypeManager.GetDataTypeDescriptor(typeof(IPage)); if (newPage.UrlTitle.Length > dataTypeDescriptor.Fields["UrlTitle"].StoreType.MaximumLength) { @@ -413,7 +418,7 @@ private void PrepareStep2_ExecuteCode(object sender, EventArgs e) SetDefaultValues(newPage); - if (this.GetBinding("SelectedSortOrder") == "Relative") + if (this.GetBinding("SelectedSortOrder") == SortOrder.Relative) { Dictionary existingPages = PageServices.GetChildren(GetParentId()).ToDictionary(page => page.Id, page => page.Title); @@ -433,96 +438,48 @@ private void stepFinalize_codeActivity_ExecuteCode(object sender, EventArgs e) { AddNewTreeRefresher addNewTreeRefresher = this.CreateAddNewTreeRefresher(this.EntityToken); - Guid parentId = GetParentId(); - IPage newPage = this.GetBinding("NewPage"); newPage.SourceCultureName = UserSettings.ActiveLocaleCultureInfo.Name; - IPageType selectedPageType = DataFacade.GetData().Single(f => f.Id == newPage.PageTypeId); - - IQueryable templateRestrictions = - DataFacade.GetData(). - Where(f => f.PageTypeId == newPage.PageTypeId); - - if (selectedPageType.DefaultTemplateId != Guid.Empty) + Guid pageTypeId = newPage.PageTypeId; + Guid? defaultPageTemplateId = PageServices.GetDefaultPageTemplateId(pageTypeId); + if (defaultPageTemplateId != null) { - newPage.TemplateId = selectedPageType.DefaultTemplateId; - } - else if (templateRestrictions.Any()) - { - newPage.TemplateId = templateRestrictions.First().PageTemplateId; + newPage.TemplateId = defaultPageTemplateId.Value; } - bool addToTop = this.GetBinding("SelectedSortOrder") == "Top"; - bool addToBottom = this.GetBinding("SelectedSortOrder") == "Bottom"; - bool addToAlphabetic = this.GetBinding("SelectedSortOrder") == "Alphabetic"; - bool addToRelative = this.GetBinding("SelectedSortOrder") == "Relative"; + string sortOrder = this.GetBinding("SelectedSortOrder"); + + Guid parentId = GetParentId(); using (new DataScope(DataScopeIdentifier.Administrated)) { - if (addToTop) + IPageInsertionPosition position; + + if (sortOrder == SortOrder.Top) { - newPage = newPage.AddPageAtTop(parentId); + position = PageInsertPosition.Top; } - else if (addToBottom) + else if (sortOrder == SortOrder.Bottom) { - newPage = newPage.AddPageAtBottom(parentId); + position = PageInsertPosition.Bottom; } - else if (addToAlphabetic) + else if (sortOrder == SortOrder.Alphabetic) { - newPage = newPage.AddPageAlphabetic(parentId); + position = PageInsertPosition.Alphabetic; } - else if (addToRelative) + else if (sortOrder == SortOrder.Relative) { Guid relativeSelectedPageId = this.GetBinding("RelativeSelectedPageId"); - newPage = newPage.AddPageAfter(parentId, relativeSelectedPageId); + position = PageInsertPosition.After(relativeSelectedPageId); + } + else + { + throw new InvalidOperationException($"Not handled page instert position '{sortOrder}'"); } - } - - // Adding default page content - IEnumerable pageTypeDefaultPageContents = - DataFacade.GetData(). - Where(f => f.PageTypeId == selectedPageType.Id). - Evaluate(); - - foreach (IPageTypeDefaultPageContent pageTypeDefaultPageContent in pageTypeDefaultPageContents) - { - IPagePlaceholderContent pagePlaceholderContent = DataFacade.BuildNew(); - pagePlaceholderContent.PageId = newPage.Id; - pagePlaceholderContent.PlaceHolderId = pageTypeDefaultPageContent.PlaceHolderId; - pagePlaceholderContent.Content = pageTypeDefaultPageContent.Content; - DataFacade.AddNew(pagePlaceholderContent); - } - - - // Adding page folders - IEnumerable pageTypeDataFolderTypeLinks = - DataFacade.GetData(). - Where(f => f.PageTypeId == selectedPageType.Id). - Evaluate(). - RemoveDeadLinks(); - - foreach (IPageTypeDataFolderTypeLink pageTypeDataFolderTypeLink in pageTypeDataFolderTypeLinks) - { - newPage.AddFolderDefinition(pageTypeDataFolderTypeLink.DataTypeId); - } - - - // Adding applications - IEnumerable pageTypeTreeLinks = - DataFacade.GetData(). - Where(f => f.PageTypeId == selectedPageType.Id). - Evaluate(). - RemoveDeadLinks(); - - - foreach (IPageTypeTreeLink pageTypeTreeLink in pageTypeTreeLinks) - { - Tree tree = TreeFacade.GetTree(pageTypeTreeLink.TreeId); - if (tree.HasAttachmentPoints(newPage.GetDataEntityToken())) continue; - TreeFacade.AddPersistedAttachmentPoint(pageTypeTreeLink.TreeId, typeof(IPage), newPage.Id); + newPage = newPage.Add(parentId, position); } SetSaveStatus(true); @@ -557,7 +514,7 @@ private void SetDefaultValues(IPage page) IPage newPage = this.GetBinding("NewPage"); IPageType selectedPageType = DataFacade.GetData().Single(f => f.Id == newPage.PageTypeId); - if ((selectedPageType.PresetMenuTitle) && (page.MenuTitle.IsNullOrEmpty())) + if (selectedPageType.PresetMenuTitle && page.MenuTitle.IsNullOrEmpty()) { page.MenuTitle = page.Title; } @@ -567,9 +524,9 @@ private void SetDefaultValues(IPage page) page.UrlTitle = GenerateUrlTitleFromTitle(page.Title); int i = 2; - while (UrlTitleIsUniqueAmongSiblings() == false) + while (!UrlTitleIsUniqueAmongSiblings()) { - page.UrlTitle = string.Format("{0}{1}", GenerateUrlTitleFromTitle(page.Title), i); + page.UrlTitle = $"{GenerateUrlTitleFromTitle(page.Title)}{i}"; i++; } diff --git a/Composite.Workflows/Plugins/Elements/ElementProviders/PageElementProvider/EditPageWorkflow.cs b/Composite.Workflows/Plugins/Elements/ElementProviders/PageElementProvider/EditPageWorkflow.cs index 1ed8615bf5..0295c46c1f 100644 --- a/Composite.Workflows/Plugins/Elements/ElementProviders/PageElementProvider/EditPageWorkflow.cs +++ b/Composite.Workflows/Plugins/Elements/ElementProviders/PageElementProvider/EditPageWorkflow.cs @@ -13,7 +13,6 @@ using Composite.C1Console.Forms.Flows; using Composite.C1Console.Scheduling; using Composite.C1Console.Security; -using Composite.C1Console.Trees; using Composite.C1Console.Users; using Composite.C1Console.Workflow; using Composite.C1Console.Workflow.Activities; @@ -254,8 +253,8 @@ private void editStateCodeActivity_ExecuteCode(object sender, EventArgs e) IDictionary transitionNames = new Dictionary(); - transitionNames.Add(GenericPublishProcessController.Draft, StringResourceSystemFacade.GetString("Composite.Management", "Website.Forms.Administrative.EditPage.DraftTransition")); - transitionNames.Add(GenericPublishProcessController.AwaitingApproval, StringResourceSystemFacade.GetString("Composite.Management", "Website.Forms.Administrative.EditPage.AwaitingApprovalTransition")); + transitionNames.Add(GenericPublishProcessController.Draft, StringResourceSystemFacade.GetString("Composite.Management", "PublishingStatus.draft")); + transitionNames.Add(GenericPublishProcessController.AwaitingApproval, StringResourceSystemFacade.GetString("Composite.Management", "PublishingStatus.awaitingApproval")); var username = UserValidationFacade.GetUsername(); var userPermissionDefinitions = PermissionTypeFacade.GetUserPermissionDefinitions(username); @@ -265,7 +264,7 @@ private void editStateCodeActivity_ExecuteCode(object sender, EventArgs e) { if (GenericPublishProcessController.AwaitingPublicationActionPermissionType.Contains(permissionType)) { - transitionNames.Add(GenericPublishProcessController.AwaitingPublication, StringResourceSystemFacade.GetString("Composite.Management", "Website.Forms.Administrative.EditPage.AwaitingPublicationTransition")); + transitionNames.Add(GenericPublishProcessController.AwaitingPublication, StringResourceSystemFacade.GetString("Composite.Management", "PublishingStatus.awaitingPublication")); break; } } @@ -358,37 +357,10 @@ private void saveCodeActivity_ExecuteCode(object sender, EventArgs e) } } + bool newDataAdded = PageServices.AddPageTypePageFoldersAndApplications(selectedPage); - // Adding page folders - var pageTypeDataFolderTypeLinks = - DataFacade.GetData(). - Where(f => f.PageTypeId == selectedPage.PageTypeId). - Evaluate(). - RemoveDeadLinks(); - - foreach (var pageTypeDataFolderTypeLink in pageTypeDataFolderTypeLinks) - { - if (selectedPage.GetFolderDefinitionId(pageTypeDataFolderTypeLink.DataTypeId) != Guid.Empty) continue; - - selectedPage.AddFolderDefinition(pageTypeDataFolderTypeLink.DataTypeId); - treeviewRequiresRefreshing = true; - } - - - - // Adding applications - var pageTypeTreeLinks = - DataFacade.GetData(). - Where(f => f.PageTypeId == selectedPage.PageTypeId). - Evaluate(). - RemoveDeadLinks(); - - foreach (var pageTypeTreeLink in pageTypeTreeLinks) + if (newDataAdded) { - var tree = TreeFacade.GetTree(pageTypeTreeLink.TreeId); - if (tree.HasAttachmentPoints(selectedPage.GetDataEntityToken())) continue; - - TreeFacade.AddPersistedAttachmentPoint(pageTypeTreeLink.TreeId, typeof(IPage), selectedPage.Id); treeviewRequiresRefreshing = true; } } @@ -504,7 +476,7 @@ private void saveCodeActivity_ExecuteCode(object sender, EventArgs e) { var mostSpecificException = ex; while (mostSpecificException.InnerException != null) mostSpecificException = mostSpecificException.InnerException; - ShowMessage(DialogType.Error, "Save failed", string.Format("Save failed: {0}", mostSpecificException.Message)); + ShowMessage(DialogType.Error, "Save failed", $"Save failed: {mostSpecificException.Message}"); Log.LogError("Page save", ex); } finally @@ -587,15 +559,9 @@ private bool PrepareAddUpdateMetaData(IPage selectedPage, IDictionary("PublishDate"); } - } + private DateTime? PublishDate => GetBinding("PublishDate"); - private DateTime? UnpublishDate - { - get { return GetBinding("UnpublishDate"); } - } + private DateTime? UnpublishDate => GetBinding("UnpublishDate"); private void editPreviewCodeActivity_ExecuteCode(object sender, EventArgs e) { diff --git a/Composite.Workflows/Plugins/Elements/ElementProviders/PageTypeElementProvider/EditPageTypeWorkflow.cs b/Composite.Workflows/Plugins/Elements/ElementProviders/PageTypeElementProvider/EditPageTypeWorkflow.cs index e633670fdb..6475ab435a 100644 --- a/Composite.Workflows/Plugins/Elements/ElementProviders/PageTypeElementProvider/EditPageTypeWorkflow.cs +++ b/Composite.Workflows/Plugins/Elements/ElementProviders/PageTypeElementProvider/EditPageTypeWorkflow.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Transactions; using System.Workflow.Activities; using Composite.Core.PageTemplates; using Composite.Data; @@ -12,6 +11,7 @@ using Composite.C1Console.Trees; using Composite.C1Console.Workflow; +using Texts = Composite.Core.ResourceSystem.LocalizationFiles.Composite_Plugins_PageTypeElementProvider; namespace Composite.Plugins.Elements.ElementProviders.PageTypeElementProvider { @@ -28,24 +28,20 @@ public EditPageTypeWorkflow() private void CleanDeadLinks(Guid pageTypeId) { - IEnumerable pageTypeMetaDataTypeLinks = - DataFacade.GetData(). - Where(f => f.PageTypeId == pageTypeId). - Evaluate(). - RemoveDeadLinks(); - - IEnumerable pageTypeDataFolderTypeLinks = - DataFacade.GetData(). - Where(f => f.PageTypeId == pageTypeId). - Evaluate(). - RemoveDeadLinks(); - - - IEnumerable pageTypeTreeLinks = - DataFacade.GetData(). - Where(f => f.PageTypeId == pageTypeId). - Evaluate(). - RemoveDeadLinks(); + DataFacade.GetData() + .Where(f => f.PageTypeId == pageTypeId) + .Evaluate() + .RemoveDeadLinks(); + + DataFacade.GetData() + .Where(f => f.PageTypeId == pageTypeId) + .Evaluate() + .RemoveDeadLinks(); + + DataFacade.GetData() + .Where(f => f.PageTypeId == pageTypeId) + .Evaluate() + .RemoveDeadLinks(); } @@ -63,19 +59,27 @@ private void initializeCodeActivity_UpdateBindings_ExecuteCode(object sender, Ev OrderBy(f => f.Name). ToList(f => new KeyValuePair(f.Id, f.Name)); - List> defaultPageTypeOptions = new List>(); - defaultPageTypeOptions.Add(new KeyValuePair(Guid.Empty, StringResourceSystemFacade.GetString("Composite.Plugins.PageTypeElementProvider", "PageType.EditPageTypeWorkflow.DefaultChildPageTypeKeySelector.NoneSelectedLabel"))); + var defaultPageTypeOptions = new List> + { + new KeyValuePair(Guid.Empty, + Texts.PageType_EditPageTypeWorkflow_DefaultChildPageTypeKeySelector_NoneSelectedLabel) + }; + defaultPageTypeOptions.AddRange(pageTypes); this.Bindings.Add("DefaultChildPageTypeOptions", defaultPageTypeOptions); - + Func > getOption = + relation => + new KeyValuePair( + relation.ToPageTypeHomepageRelationString(), + GetText($"PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.{relation}Label")); - this.Bindings.Add("HomepageRelationOptions", new List> { - new KeyValuePair(PageTypeHomepageRelation.NoRestriction.ToPageTypeHomepageRelationString(), StringResourceSystemFacade.GetString("Composite.Plugins.PageTypeElementProvider", string.Format("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.{0}Label", PageTypeHomepageRelation.NoRestriction))), - new KeyValuePair(PageTypeHomepageRelation.OnlyHomePages.ToPageTypeHomepageRelationString(), StringResourceSystemFacade.GetString("Composite.Plugins.PageTypeElementProvider", string.Format("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.{0}Label", PageTypeHomepageRelation.OnlyHomePages))), - new KeyValuePair(PageTypeHomepageRelation.OnlySubPages.ToPageTypeHomepageRelationString(), StringResourceSystemFacade.GetString("Composite.Plugins.PageTypeElementProvider", string.Format("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.{0}Label", PageTypeHomepageRelation.OnlySubPages))), + this.Bindings.Add("HomepageRelationOptions", new List> { + getOption(PageTypeHomepageRelation.NoRestriction), + getOption(PageTypeHomepageRelation.OnlyHomePages), + getOption(PageTypeHomepageRelation.OnlySubPages), }); @@ -84,8 +88,11 @@ private void initializeCodeActivity_UpdateBindings_ExecuteCode(object sender, Ev OrderBy(f => f.Title). ToList(f => new KeyValuePair(f.Id, f.Title)); - List> defaultPageTempatesOptions = new List>(); - defaultPageTempatesOptions.Add(new KeyValuePair(Guid.Empty, StringResourceSystemFacade.GetString("Composite.Plugins.PageTypeElementProvider", "PageType.EditPageTypeWorkflow.DefaultPageTemplateKeySelector.NoneSelectedLabel"))); + var defaultPageTempatesOptions = new List> + { + new KeyValuePair(Guid.Empty, + Texts.PageType_EditPageTypeWorkflow_DefaultPageTemplateKeySelector_NoneSelectedLabel) + }; defaultPageTempatesOptions.AddRange(pageTemplates); this.Bindings.Add("DefaultTemplateOptions", defaultPageTempatesOptions); @@ -101,10 +108,10 @@ private void initializeCodeActivity_UpdateBindings_ExecuteCode(object sender, Ev ToList(); this.Bindings.Add("TemplateRestrictionSelected", selectedPageTemplateIds); - - - List> parentRestrictingPageTypes = - DataFacade.GetData(). + + + List> parentRestrictingPageTypes = + DataFacade.GetData(). OrderBy(f => f.Name). ToList(f => new KeyValuePair(f.Id, f.Name)); @@ -119,9 +126,9 @@ private void initializeCodeActivity_UpdateBindings_ExecuteCode(object sender, Ev this.Bindings.Add("PageTypeChildRestrictionSelected", selectedPageTypeParentRestrictions); - - List> dataFolderTypes = - PageFolderFacade.GetAllFolderTypes(). + + List> dataFolderTypes = + PageFolderFacade.GetAllFolderTypes(). OrderBy(f => f.FullName). ToList(f => new KeyValuePair(f.GetImmutableTypeId(), f.GetTypeTitle())); @@ -135,11 +142,11 @@ private void initializeCodeActivity_UpdateBindings_ExecuteCode(object sender, Ev ToList(); this.Bindings.Add("DataFolderSelected", selectedDataFolderTypes); - + List> applications = TreeFacade.AllTrees. - Where(f => string.IsNullOrEmpty(f.AllowedAttachmentApplicationName) == false). + Where(f => !string.IsNullOrEmpty(f.AllowedAttachmentApplicationName)). OrderBy(f => f.TreeId). ToList(f => new KeyValuePair(f.TreeId, f.AllowedAttachmentApplicationName)); @@ -152,7 +159,7 @@ private void initializeCodeActivity_UpdateBindings_ExecuteCode(object sender, Ev Select(f => f.TreeId). ToList(); - this.Bindings.Add("ApplicationSelected", selectedApplications); + this.Bindings.Add("ApplicationSelected", selectedApplications); } @@ -163,9 +170,11 @@ private void editCodeActivity_ValidateBindings(object sender, ConditionalEventAr List selectedPageTemplateIds = this.GetBinding>("TemplateRestrictionSelected"); List selectedPageTypeParentRestrictions = this.GetBinding>("PageTypeChildRestrictionSelected"); - if ((pageType.DefaultTemplateId != Guid.Empty) && (selectedPageTemplateIds.Count > 0) && (selectedPageTemplateIds.Contains(pageType.DefaultTemplateId) == false)) + if (pageType.DefaultTemplateId != Guid.Empty + && selectedPageTemplateIds.Count > 0 + && !selectedPageTemplateIds.Contains(pageType.DefaultTemplateId)) { - this.ShowFieldMessage("DefaultTemplateSelected", "${Composite.Plugins.PageTypeElementProvider, PageType.EditPageTypeWorkflow.ValidationError.DefaultTemplateNotInRestrictions}"); + this.ShowFieldMessage("DefaultTemplateSelected", Texts.PageType_EditPageTypeWorkflow_ValidationError_DefaultTemplateNotInRestrictions); SetSaveStatus(false); e.Result = false; return; @@ -173,7 +182,7 @@ private void editCodeActivity_ValidateBindings(object sender, ConditionalEventAr if ((pageType.HomepageRelation == PageTypeHomepageRelation.OnlyHomePages.ToPageTypeHomepageRelationString()) && (selectedPageTypeParentRestrictions.Count > 0)) { - this.ShowFieldMessage("PageType.HomepageRelation", "${Composite.Plugins.PageTypeElementProvider, PageType.EditPageTypeWorkflow.ValidationError.HomepageRelationConflictsWithParentRestrictions}"); + this.ShowFieldMessage("PageType.HomepageRelation", Texts.PageType_EditPageTypeWorkflow_ValidationError_HomepageRelationConflictsWithParentRestrictions); SetSaveStatus(false); e.Result = false; return; @@ -186,11 +195,11 @@ private void editCodeActivity_ValidateBindings(object sender, ConditionalEventAr private void saveCodeActivity_Save_ExecuteCode(object sender, EventArgs e) { - using (TransactionScope transactionScope = TransactionsFacade.CreateNewScope()) + using (var transactionScope = TransactionsFacade.CreateNewScope()) { - ConditionalEventArgs args = new ConditionalEventArgs(); + var args = new ConditionalEventArgs(); editCodeActivity_ValidateBindings(this, args); - if (args.Result == false) return; + if (!args.Result) return; IPageType pageType = this.GetBinding("PageType"); @@ -204,6 +213,8 @@ private void saveCodeActivity_Save_ExecuteCode(object sender, EventArgs e) transactionScope.Complete(); } + this.RefreshParentEntityToken(); + SetSaveStatus(true); } @@ -213,28 +224,29 @@ private void UpdatePageTemplateResctrictions(IPageType pageType) { List selectedPageTemplateIds = this.GetBinding>("TemplateRestrictionSelected"); - IEnumerable pageTypePageTemplateRestrictions = DataFacade.GetData().Where(f => f.PageTypeId == pageType.Id).Evaluate(); + var pageTypePageTemplateRestrictions = DataFacade.GetData() + .Where(f => f.PageTypeId == pageType.Id).Evaluate(); // Remove deselected foreach (IPageTypePageTemplateRestriction restriction in pageTypePageTemplateRestrictions) { - if (selectedPageTemplateIds.Contains(restriction.PageTemplateId) == false) + if (!selectedPageTemplateIds.Contains(restriction.PageTemplateId)) { - DataFacade.Delete(restriction); + DataFacade.Delete(restriction); } } // Add newly selected foreach (Guid templateId in selectedPageTemplateIds) { - if (pageTypePageTemplateRestrictions.Where(f => f.PageTemplateId == templateId).Any() == false) + if (!pageTypePageTemplateRestrictions.Any(f => f.PageTemplateId == templateId)) { - IPageTypePageTemplateRestriction pageTypePageTemplateRestriction = DataFacade.BuildNew(); + var pageTypePageTemplateRestriction = DataFacade.BuildNew(); pageTypePageTemplateRestriction.Id = Guid.NewGuid(); pageTypePageTemplateRestriction.PageTypeId = pageType.Id; pageTypePageTemplateRestriction.PageTemplateId = templateId; - DataFacade.AddNew(pageTypePageTemplateRestriction); + DataFacade.AddNew(pageTypePageTemplateRestriction); } } } @@ -245,28 +257,29 @@ private void UpdatePageTypeParentResctrictions(IPageType pageType) { List selectedPageTypeParentRestrictions = this.GetBinding>("PageTypeChildRestrictionSelected"); - IEnumerable pageTypeParentRestrictions = DataFacade.GetData().Where(f => f.PageTypeId == pageType.Id).Evaluate(); + var pageTypeParentRestrictions = DataFacade.GetData() + .Where(f => f.PageTypeId == pageType.Id).Evaluate(); // Remove deselected foreach (IPageTypeParentRestriction restriction in pageTypeParentRestrictions) { - if (selectedPageTypeParentRestrictions.Contains(restriction.AllowedParentPageTypeId) == false) + if (!selectedPageTypeParentRestrictions.Contains(restriction.AllowedParentPageTypeId)) { - DataFacade.Delete(restriction); + DataFacade.Delete(restriction); } } // Add newly selected foreach (Guid templateId in selectedPageTypeParentRestrictions) { - if (pageTypeParentRestrictions.Where(f => f.AllowedParentPageTypeId == templateId).Any() == false) + if (!pageTypeParentRestrictions.Any(f => f.AllowedParentPageTypeId == templateId)) { - IPageTypeParentRestriction pageTypeParentRestriction = DataFacade.BuildNew(); + var pageTypeParentRestriction = DataFacade.BuildNew(); pageTypeParentRestriction.Id = Guid.NewGuid(); pageTypeParentRestriction.PageTypeId = pageType.Id; pageTypeParentRestriction.AllowedParentPageTypeId = templateId; - DataFacade.AddNew(pageTypeParentRestriction); + DataFacade.AddNew(pageTypeParentRestriction); } } } @@ -277,28 +290,29 @@ private void UpdatePageTypeDataFolderTypeLinks(IPageType pageType) { List selectedDataFolderTypeIds = this.GetBinding>("DataFolderSelected"); - IEnumerable pageTypeDateFolderTypeLinks = DataFacade.GetData().Where(f => f.PageTypeId == pageType.Id).Evaluate(); + var pageTypeDateFolderTypeLinks = DataFacade.GetData() + .Where(f => f.PageTypeId == pageType.Id).Evaluate(); // Remove deselected foreach (IPageTypeDataFolderTypeLink dataFolderTypeLink in pageTypeDateFolderTypeLinks) { - if (selectedDataFolderTypeIds.Contains(dataFolderTypeLink.DataTypeId) == false) + if (!selectedDataFolderTypeIds.Contains(dataFolderTypeLink.DataTypeId)) { - DataFacade.Delete(dataFolderTypeLink); + DataFacade.Delete(dataFolderTypeLink); } } // Add newly selected foreach (Guid dataFolderTypeId in selectedDataFolderTypeIds) { - if (pageTypeDateFolderTypeLinks.Where(f => f.DataTypeId == dataFolderTypeId).Any() == false) + if (!pageTypeDateFolderTypeLinks.Any(f => f.DataTypeId == dataFolderTypeId)) { IPageTypeDataFolderTypeLink pageTypeDateFolderTypeLink = DataFacade.BuildNew(); pageTypeDateFolderTypeLink.Id = Guid.NewGuid(); pageTypeDateFolderTypeLink.PageTypeId = pageType.Id; pageTypeDateFolderTypeLink.DataTypeId = dataFolderTypeId; - DataFacade.AddNew(pageTypeDateFolderTypeLink); + DataFacade.AddNew(pageTypeDateFolderTypeLink); } } } @@ -309,21 +323,22 @@ private void UpdatePageTypeTreeLinks(IPageType pageType) { List selectedTreeIds = this.GetBinding>("ApplicationSelected"); - IEnumerable pageTypeTreeLinks = DataFacade.GetData().Where(f => f.PageTypeId == pageType.Id).Evaluate(); + var pageTypeTreeLinks = DataFacade.GetData() + .Where(f => f.PageTypeId == pageType.Id).Evaluate(); // Remove deselected foreach (IPageTypeTreeLink treeLink in pageTypeTreeLinks) { - if (selectedTreeIds.Contains(treeLink.TreeId) == false) + if (!selectedTreeIds.Contains(treeLink.TreeId)) { - DataFacade.Delete(treeLink); + DataFacade.Delete(treeLink); } } // Add newly selected foreach (string treeId in selectedTreeIds) { - if (pageTypeTreeLinks.Where(f => f.TreeId == treeId).Any() == false) + if (!pageTypeTreeLinks.Any(f => f.TreeId == treeId)) { IPageTypeTreeLink pageTypeTreeLink = DataFacade.BuildNew(); pageTypeTreeLink.Id = Guid.NewGuid(); @@ -333,6 +348,11 @@ private void UpdatePageTypeTreeLinks(IPageType pageType) DataFacade.AddNew(pageTypeTreeLink); } } - } + } + + private static string GetText(string key) + { + return StringResourceSystemFacade.GetString("Composite.Plugins.PageTypeElementProvider", key); + } } } diff --git a/Composite.Workflows/Plugins/Elements/ElementProviders/UserElementProvider/DeleteUserWorkflow.cs b/Composite.Workflows/Plugins/Elements/ElementProviders/UserElementProvider/DeleteUserWorkflow.cs index bcde4a12d5..8436d74e12 100644 --- a/Composite.Workflows/Plugins/Elements/ElementProviders/UserElementProvider/DeleteUserWorkflow.cs +++ b/Composite.Workflows/Plugins/Elements/ElementProviders/UserElementProvider/DeleteUserWorkflow.cs @@ -16,7 +16,7 @@ namespace Composite.Plugins.Elements.ElementProviders.UserElementProvider [AllowPersistingWorkflow(WorkflowPersistingType.Idle)] public sealed partial class DeleteUserWorkflow : Composite.C1Console.Workflow.Activities.FormsWorkflow { - private bool _deleteSelf = false; + private bool _deleteSelf; @@ -47,30 +47,28 @@ private void initializeCodeActivity_Initialize_ExecuteCode(object sender, EventA private void finalizeCodeActivity_ExecuteCode(object sender, EventArgs e) { - DeleteTreeRefresher deleteTreeRefresher = this.CreateDeleteTreeRefresher(this.EntityToken); - - DataEntityToken dataEntityToken = (DataEntityToken)this.EntityToken; + var dataEntityToken = (DataEntityToken)this.EntityToken; IUser user = (IUser)dataEntityToken.Data; - if (DataFacade.WillDeleteSucceed(user)) + if (!DataFacade.WillDeleteSucceed(user)) { - UserPerspectiveFacade.DeleteAll(user.Username); + this.ShowMessage( + DialogType.Error, + StringResourceSystemFacade.GetString("Composite.Management", "DeleteUserWorkflow.CascadeDeleteErrorTitle"), + StringResourceSystemFacade.GetString("Composite.Management", "DeleteUserWorkflow.CascadeDeleteErrorMessage")); + return; + } - DataFacade.Delete(user); + UserPerspectiveFacade.DeleteAll(user.Username); - LoggingService.LogVerbose("UserManagement", String.Format("C1 Console user '{0}' deleted by '{1}'.", user.Username, UserValidationFacade.GetUsername()), LoggingService.Category.Audit); + DataFacade.Delete(user); - deleteTreeRefresher.PostRefreshMesseges(); - } - else - { - this.ShowMessage( - DialogType.Error, - StringResourceSystemFacade.GetString("Composite.Management", "DeleteUserWorkflow.CascadeDeleteErrorTitle"), - StringResourceSystemFacade.GetString("Composite.Management", "DeleteUserWorkflow.CascadeDeleteErrorMessage") - ); - } + LoggingService.LogVerbose("UserManagement", + $"C1 Console user '{user.Username}' deleted by '{UserValidationFacade.GetUsername()}'.", + LoggingService.Category.Audit); + + this.CreateParentTreeRefresher().PostRefreshMessages(dataEntityToken, 2); } } } diff --git a/Composite.Workflows/Properties/AssemblyInfo.cs b/Composite.Workflows/Properties/AssemblyInfo.cs index dcc1cced31..8e8883acfa 100644 --- a/Composite.Workflows/Properties/AssemblyInfo.cs +++ b/Composite.Workflows/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Composite A/S")] [assembly: AssemblyProduct("Composite C1")] -[assembly: AssemblyCopyright("Copyright © Composite A/S 2015")] +[assembly: AssemblyCopyright("Copyright © Composite A/S 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,6 +32,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.0.*")] +[assembly: AssemblyVersion("5.1.*")] [assembly: InternalsVisibleTo("UpgradePackage")] \ No newline at end of file diff --git a/Composite/C1Console/Actions/Data/DataActionTokenRegisterHandler.cs b/Composite/C1Console/Actions/Data/DataActionTokenRegisterHandler.cs index 63000c99ce..7d5cbb6ca9 100644 --- a/Composite/C1Console/Actions/Data/DataActionTokenRegisterHandler.cs +++ b/Composite/C1Console/Actions/Data/DataActionTokenRegisterHandler.cs @@ -6,31 +6,31 @@ namespace Composite.C1Console.Actions.Data { abstract class DataActionTokenRegisterHandler { - public abstract ActionToken GetActionToken(); + public abstract ActionToken GetActionToken(IData data); public abstract bool Check(Type type,IData data, ActionIdentifier actionIdentifier); } class DataActionTokenRegisterHandler : DataActionTokenRegisterHandler where T : IData { - private readonly ActionToken _actionToken; + private readonly Func _actionTokenFunc; private readonly ActionIdentifier _actionIdentifier; private readonly Func _actionValidPredicate; - public DataActionTokenRegisterHandler(ActionIdentifier actionIdentifier, ActionToken dataActionToken) + public DataActionTokenRegisterHandler(ActionIdentifier actionIdentifier, Func dataActionToken) { - _actionToken = dataActionToken; + _actionTokenFunc = dataActionToken; _actionIdentifier = actionIdentifier; } - public DataActionTokenRegisterHandler(ActionIdentifier actionIdentifier, ActionToken dataActionToken, Func actionValidPredicate) : this(actionIdentifier, dataActionToken) + public DataActionTokenRegisterHandler(ActionIdentifier actionIdentifier, Func dataActionToken, Func actionValidPredicate) : this(actionIdentifier, dataActionToken) { _actionValidPredicate = actionValidPredicate; } - public override ActionToken GetActionToken() + public override ActionToken GetActionToken(IData data) { - return _actionToken; + return _actionTokenFunc((T)data); } public override bool Check(Type type, IData data, ActionIdentifier actionIdentifier) diff --git a/Composite/C1Console/Actions/Data/DataActionTokenResolver.cs b/Composite/C1Console/Actions/Data/DataActionTokenResolver.cs index 811ec91ea6..3bb2258039 100644 --- a/Composite/C1Console/Actions/Data/DataActionTokenResolver.cs +++ b/Composite/C1Console/Actions/Data/DataActionTokenResolver.cs @@ -18,7 +18,7 @@ public class DataActionTokenResolver /// /// /// - public void RegisterDefault(ActionIdentifier actionIdentifier, ActionToken dataActionToken) where T : IData + public void RegisterDefault(ActionIdentifier actionIdentifier, Func dataActionToken) where T : IData { Verify.ArgumentNotNull(actionIdentifier, nameof(actionIdentifier)); Verify.ArgumentNotNull(dataActionToken, nameof(dataActionToken)); @@ -37,7 +37,7 @@ public void RegisterDefault(ActionIdentifier actionIdentifier, ActionToken da /// /// /// - public void RegisterConditional(ActionIdentifier actionIdentifier, Func actionValidPredicate, ActionToken dataActionToken) where T : IData + public void RegisterConditional(ActionIdentifier actionIdentifier, Func actionValidPredicate, Func dataActionToken) where T : IData { Verify.ArgumentNotNull(actionIdentifier, nameof(actionIdentifier)); Verify.ArgumentNotNull(actionValidPredicate, nameof(actionValidPredicate)); @@ -61,7 +61,7 @@ public ActionToken Resolve(IData data, ActionIdentifier actionIdentifier) var conditionalAction = _conditionalActions?.FirstOrDefault(f => f.Check(type, data, actionIdentifier)); if (conditionalAction != null) { - return conditionalAction.GetActionToken(); + return conditionalAction.GetActionToken(data); } } @@ -70,7 +70,7 @@ public ActionToken Resolve(IData data, ActionIdentifier actionIdentifier) var defaultAction = _defaultActions?.LastOrDefault(f => f.Check(type, data, actionIdentifier)); if (defaultAction != null) { - return defaultAction.GetActionToken(); + return defaultAction.GetActionToken(data); } } return null; diff --git a/Composite/C1Console/Actions/Data/DataActionTokenResolverFacade.cs b/Composite/C1Console/Actions/Data/DataActionTokenResolverFacade.cs index 65b4df5d81..328f739af3 100644 --- a/Composite/C1Console/Actions/Data/DataActionTokenResolverFacade.cs +++ b/Composite/C1Console/Actions/Data/DataActionTokenResolverFacade.cs @@ -1,8 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using Composite.C1Console.Security; using Composite.Core.Application; using Composite.Data; @@ -26,7 +22,7 @@ public static ActionToken Resolve(IData data, ActionIdentifier actionIdentifier) /// /// /// - public static void RegisterDefault(ActionIdentifier actionIdentifier, ActionToken dataActionToken) where T : IData + public static void RegisterDefault(ActionIdentifier actionIdentifier, Func dataActionToken) where T : IData { GetDataActionTokenResolverService().RegisterDefault(actionIdentifier, dataActionToken); } @@ -37,7 +33,7 @@ public static void RegisterDefault(ActionIdentifier actionIdentifier, ActionT /// /// /// - public static void RegisterConditional(ActionIdentifier actionIdentifier, Func actionValidPredicate, ActionToken dataActionToken) where T : IData + public static void RegisterConditional(ActionIdentifier actionIdentifier, Func actionValidPredicate, Func dataActionToken) where T : IData { GetDataActionTokenResolverService().RegisterConditional(actionIdentifier, actionValidPredicate, dataActionToken); } diff --git a/Composite/C1Console/Actions/Data/ProxyDataActionToken.cs b/Composite/C1Console/Actions/Data/ProxyDataActionToken.cs index 16c80f1b43..f877056503 100644 --- a/Composite/C1Console/Actions/Data/ProxyDataActionToken.cs +++ b/Composite/C1Console/Actions/Data/ProxyDataActionToken.cs @@ -21,19 +21,19 @@ public ProxyDataActionToken( ActionIdentifier actionIdentifier) /// public ProxyDataActionToken(ActionIdentifier actionIdentifier, IEnumerable permissionTypes) : this(actionIdentifier) { - this._permissionTypes = permissionTypes; + _permissionTypes = permissionTypes; } /// public ActionIdentifier ActionIdentifier => _actionIdentifier; /// - public override IEnumerable PermissionTypes - { - get - { - return _permissionTypes ?? _actionIdentifier.Permissions(); - } - } + public bool DoIgnoreEntityTokenLocking { get; set;} + + /// + public override bool IgnoreEntityTokenLocking => DoIgnoreEntityTokenLocking; + + /// + public override IEnumerable PermissionTypes => _permissionTypes ?? _actionIdentifier.Permissions(); /// public override string Serialize() @@ -42,6 +42,7 @@ public override string Serialize() StringConversionServices.SerializeKeyValuePair(stringBuilder, "_ActionIdentifier_", ActionIdentifier.Serialize()); StringConversionServices.SerializeKeyValuePair(stringBuilder, "_PermissionTypes_", PermissionTypes.SerializePermissionTypes()); + StringConversionServices.SerializeKeyValuePair(stringBuilder, "_DoIgnoreEntityTokenLocking_", DoIgnoreEntityTokenLocking); return stringBuilder.ToString(); } @@ -59,7 +60,9 @@ public static ActionToken Deserialize(string serializedData) string permissionTypesString = StringConversionServices.DeserializeValueString(dic["_PermissionTypes_"]); - var result = new ProxyDataActionToken(ActionIdentifier.Deserialize(serializedType), permissionTypesString.DesrializePermissionTypes()); + bool doIgnoreEntityTokenLocking = StringConversionServices.DeserializeValueBool(dic["_DoIgnoreEntityTokenLocking_"]); + + var result = new ProxyDataActionToken(ActionIdentifier.Deserialize(serializedType), permissionTypesString.DesrializePermissionTypes()) {DoIgnoreEntityTokenLocking = doIgnoreEntityTokenLocking}; return result; } diff --git a/Composite/C1Console/Elements/ActionVisualizedData.cs b/Composite/C1Console/Elements/ActionVisualizedData.cs index 8c79f9109d..e348179d6a 100644 --- a/Composite/C1Console/Elements/ActionVisualizedData.cs +++ b/Composite/C1Console/Elements/ActionVisualizedData.cs @@ -63,6 +63,11 @@ public ActionVisualizedData(ActionVisualizedData copy) /// public ActionLocation ActionLocation { get; set; } + /// + /// The string to be shown in a confirm dialog when executing the action for multiple elements. + /// + public DialogStrings BulkExecutionDialog { get; set; } + /// /// Where the action should be shown - when elements are shown in a selection tree (as opposed to the normal navigation tree) some actions may be desired. /// Default is ElementActionActivePosition.NavigatorTree only. diff --git a/Composite/C1Console/Elements/DialogStrings.cs b/Composite/C1Console/Elements/DialogStrings.cs new file mode 100644 index 0000000000..d1808beda6 --- /dev/null +++ b/Composite/C1Console/Elements/DialogStrings.cs @@ -0,0 +1,16 @@ +using System; + +namespace Composite.C1Console.Elements +{ + /// + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] + [Serializable] + public sealed class DialogStrings + { + /// + public string Title { get; set; } + + /// + public string Text { get; set; } + } +} diff --git a/Composite/C1Console/Forms/CoreUiControls/HierarchicalSelectorUiControl.cs b/Composite/C1Console/Forms/CoreUiControls/HierarchicalSelectorUiControl.cs index 1ed47bf21e..20f34b9ade 100644 --- a/Composite/C1Console/Forms/CoreUiControls/HierarchicalSelectorUiControl.cs +++ b/Composite/C1Console/Forms/CoreUiControls/HierarchicalSelectorUiControl.cs @@ -15,7 +15,7 @@ internal abstract class HierarchicalSelectorUiControl : UiControl public IEnumerable TreeNodes { get; set; } [FormsProperty] - public bool MultiSelection { get; set; } + public bool AutoSelectChildren { get; set; } [FormsProperty] public bool Required { get; set; } @@ -31,9 +31,16 @@ public sealed class SelectionTreeNode /// public string Label { get; set; } - /// + /// + /// Determines whether a tree element should feature a checkbox. + /// public bool Selectable { get; set; } + /// + /// Determines whether the tree element's checkbox is readonly. + /// + public bool Readonly { get; set; } + /// public string Icon { get; set; } diff --git a/Composite/C1Console/Security/ActionToken.cs b/Composite/C1Console/Security/ActionToken.cs index cf4370d15f..e9aa229930 100644 --- a/Composite/C1Console/Security/ActionToken.cs +++ b/Composite/C1Console/Security/ActionToken.cs @@ -26,27 +26,11 @@ public abstract class ActionToken internal static class ActionTokenExtensionMethods { - private static Dictionary _ignoreEntityTokenLockingCache = new Dictionary(); - private static readonly object _lock = new object(); - public static bool IsIgnoreEntityTokenLocking(this ActionToken actionToken) { - if (actionToken == null) throw new ArgumentNullException("actionToken"); + if (actionToken == null) throw new ArgumentNullException(nameof(actionToken)); - Type type = actionToken.GetType(); - - lock (_lock) - { - bool ignoreLocking; - if (_ignoreEntityTokenLockingCache.TryGetValue(type, out ignoreLocking) == false) - { - ignoreLocking = type.GetCustomAttributesRecursively().Any() ; - - _ignoreEntityTokenLockingCache.Add(type, ignoreLocking); - } - - return ignoreLocking | actionToken.IgnoreEntityTokenLocking; - } + return actionToken.IgnoreEntityTokenLocking; } } } diff --git a/Composite/C1Console/Security/IgnoreEntityTokenLocking.cs b/Composite/C1Console/Security/IgnoreEntityTokenLocking.cs deleted file mode 100644 index 92a25a858a..0000000000 --- a/Composite/C1Console/Security/IgnoreEntityTokenLocking.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; - - -namespace Composite.C1Console.Security -{ - /// - /// If this attribute is specified on an ActionToken, then the action will ignore EntityToken locking - /// - /// - [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] - [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] - public sealed class IgnoreEntityTokenLocking : Attribute - { - } -} diff --git a/Composite/C1Console/Workflow/FilePersistenceService.cs b/Composite/C1Console/Workflow/FilePersistenceService.cs index cb35e1cc3c..91b52a3e6a 100644 --- a/Composite/C1Console/Workflow/FilePersistenceService.cs +++ b/Composite/C1Console/Workflow/FilePersistenceService.cs @@ -1,227 +1,234 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.Serialization; -using System.Runtime.Serialization.Formatters.Binary; -using System.Workflow.ComponentModel; -using System.Workflow.ComponentModel.Serialization; -using System.Workflow.Runtime.Hosting; -using Composite.Core; -using Composite.Core.IO; -using Composite.Core.Logging; -using Composite.Core.Types; - - -namespace Composite.C1Console.Workflow -{ - internal class FileWorkflowPersistenceService : WorkflowPersistenceService - { - private static readonly string LogTitle = "Workflow File Persisting Service"; - private readonly string _baseDirectory; - private Guid[] _abortedWorkflows; - private readonly object _syncRoot = new object(); - - - public FileWorkflowPersistenceService(string baseDirectory) - { - _baseDirectory = baseDirectory; - this.PersistAll = false; - } - - - - public bool PersistAll { get; set; } - - public IEnumerable GetAbortedWorkflows() - { - return _abortedWorkflows ?? new Guid[0]; - } - - public IEnumerable GetPersistedWorkflows() - { - foreach (string filePath in C1Directory.GetFiles(_baseDirectory, "*.bin")) - { - string guidString = Path.GetFileNameWithoutExtension(filePath); - - Guid guid = Guid.Empty; - try - { - guid = new Guid(guidString); - } - catch { } - - if (guid != Guid.Empty) - { - yield return guid; - } - } - } - - - - public bool RemovePersistedWorkflow(Guid instanceId) - { - string filename = GetFileName(instanceId); - - if (C1File.Exists(filename)) - { - try - { - C1File.Delete(filename); - - Log.LogVerbose(LogTitle, $"Workflow persisted state deleted. Id = {instanceId}"); - } - catch - { - return false; - } - } - - return true; - } - - - - protected override Activity LoadCompletedContextActivity(Guid scopeId, Activity outerActivity) - { - object obj = DeserializeActivity(outerActivity, scopeId); - return (Activity)obj; - } - - - - protected override Activity LoadWorkflowInstanceState(Guid instanceId) - { - string filename = GetFileName(instanceId); - bool deleteFile = false; - - if (C1File.Exists(filename)) - { - try - { - object obj = DeserializeActivity(null, instanceId); - return (Activity)obj; - } - catch (Exception ex) - { - LoggingService.LogCritical(LogTitle, ex); - deleteFile = true; - } - } - - if (deleteFile) - { - Log.LogWarning(LogTitle, $"Failed to load workflow with id '{filename}'. Deleting file."); - C1File.Delete(filename); - - MarkWorkflowAsAborted(instanceId); - } - - return null; - } - - - - protected override void SaveCompletedContextActivity(Activity activity) - { - Guid contextGuid = (Guid)activity.GetValue(Activity.ActivityContextGuidProperty); - SerializeActivity(activity, contextGuid); - } - - - - protected override void SaveWorkflowInstanceState(Activity rootActivity, bool unlock) - { - Guid contextGuid = (Guid)rootActivity.GetValue(Activity.ActivityContextGuidProperty); - SerializeActivity(rootActivity, contextGuid); - } - - - protected override bool UnloadOnIdle(Activity activity) - { - return GetPersistingType(activity) == WorkflowPersistingType.Idle; - } - - - - protected override void UnlockWorkflowInstanceState(Activity rootActivity) - { - //empty - } - - private bool ActivityIsSerializable(Activity activity) - { - return PersistAll || GetPersistingType(activity) != WorkflowPersistingType.Never; - } - - private WorkflowPersistingType GetPersistingType(Activity activity) - { - List attributes = activity.GetType().GetCustomAttributesRecursively().ToList(); - - if (attributes.Count == 0) return WorkflowPersistingType.Never; - - return attributes[0].WorkflowPersistingType; - } - - private void SerializeActivity(Activity rootActivity, Guid id) - { - if (!ActivityIsSerializable(rootActivity)) - { - Log.LogVerbose(LogTitle, - $"The workflow does not support persiting. Id = {id}, Type = {rootActivity.GetType()}"); - return; - } - - string filename = GetFileName(id); - - IFormatter formatter = new BinaryFormatter(); - formatter.SurrogateSelector = ActivitySurrogateSelector.Default; - - using (C1FileStream stream = new C1FileStream(filename, FileMode.OpenOrCreate)) - { - rootActivity.Save(stream, formatter); - stream.Close(); - } - - // Log.LogVerbose(LogTitle, $"Workflow persisted. Id = {id}, Type = {rootActivity.GetType()}"); - } - - - - private object DeserializeActivity(Activity rootActivity, Guid id) - { - string filename = GetFileName(id); - object result; - - IFormatter formatter = new BinaryFormatter(); - formatter.SurrogateSelector = ActivitySurrogateSelector.Default; - - using (C1FileStream stream = new C1FileStream(filename, FileMode.Open)) - { - result = Activity.Load(stream, rootActivity, formatter); - stream.Close(); - } - - // Log.LogVerbose(LogTitle, $"Workflow loaded. Id = {id}, Type = {result.GetType()}"); - - return result; - } - - private void MarkWorkflowAsAborted(Guid id) - { - lock (_syncRoot) - { - List newList = new List(_abortedWorkflows ?? new Guid[0]); - newList.Add(id); - - _abortedWorkflows = newList.ToArray(); - } - } - - private string GetFileName(Guid id) - { - return Path.Combine(this._baseDirectory, id.ToString() + ".bin"); - } - } -} +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.Serialization; +using System.Runtime.Serialization.Formatters.Binary; +using System.Workflow.ComponentModel; +using System.Workflow.ComponentModel.Serialization; +using System.Workflow.Runtime.Hosting; +using Composite.Core; +using Composite.Core.IO; +using Composite.Core.Logging; +using Composite.Core.Types; + + +namespace Composite.C1Console.Workflow +{ + internal class FileWorkflowPersistenceService : WorkflowPersistenceService + { + private static readonly string LogTitle = "Workflow File Persisting Service"; + private readonly string _baseDirectory; + private Guid[] _abortedWorkflows; + private readonly object _syncRoot = new object(); + + + public FileWorkflowPersistenceService(string baseDirectory) + { + _baseDirectory = baseDirectory; + this.PersistAll = false; + } + + + + public bool PersistAll { get; set; } + + public IEnumerable GetAbortedWorkflows() + { + return _abortedWorkflows ?? new Guid[0]; + } + + public IEnumerable GetPersistedWorkflows() + { + foreach (string filePath in C1Directory.GetFiles(_baseDirectory, "*.bin")) + { + string guidString = Path.GetFileNameWithoutExtension(filePath); + + Guid guid = Guid.Empty; + try + { + guid = new Guid(guidString); + } + catch { } + + if (guid != Guid.Empty) + { + yield return guid; + } + } + } + + + + public bool RemovePersistedWorkflow(Guid instanceId) + { + string filename = GetFileName(instanceId); + + if (C1File.Exists(filename)) + { + try + { + C1File.Delete(filename); + + Log.LogVerbose(LogTitle, $"Workflow persisted state deleted. Id = {instanceId}"); + } + catch + { + return false; + } + } + + return true; + } + + + + protected override Activity LoadCompletedContextActivity(Guid scopeId, Activity outerActivity) + { + object obj = DeserializeActivity(outerActivity, scopeId); + return (Activity)obj; + } + + + + protected override Activity LoadWorkflowInstanceState(Guid instanceId) + { + string filename = GetFileName(instanceId); + bool deleteFile = false; + + if (C1File.Exists(filename)) + { + try + { + object obj = DeserializeActivity(null, instanceId); + return (Activity)obj; + } + catch (Exception ex) + { + LoggingService.LogCritical(LogTitle, ex); + deleteFile = true; + } + } + + if (deleteFile) + { + Log.LogWarning(LogTitle, $"Failed to load workflow with id '{filename}'. Deleting file."); + C1File.Delete(filename); + + MarkWorkflowAsAborted(instanceId); + } + + return null; + } + + + + protected override void SaveCompletedContextActivity(Activity activity) + { + Guid contextGuid = (Guid)activity.GetValue(Activity.ActivityContextGuidProperty); + SerializeActivity(activity, contextGuid); + } + + + + protected override void SaveWorkflowInstanceState(Activity rootActivity, bool unlock) + { + Guid contextGuid = (Guid)rootActivity.GetValue(Activity.ActivityContextGuidProperty); + SerializeActivity(rootActivity, contextGuid); + } + + + protected override bool UnloadOnIdle(Activity activity) + { + return GetPersistingType(activity) == WorkflowPersistingType.Idle; + } + + + + protected override void UnlockWorkflowInstanceState(Activity rootActivity) + { + //empty + } + + private bool ActivityIsSerializable(Activity activity) + { + return PersistAll || GetPersistingType(activity) != WorkflowPersistingType.Never; + } + + private WorkflowPersistingType GetPersistingType(Activity activity) + { + List attributes = activity.GetType().GetCustomAttributesRecursively().ToList(); + + if (attributes.Count == 0) return WorkflowPersistingType.Never; + + return attributes[0].WorkflowPersistingType; + } + + private void SerializeActivity(Activity rootActivity, Guid id) + { + if (!ActivityIsSerializable(rootActivity)) + { + Log.LogVerbose(LogTitle, + $"The workflow does not support persiting. Id = {id}, Type = {rootActivity.GetType()}"); + return; + } + + string filename = GetFileName(id); + + IFormatter formatter = new BinaryFormatter(); + formatter.SurrogateSelector = ActivitySurrogateSelector.Default; + + using (var stream = new C1FileStream(filename, FileMode.OpenOrCreate)) + { + try + { + rootActivity.Save(stream, formatter); + stream.Close(); + } + catch (SerializationException ex) + { + Log.LogError(LogTitle, ex); + } + } + + // Log.LogVerbose(LogTitle, $"Workflow persisted. Id = {id}, Type = {rootActivity.GetType()}"); + } + + + + private object DeserializeActivity(Activity rootActivity, Guid id) + { + string filename = GetFileName(id); + object result; + + IFormatter formatter = new BinaryFormatter(); + formatter.SurrogateSelector = ActivitySurrogateSelector.Default; + + using (C1FileStream stream = new C1FileStream(filename, FileMode.Open)) + { + result = Activity.Load(stream, rootActivity, formatter); + stream.Close(); + } + + // Log.LogVerbose(LogTitle, $"Workflow loaded. Id = {id}, Type = {result.GetType()}"); + + return result; + } + + private void MarkWorkflowAsAborted(Guid id) + { + lock (_syncRoot) + { + List newList = new List(_abortedWorkflows ?? new Guid[0]); + newList.Add(id); + + _abortedWorkflows = newList.ToArray(); + } + } + + private string GetFileName(Guid id) + { + return Path.Combine(this._baseDirectory, id.ToString() + ".bin"); + } + } +} diff --git a/Composite/Composite.csproj b/Composite/Composite.csproj index fc26d61094..2de3d759bc 100644 --- a/Composite/Composite.csproj +++ b/Composite/Composite.csproj @@ -91,6 +91,10 @@ False ..\bin\Microsoft.Practices.ObjectBuilder.dll + + ..\packages\NodaTime.1.3.2\lib\net35-Client\NodaTime.dll + True + @@ -164,6 +168,11 @@ + + + + + @@ -1625,7 +1634,6 @@ - @@ -2459,7 +2467,9 @@ TextTemplatingFileGenerator LocalizationFiles.cs - + + Designer + diff --git a/Composite/Core/Configuration/BuildinPlugins/GlobalSettingsProvider/BuildinGlobalSettingsProvider.cs b/Composite/Core/Configuration/BuildinPlugins/GlobalSettingsProvider/BuildinGlobalSettingsProvider.cs index f3faab954c..2506014228 100644 --- a/Composite/Core/Configuration/BuildinPlugins/GlobalSettingsProvider/BuildinGlobalSettingsProvider.cs +++ b/Composite/Core/Configuration/BuildinPlugins/GlobalSettingsProvider/BuildinGlobalSettingsProvider.cs @@ -33,6 +33,8 @@ internal sealed class BuildinGlobalSettingsProvider : IGlobalSettingsProvider private bool _broadcastConsoleElementChanges = true; private bool _prettifyPublicMarkup = true; private bool _prettifyRenderFunctionExceptions = true; + private bool _functionPreviewEnabled = false; + private TimeZoneInfo _timezone = TimeZoneInfo.Local; public string ApplicationName { @@ -266,14 +268,12 @@ public int ImageQuality } } - public bool PrettifyPublicMarkup - { - get { return _prettifyPublicMarkup; } - } + public bool PrettifyPublicMarkup => _prettifyPublicMarkup; - public bool PrettifyRenderFunctionExceptions - { - get { return _prettifyRenderFunctionExceptions; } - } + public bool PrettifyRenderFunctionExceptions => _prettifyRenderFunctionExceptions; + + public bool FunctionPreviewEnabled => _functionPreviewEnabled; + + public TimeZoneInfo TimeZone => _timezone; } } diff --git a/Composite/Core/Configuration/Foundation/PluginFacades/GlobalSettingsProviderPluginFacade.cs b/Composite/Core/Configuration/Foundation/PluginFacades/GlobalSettingsProviderPluginFacade.cs index a3577061eb..0078f3dd9d 100644 --- a/Composite/Core/Configuration/Foundation/PluginFacades/GlobalSettingsProviderPluginFacade.cs +++ b/Composite/Core/Configuration/Foundation/PluginFacades/GlobalSettingsProviderPluginFacade.cs @@ -1,9 +1,7 @@ using System; using System.Collections.Generic; using System.Configuration; -using System.Globalization; using Composite.Core.Collections.Generic; -using Composite.Core.Configuration; using Composite.C1Console.Events; using Composite.Core.Configuration.BuildinPlugins.GlobalSettingsProvider; using Composite.Core.Configuration.Plugins.GlobalSettingsProvider; @@ -19,7 +17,7 @@ internal sealed class GlobalSettingsProviderPluginFacade static GlobalSettingsProviderPluginFacade() { - GlobalEventSystemFacade.SubscribeToFlushEvent(OnFlush); + GlobalEventSystemFacade.SubscribeToFlushEvent(args => Flush()); } @@ -331,16 +329,14 @@ public static bool PrettifyRenderFunctionExceptions } - private static void Flush() - { - _resourceLocker.ResetInitialization(); - } + public static bool FunctionPreviewEnabled => UseReaderLock(p => p.FunctionPreviewEnabled); + public static TimeZoneInfo TimeZone => UseReaderLock(p => p.TimeZone); - private static void OnFlush(FlushEventArgs args) + private static void Flush() { - Flush(); + _resourceLocker.ResetInitialization(); } @@ -349,7 +345,7 @@ private static void HandleConfigurationError(Exception ex) { Flush(); - throw new ConfigurationErrorsException(string.Format("Failed to load the configuration section '{0}' from the configuration.", GlobalSettingsProviderSettings.SectionName), ex); + throw new ConfigurationErrorsException($"Failed to load the configuration section '{GlobalSettingsProviderSettings.SectionName}' from the configuration.", ex); } private delegate T ExecuteDelegate(IGlobalSettingsProvider provider); @@ -369,9 +365,10 @@ private sealed class Resources public static void Initialize(Resources resources) { - if ((RuntimeInformation.IsDebugBuild) && - ((ConfigurationServices.ConfigurationSource == null) || - (ConfigurationServices.ConfigurationSource.GetSection(GlobalSettingsProviderSettings.SectionName) == null))) + var configSource = ConfigurationServices.ConfigurationSource; + + if (RuntimeInformation.IsDebugBuild + && (configSource?.GetSection(GlobalSettingsProviderSettings.SectionName) == null)) { resources.Provider = new BuildinGlobalSettingsProvider(); } diff --git a/Composite/Core/Configuration/GlobalSettingsFacade.cs b/Composite/Core/Configuration/GlobalSettingsFacade.cs index a95e76a786..a05d7f63a7 100644 --- a/Composite/Core/Configuration/GlobalSettingsFacade.cs +++ b/Composite/Core/Configuration/GlobalSettingsFacade.cs @@ -2,6 +2,7 @@ using System.Linq; using System.Collections.Generic; using System.Globalization; +using Composite.Core.ResourceSystem; namespace Composite.Core.Configuration @@ -472,7 +473,13 @@ public static bool PrettifyRenderFunctionExceptions return _globalSettingsFacade.PrettifyRenderFunctionExceptions; } } - + + /// + public static bool FunctionPreviewEnabled => _globalSettingsFacade.FunctionPreviewEnabled; + + /// + public static TimeZoneInfo TimeZone => _globalSettingsFacade.TimeZone; + // Overload /// public static CachingSettings GetNamedCaching(string name) diff --git a/Composite/Core/Configuration/GlobalSettingsFacadeImpl.cs b/Composite/Core/Configuration/GlobalSettingsFacadeImpl.cs index 2aa43cde34..b767fe2b44 100644 --- a/Composite/Core/Configuration/GlobalSettingsFacadeImpl.cs +++ b/Composite/Core/Configuration/GlobalSettingsFacadeImpl.cs @@ -349,5 +349,9 @@ public bool PrettifyRenderFunctionExceptions return GlobalSettingsProviderPluginFacade.PrettifyRenderFunctionExceptions; } } + + public bool FunctionPreviewEnabled => GlobalSettingsProviderPluginFacade.FunctionPreviewEnabled; + + public TimeZoneInfo TimeZone => GlobalSettingsProviderPluginFacade.TimeZone; } } diff --git a/Composite/Core/Configuration/IGlobalSettingsFacade.cs b/Composite/Core/Configuration/IGlobalSettingsFacade.cs index 6a0cdb29c3..0f65e3ba9f 100644 --- a/Composite/Core/Configuration/IGlobalSettingsFacade.cs +++ b/Composite/Core/Configuration/IGlobalSettingsFacade.cs @@ -42,5 +42,7 @@ internal interface IGlobalSettingsFacade int ImageQuality { get; } bool PrettifyPublicMarkup { get; } bool PrettifyRenderFunctionExceptions { get; } + bool FunctionPreviewEnabled { get; } + TimeZoneInfo TimeZone { get; } } } diff --git a/Composite/Core/Configuration/Plugins/GlobalSettingsProvider/IGlobalSettingsProvider.cs b/Composite/Core/Configuration/Plugins/GlobalSettingsProvider/IGlobalSettingsProvider.cs index 28507c5687..ad85f09603 100644 --- a/Composite/Core/Configuration/Plugins/GlobalSettingsProvider/IGlobalSettingsProvider.cs +++ b/Composite/Core/Configuration/Plugins/GlobalSettingsProvider/IGlobalSettingsProvider.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using Composite.Core.Configuration.Plugins.GlobalSettingsProvider.Runtime; using Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ObjectBuilder; @@ -82,5 +83,9 @@ internal interface IGlobalSettingsProvider bool PrettifyPublicMarkup { get; } bool PrettifyRenderFunctionExceptions { get; } + + bool FunctionPreviewEnabled { get; } + + TimeZoneInfo TimeZone { get; } } } diff --git a/Composite/Core/IO/MimeTypeInfo.cs b/Composite/Core/IO/MimeTypeInfo.cs index 5c6396d743..24f64fc14c 100644 --- a/Composite/Core/IO/MimeTypeInfo.cs +++ b/Composite/Core/IO/MimeTypeInfo.cs @@ -1,8 +1,9 @@ using System; +using System.Collections.Concurrent; using System.Collections.Generic; using System.Configuration; using System.Diagnostics.CodeAnalysis; -using System.Reflection; +using System.Web; using System.Web.Configuration; using System.Web.Hosting; using System.Xml.Linq; @@ -25,10 +26,7 @@ public static class MimeTypeInfo private static readonly IDictionary _toCanonical = new Dictionary(); private static readonly IDictionary _extensionToCanonical = new Dictionary(); private static readonly IDictionary _mimeTypeToResourceName = new Dictionary(); - private static readonly IDictionary _iisServableExtensions = new Dictionary(); - - - private static readonly MethodInfo _getMimeMappingMethodInfo; + private static readonly ConcurrentDictionary _iisServableExtensions = new ConcurrentDictionary(); private static List _textMimeTypes = new List { MimeTypeInfo.Css, MimeTypeInfo.Js, MimeTypeInfo.Xml, MimeTypeInfo.Text, MimeTypeInfo.Html, MimeTypeInfo.Sass, @@ -36,7 +34,7 @@ public static class MimeTypeInfo MimeTypeInfo.Resx, MimeTypeInfo.MasterPage, MimeTypeInfo.CsHtml, MimeTypeInfo.Svg }; // file types we don't expect IIS to block - private static List _iisServableTypes = new List(); + private static readonly HashSet _iisServableTypes = new HashSet(); private static ResourceHandle GetIconHandle(string name) { @@ -312,12 +310,6 @@ static MimeTypeInfo() AddExtensionMapping("svgz", "image/svg+xml"); AddExtensionMapping("flv4", "video/mp4"); AddExtensionMapping("eot", "application/vnd.ms-fontobject"); - - Type mimeMappingType = typeof (System.Web.HttpUtility).Assembly.GetType("System.Web.MimeMapping"); - - // Method System.Web.MimeMapping.GetMimeMapping() is public in .NET v4.5, and private in .NET v4.0 - _getMimeMappingMethodInfo = mimeMappingType.GetMethod("GetMimeMapping", BindingFlags.Static | BindingFlags.Public) - ?? mimeMappingType.GetMethod("GetMimeMapping", BindingFlags.Static | BindingFlags.NonPublic); } private static void RegisterMimeType(string canonicalMimeTypeName, string extension, string resourceName = null, bool iisServable = false) @@ -456,13 +448,14 @@ public static string GetCanonicalFromExtension(string extension) extension = extension.Substring(1); } - if (_extensionToCanonical.ContainsKey(extension.ToLowerInvariant())) + string mimeType; + if (_extensionToCanonical.TryGetValue(extension, out mimeType)) { - return _extensionToCanonical[extension]; + return mimeType; } string fileName = "filename." + extension; - return _getMimeMappingMethodInfo.Invoke(null, new object[] { fileName }) as string; + return MimeMapping.GetMimeMapping(fileName); } /// @@ -530,24 +523,18 @@ internal static bool IsIisServable(string extension) extension = extension.Substring(1); } - if (_iisServableExtensions.ContainsKey(extension)) - { - return _iisServableExtensions[extension]; - } - else + bool servable; + if (_iisServableExtensions.TryGetValue(extension, out servable)) { - lock (_iisServableExtensions) - { - string mimeType = GetCanonicalFromExtension(extension); - bool servable = _iisServableTypes.Contains(mimeType); - if (!_iisServableExtensions.ContainsKey(extension)) - { - _iisServableExtensions.Add(extension, servable); - } - return servable; - } + return servable; } + string mimeType = GetCanonicalFromExtension(extension); + servable = _iisServableTypes.Contains(mimeType); + + _iisServableExtensions.TryAdd(extension, servable); + + return servable; } } } diff --git a/Composite/Core/IO/Zip/ZipFileSystem.cs b/Composite/Core/IO/Zip/ZipFileSystem.cs index 6dddaa0f04..82140e33a0 100644 --- a/Composite/Core/IO/Zip/ZipFileSystem.cs +++ b/Composite/Core/IO/Zip/ZipFileSystem.cs @@ -94,7 +94,17 @@ public Stream GetFileStream(string filename) if (!_entryNames.Contains(parstedFilename)) { - throw new ArgumentException($"The file {filename} does not exist in the zip"); + string note = ""; + + var entryWithAnotherCasing = _entryNames + .FirstOrDefault(en => en.Equals(parstedFilename, StringComparison.InvariantCultureIgnoreCase)); + + if (entryWithAnotherCasing != null) + { + note = $" There's another entry with different casing '{entryWithAnotherCasing}'."; + } + + throw new ArgumentException($"The file '{filename}' does not exist in the zip." + note); } var zipArchive = new ZipArchive(C1File.Open(ZipFilename, FileMode.Open, FileAccess.Read)); diff --git a/Composite/Core/PackageSystem/LicenseServerFacade.cs b/Composite/Core/PackageSystem/LicenseServerFacade.cs index 91a8fb64a2..0d9d5a4733 100644 --- a/Composite/Core/PackageSystem/LicenseServerFacade.cs +++ b/Composite/Core/PackageSystem/LicenseServerFacade.cs @@ -1,22 +1,17 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; using System.ServiceModel; using Composite.Core.PackageSystem.WebServiceClient; namespace Composite.Core.PackageSystem { - /// - /// /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] internal static class LicenseServerFacade { public static string ValidateTrialLicenseDefinitionRequest(Guid installationId, Guid productId, string publicKeyXml) { - LicenseDefinitionServiceSoapClient client = CreateClient(); + var client = CreateClient(); return client.ValidateTrialLicenseDefinitionRequest(installationId, productId, publicKeyXml); } @@ -25,7 +20,7 @@ public static string ValidateTrialLicenseDefinitionRequest(Guid installationId, public static LicenseDefinitionDescriptor GetTrialLicenseDefinition(Guid installationId, Guid productId, string publicKeyXml) { - LicenseDefinitionServiceSoapClient client = CreateClient(); + var client = CreateClient(); return client.GetTrialLicenseDefinition(installationId, productId, publicKeyXml); } @@ -33,49 +28,28 @@ public static LicenseDefinitionDescriptor GetTrialLicenseDefinition(Guid install private static string LicenseServerUrl - { - get - { - return "http://package.composite.net/PackageLicense/LicenseDefinitionService.asmx"; - } - } - + => "https://package.composite.net/PackageLicense/LicenseDefinitionService.asmx"; private static LicenseDefinitionServiceSoapClient CreateClient() { - BasicHttpBinding basicHttpBinding = new BasicHttpBinding(); + var timeout = TimeSpan.FromMinutes(RuntimeInformation.IsDebugBuild ? 2 : 1); - if (RuntimeInformation.IsDebugBuild) + var basicHttpBinding = new BasicHttpBinding { - basicHttpBinding.CloseTimeout = TimeSpan.FromSeconds(1); - basicHttpBinding.OpenTimeout = TimeSpan.FromSeconds(1); - basicHttpBinding.ReceiveTimeout = TimeSpan.FromSeconds(1); - basicHttpBinding.SendTimeout = TimeSpan.FromSeconds(1); + CloseTimeout = timeout, + OpenTimeout = timeout, + ReceiveTimeout = timeout, + SendTimeout = timeout + }; - basicHttpBinding.CloseTimeout = TimeSpan.FromMinutes(2); - basicHttpBinding.OpenTimeout = TimeSpan.FromMinutes(2); - basicHttpBinding.ReceiveTimeout = TimeSpan.FromMinutes(2); - basicHttpBinding.SendTimeout = TimeSpan.FromMinutes(2); - } - else - { - basicHttpBinding.CloseTimeout = TimeSpan.FromMinutes(1); - basicHttpBinding.OpenTimeout = TimeSpan.FromMinutes(1); - basicHttpBinding.ReceiveTimeout = TimeSpan.FromMinutes(1); - basicHttpBinding.SendTimeout = TimeSpan.FromMinutes(1); - } - - if (LicenseServerUrl.StartsWith("https")) + if (LicenseServerUrl.StartsWith("https", StringComparison.OrdinalIgnoreCase)) { basicHttpBinding.Security.Mode = BasicHttpSecurityMode.Transport; } - basicHttpBinding.MaxReceivedMessageSize = int.MaxValue; - LicenseDefinitionServiceSoapClient client = new LicenseDefinitionServiceSoapClient(basicHttpBinding, new EndpointAddress(LicenseServerUrl)); - - return client; + return new LicenseDefinitionServiceSoapClient(basicHttpBinding, new EndpointAddress(LicenseServerUrl)); } } } diff --git a/Composite/Core/PackageSystem/PackageFragmentInstallers/DataPackageFragmentInstaller.cs b/Composite/Core/PackageSystem/PackageFragmentInstallers/DataPackageFragmentInstaller.cs index 6d8cd2797e..2c0dcaba06 100644 --- a/Composite/Core/PackageSystem/PackageFragmentInstallers/DataPackageFragmentInstaller.cs +++ b/Composite/Core/PackageSystem/PackageFragmentInstallers/DataPackageFragmentInstaller.cs @@ -489,42 +489,48 @@ where dfd.IsNullable var notAssignedRequiredProperties = requiredPropertyNames.Except(assignedPropertyNames.Except(nonRequiredPropertyNames)).ToArray(); if (notAssignedRequiredProperties.Any()) { + bool missingValues = false; foreach (string propertyName in notAssignedRequiredProperties) { PropertyInfo propertyInfo = dataType.InterfaceType.GetPropertiesRecursively().Single(f => f.Name == propertyName); - // Made for backward compatibility - if (propertyInfo.ReflectedType == typeof(IChangeHistory)) - { - continue; - } - if (propertyInfo.CanWrite) { - _validationResult.AddFatal(GetText("DataPackageFragmentInstaller.MissingPropertyVaule").FormatWith(propertyName, dataType.InterfaceType)); + var defaultValueAttribute = propertyInfo.GetCustomAttributesRecursively().SingleOrDefault(); + if (defaultValueAttribute == null || !defaultValueAttribute.HasValue) + { + _validationResult.AddFatal(GetText("DataPackageFragmentInstaller.MissingPropertyVaule").FormatWith(propertyName, dataType.InterfaceType)); + missingValues = true; + } } } - continue; + if (missingValues) continue; } // Validating keys already present - if (!dataType.AllowOverwrite && !dataType.OnlyUpdate - && !DataLocalizationFacade.IsLocalized(dataType.InterfaceType) - || (!dataType.AddToAllLocales && !dataType.AddToCurrentLocale) - || (dataType.Locale != null && !this.InstallerContext.IsLocalePending(dataType.Locale))) + if (!dataType.AllowOverwrite && !dataType.OnlyUpdate) { - using (new DataScope(dataType.DataScopeIdentifier, dataType.Locale)) - { - IData data = DataFacade.TryGetDataByUniqueKey(dataType.InterfaceType, dataKeyPropertyCollection); + bool dataLocaleExists = + !DataLocalizationFacade.IsLocalized(dataType.InterfaceType) + || (!dataType.AddToAllLocales && !dataType.AddToCurrentLocale) + || (dataType.Locale != null && !this.InstallerContext.IsLocalePending(dataType.Locale)); - if (data != null) + if(dataLocaleExists) + { + using (new DataScope(dataType.DataScopeIdentifier, dataType.Locale)) { - itemsAlreadyPresentInDatabase++; + IData data = DataFacade.TryGetDataByUniqueKey(dataType.InterfaceType, dataKeyPropertyCollection); + + if (data != null) + { + itemsAlreadyPresentInDatabase++; + } } } } + RegisterKeyToBeAdded(dataType, dataKeyPropertyCollection); // Checking foreign key references diff --git a/Composite/Core/PackageSystem/PackageInstaller.cs b/Composite/Core/PackageSystem/PackageInstaller.cs index c64a1d8118..7f2690ac40 100644 --- a/Composite/Core/PackageSystem/PackageInstaller.cs +++ b/Composite/Core/PackageSystem/PackageInstaller.cs @@ -5,7 +5,6 @@ using System.Xml.Linq; using Composite.Core.Application; using Composite.Core.Configuration; -using Composite.Core.Extensions; using Composite.Core.IO; using Composite.Core.IO.Zip; using Composite.Core.Logging; @@ -332,7 +331,7 @@ private IEnumerable LoadPackageFragmentInstalle ZipFileSystem zipFileSystem = new ZipFileSystem(this.ZipFilename); if (!zipFileSystem.ContainsFile(sourceFilename)) { - result.AddFatal(string.Format("The file '{0}' is missing from the zipfile", sourceFilename)); + result.AddFatal($"The file '{sourceFilename}' is missing from the zip file"); continue; } @@ -349,7 +348,7 @@ private IEnumerable LoadPackageFragmentInstalle if(!success) { - result.AddFatal("Access denied to file '{0}'".FormatWith(targetFilename)); + result.AddFatal($"Access denied to file '{targetFilename}'"); continue; } } @@ -379,14 +378,14 @@ private IList LoadPackageFragmentInstallers(XEl XAttribute installerTypeAttribute = element.Attribute(PackageSystemSettings.InstallerTypeAttributeName); if (installerTypeAttribute == null) { - result.AddFatal(string.Format("Missing attribute '{0}'", PackageSystemSettings.InstallerTypeAttributeName), element); + result.AddFatal($"Missing attribute '{PackageSystemSettings.InstallerTypeAttributeName}'", element); continue; } Type installerType = TypeManager.TryGetType(installerTypeAttribute.Value); if (installerType == null) { - result.AddFatal(string.Format("Could not find install fragment type '{0}'", installerTypeAttribute.Value), installerTypeAttribute); + result.AddFatal($"Could not find install fragment type '{installerTypeAttribute.Value}'", installerTypeAttribute); continue; } @@ -403,7 +402,7 @@ private IList LoadPackageFragmentInstallers(XEl if (packageFragmentInstaller == null) { - result.AddFatal(string.Format("The type '{0}' does not implement {1}", installerTypeAttribute.Value, typeof(IPackageFragmentInstaller)), installerTypeAttribute); + result.AddFatal($"The type '{installerTypeAttribute.Value}' does not implement {typeof (IPackageFragmentInstaller)}", installerTypeAttribute); continue; } @@ -413,14 +412,14 @@ private IList LoadPackageFragmentInstallers(XEl XAttribute uninstallerTypeAttribute = element.Attribute(PackageSystemSettings.UninstallerTypeAttributeName); if (uninstallerTypeAttribute == null) { - result.AddFatal(string.Format("Missing attribute '{0}'", PackageSystemSettings.UninstallerTypeAttributeName), element); + result.AddFatal($"Missing attribute '{PackageSystemSettings.UninstallerTypeAttributeName}'", element); continue; } uninstallerType = TypeManager.TryGetType(uninstallerTypeAttribute.Value); if (uninstallerType == null) { - result.AddFatal(string.Format("Could not find uninstall fragment type '{0}'", uninstallerTypeAttribute.Value), uninstallerTypeAttribute); + result.AddFatal($"Could not find uninstall fragment type '{uninstallerTypeAttribute.Value}'", uninstallerTypeAttribute); continue; } @@ -437,7 +436,7 @@ private IList LoadPackageFragmentInstallers(XEl if (packageFragmentUninstaller == null) { - result.AddFatal(string.Format("The type '{0}' does not implement {1}", uninstallerTypeAttribute.Value, typeof(IPackageFragmentUninstaller)), uninstallerTypeAttribute); + result.AddFatal($"The type '{uninstallerTypeAttribute.Value}' does not implement {typeof (IPackageFragmentUninstaller)}", uninstallerTypeAttribute); continue; } } diff --git a/Composite/Core/PackageSystem/PackageManager.cs b/Composite/Core/PackageSystem/PackageManager.cs index 3f68a6989a..0901b9cbcd 100644 --- a/Composite/Core/PackageSystem/PackageManager.cs +++ b/Composite/Core/PackageSystem/PackageManager.cs @@ -91,13 +91,13 @@ public static IEnumerable GetInstalledPackages() FlushOnCompletion = (bool)flushOnCompletionAttribute, ReloadConsoleOnCompletion = (bool)reloadConsoleOnCompletionAttribute, SystemLockingType = systemLockingType, - PackageServerAddress = packageServerAddressAttribute != null ? packageServerAddressAttribute.Value : null, + PackageServerAddress = packageServerAddressAttribute?.Value, PackageInstallPath = packageDirectory }; } else { - throw new InvalidOperationException(string.Format("{0} does not exist", filename)); + throw new InvalidOperationException($"'{filename}' does not exist"); } } else @@ -186,8 +186,11 @@ public static PackageManagerInstallProcess Install(Stream zipFileStream, bool is { return new PackageManagerInstallProcess(new List { - new PackageFragmentValidationResult(PackageFragmentValidationResultType.Fatal, - GetText("PackageManager.CompositeVersionMisMatch")) }, zipFilename); + new PackageFragmentValidationResult(PackageFragmentValidationResultType.Fatal, + Texts.PackageManager_CompositeVersionMisMatch( + RuntimeInformation.ProductVersion, + packageInformation.MinCompositeVersionSupported, + packageInformation.MaxCompositeVersionSupported)) }, zipFilename); } bool updatingInstalledPackage = false; @@ -411,20 +414,22 @@ internal static PackageFragmentValidationResult ValidatePackageInformation(XElem else return new PackageFragmentValidationResult(PackageFragmentValidationResultType.Fatal, string.Format(GetText("PackageManager.InvalidAttributeValue"), PackageSystemSettings.VersionAttributeName), maximumCompositeVersionAttribute); - packageInformation = new PackageInformation(); - packageInformation.Id = id; - packageInformation.Name = nameAttribute.Value; - packageInformation.GroupName = groupNameAttribute.Value; - packageInformation.Author = authorAttribute.Value; - packageInformation.Website = websiteAttribute.Value; - packageInformation.Version = versionAttribute.Value; - packageInformation.CanBeUninstalled = canBeUninstalled; - packageInformation.SystemLockingType = systemLockingType; - packageInformation.Description = packageInformationElement.Value; - packageInformation.FlushOnCompletion = flushOnCompletion; - packageInformation.ReloadConsoleOnCompletion = reloadConsoleOnCompletion; - packageInformation.MinCompositeVersionSupported = new Version(minimumCompositeVersionAttribute.Value); - packageInformation.MaxCompositeVersionSupported = new Version(maximumCompositeVersionAttribute.Value); + packageInformation = new PackageInformation + { + Id = id, + Name = nameAttribute.Value, + GroupName = groupNameAttribute.Value, + Author = authorAttribute.Value, + Website = websiteAttribute.Value, + Version = versionAttribute.Value, + CanBeUninstalled = canBeUninstalled, + SystemLockingType = systemLockingType, + Description = packageInformationElement.Value, + FlushOnCompletion = flushOnCompletion, + ReloadConsoleOnCompletion = reloadConsoleOnCompletion, + MinCompositeVersionSupported = new Version(minimumCompositeVersionAttribute.Value), + MaxCompositeVersionSupported = new Version(maximumCompositeVersionAttribute.Value) + }; return null; } @@ -479,7 +484,7 @@ private static string GetText(string stringId) private static string CreatePackageDirectoryName(PackageInformation packageInformation) { - string directoryName = string.Format("{0}", packageInformation.Id); + string directoryName = $"{packageInformation.Id}"; return Path.Combine(PathUtil.Resolve(GlobalSettingsFacade.PackageDirectory), directoryName); } diff --git a/Composite/Core/PackageSystem/PackageServerFacadeImpl.cs b/Composite/Core/PackageSystem/PackageServerFacadeImpl.cs index 334c45140d..58f454538f 100644 --- a/Composite/Core/PackageSystem/PackageServerFacadeImpl.cs +++ b/Composite/Core/PackageSystem/PackageServerFacadeImpl.cs @@ -22,7 +22,7 @@ public ServerUrlValidationResult ValidateServerUrl(string packageServerUrl) var basicHttpBinding = new BasicHttpBinding { MaxReceivedMessageSize = int.MaxValue }; basicHttpBinding.Security.Mode = BasicHttpSecurityMode.Transport; - var client = new PackagesSoapClient(basicHttpBinding, new EndpointAddress(string.Format("https://{0}", packageServerUrl))); + var client = new PackagesSoapClient(basicHttpBinding, new EndpointAddress($"https://{packageServerUrl}")); client.IsOperational(); return ServerUrlValidationResult.Https; @@ -34,7 +34,7 @@ public ServerUrlValidationResult ValidateServerUrl(string packageServerUrl) try { var basicHttpBinding = new BasicHttpBinding { MaxReceivedMessageSize = int.MaxValue }; - var client = new PackagesSoapClient(basicHttpBinding, new EndpointAddress(string.Format("http://{0}", packageServerUrl))); + var client = new PackagesSoapClient(basicHttpBinding, new EndpointAddress($"http://{packageServerUrl}")); client.IsOperational(); return ServerUrlValidationResult.Http; @@ -118,16 +118,14 @@ public string GetEulaText(string packageServerUrl, Guid eulaId, CultureInfo user { PackagesSoapClient client = CreateClient(packageServerUrl); - string eulaText = client.GetEulaText(eulaId, userCulture.ToString()); - - return eulaText; + return client.GetEulaText(eulaId, userCulture.ToString()); } public Stream GetInstallFileStream(string packageFileDownloadUrl) { - Log.LogVerbose("PackageServerFacade", string.Format("Downloading file: {0}", packageFileDownloadUrl)); + Log.LogVerbose("PackageServerFacade", $"Downloading file: {packageFileDownloadUrl}"); var client = new System.Net.WebClient(); return client.OpenRead(packageFileDownloadUrl); @@ -174,7 +172,8 @@ private bool ValidatePackageDescriptor(PackageDescriptor packageDescriptor) string newVersion; if (!VersionStringHelper.ValidateVersion(packageDescriptor.PackageVersion, out newVersion)) { - Log.LogWarning("PackageServerFacade", string.Format("The package '{0}' ({1}) did not validate and is skipped", packageDescriptor.Name, packageDescriptor.Id)); + Log.LogWarning("PackageServerFacade", + $"The package '{packageDescriptor.Name}' ({packageDescriptor.Id}) did not validate and is skipped"); return false; } @@ -182,7 +181,8 @@ private bool ValidatePackageDescriptor(PackageDescriptor packageDescriptor) if (!VersionStringHelper.ValidateVersion(packageDescriptor.MinCompositeVersionSupported, out newVersion)) { - Log.LogWarning("PackageServerFacade", string.Format("The package '{0}' ({1}) did not validate and is skipped", packageDescriptor.Name, packageDescriptor.Id)); + Log.LogWarning("PackageServerFacade", + $"The package '{packageDescriptor.Name}' ({packageDescriptor.Id}) did not validate and is skipped"); return false; } @@ -190,7 +190,8 @@ private bool ValidatePackageDescriptor(PackageDescriptor packageDescriptor) if (!VersionStringHelper.ValidateVersion(packageDescriptor.MaxCompositeVersionSupported, out newVersion)) { - Log.LogWarning("PackageServerFacade", string.Format("The package '{0}' ({1}) did not validate and is skipped", packageDescriptor.Name, packageDescriptor.Id)); + Log.LogWarning("PackageServerFacade", + $"The package '{packageDescriptor.Name}' ({packageDescriptor.Id}) did not validate and is skipped"); return false; } @@ -219,7 +220,7 @@ private PackagesSoapClient CreateClient(string packageServerUrl) } basicHttpBinding.MaxReceivedMessageSize = int.MaxValue; - + return new PackagesSoapClient(basicHttpBinding, new EndpointAddress(packageServerUrl)); } } diff --git a/Composite/Core/Parallelization/ParallelFacade.cs b/Composite/Core/Parallelization/ParallelFacade.cs index f23f8b426c..ec21e937f2 100644 --- a/Composite/Core/Parallelization/ParallelFacade.cs +++ b/Composite/Core/Parallelization/ParallelFacade.cs @@ -4,6 +4,7 @@ using System.Globalization; using System.Linq; using System.Reflection; +using System.Security.Principal; using System.Threading; using System.Web; using Composite.Core.Instrumentation; @@ -139,10 +140,7 @@ private static void EnsureHttpContextItemsCollectionIsThreadSafe() { object synchronizedCollection = Hashtable.Synchronized((Hashtable) items); - if(HttpContext_ItemsFieldInfo != null) - { - HttpContext_ItemsFieldInfo.SetValue(context, synchronizedCollection); - } + HttpContext_ItemsFieldInfo?.SetValue(context, synchronizedCollection); } } @@ -164,6 +162,7 @@ private sealed class ThreadWrapper private readonly CultureInfo _parentThreadLocale; private readonly DataScopeIdentifier _parentThreadDataScope; private readonly HttpContext _parentThreadHttpContext; + private readonly IPrincipal _parentThreadPrincipal; private readonly CultureInfo _parentThreadCulture; private readonly CultureInfo _parentThreadUiCulture; @@ -176,6 +175,7 @@ public ThreadWrapper(Action body, ThreadDataManagerData parentData) _parentThreadLocale = LocalizationScopeManager.CurrentLocalizationScope; _parentThreadDataScope = DataScopeManager.CurrentDataScope; _parentThreadHttpContext = HttpContext.Current; + _parentThreadPrincipal = Thread.CurrentPrincipal; var currentThread = System.Threading.Thread.CurrentThread; @@ -194,6 +194,7 @@ public void WrapperAction(TSource source) CultureInfo originalCulture = currentThread.CurrentCulture; CultureInfo originalUiCulture = currentThread.CurrentUICulture; + var originalPrincipal = Thread.CurrentPrincipal; using (ThreadDataManager.Initialize(_parentData)) { @@ -219,6 +220,7 @@ public void WrapperAction(TSource source) currentThread.CurrentCulture = _parentThreadCulture; currentThread.CurrentUICulture = _parentThreadUiCulture; + Thread.CurrentPrincipal = _parentThreadPrincipal; try { @@ -242,6 +244,7 @@ public void WrapperAction(TSource source) { currentThread.CurrentCulture = originalCulture; currentThread.CurrentUICulture = originalUiCulture; + Thread.CurrentPrincipal = originalPrincipal; HttpContext.Current = originalHttpContext; diff --git a/Composite/Core/ResourceSystem/LocalizationFiles.cs b/Composite/Core/ResourceSystem/LocalizationFiles.cs index 1aa26f856e..fa64009cd3 100644 --- a/Composite/Core/ResourceSystem/LocalizationFiles.cs +++ b/Composite/Core/ResourceSystem/LocalizationFiles.cs @@ -30,12 +30,12 @@ public static class LocalizationFiles /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_C1Console_SecurityViolation { - /// "Security violation" - public static string LayoutLabel { get { return T("LayoutLabel"); } } - /// "Not allowed" - public static string Title { get { return T("Title"); } } - /// "You do not have permission to execute the action. Contact your administrator for more information." - public static string Description { get { return T("Description"); } } +///"Security violation" +public static string LayoutLabel=>T("LayoutLabel"); +///"Not allowed" +public static string Title=>T("Title"); +///"You do not have permission to execute the action. Contact your administrator for more information." +public static string Description=>T("Description"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.C1Console.SecurityViolation", key); @@ -45,254 +45,254 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_C1Console_Trees { - /// "Error in tree" - public static string KeyFacade_ErrorTreeNode_Label { get { return T("KeyFacade.ErrorTreeNode.Label"); } } - /// "Show Message" - public static string KeyFacade_ErrorTreeNode_ShowMessage_Label { get { return T("KeyFacade.ErrorTreeNode.ShowMessage.Label"); } } - /// "Show Error Message" - public static string KeyFacade_ErrorTreeNode_ShowMessage_ToolTip { get { return T("KeyFacade.ErrorTreeNode.ShowMessage.ToolTip"); } } - /// "Error message" - public static string KeyFacade_ErrorTreeNode_ShowMessage_Title { get { return T("KeyFacade.ErrorTreeNode.ShowMessage.Title"); } } - /// "Unknown exception happened: '{0}'" - public static string TreeValidationError_Common_UnknownException(object parameter0) { return string.Format(T("TreeValidationError.Common.UnknownException"), parameter0); } - /// "Unknown element '{0}'" - public static string TreeValidationError_Common_UnknownElement(object parameter0) { return string.Format(T("TreeValidationError.Common.UnknownElement"), parameter0); } - /// "The required attribute '{0}' is missing" - public static string TreeValidationError_Common_MissingAttribute(object parameter0) { return string.Format(T("TreeValidationError.Common.MissingAttribute"), parameter0); } - /// "The attribute '{0}' has a value that is not allowed" - public static string TreeValidationError_Common_WrongAttributeValue(object parameter0) { return string.Format(T("TreeValidationError.Common.WrongAttributeValue"), parameter0); } - /// "The type '{0}' does not contain a property named '{1}'" - public static string TreeValidationError_Common_MissingProperty(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.Common.MissingProperty"), parameter0,parameter1); } - /// "The type '{0}' could not be found" - public static string TreeValidationError_Common_UnknownInterfaceType(object parameter0) { return string.Format(T("TreeValidationError.Common.UnknownInterfaceType"), parameter0); } - /// "The type '{0}' does not implement the interface '{1}'" - public static string TreeValidationError_Common_NotImplementingIData(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.Common.NotImplementingIData"), parameter0,parameter1); } - /// "The value '{0}' is not allowed as a permission type value" - public static string TreeValidationError_Common_WrongPermissionValue(object parameter0) { return string.Format(T("TreeValidationError.Common.WrongPermissionValue"), parameter0); } - /// "The value '{0}' is not allowed as a location value" - public static string TreeValidationError_Common_WrongLocationValue(object parameter0) { return string.Format(T("TreeValidationError.Common.WrongLocationValue"), parameter0); } - /// "No function markup provided as a child element" - public static string TreeValidationError_Common_MissingFunctionMarkup { get { return T("TreeValidationError.Common.MissingFunctionMarkup"); } } - /// "The function could not be created for the provided function markup" - public static string TreeValidationError_Common_WrongFunctionMarkup { get { return T("TreeValidationError.Common.WrongFunctionMarkup"); } } - /// "Missing root element in tree markup" - public static string TreeValidationError_Markup_NoRootElement { get { return T("TreeValidationError.Markup.NoRootElement"); } } - /// "Syntax error: {0} at line {1} position {2}" - public static string TreeValidationError_Markup_SchemaError(object parameter0,object parameter1,object parameter2) { return string.Format(T("TreeValidationError.Markup.SchemaError"), parameter0,parameter1,parameter2); } - /// "The attachment point '{0}' is unknown" - public static string TreeValidationError_AutoAttachments_UnknownAttachmentPoint(object parameter0) { return string.Format(T("TreeValidationError.AutoAttachments.UnknownAttachmentPoint"), parameter0); } - /// "The attachment position '{0}' is unknown" - public static string TreeValidationError_AutoAttachments_UnknownAttachmentPosition(object parameter0) { return string.Format(T("TreeValidationError.AutoAttachments.UnknownAttachmentPosition"), parameter0); } - /// "No elements are allowed in trees that are used with data attached trees" - public static string TreeValidationError_DataAttachments_NoElementsAllowed { get { return T("TreeValidationError.DataAttachments.NoElementsAllowed"); } } - /// "ShareRootElementById is only allowed if the tree has a single named attachment point" - public static string TreeValidationError_ElementRoot_ShareRootElementByIdNotAllowed { get { return T("TreeValidationError.ElementRoot.ShareRootElementByIdNotAllowed"); } } - /// "The value of the Id is not allowed. The Id should be non-empty, not start with NodeAutoId_ and not be RootTreeNode" - public static string TreeValidationError_SimpleElement_WrongIdValue { get { return T("TreeValidationError.SimpleElement.WrongIdValue"); } } - /// "The id value '{0}' has already been used in this tree" - public static string TreeValidationError_SimpleElement_AlreadyUsedId(object parameter0) { return string.Format(T("TreeValidationError.SimpleElement.AlreadyUsedId"), parameter0); } - /// "The data interface '{0}' is used more than once as a child under the same parent element and this is not allowed" - public static string TreeValidationError_DataElementsTreeNode_SameInterfaceUsedTwice(object parameter0) { return string.Format(T("TreeValidationError.DataElementsTreeNode.SameInterfaceUsedTwice"), parameter0); } - /// "The same interface '{0}' is used as parent type as parent filter and this is not allowed" - public static string TreeValidationError_DataElementsTreeNode_SameParentFilterInterfaceUsedTwice(object parameter0) { return string.Format(T("TreeValidationError.DataElementsTreeNode.SameParentFilterInterfaceUsedTwice"), parameter0); } - /// "More than one parent filter is pointing to the interface '{0}'. Change the Display value to Lazy" - public static string TreeValidationError_DataElementsTreeNode_MoreThanOnParentFilterIsPointingToMe(object parameter0) { return string.Format(T("TreeValidationError.DataElementsTreeNode.MoreThanOnParentFilterIsPointingToMe"), parameter0); } - /// "Type attribute is missing" - public static string TreeValidationError_DataFolderElements_MissingInterfaceType { get { return T("TreeValidationError.DataFolderElements.MissingInterfaceType"); } } - /// "The interface type '{0}' does not match the parent elements interface type '{1}'" - public static string TreeValidationError_DataFolderElements_WrongInterfaceType(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.DataFolderElements.WrongInterfaceType"), parameter0,parameter1); } - /// "DateFormat attribute requires that the property '{0}' should be of type '{1}' but is type '{2}'" - public static string TreeValidationError_DataFolderElements_DateFormetNotAllowed(object parameter0,object parameter1,object parameter2) { return string.Format(T("TreeValidationError.DataFolderElements.DateFormetNotAllowed"), parameter0,parameter1,parameter2); } - /// "The property '{0}' is of type Date and this requires the DateFormat attribute to be present" - public static string TreeValidationError_DataFolderElements_DateFormetIsMissing(object parameter0) { return string.Format(T("TreeValidationError.DataFolderElements.DateFormetIsMissing"), parameter0); } - /// "Ranges and first-letter-only not allowed at the same time" - public static string TreeValidationError_DataFolderElements_RangesAndFirstLetterOnlyNotAllowed { get { return T("TreeValidationError.DataFolderElements.RangesAndFirstLetterOnlyNotAllowed"); } } - /// "First-letter-only requires that the property '{0}' should be of type '{1}' but is type '{2}'" - public static string TreeValidationError_DataFolderElements_WrongFirstLetterOnlyPropertyType(object parameter0,object parameter1,object parameter2) { return string.Format(T("TreeValidationError.DataFolderElements.WrongFirstLetterOnlyPropertyType"), parameter0,parameter1,parameter2); } - /// "Only data child elements with the same interface type as the folder grouping ('{0}') are allowed" - public static string TreeValidationError_DataFolderElements_WrongDateChildInterfaceType(object parameter0) { return string.Format(T("TreeValidationError.DataFolderElements.WrongDateChildInterfaceType"), parameter0); } - /// "Switching from the interface type '{0}' to a different interface type '{1}' is not allowed in the same folder grouping group" - public static string TreeValidationError_DataFolderElements_InterfaceTypeSwitchNotAllowed(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.DataFolderElements.InterfaceTypeSwitchNotAllowed"), parameter0,parameter1); } - /// "Using the field name '{0}' twice in the same grouping tree is not allowed" - public static string TreeValidationError_DataFolderElements_SameFieldUsedTwice(object parameter0) { return string.Format(T("TreeValidationError.DataFolderElements.SameFieldUsedTwice"), parameter0); } - /// "Maximum one parent id filter node can be used on data elements used in groupings" - public static string TreeValidationError_DataFolderElements_TooManyParentIdFilters { get { return T("TreeValidationError.DataFolderElements.TooManyParentIdFilters"); } } - /// "The type '{0}' is not in the parent tree of this node or specified as an attachment points type" - public static string TreeValidationError_ParentIdFilterNode_TypeIsNotInParentTree(object parameter0) { return string.Format(T("TreeValidationError.ParentIdFilterNode.TypeIsNotInParentTree"), parameter0); } - /// "The operator '{0}' is unknown or not supported" - public static string TreeValidationError_FieldFilter_UnknownOperatorName(object parameter0) { return string.Format(T("TreeValidationError.FieldFilter.UnknownOperatorName"), parameter0); } - /// "The string value '{0}' could not be converted to the type '{1}'" - public static string TreeValidationError_FieldFilter_ValueCouldNotBeConverted(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.FieldFilter.ValueCouldNotBeConverted"), parameter0,parameter1); } - /// "The operator '{0}' is not supported for the type '{1}'" - public static string TreeValidationError_FieldFilter_OperatorNotSupportedForType(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.FieldFilter.OperatorNotSupportedForType"), parameter0,parameter1); } - /// "Function markup is missing" - public static string TreeValidationError_FunctionFilter_MissingFunctionMarkup { get { return T("TreeValidationError.FunctionFilter.MissingFunctionMarkup"); } } - /// "The function could not be created for the provided function markup" - public static string TreeValidationError_FunctionFilter_WrongFunctionMarkup { get { return T("TreeValidationError.FunctionFilter.WrongFunctionMarkup"); } } - /// "The function does not return value of the type '{0}'" - public static string TreeValidationError_FunctionFilter_WrongReturnValue(object parameter0) { return string.Format(T("TreeValidationError.FunctionFilter.WrongReturnValue"), parameter0); } - /// "The return type of the expression returned by the function is '{0}', '{1}' was expected" - public static string TreeValidationError_FunctionFilter_WrongFunctionReturnType(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.FunctionFilter.WrongFunctionReturnType"), parameter0,parameter1); } - /// "The parameter count of expression returned by the function is '{0}', 1 was expected" - public static string TreeValidationError_FunctionFilter_WrongFunctionParameterCount(object parameter0) { return string.Format(T("TreeValidationError.FunctionFilter.WrongFunctionParameterCount"), parameter0); } - /// "The expressions parameter type returned by the function is '{0}', '{1}' was expected" - public static string TreeValidationError_FunctionFilter_WrongFunctionParameterType(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.FunctionFilter.WrongFunctionParameterType"), parameter0,parameter1); } - /// "The function does not return value of the type '{0}'" - public static string TreeValidationError_ReportFunctionAction_WrongReturnValue(object parameter0) { return string.Format(T("TreeValidationError.ReportFunctionAction.WrongReturnValue"), parameter0); } - /// "The file '{0}' does not exist" - public static string TreeValidationError_GenericAddDataAction_MissingMarkupFile(object parameter0) { return string.Format(T("TreeValidationError.GenericAddDataAction.MissingMarkupFile"), parameter0); } - /// "The custom markup path '{0}' is wrongly formatted. Use ~/Dir1/Dir2/File.xml" - public static string TreeValidationError_GenericAddDataAction_BadMarkupPath(object parameter0) { return string.Format(T("TreeValidationError.GenericAddDataAction.BadMarkupPath"), parameter0); } - /// "The edit data action only applies to elements that produce data elements" - public static string TreeValidationError_GenericEditDataAction_OwnerIsNotDataNode { get { return T("TreeValidationError.GenericEditDataAction.OwnerIsNotDataNode"); } } - /// "The file '{0}' does not exist" - public static string TreeValidationError_GenericEditDataAction_MissingMarkupFile(object parameter0) { return string.Format(T("TreeValidationError.GenericEditDataAction.MissingMarkupFile"), parameter0); } - /// "The custom markup path '{0}' is wrongly formatted. Use ~/Dir1/Dir2/File.xml" - public static string TreeValidationError_GenericEditDataAction_BadMarkupPath(object parameter0) { return string.Format(T("TreeValidationError.GenericEditDataAction.BadMarkupPath"), parameter0); } - /// "The delete data action only applies to elements that produce data elements" - public static string TreeValidationError_GenericDeleteDataAction_OwnerIsNotDataNode { get { return T("TreeValidationError.GenericDeleteDataAction.OwnerIsNotDataNode"); } } - /// "The dialog type '{0}' is not supported" - public static string TreeValidationError_MessageBoxAction_UnknownDialogType(object parameter0) { return string.Format(T("TreeValidationError.MessageBoxAction.UnknownDialogType"), parameter0); } - /// "Too many '{0}' elements, only one is allowed" - public static string TreeValidationError_CustomUrlAction_TooManyPostParameterElements(object parameter0) { return string.Format(T("TreeValidationError.CustomUrlAction.TooManyPostParameterElements"), parameter0); } - /// "The view type '{0}' is not supported" - public static string TreeValidationError_CustomUrlAction_UnknownViewType(object parameter0) { return string.Format(T("TreeValidationError.CustomUrlAction.UnknownViewType"), parameter0); } - /// "The direction value '{0}' is wrong, should be either 'ascending' or 'descending'" - public static string TreeValidationError_FieldOrderBy_UnknownDirection(object parameter0) { return string.Format(T("TreeValidationError.FieldOrderBy.UnknownDirection"), parameter0); } - /// "The type '{0}' does not contain a field named '{1}'" - public static string TreeValidationError_FieldOrderBy_UnknownField(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.FieldOrderBy.UnknownField"), parameter0,parameter1); } - /// "'{0}' is in wrong format, use the format: {1}" - public static string TreeValidationError_DataFieldValueHelper_WrongFormat(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.DataFieldValueHelper.WrongFormat"), parameter0,parameter1); } - /// "The interface '{0}' is not contained in the current element or any of its parents" - public static string TreeValidationError_DataFieldValueHelper_InterfaceNotInParentTree(object parameter0) { return string.Format(T("TreeValidationError.DataFieldValueHelper.InterfaceNotInParentTree"), parameter0); } - /// "The range value is wrongly formatted" - public static string TreeValidationError_Range_WrongFormat { get { return T("TreeValidationError.Range.WrongFormat"); } } - /// "The property '{0}' is of type '{1}' which does not support ranges" - public static string TreeValidationError_Range_UnsupportedType(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.Range.UnsupportedType"), parameter0,parameter1); } - /// "The value first value ({0}) in a range should be lesser than second value ({1})" - public static string TreeValidationError_Range_MinMaxError(object parameter0,object parameter1) { return string.Format(T("TreeValidationError.Range.MinMaxError"), parameter0,parameter1); } - /// "The max value of a range should be less than the min value of the succeeding range" - public static string TreeValidationError_Range_NextRangeError { get { return T("TreeValidationError.Range.NextRangeError"); } } - /// "From {0} to {1}" - public static string TreeRanges_IntRange_Closed(object parameter0,object parameter1) { return string.Format(T("TreeRanges.IntRange.Closed"), parameter0,parameter1); } - /// "{0} or less" - public static string TreeRanges_IntRange_MinOpenEnded(object parameter0) { return string.Format(T("TreeRanges.IntRange.MinOpenEnded"), parameter0); } - /// "{0} or more" - public static string TreeRanges_IntRange_MaxOpenEnded(object parameter0) { return string.Format(T("TreeRanges.IntRange.MaxOpenEnded"), parameter0); } - /// "Other" - public static string TreeRanges_IntRange_Other { get { return T("TreeRanges.IntRange.Other"); } } - /// "From {0} to {1}" - public static string TreeRanges_StringRange_Closed(object parameter0,object parameter1) { return string.Format(T("TreeRanges.StringRange.Closed"), parameter0,parameter1); } - /// "{0} and before" - public static string TreeRanges_StringRange_MinOpenEnded(object parameter0) { return string.Format(T("TreeRanges.StringRange.MinOpenEnded"), parameter0); } - /// "{0} and after" - public static string TreeRanges_StringRange_MaxOpenEnded(object parameter0) { return string.Format(T("TreeRanges.StringRange.MaxOpenEnded"), parameter0); } - /// "Other" - public static string TreeRanges_StringRange_Other { get { return T("TreeRanges.StringRange.Other"); } } - /// "Add" - public static string GenericAddDataAction_DefaultLabel { get { return T("GenericAddDataAction.DefaultLabel"); } } - /// "Edit" - public static string GenericEditDataAction_DefaultLabel { get { return T("GenericEditDataAction.DefaultLabel"); } } - /// "Delete" - public static string GenericDeleteDataAction_DefaultLabel { get { return T("GenericDeleteDataAction.DefaultLabel"); } } - /// "Cascade delete error" - public static string TreeGenericDelete_CascadeDeleteErrorTitle { get { return T("TreeGenericDelete.CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string TreeGenericDelete_CascadeDeleteErrorMessage { get { return T("TreeGenericDelete.CascadeDeleteErrorMessage"); } } - /// "Delete Data?" - public static string TreeGenericDeleteConfirm_LabelFieldGroup { get { return T("TreeGenericDeleteConfirm.LabelFieldGroup"); } } - /// "Delete" - public static string TreeGenericDeleteConfirm_Text { get { return T("TreeGenericDeleteConfirm.Text"); } } - /// "Delete data?" - public static string TreeGenericDeleteConfirmDeletingRelatedData_LabelFieldGroup { get { return T("TreeGenericDeleteConfirmDeletingRelatedData.LabelFieldGroup"); } } - /// "There is some referenced data that will also be deleted, do you want to continue?" - public static string TreeGenericDeleteConfirmDeletingRelatedData_ConfirmationText { get { return T("TreeGenericDeleteConfirmDeletingRelatedData.ConfirmationText"); } } - /// "Add" - public static string TreeAddTreeDefinitionWorkflow_AddNew_Label { get { return T("TreeAddTreeDefinitionWorkflow.AddNew.Label"); } } - /// "Add new tree definition" - public static string TreeAddTreeDefinitionWorkflow_AddNew_ToolTip { get { return T("TreeAddTreeDefinitionWorkflow.AddNew.ToolTip"); } } - /// "Add new tree definition" - public static string TreeAddTreeDefinition_Layout_Label { get { return T("TreeAddTreeDefinition.Layout.Label"); } } - /// "Add new tree definition" - public static string TreeAddTreeDefinition_FieldGroup_Label { get { return T("TreeAddTreeDefinition.FieldGroup.Label"); } } - /// "Definition name" - public static string TreeAddTreeDefinition_NameTextBox_Label { get { return T("TreeAddTreeDefinition.NameTextBox.Label"); } } - /// "Definition name" - public static string TreeAddTreeDefinition_NameTextBox_Help { get { return T("TreeAddTreeDefinition.NameTextBox.Help"); } } - /// "Template" - public static string TreeAddTreeDefinition_TemplateSelector_Label { get { return T("TreeAddTreeDefinition.TemplateSelector.Label"); } } - /// "Select a template to start with" - public static string TreeAddTreeDefinition_TemplateSelector_Help { get { return T("TreeAddTreeDefinition.TemplateSelector.Help"); } } - /// "Position" - public static string TreeAddTreeDefinition_PositionSelector_Label { get { return T("TreeAddTreeDefinition.PositionSelector.Label"); } } - /// "Position" - public static string TreeAddTreeDefinition_PositionSelector_Help { get { return T("TreeAddTreeDefinition.PositionSelector.Help"); } } - /// "Delete" - public static string TreeDeleteTreeDefinitionWorkflow_Delete_Label { get { return T("TreeDeleteTreeDefinitionWorkflow.Delete.Label"); } } - /// "Delete tree definition" - public static string TreeDeleteTreeDefinitionWorkflow_Delete_ToolTip { get { return T("TreeDeleteTreeDefinitionWorkflow.Delete.ToolTip"); } } - /// "Delete tree definition" - public static string TreeDeleteTreeDefinition_Layout_Label { get { return T("TreeDeleteTreeDefinition.Layout.Label"); } } - /// "Delete selected tree definition" - public static string TreeDeleteTreeDefinition_Title { get { return T("TreeDeleteTreeDefinition.Title"); } } - /// "Delete selected tree definition?" - public static string TreeDeleteTreeDefinition_Description { get { return T("TreeDeleteTreeDefinition.Description"); } } - /// "Edit" - public static string TreeDeleteTreeDefinitionWorkflow_Edit_Label { get { return T("TreeDeleteTreeDefinitionWorkflow.Edit.Label"); } } - /// "Edit tree definition" - public static string TreeDeleteTreeDefinitionWorkflow_Edit_ToolTip { get { return T("TreeDeleteTreeDefinitionWorkflow.Edit.ToolTip"); } } - /// "Add Application" - public static string AddApplicationWorkflow_AddApplication_Label { get { return T("AddApplicationWorkflow.AddApplication.Label"); } } - /// "Add new application" - public static string AddApplicationWorkflow_AddApplication_ToolTip { get { return T("AddApplicationWorkflow.AddApplication.ToolTip"); } } - /// "Add application" - public static string AddApplication_Layout_Label { get { return T("AddApplication.Layout.Label"); } } - /// "Select application" - public static string AddApplication_FieldGroup_Label { get { return T("AddApplication.FieldGroup.Label"); } } - /// "Application" - public static string AddApplication_TreeIdSelector_Label { get { return T("AddApplication.TreeIdSelector.Label"); } } - /// "Select the application that you wish to add" - public static string AddApplication_TreeIdSelector_Help { get { return T("AddApplication.TreeIdSelector.Help"); } } - /// "Position" - public static string AddApplication_PositionSelector_Label { get { return T("AddApplication.PositionSelector.Label"); } } - /// "The position to insert this application" - public static string AddApplication_PositionSelector_Help { get { return T("AddApplication.PositionSelector.Help"); } } - /// "No applications" - public static string AddApplication_NoTrees_Title { get { return T("AddApplication.NoTrees.Title"); } } - /// "You have added all available applications" - public static string AddApplication_NoTrees_Message { get { return T("AddApplication.NoTrees.Message"); } } - /// "Remove Application" - public static string RemoveApplicationWorkflow_RemoveApplication_Label { get { return T("RemoveApplicationWorkflow.RemoveApplication.Label"); } } - /// "Remove existing application" - public static string RemoveApplicationWorkflow_RemoveApplication_ToolTip { get { return T("RemoveApplicationWorkflow.RemoveApplication.ToolTip"); } } - /// "Remove application" - public static string RemoveApplication_Layout_Label { get { return T("RemoveApplication.Layout.Label"); } } - /// "Remove application" - public static string RemoveApplication_FieldGroup_Label { get { return T("RemoveApplication.FieldGroup.Label"); } } - /// "Application" - public static string RemoveApplication_TreeIdSelector_Label { get { return T("RemoveApplication.TreeIdSelector.Label"); } } - /// "Select the application that you wish to remove" - public static string RemoveApplication_TreeIdSelector_Help { get { return T("RemoveApplication.TreeIdSelector.Help"); } } - /// "No applications" - public static string RemoveApplication_NoTrees_Title { get { return T("RemoveApplication.NoTrees.Title"); } } - /// "You have removed all available applications" - public static string RemoveApplication_NoTrees_Message { get { return T("RemoveApplication.NoTrees.Message"); } } - /// "Translate data" - public static string LocalizeDataWorkflow_LocalizeDataLabel { get { return T("LocalizeDataWorkflow.LocalizeDataLabel"); } } - /// "Translate data" - public static string LocalizeDataWorkflow_LocalizeDataToolTip { get { return T("LocalizeDataWorkflow.LocalizeDataToolTip"); } } - /// "Not yet approved or published" - public static string LocalizeDataWorkflow_DisabledData { get { return T("LocalizeDataWorkflow.DisabledData"); } } - /// "Failed to translate data" - public static string LocalizeData_ShowError_Layout_Label { get { return T("LocalizeData.ShowError.Layout.Label"); } } - /// "Translation errors" - public static string LocalizeData_ShowError_InfoTable_Caption { get { return T("LocalizeData.ShowError.InfoTable.Caption"); } } - /// "The following fields has a reference to a data type. You should translate these data items before you can translate this data item" - public static string LocalizeData_ShowError_Description { get { return T("LocalizeData.ShowError.Description"); } } - /// "The field '{0}' is referencing data of type '{1}' with the label '{2}'" - public static string LocalizeData_ShowError_FieldErrorFormat(object parameter0,object parameter1,object parameter2) { return string.Format(T("LocalizeData.ShowError.FieldErrorFormat"), parameter0,parameter1,parameter2); } - /// "This data has already been translated. The translated version belongs to a different group." - public static string LocalizeData_ShowError_AlreadyTranslated { get { return T("LocalizeData.ShowError.AlreadyTranslated"); } } +///"Error in tree" +public static string KeyFacade_ErrorTreeNode_Label=>T("KeyFacade.ErrorTreeNode.Label"); +///"Show Message" +public static string KeyFacade_ErrorTreeNode_ShowMessage_Label=>T("KeyFacade.ErrorTreeNode.ShowMessage.Label"); +///"Show Error Message" +public static string KeyFacade_ErrorTreeNode_ShowMessage_ToolTip=>T("KeyFacade.ErrorTreeNode.ShowMessage.ToolTip"); +///"Error message" +public static string KeyFacade_ErrorTreeNode_ShowMessage_Title=>T("KeyFacade.ErrorTreeNode.ShowMessage.Title"); +///"Unknown exception happened: '{0}'" +public static string TreeValidationError_Common_UnknownException(object parameter0)=>string.Format(T("TreeValidationError.Common.UnknownException"), parameter0); +///"Unknown element '{0}'" +public static string TreeValidationError_Common_UnknownElement(object parameter0)=>string.Format(T("TreeValidationError.Common.UnknownElement"), parameter0); +///"The required attribute '{0}' is missing" +public static string TreeValidationError_Common_MissingAttribute(object parameter0)=>string.Format(T("TreeValidationError.Common.MissingAttribute"), parameter0); +///"The attribute '{0}' has a value that is not allowed" +public static string TreeValidationError_Common_WrongAttributeValue(object parameter0)=>string.Format(T("TreeValidationError.Common.WrongAttributeValue"), parameter0); +///"The type '{0}' does not contain a property named '{1}'" +public static string TreeValidationError_Common_MissingProperty(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.Common.MissingProperty"), parameter0,parameter1); +///"The type '{0}' could not be found" +public static string TreeValidationError_Common_UnknownInterfaceType(object parameter0)=>string.Format(T("TreeValidationError.Common.UnknownInterfaceType"), parameter0); +///"The type '{0}' does not implement the interface '{1}'" +public static string TreeValidationError_Common_NotImplementingIData(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.Common.NotImplementingIData"), parameter0,parameter1); +///"The value '{0}' is not allowed as a permission type value" +public static string TreeValidationError_Common_WrongPermissionValue(object parameter0)=>string.Format(T("TreeValidationError.Common.WrongPermissionValue"), parameter0); +///"The value '{0}' is not allowed as a location value" +public static string TreeValidationError_Common_WrongLocationValue(object parameter0)=>string.Format(T("TreeValidationError.Common.WrongLocationValue"), parameter0); +///"No function markup provided as a child element" +public static string TreeValidationError_Common_MissingFunctionMarkup=>T("TreeValidationError.Common.MissingFunctionMarkup"); +///"The function could not be created for the provided function markup" +public static string TreeValidationError_Common_WrongFunctionMarkup=>T("TreeValidationError.Common.WrongFunctionMarkup"); +///"Missing root element in tree markup" +public static string TreeValidationError_Markup_NoRootElement=>T("TreeValidationError.Markup.NoRootElement"); +///"Syntax error: {0} at line {1} position {2}" +public static string TreeValidationError_Markup_SchemaError(object parameter0,object parameter1,object parameter2)=>string.Format(T("TreeValidationError.Markup.SchemaError"), parameter0,parameter1,parameter2); +///"The attachment point '{0}' is unknown" +public static string TreeValidationError_AutoAttachments_UnknownAttachmentPoint(object parameter0)=>string.Format(T("TreeValidationError.AutoAttachments.UnknownAttachmentPoint"), parameter0); +///"The attachment position '{0}' is unknown" +public static string TreeValidationError_AutoAttachments_UnknownAttachmentPosition(object parameter0)=>string.Format(T("TreeValidationError.AutoAttachments.UnknownAttachmentPosition"), parameter0); +///"No elements are allowed in trees that are used with data attached trees" +public static string TreeValidationError_DataAttachments_NoElementsAllowed=>T("TreeValidationError.DataAttachments.NoElementsAllowed"); +///"ShareRootElementById is only allowed if the tree has a single named attachment point" +public static string TreeValidationError_ElementRoot_ShareRootElementByIdNotAllowed=>T("TreeValidationError.ElementRoot.ShareRootElementByIdNotAllowed"); +///"The value of the Id is not allowed. The Id should be non-empty, not start with NodeAutoId_ and not be RootTreeNode" +public static string TreeValidationError_SimpleElement_WrongIdValue=>T("TreeValidationError.SimpleElement.WrongIdValue"); +///"The id value '{0}' has already been used in this tree" +public static string TreeValidationError_SimpleElement_AlreadyUsedId(object parameter0)=>string.Format(T("TreeValidationError.SimpleElement.AlreadyUsedId"), parameter0); +///"The data interface '{0}' is used more than once as a child under the same parent element and this is not allowed" +public static string TreeValidationError_DataElementsTreeNode_SameInterfaceUsedTwice(object parameter0)=>string.Format(T("TreeValidationError.DataElementsTreeNode.SameInterfaceUsedTwice"), parameter0); +///"The same interface '{0}' is used as parent type as parent filter and this is not allowed" +public static string TreeValidationError_DataElementsTreeNode_SameParentFilterInterfaceUsedTwice(object parameter0)=>string.Format(T("TreeValidationError.DataElementsTreeNode.SameParentFilterInterfaceUsedTwice"), parameter0); +///"More than one parent filter is pointing to the interface '{0}'. Change the Display value to Lazy" +public static string TreeValidationError_DataElementsTreeNode_MoreThanOnParentFilterIsPointingToMe(object parameter0)=>string.Format(T("TreeValidationError.DataElementsTreeNode.MoreThanOnParentFilterIsPointingToMe"), parameter0); +///"Type attribute is missing" +public static string TreeValidationError_DataFolderElements_MissingInterfaceType=>T("TreeValidationError.DataFolderElements.MissingInterfaceType"); +///"The interface type '{0}' does not match the parent elements interface type '{1}'" +public static string TreeValidationError_DataFolderElements_WrongInterfaceType(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.DataFolderElements.WrongInterfaceType"), parameter0,parameter1); +///"DateFormat attribute requires that the property '{0}' should be of type '{1}' but is type '{2}'" +public static string TreeValidationError_DataFolderElements_DateFormetNotAllowed(object parameter0,object parameter1,object parameter2)=>string.Format(T("TreeValidationError.DataFolderElements.DateFormetNotAllowed"), parameter0,parameter1,parameter2); +///"The property '{0}' is of type Date and this requires the DateFormat attribute to be present" +public static string TreeValidationError_DataFolderElements_DateFormetIsMissing(object parameter0)=>string.Format(T("TreeValidationError.DataFolderElements.DateFormetIsMissing"), parameter0); +///"Ranges and first-letter-only not allowed at the same time" +public static string TreeValidationError_DataFolderElements_RangesAndFirstLetterOnlyNotAllowed=>T("TreeValidationError.DataFolderElements.RangesAndFirstLetterOnlyNotAllowed"); +///"First-letter-only requires that the property '{0}' should be of type '{1}' but is type '{2}'" +public static string TreeValidationError_DataFolderElements_WrongFirstLetterOnlyPropertyType(object parameter0,object parameter1,object parameter2)=>string.Format(T("TreeValidationError.DataFolderElements.WrongFirstLetterOnlyPropertyType"), parameter0,parameter1,parameter2); +///"Only data child elements with the same interface type as the folder grouping ('{0}') are allowed" +public static string TreeValidationError_DataFolderElements_WrongDateChildInterfaceType(object parameter0)=>string.Format(T("TreeValidationError.DataFolderElements.WrongDateChildInterfaceType"), parameter0); +///"Switching from the interface type '{0}' to a different interface type '{1}' is not allowed in the same folder grouping group" +public static string TreeValidationError_DataFolderElements_InterfaceTypeSwitchNotAllowed(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.DataFolderElements.InterfaceTypeSwitchNotAllowed"), parameter0,parameter1); +///"Using the field name '{0}' twice in the same grouping tree is not allowed" +public static string TreeValidationError_DataFolderElements_SameFieldUsedTwice(object parameter0)=>string.Format(T("TreeValidationError.DataFolderElements.SameFieldUsedTwice"), parameter0); +///"Maximum one parent id filter node can be used on data elements used in groupings" +public static string TreeValidationError_DataFolderElements_TooManyParentIdFilters=>T("TreeValidationError.DataFolderElements.TooManyParentIdFilters"); +///"The type '{0}' is not in the parent tree of this node or specified as an attachment points type" +public static string TreeValidationError_ParentIdFilterNode_TypeIsNotInParentTree(object parameter0)=>string.Format(T("TreeValidationError.ParentIdFilterNode.TypeIsNotInParentTree"), parameter0); +///"The operator '{0}' is unknown or not supported" +public static string TreeValidationError_FieldFilter_UnknownOperatorName(object parameter0)=>string.Format(T("TreeValidationError.FieldFilter.UnknownOperatorName"), parameter0); +///"The string value '{0}' could not be converted to the type '{1}'" +public static string TreeValidationError_FieldFilter_ValueCouldNotBeConverted(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.FieldFilter.ValueCouldNotBeConverted"), parameter0,parameter1); +///"The operator '{0}' is not supported for the type '{1}'" +public static string TreeValidationError_FieldFilter_OperatorNotSupportedForType(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.FieldFilter.OperatorNotSupportedForType"), parameter0,parameter1); +///"Function markup is missing" +public static string TreeValidationError_FunctionFilter_MissingFunctionMarkup=>T("TreeValidationError.FunctionFilter.MissingFunctionMarkup"); +///"The function could not be created for the provided function markup" +public static string TreeValidationError_FunctionFilter_WrongFunctionMarkup=>T("TreeValidationError.FunctionFilter.WrongFunctionMarkup"); +///"The function does not return value of the type '{0}'" +public static string TreeValidationError_FunctionFilter_WrongReturnValue(object parameter0)=>string.Format(T("TreeValidationError.FunctionFilter.WrongReturnValue"), parameter0); +///"The return type of the expression returned by the function is '{0}', '{1}' was expected" +public static string TreeValidationError_FunctionFilter_WrongFunctionReturnType(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.FunctionFilter.WrongFunctionReturnType"), parameter0,parameter1); +///"The parameter count of expression returned by the function is '{0}', 1 was expected" +public static string TreeValidationError_FunctionFilter_WrongFunctionParameterCount(object parameter0)=>string.Format(T("TreeValidationError.FunctionFilter.WrongFunctionParameterCount"), parameter0); +///"The expressions parameter type returned by the function is '{0}', '{1}' was expected" +public static string TreeValidationError_FunctionFilter_WrongFunctionParameterType(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.FunctionFilter.WrongFunctionParameterType"), parameter0,parameter1); +///"The function does not return value of the type '{0}'" +public static string TreeValidationError_ReportFunctionAction_WrongReturnValue(object parameter0)=>string.Format(T("TreeValidationError.ReportFunctionAction.WrongReturnValue"), parameter0); +///"The file '{0}' does not exist" +public static string TreeValidationError_GenericAddDataAction_MissingMarkupFile(object parameter0)=>string.Format(T("TreeValidationError.GenericAddDataAction.MissingMarkupFile"), parameter0); +///"The custom markup path '{0}' is wrongly formatted. Use ~/Dir1/Dir2/File.xml" +public static string TreeValidationError_GenericAddDataAction_BadMarkupPath(object parameter0)=>string.Format(T("TreeValidationError.GenericAddDataAction.BadMarkupPath"), parameter0); +///"The edit data action only applies to elements that produce data elements" +public static string TreeValidationError_GenericEditDataAction_OwnerIsNotDataNode=>T("TreeValidationError.GenericEditDataAction.OwnerIsNotDataNode"); +///"The file '{0}' does not exist" +public static string TreeValidationError_GenericEditDataAction_MissingMarkupFile(object parameter0)=>string.Format(T("TreeValidationError.GenericEditDataAction.MissingMarkupFile"), parameter0); +///"The custom markup path '{0}' is wrongly formatted. Use ~/Dir1/Dir2/File.xml" +public static string TreeValidationError_GenericEditDataAction_BadMarkupPath(object parameter0)=>string.Format(T("TreeValidationError.GenericEditDataAction.BadMarkupPath"), parameter0); +///"The delete data action only applies to elements that produce data elements" +public static string TreeValidationError_GenericDeleteDataAction_OwnerIsNotDataNode=>T("TreeValidationError.GenericDeleteDataAction.OwnerIsNotDataNode"); +///"The dialog type '{0}' is not supported" +public static string TreeValidationError_MessageBoxAction_UnknownDialogType(object parameter0)=>string.Format(T("TreeValidationError.MessageBoxAction.UnknownDialogType"), parameter0); +///"Too many '{0}' elements, only one is allowed" +public static string TreeValidationError_CustomUrlAction_TooManyPostParameterElements(object parameter0)=>string.Format(T("TreeValidationError.CustomUrlAction.TooManyPostParameterElements"), parameter0); +///"The view type '{0}' is not supported" +public static string TreeValidationError_CustomUrlAction_UnknownViewType(object parameter0)=>string.Format(T("TreeValidationError.CustomUrlAction.UnknownViewType"), parameter0); +///"The direction value '{0}' is wrong, should be either 'ascending' or 'descending'" +public static string TreeValidationError_FieldOrderBy_UnknownDirection(object parameter0)=>string.Format(T("TreeValidationError.FieldOrderBy.UnknownDirection"), parameter0); +///"The type '{0}' does not contain a field named '{1}'" +public static string TreeValidationError_FieldOrderBy_UnknownField(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.FieldOrderBy.UnknownField"), parameter0,parameter1); +///"'{0}' is in wrong format, use the format: {1}" +public static string TreeValidationError_DataFieldValueHelper_WrongFormat(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.DataFieldValueHelper.WrongFormat"), parameter0,parameter1); +///"The interface '{0}' is not contained in the current element or any of its parents" +public static string TreeValidationError_DataFieldValueHelper_InterfaceNotInParentTree(object parameter0)=>string.Format(T("TreeValidationError.DataFieldValueHelper.InterfaceNotInParentTree"), parameter0); +///"The range value is wrongly formatted" +public static string TreeValidationError_Range_WrongFormat=>T("TreeValidationError.Range.WrongFormat"); +///"The property '{0}' is of type '{1}' which does not support ranges" +public static string TreeValidationError_Range_UnsupportedType(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.Range.UnsupportedType"), parameter0,parameter1); +///"The value first value ({0}) in a range should be lesser than second value ({1})" +public static string TreeValidationError_Range_MinMaxError(object parameter0,object parameter1)=>string.Format(T("TreeValidationError.Range.MinMaxError"), parameter0,parameter1); +///"The max value of a range should be less than the min value of the succeeding range" +public static string TreeValidationError_Range_NextRangeError=>T("TreeValidationError.Range.NextRangeError"); +///"From {0} to {1}" +public static string TreeRanges_IntRange_Closed(object parameter0,object parameter1)=>string.Format(T("TreeRanges.IntRange.Closed"), parameter0,parameter1); +///"{0} or less" +public static string TreeRanges_IntRange_MinOpenEnded(object parameter0)=>string.Format(T("TreeRanges.IntRange.MinOpenEnded"), parameter0); +///"{0} or more" +public static string TreeRanges_IntRange_MaxOpenEnded(object parameter0)=>string.Format(T("TreeRanges.IntRange.MaxOpenEnded"), parameter0); +///"Other" +public static string TreeRanges_IntRange_Other=>T("TreeRanges.IntRange.Other"); +///"From {0} to {1}" +public static string TreeRanges_StringRange_Closed(object parameter0,object parameter1)=>string.Format(T("TreeRanges.StringRange.Closed"), parameter0,parameter1); +///"{0} and before" +public static string TreeRanges_StringRange_MinOpenEnded(object parameter0)=>string.Format(T("TreeRanges.StringRange.MinOpenEnded"), parameter0); +///"{0} and after" +public static string TreeRanges_StringRange_MaxOpenEnded(object parameter0)=>string.Format(T("TreeRanges.StringRange.MaxOpenEnded"), parameter0); +///"Other" +public static string TreeRanges_StringRange_Other=>T("TreeRanges.StringRange.Other"); +///"Add" +public static string GenericAddDataAction_DefaultLabel=>T("GenericAddDataAction.DefaultLabel"); +///"Edit" +public static string GenericEditDataAction_DefaultLabel=>T("GenericEditDataAction.DefaultLabel"); +///"Delete" +public static string GenericDeleteDataAction_DefaultLabel=>T("GenericDeleteDataAction.DefaultLabel"); +///"Cascade delete error" +public static string TreeGenericDelete_CascadeDeleteErrorTitle=>T("TreeGenericDelete.CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string TreeGenericDelete_CascadeDeleteErrorMessage=>T("TreeGenericDelete.CascadeDeleteErrorMessage"); +///"Delete Data?" +public static string TreeGenericDeleteConfirm_LabelFieldGroup=>T("TreeGenericDeleteConfirm.LabelFieldGroup"); +///"Delete" +public static string TreeGenericDeleteConfirm_Text=>T("TreeGenericDeleteConfirm.Text"); +///"Delete data?" +public static string TreeGenericDeleteConfirmDeletingRelatedData_LabelFieldGroup=>T("TreeGenericDeleteConfirmDeletingRelatedData.LabelFieldGroup"); +///"There is some referenced data that will also be deleted, do you want to continue?" +public static string TreeGenericDeleteConfirmDeletingRelatedData_ConfirmationText=>T("TreeGenericDeleteConfirmDeletingRelatedData.ConfirmationText"); +///"Add" +public static string TreeAddTreeDefinitionWorkflow_AddNew_Label=>T("TreeAddTreeDefinitionWorkflow.AddNew.Label"); +///"Add new tree definition" +public static string TreeAddTreeDefinitionWorkflow_AddNew_ToolTip=>T("TreeAddTreeDefinitionWorkflow.AddNew.ToolTip"); +///"Add new tree definition" +public static string TreeAddTreeDefinition_Layout_Label=>T("TreeAddTreeDefinition.Layout.Label"); +///"Add new tree definition" +public static string TreeAddTreeDefinition_FieldGroup_Label=>T("TreeAddTreeDefinition.FieldGroup.Label"); +///"Definition name" +public static string TreeAddTreeDefinition_NameTextBox_Label=>T("TreeAddTreeDefinition.NameTextBox.Label"); +///"Definition name" +public static string TreeAddTreeDefinition_NameTextBox_Help=>T("TreeAddTreeDefinition.NameTextBox.Help"); +///"Template" +public static string TreeAddTreeDefinition_TemplateSelector_Label=>T("TreeAddTreeDefinition.TemplateSelector.Label"); +///"Select a template to start with" +public static string TreeAddTreeDefinition_TemplateSelector_Help=>T("TreeAddTreeDefinition.TemplateSelector.Help"); +///"Position" +public static string TreeAddTreeDefinition_PositionSelector_Label=>T("TreeAddTreeDefinition.PositionSelector.Label"); +///"Position" +public static string TreeAddTreeDefinition_PositionSelector_Help=>T("TreeAddTreeDefinition.PositionSelector.Help"); +///"Delete" +public static string TreeDeleteTreeDefinitionWorkflow_Delete_Label=>T("TreeDeleteTreeDefinitionWorkflow.Delete.Label"); +///"Delete tree definition" +public static string TreeDeleteTreeDefinitionWorkflow_Delete_ToolTip=>T("TreeDeleteTreeDefinitionWorkflow.Delete.ToolTip"); +///"Delete tree definition" +public static string TreeDeleteTreeDefinition_Layout_Label=>T("TreeDeleteTreeDefinition.Layout.Label"); +///"Delete selected tree definition" +public static string TreeDeleteTreeDefinition_Title=>T("TreeDeleteTreeDefinition.Title"); +///"Delete selected tree definition?" +public static string TreeDeleteTreeDefinition_Description=>T("TreeDeleteTreeDefinition.Description"); +///"Edit" +public static string TreeDeleteTreeDefinitionWorkflow_Edit_Label=>T("TreeDeleteTreeDefinitionWorkflow.Edit.Label"); +///"Edit tree definition" +public static string TreeDeleteTreeDefinitionWorkflow_Edit_ToolTip=>T("TreeDeleteTreeDefinitionWorkflow.Edit.ToolTip"); +///"Add Application" +public static string AddApplicationWorkflow_AddApplication_Label=>T("AddApplicationWorkflow.AddApplication.Label"); +///"Add new application" +public static string AddApplicationWorkflow_AddApplication_ToolTip=>T("AddApplicationWorkflow.AddApplication.ToolTip"); +///"Add application" +public static string AddApplication_Layout_Label=>T("AddApplication.Layout.Label"); +///"Select application" +public static string AddApplication_FieldGroup_Label=>T("AddApplication.FieldGroup.Label"); +///"Application" +public static string AddApplication_TreeIdSelector_Label=>T("AddApplication.TreeIdSelector.Label"); +///"Select the application that you wish to add" +public static string AddApplication_TreeIdSelector_Help=>T("AddApplication.TreeIdSelector.Help"); +///"Position" +public static string AddApplication_PositionSelector_Label=>T("AddApplication.PositionSelector.Label"); +///"The position to insert this application" +public static string AddApplication_PositionSelector_Help=>T("AddApplication.PositionSelector.Help"); +///"No applications" +public static string AddApplication_NoTrees_Title=>T("AddApplication.NoTrees.Title"); +///"You have added all available applications" +public static string AddApplication_NoTrees_Message=>T("AddApplication.NoTrees.Message"); +///"Remove Application" +public static string RemoveApplicationWorkflow_RemoveApplication_Label=>T("RemoveApplicationWorkflow.RemoveApplication.Label"); +///"Remove existing application" +public static string RemoveApplicationWorkflow_RemoveApplication_ToolTip=>T("RemoveApplicationWorkflow.RemoveApplication.ToolTip"); +///"Remove application" +public static string RemoveApplication_Layout_Label=>T("RemoveApplication.Layout.Label"); +///"Remove application" +public static string RemoveApplication_FieldGroup_Label=>T("RemoveApplication.FieldGroup.Label"); +///"Application" +public static string RemoveApplication_TreeIdSelector_Label=>T("RemoveApplication.TreeIdSelector.Label"); +///"Select the application that you wish to remove" +public static string RemoveApplication_TreeIdSelector_Help=>T("RemoveApplication.TreeIdSelector.Help"); +///"No applications" +public static string RemoveApplication_NoTrees_Title=>T("RemoveApplication.NoTrees.Title"); +///"You have removed all available applications" +public static string RemoveApplication_NoTrees_Message=>T("RemoveApplication.NoTrees.Message"); +///"Translate data" +public static string LocalizeDataWorkflow_LocalizeDataLabel=>T("LocalizeDataWorkflow.LocalizeDataLabel"); +///"Translate data" +public static string LocalizeDataWorkflow_LocalizeDataToolTip=>T("LocalizeDataWorkflow.LocalizeDataToolTip"); +///"Not yet approved or published" +public static string LocalizeDataWorkflow_DisabledData=>T("LocalizeDataWorkflow.DisabledData"); +///"Failed to translate data" +public static string LocalizeData_ShowError_Layout_Label=>T("LocalizeData.ShowError.Layout.Label"); +///"Translation errors" +public static string LocalizeData_ShowError_InfoTable_Caption=>T("LocalizeData.ShowError.InfoTable.Caption"); +///"The following fields has a reference to a data type. You should translate these data items before you can translate this data item" +public static string LocalizeData_ShowError_Description=>T("LocalizeData.ShowError.Description"); +///"The field '{0}' is referencing data of type '{1}' with the label '{2}'" +public static string LocalizeData_ShowError_FieldErrorFormat(object parameter0,object parameter1,object parameter2)=>string.Format(T("LocalizeData.ShowError.FieldErrorFormat"), parameter0,parameter1,parameter2); +///"This data has already been translated. The translated version belongs to a different group." +public static string LocalizeData_ShowError_AlreadyTranslated=>T("LocalizeData.ShowError.AlreadyTranslated"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.C1Console.Trees", key); @@ -302,102 +302,102 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_C1Console_Users { - /// "Change Password..." - public static string ChangeOwnPasswordWorkflow_ElementActionLabel { get { return T("ChangeOwnPasswordWorkflow.ElementActionLabel"); } } - /// "Change your password" - public static string ChangeOwnPasswordWorkflow_ElementActionToolTip { get { return T("ChangeOwnPasswordWorkflow.ElementActionToolTip"); } } - /// "Change Password" - public static string ChangeOwnPasswordWorkflow_Dialog_Label { get { return T("ChangeOwnPasswordWorkflow.Dialog.Label"); } } - /// "Existing password" - public static string ChangeOwnPasswordWorkflow_Dialog_ExistingPassword_Label { get { return T("ChangeOwnPasswordWorkflow.Dialog.ExistingPassword.Label"); } } - /// "For security reasons you must present your existing password before you can continue." - public static string ChangeOwnPasswordWorkflow_Dialog_ExistingPassword_Help { get { return T("ChangeOwnPasswordWorkflow.Dialog.ExistingPassword.Help"); } } - /// "New password" - public static string ChangeOwnPasswordWorkflow_Dialog_NewPassword_Label { get { return T("ChangeOwnPasswordWorkflow.Dialog.NewPassword.Label"); } } - /// "The password specified in this field must match the confirmation below." - public static string ChangeOwnPasswordWorkflow_Dialog_NewPassword_Help { get { return T("ChangeOwnPasswordWorkflow.Dialog.NewPassword.Help"); } } - /// "Confirm new password" - public static string ChangeOwnPasswordWorkflow_Dialog_NewPasswordConfirmed_Label { get { return T("ChangeOwnPasswordWorkflow.Dialog.NewPasswordConfirmed.Label"); } } - /// "The password specified in this field must match the one specified above." - public static string ChangeOwnPasswordWorkflow_Dialog_NewPasswordConfirmed_Help { get { return T("ChangeOwnPasswordWorkflow.Dialog.NewPasswordConfirmed.Help"); } } - /// "The specified password is incorrect." - public static string ChangeOwnPasswordWorkflow_Dialog_Validation_IncorrectPassword { get { return T("ChangeOwnPasswordWorkflow.Dialog.Validation.IncorrectPassword"); } } - /// "The new passwords you typed do not match." - public static string ChangeOwnPasswordWorkflow_Dialog_Validation_NewPasswordFieldsNotMatch { get { return T("ChangeOwnPasswordWorkflow.Dialog.Validation.NewPasswordFieldsNotMatch"); } } - /// "The old and the new passwords are the same." - public static string ChangeOwnPasswordWorkflow_Dialog_Validation_PasswordsAreTheSame { get { return T("ChangeOwnPasswordWorkflow.Dialog.Validation.PasswordsAreTheSame"); } } - /// "The new password may not be an empty string." - public static string ChangeOwnPasswordWorkflow_Dialog_Validation_NewPasswordIsEmpty { get { return T("ChangeOwnPasswordWorkflow.Dialog.Validation.NewPasswordIsEmpty"); } } - /// "The new password must be at least {0} characters long." - public static string ChangeOwnPasswordWorkflow_Dialog_Validation_NewPasswordTooShort(object parameter0) { return string.Format(T("ChangeOwnPasswordWorkflow.Dialog.Validation.NewPasswordTooShort"), parameter0); } - /// "Password change isn't supported." - public static string ChangeOwnPasswordWorkflow_NotSupportedErrorLabel { get { return T("ChangeOwnPasswordWorkflow.NotSupportedErrorLabel"); } } - /// "Password change isn't supported in current configuration." - public static string ChangeOwnPasswordWorkflow_NotSupportedErrorText { get { return T("ChangeOwnPasswordWorkflow.NotSupportedErrorText"); } } - /// "Regional Settings..." - public static string ChangeOwnCultureWorkflow_ElementActionLabel { get { return T("ChangeOwnCultureWorkflow.ElementActionLabel"); } } - /// "Set the C1 Console language and formatting of numbers, times and dates" - public static string ChangeOwnCultureWorkflow_ElementActionToolTip { get { return T("ChangeOwnCultureWorkflow.ElementActionToolTip"); } } - /// "Regional Settings and Language" - public static string ChangeOwnCultureWorkflow_Dialog_Label { get { return T("ChangeOwnCultureWorkflow.Dialog.Label"); } } - /// "Regional settings" - public static string ChangeOwnCultureWorkflow_Dialog_CultureSelector_Label { get { return T("ChangeOwnCultureWorkflow.Dialog.CultureSelector.Label"); } } - /// "To change the way numbers, dates, and hours are displayed, select an entry from the list." - public static string ChangeOwnCultureWorkflow_Dialog_CultureSelector_Help { get { return T("ChangeOwnCultureWorkflow.Dialog.CultureSelector.Help"); } } - /// "C1 Console language" - public static string ChangeOwnCultureWorkflow_Dialog_C1ConsoleLanguageSelector_Label { get { return T("ChangeOwnCultureWorkflow.Dialog.C1ConsoleLanguageSelector.Label"); } } - /// "Select the language to be used for labels, help texts, dialogs etc. The available options here are limited to languages installed. You may install more languages via the Package system, see Composite.Localization." - public static string ChangeOwnCultureWorkflow_Dialog_C1ConsoleLanguageSelector_Help { get { return T("ChangeOwnCultureWorkflow.Dialog.C1ConsoleLanguageSelector.Help"); } } - /// "Change application language" - public static string ChangeOwnCultureWorkflow_Dialog_Confirm_Title { get { return T("ChangeOwnCultureWorkflow.Dialog.Confirm.Title"); } } - /// "Are your sure you wish to change the settings? The application will restart and all your unsaved changes will be lost." - public static string ChangeOwnCultureWorkflow_Dialog_Confirm_Text { get { return T("ChangeOwnCultureWorkflow.Dialog.Confirm.Text"); } } - /// "Administrators" - public static string AdministratorAutoCreator_DefaultGroupName { get { return T("AdministratorAutoCreator.DefaultGroupName"); } } - /// "Translation..." - public static string ChangeForeignLocaleWorkflow_ActionLabel { get { return T("ChangeForeignLocaleWorkflow.ActionLabel"); } } - /// "Change source language" - public static string ChangeForeignLocaleWorkflow_ActionToolTip { get { return T("ChangeForeignLocaleWorkflow.ActionToolTip"); } } - /// "None" - public static string ChangeForeignLocaleWorkflow_NoForeignLocaleLabel { get { return T("ChangeForeignLocaleWorkflow.NoForeignLocaleLabel"); } } - /// "Translation" - public static string ChangeForeignLocaleWorkflow_Dialog_Label { get { return T("ChangeForeignLocaleWorkflow.Dialog.Label"); } } - /// "Select language to translate from" - public static string ChangeForeignLocaleWorkflow_FieldGroup_Label { get { return T("ChangeForeignLocaleWorkflow.FieldGroup.Label"); } } - /// "Multiple languages not installed" - public static string ChangeForeignLocaleWorkflow_NoOrOneActiveLocales_Title { get { return T("ChangeForeignLocaleWorkflow.NoOrOneActiveLocales.Title"); } } - /// "Two or more languages must be installed in order to support translations. Administrators can add more languages in the 'System' perspective." - public static string ChangeForeignLocaleWorkflow_NoOrOneActiveLocales_Description { get { return T("ChangeForeignLocaleWorkflow.NoOrOneActiveLocales.Description"); } } - /// "From-language" - public static string ChangeForeignLocaleWorkflow_ForeignCultureSelector_Label { get { return T("ChangeForeignLocaleWorkflow.ForeignCultureSelector.Label"); } } - /// "Pages written in the from-language will be indicated by globe icons in the Content tree. The associated "Translate Page" action imports the page into the current working language." - public static string ChangeForeignLocaleWorkflow_ForeignCultureSelector_Help { get { return T("ChangeForeignLocaleWorkflow.ForeignCultureSelector.Help"); } } - /// "The active language has been changed" - public static string ChangeOwnActiveLocaleWorkflow_CloseAllViews_Message { get { return T("ChangeOwnActiveLocaleWorkflow.CloseAllViews.Message"); } } - /// "Password should be at least {0} characters long." - public static string PasswordRules_MinimumLength(object parameter0) { return string.Format(T("PasswordRules.MinimumLength"), parameter0); } - /// "Password should not match any of the previously used {0} passwords." - public static string PasswordRules_EnforcePasswordHistory(object parameter0) { return string.Format(T("PasswordRules.EnforcePasswordHistory"), parameter0); } - /// "Password should contain 3/4 of the following items: uppercase letters, lowercase letters, numbers, symbols." - public static string PasswordRules_DifferentCharacterGroups { get { return T("PasswordRules.DifferentCharacterGroups"); } } - /// "Password should not be based on a user name." - public static string PasswordRules_DoNotUseUserName { get { return T("PasswordRules.DoNotUseUserName"); } } - /// "Confirmation password mismatch" - public static string ChangePasswordForm_ConfirmationPasswordMimatch { get { return T("ChangePasswordForm.ConfirmationPasswordMimatch"); } } - /// "Username" - public static string ChangePasswordForm_Username { get { return T("ChangePasswordForm.Username"); } } - /// "Old Password" - public static string ChangePasswordForm_OldPassword { get { return T("ChangePasswordForm.OldPassword"); } } - /// "NewPassword" - public static string ChangePasswordForm_NewPassword { get { return T("ChangePasswordForm.NewPassword"); } } - /// "Confirm Password" - public static string ChangePasswordForm_ConfirmPassword { get { return T("ChangePasswordForm.ConfirmPassword"); } } - /// "Change Password" - public static string ChangePasswordForm_ChangePasswordButton { get { return T("ChangePasswordForm.ChangePasswordButton"); } } - /// "Password is older than {0} days. Please change your password." - public static string ChangePasswordForm_PasswordExpiredMessage(object parameter0) { return string.Format(T("ChangePasswordForm.PasswordExpiredMessage"), parameter0); } - /// "The old password is incorrect." - public static string ChangePasswordForm_IncorrectOldPassword { get { return T("ChangePasswordForm.IncorrectOldPassword"); } } +///"Change Password..." +public static string ChangeOwnPasswordWorkflow_ElementActionLabel=>T("ChangeOwnPasswordWorkflow.ElementActionLabel"); +///"Change your password" +public static string ChangeOwnPasswordWorkflow_ElementActionToolTip=>T("ChangeOwnPasswordWorkflow.ElementActionToolTip"); +///"Change Password" +public static string ChangeOwnPasswordWorkflow_Dialog_Label=>T("ChangeOwnPasswordWorkflow.Dialog.Label"); +///"Existing password" +public static string ChangeOwnPasswordWorkflow_Dialog_ExistingPassword_Label=>T("ChangeOwnPasswordWorkflow.Dialog.ExistingPassword.Label"); +///"For security reasons you must present your existing password before you can continue." +public static string ChangeOwnPasswordWorkflow_Dialog_ExistingPassword_Help=>T("ChangeOwnPasswordWorkflow.Dialog.ExistingPassword.Help"); +///"New password" +public static string ChangeOwnPasswordWorkflow_Dialog_NewPassword_Label=>T("ChangeOwnPasswordWorkflow.Dialog.NewPassword.Label"); +///"The password specified in this field must match the confirmation below." +public static string ChangeOwnPasswordWorkflow_Dialog_NewPassword_Help=>T("ChangeOwnPasswordWorkflow.Dialog.NewPassword.Help"); +///"Confirm new password" +public static string ChangeOwnPasswordWorkflow_Dialog_NewPasswordConfirmed_Label=>T("ChangeOwnPasswordWorkflow.Dialog.NewPasswordConfirmed.Label"); +///"The password specified in this field must match the one specified above." +public static string ChangeOwnPasswordWorkflow_Dialog_NewPasswordConfirmed_Help=>T("ChangeOwnPasswordWorkflow.Dialog.NewPasswordConfirmed.Help"); +///"The specified password is incorrect." +public static string ChangeOwnPasswordWorkflow_Dialog_Validation_IncorrectPassword=>T("ChangeOwnPasswordWorkflow.Dialog.Validation.IncorrectPassword"); +///"The new passwords you typed do not match." +public static string ChangeOwnPasswordWorkflow_Dialog_Validation_NewPasswordFieldsNotMatch=>T("ChangeOwnPasswordWorkflow.Dialog.Validation.NewPasswordFieldsNotMatch"); +///"The old and the new passwords are the same." +public static string ChangeOwnPasswordWorkflow_Dialog_Validation_PasswordsAreTheSame=>T("ChangeOwnPasswordWorkflow.Dialog.Validation.PasswordsAreTheSame"); +///"The new password may not be an empty string." +public static string ChangeOwnPasswordWorkflow_Dialog_Validation_NewPasswordIsEmpty=>T("ChangeOwnPasswordWorkflow.Dialog.Validation.NewPasswordIsEmpty"); +///"The new password must be at least {0} characters long." +public static string ChangeOwnPasswordWorkflow_Dialog_Validation_NewPasswordTooShort(object parameter0)=>string.Format(T("ChangeOwnPasswordWorkflow.Dialog.Validation.NewPasswordTooShort"), parameter0); +///"Password change isn't supported." +public static string ChangeOwnPasswordWorkflow_NotSupportedErrorLabel=>T("ChangeOwnPasswordWorkflow.NotSupportedErrorLabel"); +///"Password change isn't supported in current configuration." +public static string ChangeOwnPasswordWorkflow_NotSupportedErrorText=>T("ChangeOwnPasswordWorkflow.NotSupportedErrorText"); +///"Profile Settings..." +public static string ChangeOwnCultureWorkflow_ElementActionLabel=>T("ChangeOwnCultureWorkflow.ElementActionLabel"); +///"Set the C1 Console language and formatting of numbers, times and dates" +public static string ChangeOwnCultureWorkflow_ElementActionToolTip=>T("ChangeOwnCultureWorkflow.ElementActionToolTip"); +///"Regional Settings and Language" +public static string ChangeOwnCultureWorkflow_Dialog_Label=>T("ChangeOwnCultureWorkflow.Dialog.Label"); +///"Display Preferences" +public static string ChangeOwnCultureWorkflow_Dialog_CultureSelector_Label=>T("ChangeOwnCultureWorkflow.Dialog.CultureSelector.Label"); +///"Select from the list of options to update how time, date, and number formats are displayed within the console." +public static string ChangeOwnCultureWorkflow_Dialog_CultureSelector_Help=>T("ChangeOwnCultureWorkflow.Dialog.CultureSelector.Help"); +///"Console Language Preferences" +public static string ChangeOwnCultureWorkflow_Dialog_C1ConsoleLanguageSelector_Label=>T("ChangeOwnCultureWorkflow.Dialog.C1ConsoleLanguageSelector.Label"); +///"Select the language to be used for labels, help texts, dialogs etc. The available options here are limited to languages installed. You may install more languages via the Package system, see Composite.Localization." +public static string ChangeOwnCultureWorkflow_Dialog_C1ConsoleLanguageSelector_Help=>T("ChangeOwnCultureWorkflow.Dialog.C1ConsoleLanguageSelector.Help"); +///"Change application language" +public static string ChangeOwnCultureWorkflow_Dialog_Confirm_Title=>T("ChangeOwnCultureWorkflow.Dialog.Confirm.Title"); +///"Are your sure you wish to change the settings? The application will restart and all your unsaved changes will be lost." +public static string ChangeOwnCultureWorkflow_Dialog_Confirm_Text=>T("ChangeOwnCultureWorkflow.Dialog.Confirm.Text"); +///"Administrators" +public static string AdministratorAutoCreator_DefaultGroupName=>T("AdministratorAutoCreator.DefaultGroupName"); +///"Translation..." +public static string ChangeForeignLocaleWorkflow_ActionLabel=>T("ChangeForeignLocaleWorkflow.ActionLabel"); +///"Change source language" +public static string ChangeForeignLocaleWorkflow_ActionToolTip=>T("ChangeForeignLocaleWorkflow.ActionToolTip"); +///"None" +public static string ChangeForeignLocaleWorkflow_NoForeignLocaleLabel=>T("ChangeForeignLocaleWorkflow.NoForeignLocaleLabel"); +///"Translation" +public static string ChangeForeignLocaleWorkflow_Dialog_Label=>T("ChangeForeignLocaleWorkflow.Dialog.Label"); +///"Select language to translate from" +public static string ChangeForeignLocaleWorkflow_FieldGroup_Label=>T("ChangeForeignLocaleWorkflow.FieldGroup.Label"); +///"Multiple languages not installed" +public static string ChangeForeignLocaleWorkflow_NoOrOneActiveLocales_Title=>T("ChangeForeignLocaleWorkflow.NoOrOneActiveLocales.Title"); +///"Two or more languages must be installed in order to support translations. Administrators can add more languages in the 'System' perspective." +public static string ChangeForeignLocaleWorkflow_NoOrOneActiveLocales_Description=>T("ChangeForeignLocaleWorkflow.NoOrOneActiveLocales.Description"); +///"From-language" +public static string ChangeForeignLocaleWorkflow_ForeignCultureSelector_Label=>T("ChangeForeignLocaleWorkflow.ForeignCultureSelector.Label"); +///"Pages written in the from-language will be indicated by globe icons in the Content tree. The associated "Translate Page" action imports the page into the current working language." +public static string ChangeForeignLocaleWorkflow_ForeignCultureSelector_Help=>T("ChangeForeignLocaleWorkflow.ForeignCultureSelector.Help"); +///"The active language has been changed" +public static string ChangeOwnActiveLocaleWorkflow_CloseAllViews_Message=>T("ChangeOwnActiveLocaleWorkflow.CloseAllViews.Message"); +///"Password should be at least {0} characters long." +public static string PasswordRules_MinimumLength(object parameter0)=>string.Format(T("PasswordRules.MinimumLength"), parameter0); +///"Password should not match any of the previously used {0} passwords." +public static string PasswordRules_EnforcePasswordHistory(object parameter0)=>string.Format(T("PasswordRules.EnforcePasswordHistory"), parameter0); +///"Password should contain 3/4 of the following items: uppercase letters, lowercase letters, numbers, symbols." +public static string PasswordRules_DifferentCharacterGroups=>T("PasswordRules.DifferentCharacterGroups"); +///"Password should not be based on a user name." +public static string PasswordRules_DoNotUseUserName=>T("PasswordRules.DoNotUseUserName"); +///"Confirmation password mismatch" +public static string ChangePasswordForm_ConfirmationPasswordMimatch=>T("ChangePasswordForm.ConfirmationPasswordMimatch"); +///"Username" +public static string ChangePasswordForm_Username=>T("ChangePasswordForm.Username"); +///"Old Password" +public static string ChangePasswordForm_OldPassword=>T("ChangePasswordForm.OldPassword"); +///"New Password" +public static string ChangePasswordForm_NewPassword=>T("ChangePasswordForm.NewPassword"); +///"Confirm Password" +public static string ChangePasswordForm_ConfirmPassword=>T("ChangePasswordForm.ConfirmPassword"); +///"Change Password" +public static string ChangePasswordForm_ChangePasswordButton=>T("ChangePasswordForm.ChangePasswordButton"); +///"Password is older than {0} days. Please change your password." +public static string ChangePasswordForm_PasswordExpiredMessage(object parameter0)=>string.Format(T("ChangePasswordForm.PasswordExpiredMessage"), parameter0); +///"The old password is incorrect." +public static string ChangePasswordForm_IncorrectOldPassword=>T("ChangePasswordForm.IncorrectOldPassword"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.C1Console.Users", key); @@ -407,214 +407,214 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Core_PackageSystem_PackageFragmentInstallers { - /// "The package composite version requirements does not match the current composite version" - public static string PackageManager_CompositeVersionMisMatch { get { return T("PackageManager.CompositeVersionMisMatch"); } } - /// "Package is already installed" - public static string PackageManager_PackageAlreadyInstalled { get { return T("PackageManager.PackageAlreadyInstalled"); } } - /// "A newer version of the package is already installed" - public static string PackageManager_NewerVersionInstalled { get { return T("PackageManager.NewerVersionInstalled"); } } - /// "Could not locate the package directory path '{0}'" - public static string PackageManager_MissingPackageDirectory(object parameter0) { return string.Format(T("PackageManager.MissingPackageDirectory"), parameter0); } - /// "The package is marked as non uninstallable" - public static string PackageManager_Uninstallable { get { return T("PackageManager.Uninstallable"); } } - /// "Could not locate the package zip file path '{0}'" - public static string PackageManager_MissingZipFile(object parameter0) { return string.Format(T("PackageManager.MissingZipFile"), parameter0); } - /// "Could not locate the package uninstall file path '{0}'" - public static string PackageManager_MissingUninstallFile(object parameter0) { return string.Format(T("PackageManager.MissingUninstallFile"), parameter0); } - /// "Missing '{0}' element." - public static string PackageManager_MissingElement(object parameter0) { return string.Format(T("PackageManager.MissingElement"), parameter0); } - /// "Missing '{0}' attribute." - public static string PackageManager_MissingAttribute(object parameter0) { return string.Format(T("PackageManager.MissingAttribute"), parameter0); } - /// "'{0}' attribute value is not a valid value." - public static string PackageManager_InvalidAttributeValue(object parameter0) { return string.Format(T("PackageManager.InvalidAttributeValue"), parameter0); } - /// "'{0}' element value is not a valid value" - public static string PackageManager_InvalidElementValue(object parameter0) { return string.Format(T("PackageManager.InvalidElementValue"), parameter0); } - /// "Expected exactly two elements, '{0}' and '{1}'" - public static string ConfigurationTransformationPackageFragmentInstaller_ExpectedExactlyTwoElements(object parameter0,object parameter1) { return string.Format(T("ConfigurationTransformationPackageFragmentInstaller.ExpectedExactlyTwoElements"), parameter0,parameter1); } - /// "Missing '{0}' element." - public static string ConfigurationTransformationPackageFragmentInstaller_MissingElement(object parameter0) { return string.Format(T("ConfigurationTransformationPackageFragmentInstaller.MissingElement"), parameter0); } - /// "Missing '{0}' attribute." - public static string ConfigurationTransformationPackageFragmentInstaller_MissingAttribute(object parameter0) { return string.Format(T("ConfigurationTransformationPackageFragmentInstaller.MissingAttribute"), parameter0); } - /// "The path '{0}' does not exist in the ZIP." - public static string ConfigurationTransformationPackageFragmentInstaller_PathDoesNotExist(object parameter0) { return string.Format(T("ConfigurationTransformationPackageFragmentInstaller.PathDoesNotExist"), parameter0); } - /// "Unable to parse ZIP'ed XSLT file '{0}'. {1}" - public static string ConfigurationTransformationPackageFragmentInstaller_UnableToParsXslt(object parameter0,object parameter1) { return string.Format(T("ConfigurationTransformationPackageFragmentInstaller.UnableToParsXslt"), parameter0,parameter1); } - /// "The XSLT file '{0}' will generate an invalid Configuration file. {1}" - public static string ConfigurationTransformationPackageFragmentInstaller_XsltWillGeneratedInvalid(object parameter0,object parameter1) { return string.Format(T("ConfigurationTransformationPackageFragmentInstaller.XsltWillGeneratedInvalid"), parameter0,parameter1); } - /// "Only one 'Types' element allowed" - public static string DataPackageFragmentInstaller_OnlyOneElement { get { return T("DataPackageFragmentInstaller.OnlyOneElement"); } } - /// "Missing 'Types' element" - public static string DataPackageFragmentInstaller_MissingElement { get { return T("DataPackageFragmentInstaller.MissingElement"); } } - /// "Missing {0} attribute in the configuration" - public static string DataPackageFragmentInstaller_MissingAttribute(object parameter0) { return string.Format(T("DataPackageFragmentInstaller.MissingAttribute"), parameter0); } - /// "Wrong DataScopeIdentifier ({0}) name in the configuration" - public static string DataPackageFragmentInstaller_WrongDataScopeIdentifier(object parameter0) { return string.Format(T("DataPackageFragmentInstaller.WrongDataScopeIdentifier"), parameter0); } - /// "Wrong culture ({0}) name in the configuration" - public static string DataPackageFragmentInstaller_WrongLocale(object parameter0) { return string.Format(T("DataPackageFragmentInstaller.WrongLocale"), parameter0); } - /// "Missing file '{0}' in the package zip" - public static string DataPackageFragmentInstaller_MissingFile(object parameter0) { return string.Format(T("DataPackageFragmentInstaller.MissingFile"), parameter0); } - /// "The data interface type '{0}' has not been configured in the system" - public static string DataPackageFragmentInstaller_TypeNotConfigured(object parameter0) { return string.Format(T("DataPackageFragmentInstaller.TypeNotConfigured"), parameter0); } - /// "The data interface type '{0}' does not inherit the interface '{1}'" - public static string DataPackageFragmentInstaller_TypeNotInheriting(object parameter0,object parameter1) { return string.Format(T("DataPackageFragmentInstaller.TypeNotInheriting"), parameter0,parameter1); } - /// "The data interface type '{0}' does not have a property named '{1}'" - public static string DataPackageFragmentInstaller_MissingProperty(object parameter0,object parameter1) { return string.Format(T("DataPackageFragmentInstaller.MissingProperty"), parameter0,parameter1); } - /// "The data interface type '{0}' does not have a writable property named '{1}'" - public static string DataPackageFragmentInstaller_MissingWritableProperty(object parameter0,object parameter1) { return string.Format(T("DataPackageFragmentInstaller.MissingWritableProperty"), parameter0,parameter1); } - /// "Could not convert the value '{0}' to the type '{1}'" - public static string DataPackageFragmentInstaller_ConversionFailed(object parameter0,object parameter1) { return string.Format(T("DataPackageFragmentInstaller.ConversionFailed"), parameter0,parameter1); } - /// "The property '{0}' on the interface '{1}' is missing a value." - public static string DataPackageFragmentInstaller_MissingPropertyVaule(object parameter0,object parameter1) { return string.Format(T("DataPackageFragmentInstaller.MissingPropertyVaule"), parameter0,parameter1); } - /// "Data type '{0}': {1} record(s) already installed" - public static string DataPackageFragmentInstaller_DataExists(object parameter0,object parameter1) { return string.Format(T("DataPackageFragmentInstaller.DataExists"), parameter0,parameter1); } - /// "Missing data type descriptor for the type {0}" - public static string DataPackageFragmentInstaller_MissingTypeDescriptor(object parameter0) { return string.Format(T("DataPackageFragmentInstaller.MissingTypeDescriptor"), parameter0); } - /// "The data type '{0}' is not localized but a locale is specified in the configuration" - public static string DataPackageFragmentInstaller_TypeNonLocalizedWithLocale(object parameter0) { return string.Format(T("DataPackageFragmentInstaller.TypeNonLocalizedWithLocale"), parameter0); } - /// "The data type '{0}' is localized but no locale is specified in the configuration" - public static string DataPackageFragmentInstaller_TypeLocalizedWithoutLocale(object parameter0) { return string.Format(T("DataPackageFragmentInstaller.TypeLocalizedWithoutLocale"), parameter0); } - /// "Referenced data missing. Type: {0}, {1}: '{2}'" - public static string DataPackageFragmentInstaller_ReferencedDataMissing(object parameter0,object parameter1,object parameter2) { return string.Format(T("DataPackageFragmentInstaller.ReferencedDataMissing"), parameter0,parameter1,parameter2); } - /// "Only one 'Types' element allowed" - public static string DataPackageFragmentUninstaller_OnlyOneElement { get { return T("DataPackageFragmentUninstaller.OnlyOneElement"); } } - /// "Missing {0} attribute in the configuration" - public static string DataPackageFragmentUninstaller_MissingAttribute(object parameter0) { return string.Format(T("DataPackageFragmentUninstaller.MissingAttribute"), parameter0); } - /// "The data type '{0}' does not contain a key property named '{1}'" - public static string DataPackageFragmentUninstaller_MissingKeyProperty(object parameter0,object parameter1) { return string.Format(T("DataPackageFragmentUninstaller.MissingKeyProperty"), parameter0,parameter1); } - /// "Data item '{0}' of type {1} is referenced from a data item '{2}' of type '{3}'" - public static string DataPackageFragmentUninstaller_DataIsReferenced(object parameter0,object parameter1,object parameter2,object parameter3) { return string.Format(T("DataPackageFragmentUninstaller.DataIsReferenced"), parameter0,parameter1,parameter2,parameter3); } - /// "Page type '{0}' is referenced by page '{1}'" - public static string DataPackageFragmentUninstaller_PageTypeIsReferenced(object parameter0,object parameter1) { return string.Format(T("DataPackageFragmentUninstaller.PageTypeIsReferenced"), parameter0,parameter1); } - /// "Only one 'Types' element allowed" - public static string DataTypePackageFragmentInstaller_OnlyOneElement { get { return T("DataTypePackageFragmentInstaller.OnlyOneElement"); } } - /// "Missing 'Types' element" - public static string DataTypePackageFragmentInstaller_MissingElement { get { return T("DataTypePackageFragmentInstaller.MissingElement"); } } - /// "Missing {0} attribute in the configuration" - public static string DataTypePackageFragmentInstaller_MissingAttribute(object parameter0) { return string.Format(T("DataTypePackageFragmentInstaller.MissingAttribute"), parameter0); } - /// "The data interface type '{0}' has not been configured in the system" - public static string DataTypePackageFragmentInstaller_TypeNotConfigured(object parameter0) { return string.Format(T("DataTypePackageFragmentInstaller.TypeNotConfigured"), parameter0); } - /// "The data interface type '{0}' does not inherit the interface '{1}'" - public static string DataTypePackageFragmentInstaller_TypeNotInheriting(object parameter0,object parameter1) { return string.Format(T("DataTypePackageFragmentInstaller.TypeNotInheriting"), parameter0,parameter1); } - /// "The interface type '{0}' is already exists in the system" - public static string DataTypePackageFragmentInstaller_TypeExists(object parameter0) { return string.Format(T("DataTypePackageFragmentInstaller.TypeExists"), parameter0); } - /// "Failed to build a data type descriptor for interface '{0}'" - public static string DataTypePackageFragmentInstaller_InterfaceCodeError(object parameter0) { return string.Format(T("DataTypePackageFragmentInstaller.InterfaceCodeError"), parameter0); } - /// "Only one 'Types' element allowed" - public static string DataTypePackageFragmentUninstaller_OnlyOneElement { get { return T("DataTypePackageFragmentUninstaller.OnlyOneElement"); } } - /// "Missing {0} attribute in the configuration" - public static string DataTypePackageFragmentUninstaller_MissingAttribute(object parameter0) { return string.Format(T("DataTypePackageFragmentUninstaller.MissingAttribute"), parameter0); } - /// "Wrong attribute format in the configuration" - public static string DataTypePackageFragmentUninstaller_WrongAttributeFormat { get { return T("DataTypePackageFragmentUninstaller.WrongAttributeFormat"); } } - /// "Only one 'Types' element allowed" - public static string DynamicDataTypePackageFragmentInstaller_OnlyOneElement { get { return T("DynamicDataTypePackageFragmentInstaller.OnlyOneElement"); } } - /// "Missing 'Types' element" - public static string DynamicDataTypePackageFragmentInstaller_MissingElement { get { return T("DynamicDataTypePackageFragmentInstaller.MissingElement"); } } - /// "Error xml parsing the dataTypeDescriptor attribute" - public static string DynamicDataTypePackageFragmentInstaller_DataTypeDescriptorParseError { get { return T("DynamicDataTypePackageFragmentInstaller.DataTypeDescriptorParseError"); } } - /// "Error while deserializing a DataType. Error text: {0}." - public static string DynamicDataTypePackageFragmentInstaller_DataTypeDescriptorDeserializeError(object parameter0) { return string.Format(T("DynamicDataTypePackageFragmentInstaller.DataTypeDescriptorDeserializeError"), parameter0); } - /// "Cannot find a referenced type '{0}'." - public static string DynamicDataTypePackageFragmentInstaller_MissingReferencedType(object parameter0) { return string.Format(T("DynamicDataTypePackageFragmentInstaller.MissingReferencedType"), parameter0); } - /// "The interface type '{0}' is already exists in the system" - public static string DynamicDataTypePackageFragmentInstaller_TypeExists(object parameter0) { return string.Format(T("DynamicDataTypePackageFragmentInstaller.TypeExists"), parameter0); } - /// "Only one 'Types' element allowed" - public static string DynamicDataTypePackageFragmentUninstaller_OnlyOneElement { get { return T("DynamicDataTypePackageFragmentUninstaller.OnlyOneElement"); } } - /// "Missing {0} attribute in the configuration" - public static string DynamicDataTypePackageFragmentUninstaller_MissingAttribute(object parameter0) { return string.Format(T("DynamicDataTypePackageFragmentUninstaller.MissingAttribute"), parameter0); } - /// "Wrong attribute format in the configuration" - public static string DynamicDataTypePackageFragmentUninstaller_WrongAttributeFormat { get { return T("DynamicDataTypePackageFragmentUninstaller.WrongAttributeFormat"); } } - /// "Only one 'Files' element allowed" - public static string FilePackageFragmentInstaller_OnlyOneFilesElement { get { return T("FilePackageFragmentInstaller.OnlyOneFilesElement"); } } - /// "Only one 'Directories' element allowed" - public static string FilePackageFragmentInstaller_OnlyOneDirectoriesElement { get { return T("FilePackageFragmentInstaller.OnlyOneDirectoriesElement"); } } - /// "Missing {0} attribute in the configuration" - public static string FilePackageFragmentInstaller_MissingAttribute(object parameter0) { return string.Format(T("FilePackageFragmentInstaller.MissingAttribute"), parameter0); } - /// "The 'deleteTargetDirectory' attribute can only be applied to directories, not files" - public static string FilePackageFragmentInstaller_DeleteTargetDirectoryNotAllowed { get { return T("FilePackageFragmentInstaller.DeleteTargetDirectoryNotAllowed"); } } - /// "Wrong attribute value format, bool value expected" - public static string FilePackageFragmentInstaller_WrongAttributeBoolFormat { get { return T("FilePackageFragmentInstaller.WrongAttributeBoolFormat"); } } - /// "The install zip-file does not contain the file '{0}'" - public static string FilePackageFragmentInstaller_MissingFile(object parameter0) { return string.Format(T("FilePackageFragmentInstaller.MissingFile"), parameter0); } - /// "The file '{0}' already exists" - public static string FilePackageFragmentInstaller_FileExists(object parameter0) { return string.Format(T("FilePackageFragmentInstaller.FileExists"), parameter0); } - /// "File '{0}' marked as 'Read Only' and therefore cannot be overwritten." - public static string FilePackageFragmentInstaller_FileReadOnly(object parameter0) { return string.Format(T("FilePackageFragmentInstaller.FileReadOnly"), parameter0); } - /// "The 'assemblyLoad' attribute can only be applied to files, not directories" - public static string FilePackageFragmentInstaller_AssemblyLoadNotAllowed { get { return T("FilePackageFragmentInstaller.AssemblyLoadNotAllowed"); } } - /// "The 'onlyUpdate' attribute can only be applied to files, not directories" - public static string FilePackageFragmentInstaller_OnlyUpdateNotAllowed { get { return T("FilePackageFragmentInstaller.OnlyUpdateNotAllowed"); } } - /// "The 'onlyUpdate' attribute is not allowed in combination with the 'loadAssembly' attribute" - public static string FilePackageFragmentInstaller_OnlyUpdateNotAllowedWithLoadAssemlby { get { return T("FilePackageFragmentInstaller.OnlyUpdateNotAllowedWithLoadAssemlby"); } } - /// "The 'onlyUpdate' and 'onlyAdd' attributes are now allowed on the same element" - public static string FilePackageFragmentInstaller_OnlyUpdateAndOnlyAddNotAllowed { get { return T("FilePackageFragmentInstaller.OnlyUpdateAndOnlyAddNotAllowed"); } } - /// "The 'onlyAdd' and 'allowOverwrite' attributes are now allowed on the same element" - public static string FilePackageFragmentInstaller_OnlyAddAndAllowOverwriteNotAllowed { get { return T("FilePackageFragmentInstaller.OnlyAddAndAllowOverwriteNotAllowed"); } } - /// "The install zip-file does not contain the directory '{0}'" - public static string FilePackageFragmentInstaller_MissingDirectory(object parameter0) { return string.Format(T("FilePackageFragmentInstaller.MissingDirectory"), parameter0); } - /// "Uninstall.xml contains file pathes, binded to the original website location, and therefore the package cannot be uninstalled safely." - public static string FilePackageFragmentInstaller_WrongBasePath { get { return T("FilePackageFragmentInstaller.WrongBasePath"); } } - /// "Only one 'Files' element allowed" - public static string FilePackageFragmentUninstaller_OnlyOneFilesElement { get { return T("FilePackageFragmentUninstaller.OnlyOneFilesElement"); } } - /// "Only one 'Areas' element allowed" - public static string VirtualElementProviderNodePackageFragmentInstaller_OnlyOneElement { get { return T("VirtualElementProviderNodePackageFragmentInstaller.OnlyOneElement"); } } - /// "Could not find the type '{0}'" - public static string VirtualElementProviderNodePackageFragmentInstaller_MissingType(object parameter0) { return string.Format(T("VirtualElementProviderNodePackageFragmentInstaller.MissingType"), parameter0); } - /// "Could not find the icon '{0}'" - public static string VirtualElementProviderNodePackageFragmentInstaller_MissingIcon(object parameter0) { return string.Format(T("VirtualElementProviderNodePackageFragmentInstaller.MissingIcon"), parameter0); } - /// "Only one 'Areas' element allowed" - public static string VirtualElementProviderNodePackageFragmentUninstaller_OnlyOneElement { get { return T("VirtualElementProviderNodePackageFragmentUninstaller.OnlyOneElement"); } } - /// "Missing {0} attribute in the configuration" - public static string VirtualElementProviderNodePackageFragmentUninstaller_MissingAttribute(object parameter0) { return string.Format(T("VirtualElementProviderNodePackageFragmentUninstaller.MissingAttribute"), parameter0); } - /// "File '{0}' not found" - public static string FileXslTransformationPackageFragmentInstaller_FileNotFound(object parameter0) { return string.Format(T("FileXslTransformationPackageFragmentInstaller.FileNotFound"), parameter0); } - /// "File '{0}' marked as 'Read Only' and therefore cannot be overwritten." - public static string FileXslTransformationPackageFragmentInstaller_FileReadOnly(object parameter0) { return string.Format(T("FileXslTransformationPackageFragmentInstaller.FileReadOnly"), parameter0); } - /// "File '{0}' was marked as 'Read Only'. This file attribute was explicitly removed and the file was updated normally." - public static string FileXslTransformationPackageFragmentInstaller_FileReadOnlyOverride(object parameter0) { return string.Format(T("FileXslTransformationPackageFragmentInstaller.FileReadOnlyOverride"), parameter0); } - /// "Only one 'PackageVersions' element allowed" - public static string PackageVersionBumperFragmentInstaller_OnlyOneElement { get { return T("PackageVersionBumperFragmentInstaller.OnlyOneElement"); } } - /// "Missing {0} attribute in the configuration" - public static string PackageVersionBumperFragmentInstaller_MissingAttribute(object parameter0) { return string.Format(T("PackageVersionBumperFragmentInstaller.MissingAttribute"), parameter0); } - /// "Wrong attribute value format, Guid value expected" - public static string PackageVersionBumperFragmentInstaller_WrongAttributeGuidFormat { get { return T("PackageVersionBumperFragmentInstaller.WrongAttributeGuidFormat"); } } - /// "The package id duplicate: '{0}'" - public static string PackageVersionBumperFragmentInstaller_PackageIdDuplicate(object parameter0) { return string.Format(T("PackageVersionBumperFragmentInstaller.PackageIdDuplicate"), parameter0); } - /// "Wrong attribute value format, Version value expected (x.y.z)" - public static string PackageVersionBumperFragmentInstaller_WrongAttributeVersionFormat { get { return T("PackageVersionBumperFragmentInstaller.WrongAttributeVersionFormat"); } } - /// "Only one 'PackageVersions' element allowed" - public static string PackageVersionBumperFragmentUninstaller_OnlyOneElement { get { return T("PackageVersionBumperFragmentUninstaller.OnlyOneElement"); } } - /// "Missing {0} attribute in the configuration" - public static string PackageVersionBumperFragmentUninstaller_MissingAttribute(object parameter0) { return string.Format(T("PackageVersionBumperFragmentUninstaller.MissingAttribute"), parameter0); } - /// "Wrong attribute value format, Guid value expected" - public static string PackageVersionBumperFragmentUninstaller_WrongAttributeGuidFormat { get { return T("PackageVersionBumperFragmentUninstaller.WrongAttributeGuidFormat"); } } - /// "The package id duplicate: '{0}'" - public static string PackageVersionBumperFragmentUninstaller_PackageIdDuplicate(object parameter0) { return string.Format(T("PackageVersionBumperFragmentUninstaller.PackageIdDuplicate"), parameter0); } - /// "Wrong attribute value format, Version value expected (x.y.z)" - public static string PackageVersionBumperFragmentUninstaller_WrongAttributeVersionFormat { get { return T("PackageVersionBumperFragmentUninstaller.WrongAttributeVersionFormat"); } } - /// "A public RSA key is missing in the package configuration" - public static string PackageLicenseFragmentInstaller_MissingPublicKeyElement { get { return T("PackageLicenseFragmentInstaller.MissingPublicKeyElement"); } } - /// "File '{0}' does not exist." - public static string FileModifyPackageFragmentInstaller_FileDoesNotExist(object parameter0) { return string.Format(T("FileModifyPackageFragmentInstaller.FileDoesNotExist"), parameter0); } - /// "Invalid license key" - public static string License_InvalidKeyTitle { get { return T("License.InvalidKeyTitle"); } } - /// "The license key is invalid. You need to obtain a valid license key." - public static string License_InvalidKeyMessage { get { return T("License.InvalidKeyMessage"); } } - /// "Trial period has expired" - public static string License_ExpiredTitle { get { return T("License.ExpiredTitle"); } } - /// "The trial period of the package has expired. You need to obtain a valid license." - public static string License_ExpiredMessage { get { return T("License.ExpiredMessage"); } } - /// "Failed to get license information. ProductId: {0}" - public static string License_Failed(object parameter0) { return string.Format(T("License.Failed"), parameter0); } - /// "The Windows user under which this C1 instance is running does not have write permission to file or folder '{0}'." - public static string NotEnoughNtfsPermissions(object parameter0) { return string.Format(T("NotEnoughNtfsPermissions"), parameter0); } - /// "Only one '{0}' element allowed" - public static string PackageFragmentInstaller_OnlyOneElementAllowed(object parameter0) { return string.Format(T("PackageFragmentInstaller.OnlyOneElementAllowed"), parameter0); } - /// "Unexpected element name '{0}', only allowed element name is '{1}'" - public static string PackageFragmentInstaller_IncorrectElement(object parameter0,object parameter1) { return string.Format(T("PackageFragmentInstaller.IncorrectElement"), parameter0,parameter1); } - /// "Missing '{0}' attribute." - public static string PackageFragmentInstaller_MissingAttribute(object parameter0) { return string.Format(T("PackageFragmentInstaller.MissingAttribute"), parameter0); } - /// "Missing element '{0}'." - public static string PackageFragmentInstaller_MissingElement(object parameter0) { return string.Format(T("PackageFragmentInstaller.MissingElement"), parameter0); } +///"The package composite version requirements does not match the current composite version '{0}'. Expected version range [{1} - {2}]" +public static string PackageManager_CompositeVersionMisMatch(object parameter0,object parameter1,object parameter2)=>string.Format(T("PackageManager.CompositeVersionMisMatch"), parameter0,parameter1,parameter2); +///"Package is already installed" +public static string PackageManager_PackageAlreadyInstalled=>T("PackageManager.PackageAlreadyInstalled"); +///"A newer version of the package is already installed" +public static string PackageManager_NewerVersionInstalled=>T("PackageManager.NewerVersionInstalled"); +///"Could not locate the package directory path '{0}'" +public static string PackageManager_MissingPackageDirectory(object parameter0)=>string.Format(T("PackageManager.MissingPackageDirectory"), parameter0); +///"The package is marked as non uninstallable" +public static string PackageManager_Uninstallable=>T("PackageManager.Uninstallable"); +///"Could not locate the package zip file path '{0}'" +public static string PackageManager_MissingZipFile(object parameter0)=>string.Format(T("PackageManager.MissingZipFile"), parameter0); +///"Could not locate the package uninstall file path '{0}'" +public static string PackageManager_MissingUninstallFile(object parameter0)=>string.Format(T("PackageManager.MissingUninstallFile"), parameter0); +///"Missing '{0}' element." +public static string PackageManager_MissingElement(object parameter0)=>string.Format(T("PackageManager.MissingElement"), parameter0); +///"Missing '{0}' attribute." +public static string PackageManager_MissingAttribute(object parameter0)=>string.Format(T("PackageManager.MissingAttribute"), parameter0); +///"'{0}' attribute value is not a valid value." +public static string PackageManager_InvalidAttributeValue(object parameter0)=>string.Format(T("PackageManager.InvalidAttributeValue"), parameter0); +///"'{0}' element value is not a valid value" +public static string PackageManager_InvalidElementValue(object parameter0)=>string.Format(T("PackageManager.InvalidElementValue"), parameter0); +///"Expected exactly two elements, '{0}' and '{1}'" +public static string ConfigurationTransformationPackageFragmentInstaller_ExpectedExactlyTwoElements(object parameter0,object parameter1)=>string.Format(T("ConfigurationTransformationPackageFragmentInstaller.ExpectedExactlyTwoElements"), parameter0,parameter1); +///"Missing '{0}' element." +public static string ConfigurationTransformationPackageFragmentInstaller_MissingElement(object parameter0)=>string.Format(T("ConfigurationTransformationPackageFragmentInstaller.MissingElement"), parameter0); +///"Missing '{0}' attribute." +public static string ConfigurationTransformationPackageFragmentInstaller_MissingAttribute(object parameter0)=>string.Format(T("ConfigurationTransformationPackageFragmentInstaller.MissingAttribute"), parameter0); +///"The path '{0}' does not exist in the ZIP." +public static string ConfigurationTransformationPackageFragmentInstaller_PathDoesNotExist(object parameter0)=>string.Format(T("ConfigurationTransformationPackageFragmentInstaller.PathDoesNotExist"), parameter0); +///"Unable to parse ZIP'ed XSLT file '{0}'. {1}" +public static string ConfigurationTransformationPackageFragmentInstaller_UnableToParsXslt(object parameter0,object parameter1)=>string.Format(T("ConfigurationTransformationPackageFragmentInstaller.UnableToParsXslt"), parameter0,parameter1); +///"The XSLT file '{0}' will generate an invalid Configuration file. {1}" +public static string ConfigurationTransformationPackageFragmentInstaller_XsltWillGeneratedInvalid(object parameter0,object parameter1)=>string.Format(T("ConfigurationTransformationPackageFragmentInstaller.XsltWillGeneratedInvalid"), parameter0,parameter1); +///"Only one 'Types' element allowed" +public static string DataPackageFragmentInstaller_OnlyOneElement=>T("DataPackageFragmentInstaller.OnlyOneElement"); +///"Missing 'Types' element" +public static string DataPackageFragmentInstaller_MissingElement=>T("DataPackageFragmentInstaller.MissingElement"); +///"Missing {0} attribute in the configuration" +public static string DataPackageFragmentInstaller_MissingAttribute(object parameter0)=>string.Format(T("DataPackageFragmentInstaller.MissingAttribute"), parameter0); +///"Wrong DataScopeIdentifier ({0}) name in the configuration" +public static string DataPackageFragmentInstaller_WrongDataScopeIdentifier(object parameter0)=>string.Format(T("DataPackageFragmentInstaller.WrongDataScopeIdentifier"), parameter0); +///"Wrong culture ({0}) name in the configuration" +public static string DataPackageFragmentInstaller_WrongLocale(object parameter0)=>string.Format(T("DataPackageFragmentInstaller.WrongLocale"), parameter0); +///"Missing file '{0}' in the package zip" +public static string DataPackageFragmentInstaller_MissingFile(object parameter0)=>string.Format(T("DataPackageFragmentInstaller.MissingFile"), parameter0); +///"The data interface type '{0}' has not been configured in the system" +public static string DataPackageFragmentInstaller_TypeNotConfigured(object parameter0)=>string.Format(T("DataPackageFragmentInstaller.TypeNotConfigured"), parameter0); +///"The data interface type '{0}' does not inherit the interface '{1}'" +public static string DataPackageFragmentInstaller_TypeNotInheriting(object parameter0,object parameter1)=>string.Format(T("DataPackageFragmentInstaller.TypeNotInheriting"), parameter0,parameter1); +///"The data interface type '{0}' does not have a property named '{1}'" +public static string DataPackageFragmentInstaller_MissingProperty(object parameter0,object parameter1)=>string.Format(T("DataPackageFragmentInstaller.MissingProperty"), parameter0,parameter1); +///"The data interface type '{0}' does not have a writable property named '{1}'" +public static string DataPackageFragmentInstaller_MissingWritableProperty(object parameter0,object parameter1)=>string.Format(T("DataPackageFragmentInstaller.MissingWritableProperty"), parameter0,parameter1); +///"Could not convert the value '{0}' to the type '{1}'" +public static string DataPackageFragmentInstaller_ConversionFailed(object parameter0,object parameter1)=>string.Format(T("DataPackageFragmentInstaller.ConversionFailed"), parameter0,parameter1); +///"The property '{0}' on the interface '{1}' is missing a value." +public static string DataPackageFragmentInstaller_MissingPropertyVaule(object parameter0,object parameter1)=>string.Format(T("DataPackageFragmentInstaller.MissingPropertyVaule"), parameter0,parameter1); +///"Data type '{0}': {1} record(s) already installed" +public static string DataPackageFragmentInstaller_DataExists(object parameter0,object parameter1)=>string.Format(T("DataPackageFragmentInstaller.DataExists"), parameter0,parameter1); +///"Missing data type descriptor for the type {0}" +public static string DataPackageFragmentInstaller_MissingTypeDescriptor(object parameter0)=>string.Format(T("DataPackageFragmentInstaller.MissingTypeDescriptor"), parameter0); +///"The data type '{0}' is not localized but a locale is specified in the configuration" +public static string DataPackageFragmentInstaller_TypeNonLocalizedWithLocale(object parameter0)=>string.Format(T("DataPackageFragmentInstaller.TypeNonLocalizedWithLocale"), parameter0); +///"The data type '{0}' is localized but no locale is specified in the configuration" +public static string DataPackageFragmentInstaller_TypeLocalizedWithoutLocale(object parameter0)=>string.Format(T("DataPackageFragmentInstaller.TypeLocalizedWithoutLocale"), parameter0); +///"Referenced data missing. Type: {0}, {1}: '{2}'" +public static string DataPackageFragmentInstaller_ReferencedDataMissing(object parameter0,object parameter1,object parameter2)=>string.Format(T("DataPackageFragmentInstaller.ReferencedDataMissing"), parameter0,parameter1,parameter2); +///"Only one 'Types' element allowed" +public static string DataPackageFragmentUninstaller_OnlyOneElement=>T("DataPackageFragmentUninstaller.OnlyOneElement"); +///"Missing {0} attribute in the configuration" +public static string DataPackageFragmentUninstaller_MissingAttribute(object parameter0)=>string.Format(T("DataPackageFragmentUninstaller.MissingAttribute"), parameter0); +///"The data type '{0}' does not contain a key property named '{1}'" +public static string DataPackageFragmentUninstaller_MissingKeyProperty(object parameter0,object parameter1)=>string.Format(T("DataPackageFragmentUninstaller.MissingKeyProperty"), parameter0,parameter1); +///"Data item '{0}' of type {1} is referenced from a data item '{2}' of type '{3}'" +public static string DataPackageFragmentUninstaller_DataIsReferenced(object parameter0,object parameter1,object parameter2,object parameter3)=>string.Format(T("DataPackageFragmentUninstaller.DataIsReferenced"), parameter0,parameter1,parameter2,parameter3); +///"Page type '{0}' is referenced by page '{1}'" +public static string DataPackageFragmentUninstaller_PageTypeIsReferenced(object parameter0,object parameter1)=>string.Format(T("DataPackageFragmentUninstaller.PageTypeIsReferenced"), parameter0,parameter1); +///"Only one 'Types' element allowed" +public static string DataTypePackageFragmentInstaller_OnlyOneElement=>T("DataTypePackageFragmentInstaller.OnlyOneElement"); +///"Missing 'Types' element" +public static string DataTypePackageFragmentInstaller_MissingElement=>T("DataTypePackageFragmentInstaller.MissingElement"); +///"Missing {0} attribute in the configuration" +public static string DataTypePackageFragmentInstaller_MissingAttribute(object parameter0)=>string.Format(T("DataTypePackageFragmentInstaller.MissingAttribute"), parameter0); +///"The data interface type '{0}' has not been configured in the system" +public static string DataTypePackageFragmentInstaller_TypeNotConfigured(object parameter0)=>string.Format(T("DataTypePackageFragmentInstaller.TypeNotConfigured"), parameter0); +///"The data interface type '{0}' does not inherit the interface '{1}'" +public static string DataTypePackageFragmentInstaller_TypeNotInheriting(object parameter0,object parameter1)=>string.Format(T("DataTypePackageFragmentInstaller.TypeNotInheriting"), parameter0,parameter1); +///"The interface type '{0}' is already exists in the system" +public static string DataTypePackageFragmentInstaller_TypeExists(object parameter0)=>string.Format(T("DataTypePackageFragmentInstaller.TypeExists"), parameter0); +///"Failed to build a data type descriptor for interface '{0}'" +public static string DataTypePackageFragmentInstaller_InterfaceCodeError(object parameter0)=>string.Format(T("DataTypePackageFragmentInstaller.InterfaceCodeError"), parameter0); +///"Only one 'Types' element allowed" +public static string DataTypePackageFragmentUninstaller_OnlyOneElement=>T("DataTypePackageFragmentUninstaller.OnlyOneElement"); +///"Missing {0} attribute in the configuration" +public static string DataTypePackageFragmentUninstaller_MissingAttribute(object parameter0)=>string.Format(T("DataTypePackageFragmentUninstaller.MissingAttribute"), parameter0); +///"Wrong attribute format in the configuration" +public static string DataTypePackageFragmentUninstaller_WrongAttributeFormat=>T("DataTypePackageFragmentUninstaller.WrongAttributeFormat"); +///"Only one 'Types' element allowed" +public static string DynamicDataTypePackageFragmentInstaller_OnlyOneElement=>T("DynamicDataTypePackageFragmentInstaller.OnlyOneElement"); +///"Missing 'Types' element" +public static string DynamicDataTypePackageFragmentInstaller_MissingElement=>T("DynamicDataTypePackageFragmentInstaller.MissingElement"); +///"Error xml parsing the dataTypeDescriptor attribute" +public static string DynamicDataTypePackageFragmentInstaller_DataTypeDescriptorParseError=>T("DynamicDataTypePackageFragmentInstaller.DataTypeDescriptorParseError"); +///"Error while deserializing a DataType. Error text: {0}." +public static string DynamicDataTypePackageFragmentInstaller_DataTypeDescriptorDeserializeError(object parameter0)=>string.Format(T("DynamicDataTypePackageFragmentInstaller.DataTypeDescriptorDeserializeError"), parameter0); +///"Cannot find a referenced type '{0}'." +public static string DynamicDataTypePackageFragmentInstaller_MissingReferencedType(object parameter0)=>string.Format(T("DynamicDataTypePackageFragmentInstaller.MissingReferencedType"), parameter0); +///"The interface type '{0}' is already exists in the system" +public static string DynamicDataTypePackageFragmentInstaller_TypeExists(object parameter0)=>string.Format(T("DynamicDataTypePackageFragmentInstaller.TypeExists"), parameter0); +///"Only one 'Types' element allowed" +public static string DynamicDataTypePackageFragmentUninstaller_OnlyOneElement=>T("DynamicDataTypePackageFragmentUninstaller.OnlyOneElement"); +///"Missing {0} attribute in the configuration" +public static string DynamicDataTypePackageFragmentUninstaller_MissingAttribute(object parameter0)=>string.Format(T("DynamicDataTypePackageFragmentUninstaller.MissingAttribute"), parameter0); +///"Wrong attribute format in the configuration" +public static string DynamicDataTypePackageFragmentUninstaller_WrongAttributeFormat=>T("DynamicDataTypePackageFragmentUninstaller.WrongAttributeFormat"); +///"Only one 'Files' element allowed" +public static string FilePackageFragmentInstaller_OnlyOneFilesElement=>T("FilePackageFragmentInstaller.OnlyOneFilesElement"); +///"Only one 'Directories' element allowed" +public static string FilePackageFragmentInstaller_OnlyOneDirectoriesElement=>T("FilePackageFragmentInstaller.OnlyOneDirectoriesElement"); +///"Missing {0} attribute in the configuration" +public static string FilePackageFragmentInstaller_MissingAttribute(object parameter0)=>string.Format(T("FilePackageFragmentInstaller.MissingAttribute"), parameter0); +///"The 'deleteTargetDirectory' attribute can only be applied to directories, not files" +public static string FilePackageFragmentInstaller_DeleteTargetDirectoryNotAllowed=>T("FilePackageFragmentInstaller.DeleteTargetDirectoryNotAllowed"); +///"Wrong attribute value format, bool value expected" +public static string FilePackageFragmentInstaller_WrongAttributeBoolFormat=>T("FilePackageFragmentInstaller.WrongAttributeBoolFormat"); +///"The install zip-file does not contain the file '{0}'" +public static string FilePackageFragmentInstaller_MissingFile(object parameter0)=>string.Format(T("FilePackageFragmentInstaller.MissingFile"), parameter0); +///"The file '{0}' already exists" +public static string FilePackageFragmentInstaller_FileExists(object parameter0)=>string.Format(T("FilePackageFragmentInstaller.FileExists"), parameter0); +///"File '{0}' marked as 'Read Only' and therefore cannot be overwritten." +public static string FilePackageFragmentInstaller_FileReadOnly(object parameter0)=>string.Format(T("FilePackageFragmentInstaller.FileReadOnly"), parameter0); +///"The 'assemblyLoad' attribute can only be applied to files, not directories" +public static string FilePackageFragmentInstaller_AssemblyLoadNotAllowed=>T("FilePackageFragmentInstaller.AssemblyLoadNotAllowed"); +///"The 'onlyUpdate' attribute can only be applied to files, not directories" +public static string FilePackageFragmentInstaller_OnlyUpdateNotAllowed=>T("FilePackageFragmentInstaller.OnlyUpdateNotAllowed"); +///"The 'onlyUpdate' attribute is not allowed in combination with the 'loadAssembly' attribute" +public static string FilePackageFragmentInstaller_OnlyUpdateNotAllowedWithLoadAssemlby=>T("FilePackageFragmentInstaller.OnlyUpdateNotAllowedWithLoadAssemlby"); +///"The 'onlyUpdate' and 'onlyAdd' attributes are now allowed on the same element" +public static string FilePackageFragmentInstaller_OnlyUpdateAndOnlyAddNotAllowed=>T("FilePackageFragmentInstaller.OnlyUpdateAndOnlyAddNotAllowed"); +///"The 'onlyAdd' and 'allowOverwrite' attributes are now allowed on the same element" +public static string FilePackageFragmentInstaller_OnlyAddAndAllowOverwriteNotAllowed=>T("FilePackageFragmentInstaller.OnlyAddAndAllowOverwriteNotAllowed"); +///"The install zip-file does not contain the directory '{0}'" +public static string FilePackageFragmentInstaller_MissingDirectory(object parameter0)=>string.Format(T("FilePackageFragmentInstaller.MissingDirectory"), parameter0); +///"Uninstall.xml contains file pathes, binded to the original website location, and therefore the package cannot be uninstalled safely." +public static string FilePackageFragmentInstaller_WrongBasePath=>T("FilePackageFragmentInstaller.WrongBasePath"); +///"Only one 'Files' element allowed" +public static string FilePackageFragmentUninstaller_OnlyOneFilesElement=>T("FilePackageFragmentUninstaller.OnlyOneFilesElement"); +///"Only one 'Areas' element allowed" +public static string VirtualElementProviderNodePackageFragmentInstaller_OnlyOneElement=>T("VirtualElementProviderNodePackageFragmentInstaller.OnlyOneElement"); +///"Could not find the type '{0}'" +public static string VirtualElementProviderNodePackageFragmentInstaller_MissingType(object parameter0)=>string.Format(T("VirtualElementProviderNodePackageFragmentInstaller.MissingType"), parameter0); +///"Could not find the icon '{0}'" +public static string VirtualElementProviderNodePackageFragmentInstaller_MissingIcon(object parameter0)=>string.Format(T("VirtualElementProviderNodePackageFragmentInstaller.MissingIcon"), parameter0); +///"Only one 'Areas' element allowed" +public static string VirtualElementProviderNodePackageFragmentUninstaller_OnlyOneElement=>T("VirtualElementProviderNodePackageFragmentUninstaller.OnlyOneElement"); +///"Missing {0} attribute in the configuration" +public static string VirtualElementProviderNodePackageFragmentUninstaller_MissingAttribute(object parameter0)=>string.Format(T("VirtualElementProviderNodePackageFragmentUninstaller.MissingAttribute"), parameter0); +///"File '{0}' not found" +public static string FileXslTransformationPackageFragmentInstaller_FileNotFound(object parameter0)=>string.Format(T("FileXslTransformationPackageFragmentInstaller.FileNotFound"), parameter0); +///"File '{0}' marked as 'Read Only' and therefore cannot be overwritten." +public static string FileXslTransformationPackageFragmentInstaller_FileReadOnly(object parameter0)=>string.Format(T("FileXslTransformationPackageFragmentInstaller.FileReadOnly"), parameter0); +///"File '{0}' was marked as 'Read Only'. This file attribute was explicitly removed and the file was updated normally." +public static string FileXslTransformationPackageFragmentInstaller_FileReadOnlyOverride(object parameter0)=>string.Format(T("FileXslTransformationPackageFragmentInstaller.FileReadOnlyOverride"), parameter0); +///"Only one 'PackageVersions' element allowed" +public static string PackageVersionBumperFragmentInstaller_OnlyOneElement=>T("PackageVersionBumperFragmentInstaller.OnlyOneElement"); +///"Missing {0} attribute in the configuration" +public static string PackageVersionBumperFragmentInstaller_MissingAttribute(object parameter0)=>string.Format(T("PackageVersionBumperFragmentInstaller.MissingAttribute"), parameter0); +///"Wrong attribute value format, Guid value expected" +public static string PackageVersionBumperFragmentInstaller_WrongAttributeGuidFormat=>T("PackageVersionBumperFragmentInstaller.WrongAttributeGuidFormat"); +///"The package id duplicate: '{0}'" +public static string PackageVersionBumperFragmentInstaller_PackageIdDuplicate(object parameter0)=>string.Format(T("PackageVersionBumperFragmentInstaller.PackageIdDuplicate"), parameter0); +///"Wrong attribute value format, Version value expected (x.y.z)" +public static string PackageVersionBumperFragmentInstaller_WrongAttributeVersionFormat=>T("PackageVersionBumperFragmentInstaller.WrongAttributeVersionFormat"); +///"Only one 'PackageVersions' element allowed" +public static string PackageVersionBumperFragmentUninstaller_OnlyOneElement=>T("PackageVersionBumperFragmentUninstaller.OnlyOneElement"); +///"Missing {0} attribute in the configuration" +public static string PackageVersionBumperFragmentUninstaller_MissingAttribute(object parameter0)=>string.Format(T("PackageVersionBumperFragmentUninstaller.MissingAttribute"), parameter0); +///"Wrong attribute value format, Guid value expected" +public static string PackageVersionBumperFragmentUninstaller_WrongAttributeGuidFormat=>T("PackageVersionBumperFragmentUninstaller.WrongAttributeGuidFormat"); +///"The package id duplicate: '{0}'" +public static string PackageVersionBumperFragmentUninstaller_PackageIdDuplicate(object parameter0)=>string.Format(T("PackageVersionBumperFragmentUninstaller.PackageIdDuplicate"), parameter0); +///"Wrong attribute value format, Version value expected (x.y.z)" +public static string PackageVersionBumperFragmentUninstaller_WrongAttributeVersionFormat=>T("PackageVersionBumperFragmentUninstaller.WrongAttributeVersionFormat"); +///"A public RSA key is missing in the package configuration" +public static string PackageLicenseFragmentInstaller_MissingPublicKeyElement=>T("PackageLicenseFragmentInstaller.MissingPublicKeyElement"); +///"File '{0}' does not exist." +public static string FileModifyPackageFragmentInstaller_FileDoesNotExist(object parameter0)=>string.Format(T("FileModifyPackageFragmentInstaller.FileDoesNotExist"), parameter0); +///"Invalid license key" +public static string License_InvalidKeyTitle=>T("License.InvalidKeyTitle"); +///"The license key is invalid. You need to obtain a valid license key." +public static string License_InvalidKeyMessage=>T("License.InvalidKeyMessage"); +///"Trial period has expired" +public static string License_ExpiredTitle=>T("License.ExpiredTitle"); +///"The trial period of the package has expired. You need to obtain a valid license." +public static string License_ExpiredMessage=>T("License.ExpiredMessage"); +///"Failed to get license information. ProductId: {0}" +public static string License_Failed(object parameter0)=>string.Format(T("License.Failed"), parameter0); +///"The Windows user under which this C1 instance is running does not have write permission to file or folder '{0}'." +public static string NotEnoughNtfsPermissions(object parameter0)=>string.Format(T("NotEnoughNtfsPermissions"), parameter0); +///"Only one '{0}' element allowed" +public static string PackageFragmentInstaller_OnlyOneElementAllowed(object parameter0)=>string.Format(T("PackageFragmentInstaller.OnlyOneElementAllowed"), parameter0); +///"Unexpected element name '{0}', only allowed element name is '{1}'" +public static string PackageFragmentInstaller_IncorrectElement(object parameter0,object parameter1)=>string.Format(T("PackageFragmentInstaller.IncorrectElement"), parameter0,parameter1); +///"Missing '{0}' attribute." +public static string PackageFragmentInstaller_MissingAttribute(object parameter0)=>string.Format(T("PackageFragmentInstaller.MissingAttribute"), parameter0); +///"Missing element '{0}'." +public static string PackageFragmentInstaller_MissingElement(object parameter0)=>string.Format(T("PackageFragmentInstaller.MissingElement"), parameter0); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Core.PackageSystem.PackageFragmentInstallers", key); @@ -624,428 +624,428 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Cultures { - /// "Afrikaans, South Africa" - public static string af_ZA { get { return T("af-ZA"); } } - /// "Albanian, Albania" - public static string sq_AL { get { return T("sq-AL"); } } - /// "Arabic, Algeria" - public static string ar_DZ { get { return T("ar-DZ"); } } - /// "Arabic, Bahrain" - public static string ar_BH { get { return T("ar-BH"); } } - /// "Arabic, Egypt" - public static string ar_EG { get { return T("ar-EG"); } } - /// "Arabic, Iraq" - public static string ar_IQ { get { return T("ar-IQ"); } } - /// "Arabic, Jordan" - public static string ar_JO { get { return T("ar-JO"); } } - /// "Arabic, Kuwait" - public static string ar_KW { get { return T("ar-KW"); } } - /// "Arabic, Lebanon" - public static string ar_LB { get { return T("ar-LB"); } } - /// "Arabic, Libya" - public static string ar_LY { get { return T("ar-LY"); } } - /// "Arabic, Morocco" - public static string ar_MA { get { return T("ar-MA"); } } - /// "Arabic, Oman" - public static string ar_OM { get { return T("ar-OM"); } } - /// "Arabic, Qatar" - public static string ar_QA { get { return T("ar-QA"); } } - /// "Arabic, Saudi Arabia" - public static string ar_SA { get { return T("ar-SA"); } } - /// "Arabic, Syria" - public static string ar_SY { get { return T("ar-SY"); } } - /// "Arabic, Tunisia" - public static string ar_TN { get { return T("ar-TN"); } } - /// "Arabic, U.A.E." - public static string ar_AE { get { return T("ar-AE"); } } - /// "Arabic, Yemen" - public static string ar_YE { get { return T("ar-YE"); } } - /// "Armenian, Armenia" - public static string hy_AM { get { return T("hy-AM"); } } - /// "Azeri, Cyrillic Azerbaijan" - public static string az_Cyrl_AZ { get { return T("az-Cyrl-AZ"); } } - /// "Azeri, Latin Azerbaijan" - public static string az_Latn_AZ { get { return T("az-Latn-AZ"); } } - /// "Basque, Basque" - public static string eu_ES { get { return T("eu-ES"); } } - /// "Belarusian, Belarus" - public static string be_BY { get { return T("be-BY"); } } - /// "Bosnian, Bosnia and Herzegovina" - public static string bs_Latn_BA { get { return T("bs-Latn-BA"); } } - /// "Bosnian (Cyrillic) (Bosnia and Herzegovina)" - public static string bs_Cyrl_BA { get { return T("bs-Cyrl-BA"); } } - /// "Bulgarian, Bulgaria" - public static string bg_BG { get { return T("bg-BG"); } } - /// "Catalan, Catalan" - public static string ca_ES { get { return T("ca-ES"); } } - /// "Chinese, Hong Kong S.A.R." - public static string zh_HK { get { return T("zh-HK"); } } - /// "Chinese, Macao S.A.R." - public static string zh_MO { get { return T("zh-MO"); } } - /// "Chinese, People's Republic of China" - public static string zh_CN { get { return T("zh-CN"); } } - /// "Chinese, Singapore" - public static string zh_SG { get { return T("zh-SG"); } } - /// "Chinese, Taiwan" - public static string zh_TW { get { return T("zh-TW"); } } - /// "Croatian, Bosnia and Herzegovina" - public static string hr_BA { get { return T("hr-BA"); } } - /// "Croatian, Croatia" - public static string hr_HR { get { return T("hr-HR"); } } - /// "Czech, Czech Republic" - public static string cs_CZ { get { return T("cs-CZ"); } } - /// "Danish" - public static string da_DK { get { return T("da-DK"); } } - /// "Divehi, Maldives" - public static string dv_MV { get { return T("dv-MV"); } } - /// "Dutch, Belgium" - public static string nl_BE { get { return T("nl-BE"); } } - /// "Dutch" - public static string nl_NL { get { return T("nl-NL"); } } - /// "English, Australia" - public static string en_AU { get { return T("en-AU"); } } - /// "English, Belize" - public static string en_BZ { get { return T("en-BZ"); } } - /// "English, Canada" - public static string en_CA { get { return T("en-CA"); } } - /// "English, Caribbean" - public static string en_029 { get { return T("en-029"); } } - /// "English, Ireland" - public static string en_IE { get { return T("en-IE"); } } - /// "English, Jamaica" - public static string en_JM { get { return T("en-JM"); } } - /// "English, New Zealand" - public static string en_NZ { get { return T("en-NZ"); } } - /// "English, Republic of the Philippines" - public static string en_PH { get { return T("en-PH"); } } - /// "English, South Africa" - public static string en_ZA { get { return T("en-ZA"); } } - /// "English, Trinidad and Tobago" - public static string en_TT { get { return T("en-TT"); } } - /// "English, UK" - public static string en_GB { get { return T("en-GB"); } } - /// "English, US" - public static string en_US { get { return T("en-US"); } } - /// "English, Zimbabwe" - public static string en_ZW { get { return T("en-ZW"); } } - /// "Estonian, Estonia" - public static string et_EE { get { return T("et-EE"); } } - /// "Faroese, Faroe Islands" - public static string fo_FO { get { return T("fo-FO"); } } - /// "Filipino, Philippines" - public static string fil_PH { get { return T("fil-PH"); } } - /// "Finnish" - public static string fi_FI { get { return T("fi-FI"); } } - /// "French, Belgium" - public static string fr_BE { get { return T("fr-BE"); } } - /// "French, Canada" - public static string fr_CA { get { return T("fr-CA"); } } - /// "French" - public static string fr_FR { get { return T("fr-FR"); } } - /// "French, Luxembourg" - public static string fr_LU { get { return T("fr-LU"); } } - /// "French, Principality of Monaco" - public static string fr_MC { get { return T("fr-MC"); } } - /// "French, Switzerland" - public static string fr_CH { get { return T("fr-CH"); } } - /// "Frisian, Netherlands" - public static string fy_NL { get { return T("fy-NL"); } } - /// "Gaelic, United Kingdom" - public static string gd_GB { get { return T("gd-GB"); } } - /// "Galician, Galician" - public static string gl_ES { get { return T("gl-ES"); } } - /// "Georgian, Georgia" - public static string ka_GE { get { return T("ka-GE"); } } - /// "German, Austria" - public static string de_AT { get { return T("de-AT"); } } - /// "German" - public static string de_DE { get { return T("de-DE"); } } - /// "German, Liechtenstein" - public static string de_LI { get { return T("de-LI"); } } - /// "German, Luxembourg" - public static string de_LU { get { return T("de-LU"); } } - /// "German, Switzerland" - public static string de_CH { get { return T("de-CH"); } } - /// "Greek, Greece" - public static string el_GR { get { return T("el-GR"); } } - /// "Greenlandic" - public static string kl_GL { get { return T("kl-GL"); } } - /// "Gujarati, India" - public static string gu_IN { get { return T("gu-IN"); } } - /// "Hebrew, Israel" - public static string he_IL { get { return T("he-IL"); } } - /// "Hindi, India" - public static string hi_IN { get { return T("hi-IN"); } } - /// "Hungarian, Hungary" - public static string hu_HU { get { return T("hu-HU"); } } - /// "Icelandic, Iceland" - public static string is_IS { get { return T("is-IS"); } } - /// "Indonesian, Indonesia" - public static string id_ID { get { return T("id-ID"); } } - /// "Inuktitut (Latin) (Canada)" - public static string iu_Latn_CA { get { return T("iu-Latn-CA"); } } - /// "Irish, Ireland" - public static string ga_IE { get { return T("ga-IE"); } } - /// "Italian" - public static string it_IT { get { return T("it-IT"); } } - /// "Italian, Switzerland" - public static string it_CH { get { return T("it-CH"); } } - /// "Japanese, Japan" - public static string ja_JP { get { return T("ja-JP"); } } - /// "Kannada, India" - public static string kn_IN { get { return T("kn-IN"); } } - /// "Kazakh, Kazakhstan" - public static string kk_KZ { get { return T("kk-KZ"); } } - /// "Kiswahili, Kenya" - public static string sw_KE { get { return T("sw-KE"); } } - /// "Konkani, India" - public static string kok_IN { get { return T("kok-IN"); } } - /// "Korean, Korea" - public static string ko_KR { get { return T("ko-KR"); } } - /// "Kyrgyz, Kyrgyzstan" - public static string ky_KG { get { return T("ky-KG"); } } - /// "Latvian, Latvia" - public static string lv_LV { get { return T("lv-LV"); } } - /// "Lithuanian, Lithuania" - public static string lt_LT { get { return T("lt-LT"); } } - /// "Luxembourgish, Luxembourg" - public static string lb_LU { get { return T("lb-LU"); } } - /// "Macedonian, Former Yugoslav Republic of Macedonia" - public static string mk_MK { get { return T("mk-MK"); } } - /// "Malay, Brunei Darussalam" - public static string ms_BN { get { return T("ms-BN"); } } - /// "Malay, Malaysia" - public static string ms_MY { get { return T("ms-MY"); } } - /// "Maltese, Malta" - public static string mt_MT { get { return T("mt-MT"); } } - /// "Maori, New Zealand" - public static string mi_NZ { get { return T("mi-NZ"); } } - /// "Mapudungun, Chile" - public static string arn_CL { get { return T("arn-CL"); } } - /// "Marathi, India" - public static string mr_IN { get { return T("mr-IN"); } } - /// "Mohawk, Canada" - public static string moh_CA { get { return T("moh-CA"); } } - /// "Mongolian, Cyrillic Mongolia" - public static string mn_MN { get { return T("mn-MN"); } } - /// "Norwegian Bokmål" - public static string nb_NO { get { return T("nb-NO"); } } - /// "Norwegian Nynorsk, Norway" - public static string nn_NO { get { return T("nn-NO"); } } - /// "Persian, Iran" - public static string fa_IR { get { return T("fa-IR"); } } - /// "Polish, Poland" - public static string pl_PL { get { return T("pl-PL"); } } - /// "Portuguese, Brazil" - public static string pt_BR { get { return T("pt-BR"); } } - /// "Portuguese, Portugal" - public static string pt_PT { get { return T("pt-PT"); } } - /// "Punjabi, India" - public static string pa_IN { get { return T("pa-IN"); } } - /// "Quechua, Bolivia" - public static string quz_BO { get { return T("quz-BO"); } } - /// "Quechua, Ecuador" - public static string quz_EC { get { return T("quz-EC"); } } - /// "Quechua, Peru" - public static string quz_PE { get { return T("quz-PE"); } } - /// "Romanian, Romania" - public static string ro_RO { get { return T("ro-RO"); } } - /// "Romansh, Switzerland" - public static string rm_CH { get { return T("rm-CH"); } } - /// "Russian, Russia" - public static string ru_RU { get { return T("ru-RU"); } } - /// "Sami (Inari) (Finland)" - public static string smn_FI { get { return T("smn-FI"); } } - /// "Sami (Lule) (Norway)" - public static string smj_NO { get { return T("smj-NO"); } } - /// "Sami (Lule) (Sweden)" - public static string smj_SE { get { return T("smj-SE"); } } - /// "Sami (Northern) (Finland)" - public static string se_FI { get { return T("se-FI"); } } - /// "Sami (Northern) (Norway)" - public static string se_NO { get { return T("se-NO"); } } - /// "Sami" - public static string se_SE { get { return T("se-SE"); } } - /// "Sami (Skolt) (Finland)" - public static string sms_FI { get { return T("sms-FI"); } } - /// "Sami (Southern) (Norway)" - public static string sma_NO { get { return T("sma-NO"); } } - /// "Sami (Southern) (Sweden)" - public static string sma_SE { get { return T("sma-SE"); } } - /// "Sanskrit, India" - public static string sa_IN { get { return T("sa-IN"); } } - /// "Serbian, Cyrillic (Bosnia and Herzegovina)" - public static string sr_Cyrl_BA { get { return T("sr-Cyrl-BA"); } } - /// "Serbian, Cyrillic (Montenegro)" - public static string sr_Cyrl_ME { get { return T("sr-Cyrl-ME"); } } - /// "Serbian, Cyrillic (Serbia and Montenegro - former)" - public static string sr_Cyrl_CS { get { return T("sr-Cyrl-CS"); } } - /// "Serbian, Cyrillic (Serbia)" - public static string sr_Cyrl_RS { get { return T("sr-Cyrl-RS"); } } - /// "Serbian, Latin (Bosnia and Herzegovina)" - public static string sr_Latn_BA { get { return T("sr-Latn-BA"); } } - /// "Serbian, Latin (Montenegro)" - public static string sr_Latn_ME { get { return T("sr-Latn-ME"); } } - /// "Serbian, Latin (Serbia and Montenegro - former)" - public static string sr_Latn_CS { get { return T("sr-Latn-CS"); } } - /// "Serbian, Latin (Serbia)" - public static string sr_Latn_RS { get { return T("sr-Latn-RS"); } } - /// "Sesotho sa Leboa, South Africa" - public static string ns_ZA { get { return T("ns-ZA"); } } - /// "Setswana, South Africa" - public static string tn_ZA { get { return T("tn-ZA"); } } - /// "Slovak, Slovakia" - public static string sk_SK { get { return T("sk-SK"); } } - /// "Slovenian, Slovenia" - public static string sl_SI { get { return T("sl-SI"); } } - /// "Spanish, Argentina" - public static string es_AR { get { return T("es-AR"); } } - /// "Spanish, Bolivia" - public static string es_BO { get { return T("es-BO"); } } - /// "Spanish, Chile" - public static string es_CL { get { return T("es-CL"); } } - /// "Spanish, Colombia" - public static string es_CO { get { return T("es-CO"); } } - /// "Spanish, Costa Rica" - public static string es_CR { get { return T("es-CR"); } } - /// "Spanish, Dominican Republic" - public static string es_DO { get { return T("es-DO"); } } - /// "Spanish, Ecuador" - public static string es_EC { get { return T("es-EC"); } } - /// "Spanish, El Salvador" - public static string es_SV { get { return T("es-SV"); } } - /// "Spanish, Guatemala" - public static string es_GT { get { return T("es-GT"); } } - /// "Spanish, Honduras" - public static string es_HN { get { return T("es-HN"); } } - /// "Spanish, Mexico" - public static string es_MX { get { return T("es-MX"); } } - /// "Spanish, Nicaragua" - public static string es_NI { get { return T("es-NI"); } } - /// "Spanish, Panama" - public static string es_PA { get { return T("es-PA"); } } - /// "Spanish, Paraguay" - public static string es_PY { get { return T("es-PY"); } } - /// "Spanish, Peru" - public static string es_PE { get { return T("es-PE"); } } - /// "Spanish, Puerto Rico" - public static string es_PR { get { return T("es-PR"); } } - /// "Spanish" - public static string es_ES { get { return T("es-ES"); } } - /// "Spanish, Uruguay" - public static string es_UY { get { return T("es-UY"); } } - /// "Spanish, Venezuela" - public static string es_VE { get { return T("es-VE"); } } - /// "Swedish, Finland" - public static string sv_FI { get { return T("sv-FI"); } } - /// "Swedish" - public static string sv_SE { get { return T("sv-SE"); } } - /// "Syriac, Syria" - public static string syr_SY { get { return T("syr-SY"); } } - /// "Tamil, India" - public static string ta_IN { get { return T("ta-IN"); } } - /// "Tatar, Russia" - public static string tt_RU { get { return T("tt-RU"); } } - /// "Telugu, India" - public static string te_IN { get { return T("te-IN"); } } - /// "Thai, Thailand" - public static string th_TH { get { return T("th-TH"); } } - /// "Turkish, Turkey" - public static string tr_TR { get { return T("tr-TR"); } } - /// "Ukrainian, Ukraine" - public static string uk_UA { get { return T("uk-UA"); } } - /// "Urdu, Islamic Republic of Pakistan" - public static string ur_PK { get { return T("ur-PK"); } } - /// "Uzbek, Cyrillic Uzbekistan" - public static string uz_Cyrl_UZ { get { return T("uz-Cyrl-UZ"); } } - /// "Uzbek, Latin Uzbekistan" - public static string uz_Latn_UZ { get { return T("uz-Latn-UZ"); } } - /// "Vietnamese, Vietnam" - public static string vi_VN { get { return T("vi-VN"); } } - /// "Welsh, United Kingdom" - public static string cy_GB { get { return T("cy-GB"); } } - /// "Xhosa, South Africa" - public static string xh_ZA { get { return T("xh-ZA"); } } - /// "Zulu, South Africa" - public static string zu_ZA { get { return T("zu-ZA"); } } - /// "Alsatian, France" - public static string gsw_FR { get { return T("gsw-FR"); } } - /// "Amharic, Ethiopia" - public static string am_ET { get { return T("am-ET"); } } - /// "Assamese, India" - public static string as_IN { get { return T("as-IN"); } } - /// "Bashkir, Russia" - public static string ba_RU { get { return T("ba-RU"); } } - /// "Bengali, Bangladesh" - public static string bn_BD { get { return T("bn-BD"); } } - /// "Bengali, India" - public static string bn_IN { get { return T("bn-IN"); } } - /// "Breton, France" - public static string br_FR { get { return T("br-FR"); } } - /// "Corsican, France" - public static string co_FR { get { return T("co-FR"); } } - /// "Dari, Afghanistan" - public static string prs_AF { get { return T("prs-AF"); } } - /// "English, India" - public static string en_IN { get { return T("en-IN"); } } - /// "English, Malaysia" - public static string en_MY { get { return T("en-MY"); } } - /// "English, Singapore" - public static string en_SG { get { return T("en-SG"); } } - /// "Hausa (Latin) (Nigeria)" - public static string ha_Latn_NG { get { return T("ha-Latn-NG"); } } - /// "Igbo, Nigeria" - public static string ig_NG { get { return T("ig-NG"); } } - /// "Inuktitut, Canada" - public static string iu_Cans_CA { get { return T("iu-Cans-CA"); } } - /// "Khmer, Cambodia" - public static string km_KH { get { return T("km-KH"); } } - /// "K'iche, Guatemala" - public static string qut_GT { get { return T("qut-GT"); } } - /// "Kinyarwanda, Rwanda" - public static string rw_RW { get { return T("rw-RW"); } } - /// "Lao, Lao P.D.R." - public static string lo_LA { get { return T("lo-LA"); } } - /// "Lower Sorbian, Germany" - public static string dsb_DE { get { return T("dsb-DE"); } } - /// "Malayalam, India" - public static string ml_IN { get { return T("ml-IN"); } } - /// "Mongolian (Traditional Mongolian) (People's Republic of China)" - public static string mn_Mong_CN { get { return T("mn-Mong-CN"); } } - /// "Nepali, Nepal" - public static string ne_NP { get { return T("ne-NP"); } } - /// "Occitan, France" - public static string oc_FR { get { return T("oc-FR"); } } - /// "Oriya, India" - public static string or_IN { get { return T("or-IN"); } } - /// "Pashto, Afghanistan" - public static string ps_AF { get { return T("ps-AF"); } } - /// "Sesotho sa Leboa, South Africa" - public static string nso_ZA { get { return T("nso-ZA"); } } - /// "Sinhala, Sri Lanka" - public static string si_LK { get { return T("si-LK"); } } - /// "Spanish, United States" - public static string es_US { get { return T("es-US"); } } - /// "Tajik (Cyrillic) (Tajikistan)" - public static string tg_Cyrl_TJ { get { return T("tg-Cyrl-TJ"); } } - /// "Tamazight (Latin) (Algeria)" - public static string tzm_Latn_DZ { get { return T("tzm-Latn-DZ"); } } - /// "Tibetan, People's Republic of China" - public static string bo_CN { get { return T("bo-CN"); } } - /// "Turkmen, Turkmenistan" - public static string tk_TM { get { return T("tk-TM"); } } - /// "Uighur, People's Republic of China" - public static string ug_CN { get { return T("ug-CN"); } } - /// "Upper Sorbian, Germany" - public static string hsb_DE { get { return T("hsb-DE"); } } - /// "Wolof, Senegal" - public static string wo_SN { get { return T("wo-SN"); } } - /// "Yakut, Russia" - public static string sah_RU { get { return T("sah-RU"); } } - /// "Yi, People's Republic of China" - public static string ii_CN { get { return T("ii-CN"); } } - /// "Yoruba, Nigeria" - public static string yo_NG { get { return T("yo-NG"); } } +///"Afrikaans, South Africa" +public static string af_ZA=>T("af-ZA"); +///"Albanian, Albania" +public static string sq_AL=>T("sq-AL"); +///"Arabic, Algeria" +public static string ar_DZ=>T("ar-DZ"); +///"Arabic, Bahrain" +public static string ar_BH=>T("ar-BH"); +///"Arabic, Egypt" +public static string ar_EG=>T("ar-EG"); +///"Arabic, Iraq" +public static string ar_IQ=>T("ar-IQ"); +///"Arabic, Jordan" +public static string ar_JO=>T("ar-JO"); +///"Arabic, Kuwait" +public static string ar_KW=>T("ar-KW"); +///"Arabic, Lebanon" +public static string ar_LB=>T("ar-LB"); +///"Arabic, Libya" +public static string ar_LY=>T("ar-LY"); +///"Arabic, Morocco" +public static string ar_MA=>T("ar-MA"); +///"Arabic, Oman" +public static string ar_OM=>T("ar-OM"); +///"Arabic, Qatar" +public static string ar_QA=>T("ar-QA"); +///"Arabic, Saudi Arabia" +public static string ar_SA=>T("ar-SA"); +///"Arabic, Syria" +public static string ar_SY=>T("ar-SY"); +///"Arabic, Tunisia" +public static string ar_TN=>T("ar-TN"); +///"Arabic, U.A.E." +public static string ar_AE=>T("ar-AE"); +///"Arabic, Yemen" +public static string ar_YE=>T("ar-YE"); +///"Armenian, Armenia" +public static string hy_AM=>T("hy-AM"); +///"Azeri, Cyrillic Azerbaijan" +public static string az_Cyrl_AZ=>T("az-Cyrl-AZ"); +///"Azeri, Latin Azerbaijan" +public static string az_Latn_AZ=>T("az-Latn-AZ"); +///"Basque, Basque" +public static string eu_ES=>T("eu-ES"); +///"Belarusian, Belarus" +public static string be_BY=>T("be-BY"); +///"Bosnian, Bosnia and Herzegovina" +public static string bs_Latn_BA=>T("bs-Latn-BA"); +///"Bosnian (Cyrillic) (Bosnia and Herzegovina)" +public static string bs_Cyrl_BA=>T("bs-Cyrl-BA"); +///"Bulgarian, Bulgaria" +public static string bg_BG=>T("bg-BG"); +///"Catalan, Catalan" +public static string ca_ES=>T("ca-ES"); +///"Chinese, Hong Kong S.A.R." +public static string zh_HK=>T("zh-HK"); +///"Chinese, Macao S.A.R." +public static string zh_MO=>T("zh-MO"); +///"Chinese, People's Republic of China" +public static string zh_CN=>T("zh-CN"); +///"Chinese, Singapore" +public static string zh_SG=>T("zh-SG"); +///"Chinese, Taiwan" +public static string zh_TW=>T("zh-TW"); +///"Croatian, Bosnia and Herzegovina" +public static string hr_BA=>T("hr-BA"); +///"Croatian, Croatia" +public static string hr_HR=>T("hr-HR"); +///"Czech, Czech Republic" +public static string cs_CZ=>T("cs-CZ"); +///"Danish" +public static string da_DK=>T("da-DK"); +///"Divehi, Maldives" +public static string dv_MV=>T("dv-MV"); +///"Dutch, Belgium" +public static string nl_BE=>T("nl-BE"); +///"Dutch" +public static string nl_NL=>T("nl-NL"); +///"English, Australia" +public static string en_AU=>T("en-AU"); +///"English, Belize" +public static string en_BZ=>T("en-BZ"); +///"English, Canada" +public static string en_CA=>T("en-CA"); +///"English, Caribbean" +public static string en_029=>T("en-029"); +///"English, Ireland" +public static string en_IE=>T("en-IE"); +///"English, Jamaica" +public static string en_JM=>T("en-JM"); +///"English, New Zealand" +public static string en_NZ=>T("en-NZ"); +///"English, Republic of the Philippines" +public static string en_PH=>T("en-PH"); +///"English, South Africa" +public static string en_ZA=>T("en-ZA"); +///"English, Trinidad and Tobago" +public static string en_TT=>T("en-TT"); +///"English, UK" +public static string en_GB=>T("en-GB"); +///"English, US" +public static string en_US=>T("en-US"); +///"English, Zimbabwe" +public static string en_ZW=>T("en-ZW"); +///"Estonian, Estonia" +public static string et_EE=>T("et-EE"); +///"Faroese, Faroe Islands" +public static string fo_FO=>T("fo-FO"); +///"Filipino, Philippines" +public static string fil_PH=>T("fil-PH"); +///"Finnish" +public static string fi_FI=>T("fi-FI"); +///"French, Belgium" +public static string fr_BE=>T("fr-BE"); +///"French, Canada" +public static string fr_CA=>T("fr-CA"); +///"French" +public static string fr_FR=>T("fr-FR"); +///"French, Luxembourg" +public static string fr_LU=>T("fr-LU"); +///"French, Principality of Monaco" +public static string fr_MC=>T("fr-MC"); +///"French, Switzerland" +public static string fr_CH=>T("fr-CH"); +///"Frisian, Netherlands" +public static string fy_NL=>T("fy-NL"); +///"Gaelic, United Kingdom" +public static string gd_GB=>T("gd-GB"); +///"Galician, Galician" +public static string gl_ES=>T("gl-ES"); +///"Georgian, Georgia" +public static string ka_GE=>T("ka-GE"); +///"German, Austria" +public static string de_AT=>T("de-AT"); +///"German" +public static string de_DE=>T("de-DE"); +///"German, Liechtenstein" +public static string de_LI=>T("de-LI"); +///"German, Luxembourg" +public static string de_LU=>T("de-LU"); +///"German, Switzerland" +public static string de_CH=>T("de-CH"); +///"Greek, Greece" +public static string el_GR=>T("el-GR"); +///"Greenlandic" +public static string kl_GL=>T("kl-GL"); +///"Gujarati, India" +public static string gu_IN=>T("gu-IN"); +///"Hebrew, Israel" +public static string he_IL=>T("he-IL"); +///"Hindi, India" +public static string hi_IN=>T("hi-IN"); +///"Hungarian, Hungary" +public static string hu_HU=>T("hu-HU"); +///"Icelandic, Iceland" +public static string is_IS=>T("is-IS"); +///"Indonesian, Indonesia" +public static string id_ID=>T("id-ID"); +///"Inuktitut (Latin) (Canada)" +public static string iu_Latn_CA=>T("iu-Latn-CA"); +///"Irish, Ireland" +public static string ga_IE=>T("ga-IE"); +///"Italian" +public static string it_IT=>T("it-IT"); +///"Italian, Switzerland" +public static string it_CH=>T("it-CH"); +///"Japanese, Japan" +public static string ja_JP=>T("ja-JP"); +///"Kannada, India" +public static string kn_IN=>T("kn-IN"); +///"Kazakh, Kazakhstan" +public static string kk_KZ=>T("kk-KZ"); +///"Kiswahili, Kenya" +public static string sw_KE=>T("sw-KE"); +///"Konkani, India" +public static string kok_IN=>T("kok-IN"); +///"Korean, Korea" +public static string ko_KR=>T("ko-KR"); +///"Kyrgyz, Kyrgyzstan" +public static string ky_KG=>T("ky-KG"); +///"Latvian, Latvia" +public static string lv_LV=>T("lv-LV"); +///"Lithuanian, Lithuania" +public static string lt_LT=>T("lt-LT"); +///"Luxembourgish, Luxembourg" +public static string lb_LU=>T("lb-LU"); +///"Macedonian, Former Yugoslav Republic of Macedonia" +public static string mk_MK=>T("mk-MK"); +///"Malay, Brunei Darussalam" +public static string ms_BN=>T("ms-BN"); +///"Malay, Malaysia" +public static string ms_MY=>T("ms-MY"); +///"Maltese, Malta" +public static string mt_MT=>T("mt-MT"); +///"Maori, New Zealand" +public static string mi_NZ=>T("mi-NZ"); +///"Mapudungun, Chile" +public static string arn_CL=>T("arn-CL"); +///"Marathi, India" +public static string mr_IN=>T("mr-IN"); +///"Mohawk, Canada" +public static string moh_CA=>T("moh-CA"); +///"Mongolian, Cyrillic Mongolia" +public static string mn_MN=>T("mn-MN"); +///"Norwegian Bokmål" +public static string nb_NO=>T("nb-NO"); +///"Norwegian Nynorsk, Norway" +public static string nn_NO=>T("nn-NO"); +///"Persian, Iran" +public static string fa_IR=>T("fa-IR"); +///"Polish, Poland" +public static string pl_PL=>T("pl-PL"); +///"Portuguese, Brazil" +public static string pt_BR=>T("pt-BR"); +///"Portuguese, Portugal" +public static string pt_PT=>T("pt-PT"); +///"Punjabi, India" +public static string pa_IN=>T("pa-IN"); +///"Quechua, Bolivia" +public static string quz_BO=>T("quz-BO"); +///"Quechua, Ecuador" +public static string quz_EC=>T("quz-EC"); +///"Quechua, Peru" +public static string quz_PE=>T("quz-PE"); +///"Romanian, Romania" +public static string ro_RO=>T("ro-RO"); +///"Romansh, Switzerland" +public static string rm_CH=>T("rm-CH"); +///"Russian, Russia" +public static string ru_RU=>T("ru-RU"); +///"Sami (Inari) (Finland)" +public static string smn_FI=>T("smn-FI"); +///"Sami (Lule) (Norway)" +public static string smj_NO=>T("smj-NO"); +///"Sami (Lule) (Sweden)" +public static string smj_SE=>T("smj-SE"); +///"Sami (Northern) (Finland)" +public static string se_FI=>T("se-FI"); +///"Sami (Northern) (Norway)" +public static string se_NO=>T("se-NO"); +///"Sami" +public static string se_SE=>T("se-SE"); +///"Sami (Skolt) (Finland)" +public static string sms_FI=>T("sms-FI"); +///"Sami (Southern) (Norway)" +public static string sma_NO=>T("sma-NO"); +///"Sami (Southern) (Sweden)" +public static string sma_SE=>T("sma-SE"); +///"Sanskrit, India" +public static string sa_IN=>T("sa-IN"); +///"Serbian, Cyrillic (Bosnia and Herzegovina)" +public static string sr_Cyrl_BA=>T("sr-Cyrl-BA"); +///"Serbian, Cyrillic (Montenegro)" +public static string sr_Cyrl_ME=>T("sr-Cyrl-ME"); +///"Serbian, Cyrillic (Serbia and Montenegro - former)" +public static string sr_Cyrl_CS=>T("sr-Cyrl-CS"); +///"Serbian, Cyrillic (Serbia)" +public static string sr_Cyrl_RS=>T("sr-Cyrl-RS"); +///"Serbian, Latin (Bosnia and Herzegovina)" +public static string sr_Latn_BA=>T("sr-Latn-BA"); +///"Serbian, Latin (Montenegro)" +public static string sr_Latn_ME=>T("sr-Latn-ME"); +///"Serbian, Latin (Serbia and Montenegro - former)" +public static string sr_Latn_CS=>T("sr-Latn-CS"); +///"Serbian, Latin (Serbia)" +public static string sr_Latn_RS=>T("sr-Latn-RS"); +///"Sesotho sa Leboa, South Africa" +public static string ns_ZA=>T("ns-ZA"); +///"Setswana, South Africa" +public static string tn_ZA=>T("tn-ZA"); +///"Slovak, Slovakia" +public static string sk_SK=>T("sk-SK"); +///"Slovenian, Slovenia" +public static string sl_SI=>T("sl-SI"); +///"Spanish, Argentina" +public static string es_AR=>T("es-AR"); +///"Spanish, Bolivia" +public static string es_BO=>T("es-BO"); +///"Spanish, Chile" +public static string es_CL=>T("es-CL"); +///"Spanish, Colombia" +public static string es_CO=>T("es-CO"); +///"Spanish, Costa Rica" +public static string es_CR=>T("es-CR"); +///"Spanish, Dominican Republic" +public static string es_DO=>T("es-DO"); +///"Spanish, Ecuador" +public static string es_EC=>T("es-EC"); +///"Spanish, El Salvador" +public static string es_SV=>T("es-SV"); +///"Spanish, Guatemala" +public static string es_GT=>T("es-GT"); +///"Spanish, Honduras" +public static string es_HN=>T("es-HN"); +///"Spanish, Mexico" +public static string es_MX=>T("es-MX"); +///"Spanish, Nicaragua" +public static string es_NI=>T("es-NI"); +///"Spanish, Panama" +public static string es_PA=>T("es-PA"); +///"Spanish, Paraguay" +public static string es_PY=>T("es-PY"); +///"Spanish, Peru" +public static string es_PE=>T("es-PE"); +///"Spanish, Puerto Rico" +public static string es_PR=>T("es-PR"); +///"Spanish" +public static string es_ES=>T("es-ES"); +///"Spanish, Uruguay" +public static string es_UY=>T("es-UY"); +///"Spanish, Venezuela" +public static string es_VE=>T("es-VE"); +///"Swedish, Finland" +public static string sv_FI=>T("sv-FI"); +///"Swedish" +public static string sv_SE=>T("sv-SE"); +///"Syriac, Syria" +public static string syr_SY=>T("syr-SY"); +///"Tamil, India" +public static string ta_IN=>T("ta-IN"); +///"Tatar, Russia" +public static string tt_RU=>T("tt-RU"); +///"Telugu, India" +public static string te_IN=>T("te-IN"); +///"Thai, Thailand" +public static string th_TH=>T("th-TH"); +///"Turkish, Turkey" +public static string tr_TR=>T("tr-TR"); +///"Ukrainian, Ukraine" +public static string uk_UA=>T("uk-UA"); +///"Urdu, Islamic Republic of Pakistan" +public static string ur_PK=>T("ur-PK"); +///"Uzbek, Cyrillic Uzbekistan" +public static string uz_Cyrl_UZ=>T("uz-Cyrl-UZ"); +///"Uzbek, Latin Uzbekistan" +public static string uz_Latn_UZ=>T("uz-Latn-UZ"); +///"Vietnamese, Vietnam" +public static string vi_VN=>T("vi-VN"); +///"Welsh, United Kingdom" +public static string cy_GB=>T("cy-GB"); +///"Xhosa, South Africa" +public static string xh_ZA=>T("xh-ZA"); +///"Zulu, South Africa" +public static string zu_ZA=>T("zu-ZA"); +///"Alsatian, France" +public static string gsw_FR=>T("gsw-FR"); +///"Amharic, Ethiopia" +public static string am_ET=>T("am-ET"); +///"Assamese, India" +public static string as_IN=>T("as-IN"); +///"Bashkir, Russia" +public static string ba_RU=>T("ba-RU"); +///"Bengali, Bangladesh" +public static string bn_BD=>T("bn-BD"); +///"Bengali, India" +public static string bn_IN=>T("bn-IN"); +///"Breton, France" +public static string br_FR=>T("br-FR"); +///"Corsican, France" +public static string co_FR=>T("co-FR"); +///"Dari, Afghanistan" +public static string prs_AF=>T("prs-AF"); +///"English, India" +public static string en_IN=>T("en-IN"); +///"English, Malaysia" +public static string en_MY=>T("en-MY"); +///"English, Singapore" +public static string en_SG=>T("en-SG"); +///"Hausa (Latin) (Nigeria)" +public static string ha_Latn_NG=>T("ha-Latn-NG"); +///"Igbo, Nigeria" +public static string ig_NG=>T("ig-NG"); +///"Inuktitut, Canada" +public static string iu_Cans_CA=>T("iu-Cans-CA"); +///"Khmer, Cambodia" +public static string km_KH=>T("km-KH"); +///"K'iche, Guatemala" +public static string qut_GT=>T("qut-GT"); +///"Kinyarwanda, Rwanda" +public static string rw_RW=>T("rw-RW"); +///"Lao, Lao P.D.R." +public static string lo_LA=>T("lo-LA"); +///"Lower Sorbian, Germany" +public static string dsb_DE=>T("dsb-DE"); +///"Malayalam, India" +public static string ml_IN=>T("ml-IN"); +///"Mongolian (Traditional Mongolian) (People's Republic of China)" +public static string mn_Mong_CN=>T("mn-Mong-CN"); +///"Nepali, Nepal" +public static string ne_NP=>T("ne-NP"); +///"Occitan, France" +public static string oc_FR=>T("oc-FR"); +///"Oriya, India" +public static string or_IN=>T("or-IN"); +///"Pashto, Afghanistan" +public static string ps_AF=>T("ps-AF"); +///"Sesotho sa Leboa, South Africa" +public static string nso_ZA=>T("nso-ZA"); +///"Sinhala, Sri Lanka" +public static string si_LK=>T("si-LK"); +///"Spanish, United States" +public static string es_US=>T("es-US"); +///"Tajik (Cyrillic) (Tajikistan)" +public static string tg_Cyrl_TJ=>T("tg-Cyrl-TJ"); +///"Tamazight (Latin) (Algeria)" +public static string tzm_Latn_DZ=>T("tzm-Latn-DZ"); +///"Tibetan, People's Republic of China" +public static string bo_CN=>T("bo-CN"); +///"Turkmen, Turkmenistan" +public static string tk_TM=>T("tk-TM"); +///"Uighur, People's Republic of China" +public static string ug_CN=>T("ug-CN"); +///"Upper Sorbian, Germany" +public static string hsb_DE=>T("hsb-DE"); +///"Wolof, Senegal" +public static string wo_SN=>T("wo-SN"); +///"Yakut, Russia" +public static string sah_RU=>T("sah-RU"); +///"Yi, People's Republic of China" +public static string ii_CN=>T("ii-CN"); +///"Yoruba, Nigeria" +public static string yo_NG=>T("yo-NG"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Cultures", key); @@ -1055,22 +1055,22 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_EntityTokenLocked { - /// "This item is currently being edited" - public static string LayoutLabel { get { return T("LayoutLabel"); } } - /// "Information" - public static string LockedByUsername_FieldGroupLabel { get { return T("LockedByUsername.FieldGroupLabel"); } } - /// "The item is edited by:" - public static string LockedByUsername_Label { get { return T("LockedByUsername.Label"); } } - /// "Another user is editing this item. Press OK to proceed or cancel to abort." - public static string LockedByUsername_Help { get { return T("LockedByUsername.Help"); } } - /// "You are editing this item in another tab - continue?" - public static string SameUserHeading_Title { get { return T("SameUserHeading.Title"); } } - /// "Press OK to proceed opening the item or Cancel to abort." - public static string SameUserHeading_Description { get { return T("SameUserHeading.Description"); } } - /// "Another user is editing this item - continue?" - public static string AnotherUserHeading_Title { get { return T("AnotherUserHeading.Title"); } } - /// "If the item is changed simultaneously by multiple users changes may get lost. Press OK to proceed or cancel to abort." - public static string AnotherUserHeading_Description { get { return T("AnotherUserHeading.Description"); } } +///"This item is currently being edited" +public static string LayoutLabel=>T("LayoutLabel"); +///"Information" +public static string LockedByUsername_FieldGroupLabel=>T("LockedByUsername.FieldGroupLabel"); +///"The item is edited by:" +public static string LockedByUsername_Label=>T("LockedByUsername.Label"); +///"Another user is editing this item. Press OK to proceed or cancel to abort." +public static string LockedByUsername_Help=>T("LockedByUsername.Help"); +///"You are editing this item in another tab - continue?" +public static string SameUserHeading_Title=>T("SameUserHeading.Title"); +///"Press OK to proceed opening the item or Cancel to abort." +public static string SameUserHeading_Description=>T("SameUserHeading.Description"); +///"Another user is editing this item - continue?" +public static string AnotherUserHeading_Title=>T("AnotherUserHeading.Title"); +///"If the item is changed simultaneously by multiple users changes may get lost. Press OK to proceed or cancel to abort." +public static string AnotherUserHeading_Description=>T("AnotherUserHeading.Description"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.EntityTokenLocked", key); @@ -1080,26 +1080,26 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_GeneratedTypes { - /// "One or more types are referencing this type. Renaming is not possible" - public static string TypesAreReferencing { get { return T("TypesAreReferencing"); } } - /// "The type name '{0}' appears in the namespace '{1}' - this is not allowed" - public static string TypeNameInNamespace(object parameter0,object parameter1) { return string.Format(T("TypeNameInNamespace"), parameter0,parameter1); } - /// "A type with the same name already exists" - public static string TypesNameClash { get { return T("TypesNameClash"); } } - /// "No fields added" - public static string MissingFields { get { return T("MissingFields"); } } - /// "The type name '{0}' is not a valid identifier." - public static string TypeNameIsInvalidIdentifier(object parameter0) { return string.Format(T("TypeNameIsInvalidIdentifier"), parameter0); } - /// "The field name '{0}' can not be used" - public static string FieldNameCannotBeUsed(object parameter0) { return string.Format(T("FieldNameCannotBeUsed"), parameter0); } - /// "The specified 'Type namespace' is already in use as a 'Type name' (namespace + name). Consider changing the name of '{0}' to '{0}.Item'." - public static string NameSpaceIsTypeTypeName(object parameter0) { return string.Format(T("NameSpaceIsTypeTypeName"), parameter0); } - /// "Type name belongs to a reserved namespace." - public static string NamespaceIsReserved { get { return T("NamespaceIsReserved"); } } - /// "Cannot add a data type since it will cause some compilation errors." - public static string CompileErrorWhileAddingType { get { return T("CompileErrorWhileAddingType"); } } - /// "Cannot change a data type since it will cause some compilation errors." - public static string CompileErrorWhileChangingType { get { return T("CompileErrorWhileChangingType"); } } +///"One or more types are referencing this type. Renaming is not possible" +public static string TypesAreReferencing=>T("TypesAreReferencing"); +///"The type name '{0}' appears in the namespace '{1}' - this is not allowed" +public static string TypeNameInNamespace(object parameter0,object parameter1)=>string.Format(T("TypeNameInNamespace"), parameter0,parameter1); +///"A type with the same name already exists" +public static string TypesNameClash=>T("TypesNameClash"); +///"No fields added" +public static string MissingFields=>T("MissingFields"); +///"The type name '{0}' is not a valid identifier." +public static string TypeNameIsInvalidIdentifier(object parameter0)=>string.Format(T("TypeNameIsInvalidIdentifier"), parameter0); +///"The field name '{0}' can not be used" +public static string FieldNameCannotBeUsed(object parameter0)=>string.Format(T("FieldNameCannotBeUsed"), parameter0); +///"The specified 'Type namespace' is already in use as a 'Type name' (namespace + name). Consider changing the name of '{0}' to '{0}.Item'." +public static string NameSpaceIsTypeTypeName(object parameter0)=>string.Format(T("NameSpaceIsTypeTypeName"), parameter0); +///"Type name belongs to a reserved namespace." +public static string NamespaceIsReserved=>T("NamespaceIsReserved"); +///"Cannot add a data type since it will cause some compilation errors." +public static string CompileErrorWhileAddingType=>T("CompileErrorWhileAddingType"); +///"Cannot change a data type since it will cause some compilation errors." +public static string CompileErrorWhileChangingType=>T("CompileErrorWhileChangingType"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.GeneratedTypes", key); @@ -1109,1326 +1109,1350 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Management { - /// "Edit Permissions" - public static string ManageUserPermissions_ManageUserPermissionsOnBranchLabel { get { return T("ManageUserPermissions.ManageUserPermissionsOnBranchLabel"); } } - /// "Edit Permissions" - public static string ManageUserPermissions_ManageUserPermissionsOnItemLabel { get { return T("ManageUserPermissions.ManageUserPermissionsOnItemLabel"); } } - /// "Global Permissions" - public static string ManageUserPermissions_ManageGlobalUserPermissionsLabel { get { return T("ManageUserPermissions.ManageGlobalUserPermissionsLabel"); } } - /// "Manage user permissions" - public static string ManageUserPermissions_ManageUserPermissionsToolTip { get { return T("ManageUserPermissions.ManageUserPermissionsToolTip"); } } - /// "Metadata" - public static string DataCompositionVisabilityFacade_DefaultContainerLabel { get { return T("DataCompositionVisabilityFacade.DefaultContainerLabel"); } } - /// "Delete User?" - public static string Website_Forms_Administrative_DeleteUserStep1_LabelFieldGroup { get { return T("Website.Forms.Administrative.DeleteUserStep1.LabelFieldGroup"); } } - /// "Delete the selected user?" - public static string Website_Forms_Administrative_DeleteUserStep1_Text { get { return T("Website.Forms.Administrative.DeleteUserStep1.Text"); } } - /// "Cascade delete error" - public static string DeleteUserWorkflow_CascadeDeleteErrorTitle { get { return T("DeleteUserWorkflow.CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string DeleteUserWorkflow_CascadeDeleteErrorMessage { get { return T("DeleteUserWorkflow.CascadeDeleteErrorMessage"); } } - /// "Cannot delete a user" - public static string DeleteUserWorkflow_DeleteSelfTitle { get { return T("DeleteUserWorkflow.DeleteSelfTitle"); } } - /// "You can not delete an account you logged in as." - public static string DeleteUserWorkflow_DeleteSelfErrorMessage { get { return T("DeleteUserWorkflow.DeleteSelfErrorMessage"); } } - /// "Select Function" - public static string Website_Function_SelectDialog_Title { get { return T("Website.Function.SelectDialog.Title"); } } - /// "Select Widget" - public static string Website_Widget_SelectDialog_Title { get { return T("Website.Widget.SelectDialog.Title"); } } - /// "Select Page or File" - public static string Website_ContentLink_SelectDialog_Title { get { return T("Website.ContentLink.SelectDialog.Title"); } } - /// "Select Page" - public static string Website_Page_SelectDialog_Title { get { return T("Website.Page.SelectDialog.Title"); } } - /// "Select Frontend File" - public static string Website_FrontendFile_SelectDialog_Title { get { return T("Website.FrontendFile.SelectDialog.Title"); } } - /// "Select Media" - public static string Website_Media_SelectDialog_Title { get { return T("Website.Media.SelectDialog.Title"); } } - /// "Select Image" - public static string Website_Image_SelectDialog_Title { get { return T("Website.Image.SelectDialog.Title"); } } - /// "Select Folder" - public static string Website_Folder_SelectDialog_Title { get { return T("Website.Folder.SelectDialog.Title"); } } - /// "General settings" - public static string Website_Forms_Administrative_EditUserStep1_LabelFieldGroup { get { return T("Website.Forms.Administrative.EditUserStep1.LabelFieldGroup"); } } - /// "User name" - public static string Website_Forms_Administrative_EditUserStep1_UserNameLabel { get { return T("Website.Forms.Administrative.EditUserStep1.UserNameLabel"); } } - /// "User names can not be changed. This is a 'read only' field." - public static string Website_Forms_Administrative_EditUserStep1_UserNameHelp { get { return T("Website.Forms.Administrative.EditUserStep1.UserNameHelp"); } } - /// "Password" - public static string Website_Forms_Administrative_EditUserStep1_PasswordLabel { get { return T("Website.Forms.Administrative.EditUserStep1.PasswordLabel"); } } - /// "The password has to be more than 6 characters long." - public static string Website_Forms_Administrative_EditUserStep1_PasswordHelp { get { return T("Website.Forms.Administrative.EditUserStep1.PasswordHelp"); } } - /// "Name" - public static string Website_Forms_Administrative_EditUserStep1_NameLabel { get { return T("Website.Forms.Administrative.EditUserStep1.NameLabel"); } } - /// "The full name of the person using this account." - public static string Website_Forms_Administrative_EditUserStep1_NameHelp { get { return T("Website.Forms.Administrative.EditUserStep1.NameHelp"); } } - /// "Email" - public static string Website_Forms_Administrative_EditUserStep1_EmailLabel { get { return T("Website.Forms.Administrative.EditUserStep1.EmailLabel"); } } - /// "The e-mail address of the user (optional)." - public static string Website_Forms_Administrative_EditUserStep1_EmailHelp { get { return T("Website.Forms.Administrative.EditUserStep1.EmailHelp"); } } - /// "Folder" - public static string Website_Forms_Administrative_EditUserStep1_GroupLabel { get { return T("Website.Forms.Administrative.EditUserStep1.GroupLabel"); } } - /// "If you enter a folder name that does not already exist a new folder will be created." - public static string Website_Forms_Administrative_EditUserStep1_GroupHelp { get { return T("Website.Forms.Administrative.EditUserStep1.GroupHelp"); } } - /// "C1 Console Localization" - public static string Website_Forms_Administrative_EditUserStep1_LabelLocalizationFieldGroup { get { return T("Website.Forms.Administrative.EditUserStep1.LabelLocalizationFieldGroup"); } } - /// "Regional settings" - public static string Website_Forms_Administrative_EditUserStep1_CultureLabel { get { return T("Website.Forms.Administrative.EditUserStep1.CultureLabel"); } } - /// "To change the way numbers, dates, and hours are displayed, select an entry from the list." - public static string Website_Forms_Administrative_EditUserStep1_CultureHelp { get { return T("Website.Forms.Administrative.EditUserStep1.CultureHelp"); } } - /// "C1 Console Language" - public static string Website_Forms_Administrative_EditUserStep1_C1ConsoleLanguageLabel { get { return T("Website.Forms.Administrative.EditUserStep1.C1ConsoleLanguageLabel"); } } - /// "Select the language to be used for labels, help texts, dialogs etc. The available options here are limited to languages installed. You may install more languages via the Package system, see Composite.Localization." - public static string Website_Forms_Administrative_EditUserStep1_C1ConsoleLanguageHelp { get { return T("Website.Forms.Administrative.EditUserStep1.C1ConsoleLanguageHelp"); } } - /// "Perspectives" - public static string Website_Forms_Administrative_EditUserStep1_ActivePerspectiveFieldLabel { get { return T("Website.Forms.Administrative.EditUserStep1.ActivePerspectiveFieldLabel"); } } - /// "Visible perspectives" - public static string Website_Forms_Administrative_EditUserStep1_ActivePerspectiveMultiSelectLabel { get { return T("Website.Forms.Administrative.EditUserStep1.ActivePerspectiveMultiSelectLabel"); } } - /// "Select which perspectives should be visible when the user starts the C1 Console." - public static string Website_Forms_Administrative_EditUserStep1_ActivePerspectiveMultiSelectHelp { get { return T("Website.Forms.Administrative.EditUserStep1.ActivePerspectiveMultiSelectHelp"); } } - /// "Global permissions" - public static string Website_Forms_Administrative_EditUserStep1_GlobalPermissionsFieldLabel { get { return T("Website.Forms.Administrative.EditUserStep1.GlobalPermissionsFieldLabel"); } } - /// "Global permissions" - public static string Website_Forms_Administrative_EditUserStep1_GlobalPermissionsMultiSelectLabel { get { return T("Website.Forms.Administrative.EditUserStep1.GlobalPermissionsMultiSelectLabel"); } } - /// "The Administrate permission grants the user access to manage user permissions and execute other administrative tasks. The Configure permission grants access to super user tasks." - public static string Website_Forms_Administrative_EditUserStep1_GlobalPermissionsMultiSelectHelp { get { return T("Website.Forms.Administrative.EditUserStep1.GlobalPermissionsMultiSelectHelp"); } } - /// "The removal of your own administrative permission has been ignored. You still have administrative privileges." - public static string Website_Forms_Administrative_EditUserStep1_GlobalPermissions_IgnoredOwnAdministrativeRemoval { get { return T("Website.Forms.Administrative.EditUserStep1.GlobalPermissions.IgnoredOwnAdministrativeRemoval"); } } - /// "Data language access" - public static string Website_Forms_Administrative_EditUserStep1_ActiveLocalesFieldLabel { get { return T("Website.Forms.Administrative.EditUserStep1.ActiveLocalesFieldLabel"); } } - /// "Data Languages" - public static string Website_Forms_Administrative_EditUserStep1_ActiveLocalesMultiSelectLabel { get { return T("Website.Forms.Administrative.EditUserStep1.ActiveLocalesMultiSelectLabel"); } } - /// "User has access to manage data in the selected languages." - public static string Website_Forms_Administrative_EditUserStep1_ActiveLocalesMultiSelectHelp { get { return T("Website.Forms.Administrative.EditUserStep1.ActiveLocalesMultiSelectHelp"); } } - /// "Active content language" - public static string Website_Forms_Administrative_EditUserStep1_ActiveLocaleLabel { get { return T("Website.Forms.Administrative.EditUserStep1.ActiveLocaleLabel"); } } - /// "The content language this user will edit." - public static string Website_Forms_Administrative_EditUserStep1_ActiveLocaleHelp { get { return T("Website.Forms.Administrative.EditUserStep1.ActiveLocaleHelp"); } } - /// "The selected language is not checked in the data language section." - public static string Website_Forms_Administrative_EditUserStep1_ActiveLocaleNotChecked { get { return T("Website.Forms.Administrative.EditUserStep1.ActiveLocaleNotChecked"); } } - /// "You must select at least one active language." - public static string Website_Forms_Administrative_EditUserStep1_NoActiveLocaleSelected { get { return T("Website.Forms.Administrative.EditUserStep1.NoActiveLocaleSelected"); } } - /// "General" - public static string Website_Forms_Administrative_EditUserStep1_GenerelTabLabel { get { return T("Website.Forms.Administrative.EditUserStep1.GenerelTabLabel"); } } - /// "Permissions" - public static string Website_Forms_Administrative_EditUserStep1_PermissionsTabLabel { get { return T("Website.Forms.Administrative.EditUserStep1.PermissionsTabLabel"); } } - /// "Perspectives" - public static string Website_Forms_Administrative_EditUserStep1_PerspectivesTabLabel { get { return T("Website.Forms.Administrative.EditUserStep1.PerspectivesTabLabel"); } } - /// "User Groups" - public static string Website_Forms_Administrative_EditUserStep1_UserGroupsFieldLabel { get { return T("Website.Forms.Administrative.EditUserStep1.UserGroupsFieldLabel"); } } - /// "Select the user groups that the selected user should be a member of." - public static string Website_Forms_Administrative_EditUserStep1_UserGroupsMultiSelectHelp { get { return T("Website.Forms.Administrative.EditUserStep1.UserGroupsMultiSelectHelp"); } } - /// "Is Locked" - public static string Website_Forms_Administrative_EditUserStep1_IsLockedLabel { get { return T("Website.Forms.Administrative.EditUserStep1.IsLockedLabel"); } } - /// "User can not log in" - public static string Website_Forms_Administrative_EditUserStep1_IsLockedItemLabel { get { return T("Website.Forms.Administrative.EditUserStep1.IsLockedItemLabel"); } } - /// "When checked the user will be forbidden from logging in." - public static string Website_Forms_Administrative_EditUserStep1_IsLockedHelp { get { return T("Website.Forms.Administrative.EditUserStep1.IsLockedHelp"); } } - /// "Error" - public static string EditUserWorkflow_EditErrorTitle { get { return T("EditUserWorkflow.EditErrorTitle"); } } - /// "You can not delete your own access rights to 'System' perspective." - public static string EditUserWorkflow_EditOwnAccessToSystemPerspective { get { return T("EditUserWorkflow.EditOwnAccessToSystemPerspective"); } } - /// "You can not lock your own account." - public static string EditUserWorkflow_LockingOwnUserAccount { get { return T("EditUserWorkflow.LockingOwnUserAccount"); } } - /// "Users" - public static string UserElementProvider_RootLabel { get { return T("UserElementProvider.RootLabel"); } } - /// "Users" - public static string UserElementProvider_RootToolTip { get { return T("UserElementProvider.RootToolTip"); } } - /// "Add User..." - public static string UserElementProvider_AddUserLabel { get { return T("UserElementProvider.AddUserLabel"); } } - /// "Add new user" - public static string UserElementProvider_AddUserToolTip { get { return T("UserElementProvider.AddUserToolTip"); } } - /// "Edit User" - public static string UserElementProvider_EditUserLabel { get { return T("UserElementProvider.EditUserLabel"); } } - /// "Edit selected user" - public static string UserElementProvider_EditUserToolTip { get { return T("UserElementProvider.EditUserToolTip"); } } - /// "Delete User" - public static string UserElementProvider_DeleteUserLabel { get { return T("UserElementProvider.DeleteUserLabel"); } } - /// "Delete the selected user" - public static string UserElementProvider_DeleteUserToolTip { get { return T("UserElementProvider.DeleteUserToolTip"); } } - /// "Warning" - public static string UserElementProvider_ChangeOtherActiveLocaleTitle { get { return T("UserElementProvider.ChangeOtherActiveLocaleTitle"); } } - /// "You have change the active language for a user that is currently logged on. The users console will be reloaded and data might be lost." - public static string UserElementProvider_ChangeOtherActiveLocaleMessage { get { return T("UserElementProvider.ChangeOtherActiveLocaleMessage"); } } - /// "Cleanup Required" - public static string UserElementProvider_ChangeOtherActiveLocaleDialogTitle { get { return T("UserElementProvider.ChangeOtherActiveLocaleDialogTitle"); } } - /// "This requires a stage cleanup. Active editors will be saved and closed." - public static string UserElementProvider_ChangeOtherActiveLocaleDialogText { get { return T("UserElementProvider.ChangeOtherActiveLocaleDialogText"); } } - /// "A user with the same name already exists" - public static string AddNewUserWorkflow_UsernameDuplicateError { get { return T("AddNewUserWorkflow.UsernameDuplicateError"); } } - /// "Add New User" - public static string Website_Forms_Administrative_AddNewUserStep1_LabelFieldGroup { get { return T("Website.Forms.Administrative.AddNewUserStep1.LabelFieldGroup"); } } - /// "User name" - public static string Website_Forms_Administrative_AddNewUserStep1_UserNameLabel { get { return T("Website.Forms.Administrative.AddNewUserStep1.UserNameLabel"); } } - /// "When you have created a new user the username cannot be changed." - public static string Website_Forms_Administrative_AddNewUserStep1_UserNameHelp { get { return T("Website.Forms.Administrative.AddNewUserStep1.UserNameHelp"); } } - /// "Password" - public static string Website_Forms_Administrative_AddNewUserStep1_PasswordLabel { get { return T("Website.Forms.Administrative.AddNewUserStep1.PasswordLabel"); } } - /// "The password has to be more than 6 characters long." - public static string Website_Forms_Administrative_AddNewUserStep1_PasswordHelp { get { return T("Website.Forms.Administrative.AddNewUserStep1.PasswordHelp"); } } - /// "Name" - public static string Website_Forms_Administrative_AddNewUserStep1_NameLabel { get { return T("Website.Forms.Administrative.AddNewUserStep1.NameLabel"); } } - /// "The full name of the person using this account." - public static string Website_Forms_Administrative_AddNewUserStep1_NameHelp { get { return T("Website.Forms.Administrative.AddNewUserStep1.NameHelp"); } } - /// "Email address" - public static string Website_Forms_Administrative_AddNewUserStep1_EmailLabel { get { return T("Website.Forms.Administrative.AddNewUserStep1.EmailLabel"); } } - /// "The e-mail address of the user (optional)." - public static string Website_Forms_Administrative_AddNewUserStep1_EmailHelp { get { return T("Website.Forms.Administrative.AddNewUserStep1.EmailHelp"); } } - /// "Folder" - public static string Website_Forms_Administrative_AddNewUserStep1_GroupLabel { get { return T("Website.Forms.Administrative.AddNewUserStep1.GroupLabel"); } } - /// "If you enter a folder name that does not already exist a new folder will be created." - public static string Website_Forms_Administrative_AddNewUserStep1_GroupHelp { get { return T("Website.Forms.Administrative.AddNewUserStep1.GroupHelp"); } } - /// "Regional settings" - public static string Website_Forms_Administrative_AddNewUserStep1_CultureLabel { get { return T("Website.Forms.Administrative.AddNewUserStep1.CultureLabel"); } } - /// "To change the way numbers, dates, and hours are displayed, select an entry from the list." - public static string Website_Forms_Administrative_AddNewUserStep1_CultureHelp { get { return T("Website.Forms.Administrative.AddNewUserStep1.CultureHelp"); } } - /// "C1 Console Language" - public static string Website_Forms_Administrative_AddNewUserStep1_C1ConsoleLanguageLabel { get { return T("Website.Forms.Administrative.AddNewUserStep1.C1ConsoleLanguageLabel"); } } - /// "Select the language to be used for labels, help texts, dialogs etc. The available options here are limited to languages installed. You may install more languages via the Package system, see Composite.Localization." - public static string Website_Forms_Administrative_AddNewUserStep1_C1ConsoleLanguageHelp { get { return T("Website.Forms.Administrative.AddNewUserStep1.C1ConsoleLanguageHelp"); } } - /// "A language is required" - public static string UserElementProvider_MissingActiveLanguageTitle { get { return T("UserElementProvider.MissingActiveLanguageTitle"); } } - /// "To create a user a language is required, but no languages have been added yet. You can add one under the System perspective." - public static string UserElementProvider_MissingActiveLanguageMessage { get { return T("UserElementProvider.MissingActiveLanguageMessage"); } } - /// "User with the same login already exist" - public static string UserElementProvider_UserLoginIsAlreadyUsed { get { return T("UserElementProvider.UserLoginIsAlreadyUsed"); } } - /// "Add Datafolder" - public static string AssociatedDataElementProviderHelper_AddDataFolderTypeLabel { get { return T("AssociatedDataElementProviderHelper.AddDataFolderTypeLabel"); } } - /// "Add datafolder" - public static string AssociatedDataElementProviderHelper_AddDataFolderTypeToolTip { get { return T("AssociatedDataElementProviderHelper.AddDataFolderTypeToolTip"); } } - /// "Add Data" - public static string AssociatedDataElementProviderHelper_AddAssociatedDataLabel { get { return T("AssociatedDataElementProviderHelper.AddAssociatedDataLabel"); } } - /// "Add data" - public static string AssociatedDataElementProviderHelper_AddAssociatedDataToolTip { get { return T("AssociatedDataElementProviderHelper.AddAssociatedDataToolTip"); } } - /// "Edit Data" - public static string AssociatedDataElementProviderHelper_EditAssociatedDataLabel { get { return T("AssociatedDataElementProviderHelper.EditAssociatedDataLabel"); } } - /// "Edit data" - public static string AssociatedDataElementProviderHelper_EditAssociatedDataToolTip { get { return T("AssociatedDataElementProviderHelper.EditAssociatedDataToolTip"); } } - /// "Delete Data" - public static string AssociatedDataElementProviderHelper_DeleteAssociatedDataLabel { get { return T("AssociatedDataElementProviderHelper.DeleteAssociatedDataLabel"); } } - /// "Delete data" - public static string AssociatedDataElementProviderHelper_DeleteAssociatedDataToolTip { get { return T("AssociatedDataElementProviderHelper.DeleteAssociatedDataToolTip"); } } - /// "Localize" - public static string AssociatedDataElementProviderHelper_LocalizeData { get { return T("AssociatedDataElementProviderHelper.LocalizeData"); } } - /// "Localize data" - public static string AssociatedDataElementProviderHelper_LocalizeDataToolTip { get { return T("AssociatedDataElementProviderHelper.LocalizeDataToolTip"); } } - /// "Not yet approved or published" - public static string AssociatedDataElementProviderHelper_DisabledData { get { return T("AssociatedDataElementProviderHelper.DisabledData"); } } - /// "Add Datafolder" - public static string AssociatedDataElementProviderHelper_AddDataFolderExSelectType_FieldLabel { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExSelectType.FieldLabel"); } } - /// "Datafolder type" - public static string AssociatedDataElementProviderHelper_AddDataFolderExSelectType_SelectorLabel { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExSelectType.SelectorLabel"); } } - /// "Create new datatype or use an existing datatype (if present)." - public static string AssociatedDataElementProviderHelper_AddDataFolderExSelectType_SelectorHelp { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExSelectType.SelectorHelp"); } } - /// "Settings" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelNewType { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelNewType"); } } - /// "Type name" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelTypeName { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelTypeName"); } } - /// "The technical name of the data type (ex. Product). This is used to identify this type in code and should not be changed once used externally." - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HelpTypeName { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HelpTypeName"); } } - /// "Type namespace" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelTypeNamespace { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelTypeNamespace"); } } - /// "The namespace (module / category name) of the type. This is used to identify this type in code and should not be changed." - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HelpTypeNamespace { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HelpTypeNamespace"); } } - /// "Title" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelTypeTitle { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelTypeTitle"); } } - /// "Use this entry to specify a user friendly name. You can change this field as you like." - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HelpTypeTitle { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HelpTypeTitle"); } } - /// "Fields" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelFields { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelFields"); } } - /// "Services" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_ServicesLabel { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.ServicesLabel"); } } - /// "Has publishing" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HasPublishing { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HasPublishing"); } } - /// "Has localization" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HasLocalization { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HasLocalization"); } } - /// "No page datafolders exists" - public static string AssociatedDataElementProviderHelper_AddDataFolderExWorkflow_NoTypesTitle { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExWorkflow.NoTypesTitle"); } } - /// "No page datafolders have been created yet. You can create a page datafolder in the 'Data' perspective." - public static string AssociatedDataElementProviderHelper_AddDataFolderExWorkflow_NoTypesMessage { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExWorkflow.NoTypesMessage"); } } - /// "No Unused Page Datafolders Exist" - public static string AssociatedDataElementProviderHelper_AddDataFolderExWorkflow_NoUnusedTypesTitle { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExWorkflow.NoUnusedTypesTitle"); } } - /// "All available page datafolders have been added already. To create a new page datafolder go to the 'Data' perspective." - public static string AssociatedDataElementProviderHelper_AddDataFolderExWorkflow_NoUnusedTypesMessage { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExWorkflow.NoUnusedTypesMessage"); } } - /// "Error" - public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_ErrorTitle { get { return T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.ErrorTitle"); } } - /// "Select existing data folder type to add" - public static string AssociatedDataElementProviderHelper_AddDataFolderSelectType_FieldLabel { get { return T("AssociatedDataElementProviderHelper.AddDataFolderSelectType.FieldLabel"); } } - /// "Existing data folder types" - public static string AssociatedDataElementProviderHelper_AddDataFolderSelectType_SelectorLabel { get { return T("AssociatedDataElementProviderHelper.AddDataFolderSelectType.SelectorLabel"); } } - /// "Select existing data folder type to add" - public static string AssociatedDataElementProviderHelper_AddDataFolderSelectType_SelectorHelp { get { return T("AssociatedDataElementProviderHelper.AddDataFolderSelectType.SelectorHelp"); } } - /// "Remove Metadata Field" - public static string AssociatedDataElementProviderHelper_RemoveMetaDataTypeLabel { get { return T("AssociatedDataElementProviderHelper.RemoveMetaDataTypeLabel"); } } - /// "Remove metadata field" - public static string AssociatedDataElementProviderHelper_RemoveMetaDataTypeToolTip { get { return T("AssociatedDataElementProviderHelper.RemoveMetaDataTypeToolTip"); } } - /// "Remove Datafolder from Page" - public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_LabelFieldGroup { get { return T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.LabelFieldGroup"); } } - /// "Data cleanup" - public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_FieldGroupLabel { get { return T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.FieldGroupLabel"); } } - /// "Delete data" - public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_DeleteFolderDataLabel { get { return T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.DeleteFolderDataLabel"); } } - /// "Yes, delete folder data" - public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_DeleteFolderDataCheckBoxLabel { get { return T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.DeleteFolderDataCheckBoxLabel"); } } - /// "If you want data in this folder to stay in the database, you should uncheck this option." - public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_DeleteFolderDataHelp { get { return T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.DeleteFolderDataHelp"); } } - /// "Add Metadata Field" - public static string AssociatedDataElementProviderHelper_AddMetaDataSelectType_LayoutLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataSelectType.LayoutLabel"); } } - /// "Add Metadata Field" - public static string AssociatedDataElementProviderHelper_AddMetaDataTypeLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataTypeLabel"); } } - /// "Add metadata field" - public static string AssociatedDataElementProviderHelper_AddMetaDataTypeToolTip { get { return T("AssociatedDataElementProviderHelper.AddMetaDataTypeToolTip"); } } - /// "Select existing metadata type to add" - public static string AssociatedDataElementProviderHelper_AddMetaDataSelectType_FieldLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataSelectType.FieldLabel"); } } - /// "Existing metadata types" - public static string AssociatedDataElementProviderHelper_AddMetaDataSelectType_SelectorLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataSelectType.SelectorLabel"); } } - /// "Select existing metadata type to add" - public static string AssociatedDataElementProviderHelper_AddMetaDataSelectType_SelectorHelp { get { return T("AssociatedDataElementProviderHelper.AddMetaDataSelectType.SelectorHelp"); } } - /// "No page metadata types exists" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_NoTypesTitle { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.NoTypesTitle"); } } - /// "No page metatypes have been created yet. You can create a Page metatype in the 'Data' perspective." - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_NoTypesMessage { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.NoTypesMessage"); } } - /// "Metadata field group naming" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_NamingFieldLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.NamingFieldLabel"); } } - /// "Name" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_FieldGroupNameLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.FieldGroupNameLabel"); } } - /// "Enter a unique name identifying this metadata field group" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_FieldGroupNameHelp { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.FieldGroupNameHelp"); } } - /// "Label" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_FieldGroupLabelLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.FieldGroupLabelLabel"); } } - /// "Enter a user friendly label for this metadata field group" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_FieldGroupLabelHelp { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.FieldGroupLabelHelp"); } } - /// "Metadata field group visibility" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_VisabilityFieldLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.VisabilityFieldLabel"); } } - /// "Tab" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_ContainerSelectorLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.ContainerSelectorLabel"); } } - /// "Select the tab for which this metadata should exists" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_ContainerSelectorHelp { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.ContainerSelectorHelp"); } } - /// "Start display from" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_StartDisplaySelectorLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.StartDisplaySelectorLabel"); } } - /// "Start display from" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_StartDisplaySelectorHelp { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.StartDisplaySelectorHelp"); } } - /// "Inherit display" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_InheritDisplaySelectorLabel { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.InheritDisplaySelectorLabel"); } } - /// "Inherit display" - public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_InheritDisplaySelectorHelp { get { return T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.InheritDisplaySelectorHelp"); } } - /// "The metadata field group has no items in scope" - public static string AssociatedDataElementProviderHelper_NoItems_Title { get { return T("AssociatedDataElementProviderHelper.NoItems.Title"); } } - /// "There are currently no items within the specified display range. Press Previous to change the display range or Finish to create the metadata field group." - public static string AssociatedDataElementProviderHelper_NoItems_Description { get { return T("AssociatedDataElementProviderHelper.NoItems.Description"); } } - /// "This item" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption0 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption0"); } } - /// "Children" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption1 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption1"); } } - /// "2nd generation descendants" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption2 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption2"); } } - /// "3rd generation descendants" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption3 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption3"); } } - /// "4th generation descendants" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption4 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption4"); } } - /// "5th generation descendants" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption5 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption5"); } } - /// "Do not inherit" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption0 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption0"); } } - /// "Inherit 1 generation" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption1 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption1"); } } - /// "Inherit 2 generations" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption2 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption2"); } } - /// "Inherit 3 generations" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption3 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption3"); } } - /// "Always inherit" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption4 { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption4"); } } - /// "The field group name is in use" - public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_FieldGroupNameNotValid { get { return T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.FieldGroupNameNotValid"); } } - /// "Remove Metadata Field Group" - public static string AssociatedDataElementProviderHelper_DeleteMetaDataSelectType_LayoutLabel { get { return T("AssociatedDataElementProviderHelper.DeleteMetaDataSelectType.LayoutLabel"); } } - /// "Select a metadata field group to remove" - public static string AssociatedDataElementProviderHelper_DeleteMetaDataSelectFieldGroupName_FieldLabel { get { return T("AssociatedDataElementProviderHelper.DeleteMetaDataSelectFieldGroupName.FieldLabel"); } } - /// "Field group" - public static string AssociatedDataElementProviderHelper_DeleteMetaDataSelectFieldGroupName_SelectorLabel { get { return T("AssociatedDataElementProviderHelper.DeleteMetaDataSelectFieldGroupName.SelectorLabel"); } } - /// "Select a metadata field group to remove" - public static string AssociatedDataElementProviderHelper_DeleteMetaDataSelectFieldGroupName_SelectorHelp { get { return T("AssociatedDataElementProviderHelper.DeleteMetaDataSelectFieldGroupName.SelectorHelp"); } } - /// "Edit Metadata Field" - public static string AssociatedDataElementProviderHelper_EditMetaDataTypeLabel { get { return T("AssociatedDataElementProviderHelper.EditMetaDataTypeLabel"); } } - /// "Edit metadata field" - public static string AssociatedDataElementProviderHelper_EditMetaDataTypeToolTip { get { return T("AssociatedDataElementProviderHelper.EditMetaDataTypeToolTip"); } } - /// "Edit Page Metadata Field" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_Layout_Label { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.Layout.Label"); } } - /// "Page metadata field settings" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_FieldGroup_Label { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.FieldGroup.Label"); } } - /// "Label" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_LabelTextBox_Label { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.LabelTextBox.Label"); } } - /// "The label of the metadata field. Used when editing pages" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_LabelTextBox_Help { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.LabelTextBox.Help"); } } - /// "Tab" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataContainerSelector_Label { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataContainerSelector.Label"); } } - /// "Select the tab for which this metadata should exists" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataContainerSelector_Help { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataContainerSelector.Help"); } } - /// "Start display from" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_StartDisplaySelectorLabel { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.StartDisplaySelectorLabel"); } } - /// "Start display from" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_StartDisplaySelectorHelp { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.StartDisplaySelectorHelp"); } } - /// "Inherit display" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_InheritDisplaySelectorLabel { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.InheritDisplaySelectorLabel"); } } - /// "Inherit display" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_InheritDisplaySelectorHelp { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.InheritDisplaySelectorHelp"); } } - /// "Metadata field" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataDefinitionSelector_Label { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataDefinitionSelector.Label"); } } - /// "Select the metadata field to edit" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataDefinitionSelector_Help { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataDefinitionSelector.Help"); } } - /// "No Metadata Fields to Edit" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_NoMetaDataDefinitionsExists_Title { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.NoMetaDataDefinitionsExists.Title"); } } - /// "There is no metadata fields defined on this item to edit" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_NoMetaDataDefinitionsExists_Message { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.NoMetaDataDefinitionsExists.Message"); } } - /// "The metadata type is used another place with same name but different label" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataFieldNameAlreadyUsed { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataFieldNameAlreadyUsed"); } } - /// "There exists one or more definitions with the same name, container change is not allowed" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataContainerChangeNotAllowed { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataContainerChangeNotAllowed"); } } - /// "Press finish to save" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_NoDefaultValuesNeeded_Title { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.NoDefaultValuesNeeded.Title"); } } - /// "All required information has been gathered. Press Finish to update the metadata field" - public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_NoDefaultValuesNeeded_Description { get { return T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.NoDefaultValuesNeeded.Description"); } } - /// "No Metadata Fields to Remove" - public static string AssociatedDataElementProviderHelper_DeleteMetaDataWorkflow_NoDefinedTypesExists_Title { get { return T("AssociatedDataElementProviderHelper.DeleteMetaDataWorkflow.NoDefinedTypesExists.Title"); } } - /// "There is no metadata fields defined on this item to remove" - public static string AssociatedDataElementProviderHelper_DeleteMetaDataWorkflow_NoDefinedTypesExists_Message { get { return T("AssociatedDataElementProviderHelper.DeleteMetaDataWorkflow.NoDefinedTypesExists.Message"); } } - /// "Cascade delete error" - public static string DeleteAssociatedDataWorkflow_CascadeDeleteErrorTitle { get { return T("DeleteAssociatedDataWorkflow.CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string DeleteAssociatedDataWorkflow_CascadeDeleteErrorMessage { get { return T("DeleteAssociatedDataWorkflow.CascadeDeleteErrorMessage"); } } - /// "Settings" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelNewType { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelNewType"); } } - /// "Type name" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelTypeName { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelTypeName"); } } - /// "The name of the new type that you are creating (ex. product)" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HelpTypeName { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HelpTypeName"); } } - /// "Type namespace" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelTypeNamespace { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelTypeNamespace"); } } - /// "The name of the module, category or namespace that you are creating" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HelpTypeNamespace { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HelpTypeNamespace"); } } - /// "Title" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelTypeTitle { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelTypeTitle"); } } - /// "Use this entry to specify a user friendly name" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HelpTypeTitle { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HelpTypeTitle"); } } - /// "Fields" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelFields { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelFields"); } } - /// "Services" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_ServicesLabel { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.ServicesLabel"); } } - /// "Has versioning" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HasVersioning { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HasVersioning"); } } - /// "Has publishing" - public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HasPublishing { get { return T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HasPublishing"); } } - /// "Delete Data?" - public static string Website_Forms_Administrative_DeleteAssociatedTypeDataStep1_FieldGroupLabel { get { return T("Website.Forms.Administrative.DeleteAssociatedTypeDataStep1.FieldGroupLabel"); } } - /// "Delete data?" - public static string Website_Forms_Administrative_DeleteAssociatedTypeDataStep1_Text { get { return T("Website.Forms.Administrative.DeleteAssociatedTypeDataStep1.Text"); } } - /// "Add page data" - public static string Website_Forms_Administrative_AddAssociatedDataWorkflow_FieldGroupLabel { get { return T("Website.Forms.Administrative.AddAssociatedDataWorkflow.FieldGroupLabel"); } } - /// "Select a datatype to add" - public static string Website_Forms_Administrative_AddAssociatedDataWorkflow_TypeSelectorLabel { get { return T("Website.Forms.Administrative.AddAssociatedDataWorkflow.TypeSelectorLabel"); } } - /// "Select one of the existing types to add data to" - public static string Website_Forms_Administrative_AddAssociatedDataWorkflow_TypeSelectorHelp { get { return T("Website.Forms.Administrative.AddAssociatedDataWorkflow.TypeSelectorHelp"); } } - /// "Add page datatype" - public static string Website_Forms_Administrative_AddAssociatedTypeWorkflow_FieldGroupLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeWorkflow.FieldGroupLabel"); } } - /// "Select type to add" - public static string Website_Forms_Administrative_AddAssociatedTypeAddExisting_TypeSelectorLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeAddExisting.TypeSelectorLabel"); } } - /// "Select one of the existing types in the system" - public static string Website_Forms_Administrative_AddAssociatedTypeAddExisting_TypeSelectorHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeAddExisting.TypeSelectorHelp"); } } - /// "Select a foreign key" - public static string Website_Forms_Administrative_AddAssociatedTypeAddExistingSelectForeignKey_KeySelectorLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeAddExistingSelectForeignKey.KeySelectorLabel"); } } - /// "Select one of the fields from the type to use as foreign key" - public static string Website_Forms_Administrative_AddAssociatedTypeAddExistingSelectForeignKey_KeySelectorHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeAddExistingSelectForeignKey.KeySelectorHelp"); } } - /// "Add a" - public static string Website_Forms_Administrative_AddAssociatedTypeAddingTypeSelection_KeySelectorLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeAddingTypeSelection.KeySelectorLabel"); } } - /// "Creating a new type or using an existing type" - public static string Website_Forms_Administrative_AddAssociatedTypeAddingTypeSelection_KeySelectorHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeAddingTypeSelection.KeySelectorHelp"); } } - /// "Select type:" - public static string Website_Forms_Administrative_AddAssociatedTypeAssociationTypeSelection_KeySelectorLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeAssociationTypeSelection.KeySelectorLabel"); } } - /// "Regular data is a new type that are created under a page. Metadata is a new field that are created on a page" - public static string Website_Forms_Administrative_AddAssociatedTypeAssociationTypeSelection_KeySelectorHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeAssociationTypeSelection.KeySelectorHelp"); } } - /// "Rule name" - public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeRuleNameLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeRuleNameLabel"); } } - /// "Rule name are saved with the metadata and are a part of the metadata key. The name must be unique." - public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeRuleNameHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeRuleNameHelp"); } } - /// "Rule label" - public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeRuleLabelLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeRuleLabelLabel"); } } - /// "Rule label is used as a user friendly name for the instance. Can be localized" - public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeRuleHelpHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeRuleHelpHelp"); } } - /// "Select composition container" - public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ContainerKeySelectorLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ContainerKeySelectorLabel"); } } - /// "Select container for the new rule." - public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ContainerKeySelectorHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ContainerKeySelectorHelp"); } } - /// "Select composition scope" - public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeKeySelectorLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeKeySelectorLabel"); } } - /// "Select the scope for the new composition" - public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeKeySelectorHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeKeySelectorHelp"); } } - /// "Levels" - public static string Website_Forms_Administrative_AddAssociatedTypeLevelsScopeSelection_LevelsLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeLevelsScopeSelection.LevelsLabel"); } } - /// "The depth of sub pages in which the composition will be visible" - public static string Website_Forms_Administrative_AddAssociatedTypeLevelsScopeSelection_LevelsHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeLevelsScopeSelection.LevelsHelp"); } } - /// "Confirm new datatype:" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_AssociationTypeLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.AssociationTypeLabel"); } } - /// "Metadata is a new field that are created on a page" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_AssociationTypeHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.AssociationTypeHelp"); } } - /// "Composition scope rule name" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeRuleNameLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeRuleNameLabel"); } } - /// "Rule name are saved with the metadata and are a part of the metadata key. The name must be unique." - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeRuleNameHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeRuleNameHelp"); } } - /// "Composition scope rule label" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeRuleLabelLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeRuleLabelLabel"); } } - /// "Rule label is used as a user friendly name for the instance. Can be localized" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeRuleHelpHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeRuleHelpHelp"); } } - /// "Composition scope" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeLabel"); } } - /// "This is the scope in which the new composition will be visible when editing pages" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeHelp"); } } - /// "Adding type" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_AddingTypeLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.AddingTypeLabel"); } } - /// "Create a new type or use an existing type" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_AddingTypeHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.AddingTypeHelp"); } } - /// "Existing type name" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_ExistingTypeNameLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.ExistingTypeNameLabel"); } } - /// "The name of the selected existing type in the system to use" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_ExistingTypeNameHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.ExistingTypeNameHelp"); } } - /// "Foreign key field name" - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_ForeignKeyFieldNameLabel { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.ForeignKeyFieldNameLabel"); } } - /// "The name of the field of the existing type to use as a foreign key " - public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_ForeignKeyFieldNameHelp { get { return T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.ForeignKeyFieldNameHelp"); } } - /// "Remove Datafolder" - public static string AssociatedDataElementProviderHelper_RemoveAssociatedTypeLabel { get { return T("AssociatedDataElementProviderHelper.RemoveAssociatedTypeLabel"); } } - /// "Remove datafolder" - public static string AssociatedDataElementProviderHelper_RemoveAssociatedTypeToolTip { get { return T("AssociatedDataElementProviderHelper.RemoveAssociatedTypeToolTip"); } } - /// "Remove page datatype" - public static string Website_Forms_Administrative_RemoveAssociatedType_FieldGroupLabel { get { return T("Website.Forms.Administrative.RemoveAssociatedType.FieldGroupLabel"); } } - /// "Remove page datatype" - public static string Website_Forms_Administrative_RemoveAssociatedTypeFinalInfo_AssociationTypeLabel { get { return T("Website.Forms.Administrative.RemoveAssociatedTypeFinalInfo.AssociationTypeLabel"); } } - /// "Composition scope rule name" - public static string Website_Forms_Administrative_RemoveAssociatedTypeFinalInfo_CompositionScopeRuleNameLabel { get { return T("Website.Forms.Administrative.RemoveAssociatedTypeFinalInfo.CompositionScopeRuleNameLabel"); } } - /// "Select a rule" - public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectRuleName_KeySelectorLabel { get { return T("Website.Forms.Administrative.RemoveAssociatedTypeSelectRuleName.KeySelectorLabel"); } } - /// "The name of the rule to remove" - public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectRuleName_KeySelectorHelp { get { return T("Website.Forms.Administrative.RemoveAssociatedTypeSelectRuleName.KeySelectorHelp"); } } - /// "Select page datatype" - public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectAssociationType_KeySelectorLabel { get { return T("Website.Forms.Administrative.RemoveAssociatedTypeSelectAssociationType.KeySelectorLabel"); } } - /// "" - public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectAssociationType_KeySelectorHelp { get { return T("Website.Forms.Administrative.RemoveAssociatedTypeSelectAssociationType.KeySelectorHelp"); } } - /// "Select datatype" - public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectType_TypeSelectorLabel { get { return T("Website.Forms.Administrative.RemoveAssociatedTypeSelectType.TypeSelectorLabel"); } } - /// "Select one of the existing types" - public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectType_TypeSelectorHelp { get { return T("Website.Forms.Administrative.RemoveAssociatedTypeSelectType.TypeSelectorHelp"); } } - /// "Virtual root" - public static string VirtualElementProviderElementProvider_ID01 { get { return T("VirtualElementProviderElementProvider.ID01"); } } - /// "Users and Permissions" - public static string VirtualElementProviderElementProvider_PermissionsPerspective { get { return T("VirtualElementProviderElementProvider.PermissionsPerspective"); } } - /// "Users" - public static string VirtualElementProviderElementProvider_UserPerspective { get { return T("VirtualElementProviderElementProvider.UserPerspective"); } } - /// "Developer Apps" - public static string VirtualElementProviderElementProvider_DeveloperApplicationPerspective { get { return T("VirtualElementProviderElementProvider.DeveloperApplicationPerspective"); } } - /// "User Groups" - public static string VirtualElementProviderElementProvider_UserGroupPerspective { get { return T("VirtualElementProviderElementProvider.UserGroupPerspective"); } } - /// "System" - public static string VirtualElementProviderElementProvider_SystemPerspective { get { return T("VirtualElementProviderElementProvider.SystemPerspective"); } } - /// "Content" - public static string VirtualElementProviderElementProvider_ContentPerspective { get { return T("VirtualElementProviderElementProvider.ContentPerspective"); } } - /// "Data" - public static string VirtualElementProviderElementProvider_DatasPerspective { get { return T("VirtualElementProviderElementProvider.DatasPerspective"); } } - /// "Layout" - public static string VirtualElementProviderElementProvider_DesignPerspective { get { return T("VirtualElementProviderElementProvider.DesignPerspective"); } } - /// "Functions" - public static string VirtualElementProviderElementProvider_FunctionsPerspective { get { return T("VirtualElementProviderElementProvider.FunctionsPerspective"); } } - /// "All Media Files" - public static string VirtualElementProviderElementProvider_MediaFilePerspective { get { return T("VirtualElementProviderElementProvider.MediaFilePerspective"); } } - /// "Media" - public static string VirtualElementProviderElementProvider_MediaPerspective { get { return T("VirtualElementProviderElementProvider.MediaPerspective"); } } - /// "All Functions" - public static string VirtualElementProviderElementProvider_ReadOnlyFunctionPerspective { get { return T("VirtualElementProviderElementProvider.ReadOnlyFunctionPerspective"); } } - /// "All Widget Functions" - public static string VirtualElementProviderElementProvider_ReadOnlyWidgetFunctionPerspective { get { return T("VirtualElementProviderElementProvider.ReadOnlyWidgetFunctionPerspective"); } } - /// "SQL Functions" - public static string VirtualElementProviderElementProvider_SqlFunctionPerspective { get { return T("VirtualElementProviderElementProvider.SqlFunctionPerspective"); } } - /// "Xslt Based Functions" - public static string VirtualElementProviderElementProvider_XsltBasedFunctionPerspective { get { return T("VirtualElementProviderElementProvider.XsltBasedFunctionPerspective"); } } - /// "Broadcast Message" - public static string VirtualElementProviderElementProvider_RootActions_SendMessageLabel { get { return T("VirtualElementProviderElementProvider.RootActions.SendMessageLabel"); } } - /// "Send a message to all running consoles" - public static string VirtualElementProviderElementProvider_RootActions_SendMessageTooltip { get { return T("VirtualElementProviderElementProvider.RootActions.SendMessageTooltip"); } } - /// "Restart server" - public static string VirtualElementProviderElementProvider_RootActions_RestartApplicationLabel { get { return T("VirtualElementProviderElementProvider.RootActions.RestartApplicationLabel"); } } - /// "Restart the server" - public static string VirtualElementProviderElementProvider_RootActions_RestartApplicationTooltip { get { return T("VirtualElementProviderElementProvider.RootActions.RestartApplicationTooltip"); } } - /// "Broadcast Message to All {applicationname} Consoles" - public static string SendMessageToConsolesWorkflow_Layout_Label { get { return T("SendMessageToConsolesWorkflow.Layout.Label"); } } - /// "Title" - public static string SendMessageToConsolesWorkflow_TitleTextBox_Label { get { return T("SendMessageToConsolesWorkflow.TitleTextBox.Label"); } } - /// "Dialog title of broadcast message" - public static string SendMessageToConsolesWorkflow_TitleTextBox_Help { get { return T("SendMessageToConsolesWorkflow.TitleTextBox.Help"); } } - /// "Message" - public static string SendMessageToConsolesWorkflow_MessageTextArea_Label { get { return T("SendMessageToConsolesWorkflow.MessageTextArea.Label"); } } - /// "The message to broadcast" - public static string SendMessageToConsolesWorkflow_MessageTextArea_Help { get { return T("SendMessageToConsolesWorkflow.MessageTextArea.Help"); } } - /// "Login" - public static string LoginWebRequestHandler_Login { get { return T("LoginWebRequestHandler.Login"); } } - /// "Login to {0}" - public static string LoginWebRequestHandler_Header(object parameter0) { return string.Format(T("LoginWebRequestHandler.Header"), parameter0); } - /// "Incorrect user name or password" - public static string LoginWebRequestHandler_LoginFailed { get { return T("LoginWebRequestHandler.LoginFailed"); } } - /// "Password" - public static string LoginWebRequestHandler_Password { get { return T("LoginWebRequestHandler.Password"); } } - /// "Username" - public static string LoginWebRequestHandler_Username { get { return T("LoginWebRequestHandler.Username"); } } - /// "Log in as another user." - public static string LoginWebRequestHandler_LogInAsOtherUser { get { return T("LoginWebRequestHandler.LogInAsOtherUser"); } } - /// "Wrong username or password." - public static string LoginWebRequestHandler_WrongUserNameOrPassword { get { return T("LoginWebRequestHandler.WrongUserNameOrPassword"); } } - /// "The supplied Windows login, {0}\{1} is not registered in the user database. You must use a different login." - public static string LoginWebRequestHandler_UserNameNotRegistered(object parameter0,object parameter1) { return string.Format(T("LoginWebRequestHandler.UserNameNotRegistered"), parameter0,parameter1); } - /// "The type {0} is not an interface." - public static string DataInterfaceValidator_TypeNotAnInterface(object parameter0) { return string.Format(T("DataInterfaceValidator.TypeNotAnInterface"), parameter0); } - /// "The interface type {0} does not implement the interface {1}." - public static string DataInterfaceValidator_TypeDoesNotImplementInterface(object parameter0,object parameter1) { return string.Format(T("DataInterfaceValidator.TypeDoesNotImplementInterface"), parameter0,parameter1); } - /// "The property {0} on the interface type {1} is not a accepted type." - public static string DataInterfaceValidator_NotAcceptedType(object parameter0,object parameter1) { return string.Format(T("DataInterfaceValidator.NotAcceptedType"), parameter0,parameter1); } - /// "The interface {0} is not a valid IData interface." - public static string DataInterfaceValidator_NotValidIDataInterface(object parameter0) { return string.Format(T("DataInterfaceValidator.NotValidIDataInterface"), parameter0); } - /// "Cascade delete error" - public static string DeleteMediaFileWorkflow_CascadeDeleteErrorTitle { get { return T("DeleteMediaFileWorkflow.CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string DeleteMediaFileWorkflow_CascadeDeleteErrorMessage { get { return T("DeleteMediaFileWorkflow.CascadeDeleteErrorMessage"); } } - /// "Cascade delete error" - public static string DeleteMediaFolderWorkflow_CascadeDeleteErrorTitle { get { return T("DeleteMediaFolderWorkflow.CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string DeleteMediaFolderWorkflow_CascadeDeleteErrorMessage { get { return T("DeleteMediaFolderWorkflow.CascadeDeleteErrorMessage"); } } - /// "Add folders and files to the media archive" - public static string MediaFileProviderElementProvider_RootToolTip { get { return T("MediaFileProviderElementProvider.RootToolTip"); } } - /// "Add Folder" - public static string MediaFileProviderElementProvider_AddMediaFolder { get { return T("MediaFileProviderElementProvider.AddMediaFolder"); } } - /// "Add new media folder" - public static string MediaFileProviderElementProvider_AddMediaFolderToolTip { get { return T("MediaFileProviderElementProvider.AddMediaFolderToolTip"); } } - /// "Upload File" - public static string MediaFileProviderElementProvider_AddMediaFile { get { return T("MediaFileProviderElementProvider.AddMediaFile"); } } - /// "Add new media file" - public static string MediaFileProviderElementProvider_AddMediaFileToolTip { get { return T("MediaFileProviderElementProvider.AddMediaFileToolTip"); } } - /// "Delete File" - public static string MediaFileProviderElementProvider_DeleteMediaFile { get { return T("MediaFileProviderElementProvider.DeleteMediaFile"); } } - /// "Delete the selected media file" - public static string MediaFileProviderElementProvider_DeleteMediaFileToolTip { get { return T("MediaFileProviderElementProvider.DeleteMediaFileToolTip"); } } - /// "Delete Folder" - public static string MediaFileProviderElementProvider_DeleteMediaFolder { get { return T("MediaFileProviderElementProvider.DeleteMediaFolder"); } } - /// "Delete the media folder and all items under it." - public static string MediaFileProviderElementProvider_DeleteMediaFolderToolTip { get { return T("MediaFileProviderElementProvider.DeleteMediaFolderToolTip"); } } - /// "Download" - public static string MediaFileProviderElementProvider_Download { get { return T("MediaFileProviderElementProvider.Download"); } } - /// "Download file" - public static string MediaFileProviderElementProvider_DownloadToolTip { get { return T("MediaFileProviderElementProvider.DownloadToolTip"); } } - /// "File Properties" - public static string MediaFileProviderElementProvider_EditMediaFile { get { return T("MediaFileProviderElementProvider.EditMediaFile"); } } - /// "Rename the selected media file" - public static string MediaFileProviderElementProvider_EditMediaFileToolTip { get { return T("MediaFileProviderElementProvider.EditMediaFileToolTip"); } } - /// "Edit text" - public static string MediaFileProviderElementProvider_EditMediaFileTextContent { get { return T("MediaFileProviderElementProvider.EditMediaFileTextContent"); } } - /// "Edit text content" - public static string MediaFileProviderElementProvider_EditMediaFileTextContentToolTip { get { return T("MediaFileProviderElementProvider.EditMediaFileTextContentToolTip"); } } - /// "Image Editor" - public static string MediaFileProviderElementProvider_EditImage { get { return T("MediaFileProviderElementProvider.EditImage"); } } - /// "Open the selected media file in the image editor" - public static string MediaFileProviderElementProvider_EditImageToolTip { get { return T("MediaFileProviderElementProvider.EditImageToolTip"); } } - /// "Folder Properties" - public static string MediaFileProviderElementProvider_EditMediaFolder { get { return T("MediaFileProviderElementProvider.EditMediaFolder"); } } - /// "Edit media folder properties" - public static string MediaFileProviderElementProvider_EditMediaFolderToolTip { get { return T("MediaFileProviderElementProvider.EditMediaFolderToolTip"); } } - /// "Replace File" - public static string MediaFileProviderElementProvider_ChangeMediaFile { get { return T("MediaFileProviderElementProvider.ChangeMediaFile"); } } - /// "Replace the selected with another media file" - public static string MediaFileProviderElementProvider_ChangeMediaFileToolTip { get { return T("MediaFileProviderElementProvider.ChangeMediaFileToolTip"); } } - /// "Upload Multiple" - public static string MediaFileProviderElementProvider_UploadZipFile { get { return T("MediaFileProviderElementProvider.UploadZipFile"); } } - /// "Upload Zip file" - public static string MediaFileProviderElementProvider_UploadZipFileToolTip { get { return T("MediaFileProviderElementProvider.UploadZipFileToolTip"); } } - /// "Media Item" - public static string MediaFileProviderElementProvider_MediaFileItemToolTip { get { return T("MediaFileProviderElementProvider.MediaFileItemToolTip"); } } - /// "Organize folders and files" - public static string MediaFileProviderElementProvider_OrganizedFilesAndFoldersToolTip { get { return T("MediaFileProviderElementProvider.OrganizedFilesAndFoldersToolTip"); } } - /// "Error" - public static string MediaFileProviderElementProvider_ErrorMessageTitle { get { return T("MediaFileProviderElementProvider.ErrorMessageTitle"); } } - /// "File '{0}' already exists in folder '{1}'" - public static string MediaFileProviderElementProvider_FileAlreadyExistsMessage(object parameter0,object parameter1) { return string.Format(T("MediaFileProviderElementProvider.FileAlreadyExistsMessage"), parameter0,parameter1); } - /// "Failure" - public static string UploadNewMediaFileWorkflow_UploadFailure { get { return T("UploadNewMediaFileWorkflow.UploadFailure"); } } - /// "The uploaded file must be of the same type as the original. The file you uploaded is of a different type." - public static string UploadNewMediaFileWorkflow_UploadFailureMessage { get { return T("UploadNewMediaFileWorkflow.UploadFailureMessage"); } } - /// "Show Graph" - public static string RelationshipGraphActionExecutor_ShowGraph { get { return T("RelationshipGraphActionExecutor.ShowGraph"); } } - /// "Show relationship graph" - public static string RelationshipGraphActionExecutor_ShowGraphToolTip { get { return T("RelationshipGraphActionExecutor.ShowGraphToolTip"); } } - /// "Show Oriented Graph" - public static string RelationshipGraphActionExecutor_ShowOrientedGraph { get { return T("RelationshipGraphActionExecutor.ShowOrientedGraph"); } } - /// "Show Oriented Relationship graph" - public static string RelationshipGraphActionExecutor_ShowOrientedGraphToolTip { get { return T("RelationshipGraphActionExecutor.ShowOrientedGraphToolTip"); } } - /// "Show Element Information" - public static string ShowElementInformationActionExecutor_ShowElementInformation_Label { get { return T("ShowElementInformationActionExecutor.ShowElementInformation.Label"); } } - /// "Show Element Information" - public static string ShowElementInformationActionExecutor_ShowElementInformation_ToolTip { get { return T("ShowElementInformationActionExecutor.ShowElementInformation.ToolTip"); } } - /// "Search elements" - public static string RelationshipGraphActionExecutor_Search { get { return T("RelationshipGraphActionExecutor.Search"); } } - /// "Search for elements" - public static string RelationshipGraphActionExecutor_SearchToolTip { get { return T("RelationshipGraphActionExecutor.SearchToolTip"); } } - /// "Search elements" - public static string RelationshipGraphActionExecutor_SearchElements { get { return T("RelationshipGraphActionExecutor.SearchElements"); } } - /// "Search for elements" - public static string RelationshipGraphActionExecutor_SearchElementsToolTip { get { return T("RelationshipGraphActionExecutor.SearchElementsToolTip"); } } - /// "Version No." - public static string Website_General_LabelVersionNumber { get { return T("Website.General.LabelVersionNumber"); } } - /// "Restart?" - public static string Website_Application_DialogReload_Title { get { return T("Website.Application.DialogReload.Title"); } } - /// "Restart {applicationname}? All unsaved changes will be lost." - public static string Website_Application_DialogReload_Text { get { return T("Website.Application.DialogReload.Text"); } } - /// "Save Resource?" - public static string WebSite_Application_DialogSaveResource_Title { get { return T("WebSite.Application.DialogSaveResource.Title"); } } - /// ""${resourcename}" has been modified. Save changes?" - public static string WebSite_Application_DialogSaveResource_Text { get { return T("WebSite.Application.DialogSaveResource.Text"); } } - /// "Save Resources?" - public static string Website_Dialogs_SaveAll_LabelSaveResources { get { return T("Website.Dialogs.SaveAll.LabelSaveResources"); } } - /// "Unsaved resources" - public static string Website_Dialogs_SaveAll_LabelUnsavedResources { get { return T("Website.Dialogs.SaveAll.LabelUnsavedResources"); } } - /// "Yes" - public static string Website_Dialogs_LabelYes { get { return T("Website.Dialogs.LabelYes"); } } - /// "No" - public static string Website_Dialogs_LabelNo { get { return T("Website.Dialogs.LabelNo"); } } - /// "OK" - public static string Website_Dialogs_LabelAccept { get { return T("Website.Dialogs.LabelAccept"); } } - /// "Cancel" - public static string Website_Dialogs_LabelCancel { get { return T("Website.Dialogs.LabelCancel"); } } - /// "More Info" - public static string Website_Dialogs_LabelDisclosure { get { return T("Website.Dialogs.LabelDisclosure"); } } - /// "About {applicationname}" - public static string Website_Dialogs_About_Title { get { return T("Website.Dialogs.About.Title"); } } - /// "Credits" - public static string Website_Dialogs_About_LabelCredits { get { return T("Website.Dialogs.About.LabelCredits"); } } - /// "Back" - public static string Website_Dialogs_About_LabelBack { get { return T("Website.Dialogs.About.LabelBack"); } } - /// "Credits" - public static string Website_Dialogs_About_LabelCredits2 { get { return T("Website.Dialogs.About.LabelCredits2"); } } - /// "No access" - public static string Website_Dialogs_NoAccessTitle { get { return T("Website.Dialogs.NoAccessTitle"); } } - /// "You have not been granted access rights to the system. Please contact your administrator." - public static string Website_Dialogs_NoAccessText { get { return T("Website.Dialogs.NoAccessText"); } } - /// "Unit" - public static string Website_Dialogs_ImageEditor_ScaleImage_Unit { get { return T("Website.Dialogs.ImageEditor.ScaleImage.Unit"); } } - /// "Width" - public static string Website_Dialogs_ImageEditor_ScaleImage_Width { get { return T("Website.Dialogs.ImageEditor.ScaleImage.Width"); } } - /// "Height" - public static string Website_Dialogs_ImageEditor_ScaleImage_Height { get { return T("Website.Dialogs.ImageEditor.ScaleImage.Height"); } } - /// "Scale Image" - public static string Website_Dialogs_ImageEditor_ScaleImage_LabelScaleImage { get { return T("Website.Dialogs.ImageEditor.ScaleImage.LabelScaleImage"); } } - /// "Dimensions" - public static string Website_Dialogs_ImageEditor_ScaleImage_LabelDimensions { get { return T("Website.Dialogs.ImageEditor.ScaleImage.LabelDimensions"); } } - /// "Image Size" - public static string Website_Dialogs_ImageEditor_ScaleImage_LabelImageSize { get { return T("Website.Dialogs.ImageEditor.ScaleImage.LabelImageSize"); } } - /// "Fixed Ratio" - public static string Website_Dialogs_ImageEditor_ScaleImage_LabelFixedRatio { get { return T("Website.Dialogs.ImageEditor.ScaleImage.LabelFixedRatio"); } } - /// "Free Resize" - public static string Website_Dialogs_ImageEditor_ScaleImage_LabelFreeResize { get { return T("Website.Dialogs.ImageEditor.ScaleImage.LabelFreeResize"); } } - /// "Pixels" - public static string Website_Dialogs_ImageEditor_ScaleImage_LabelPixels { get { return T("Website.Dialogs.ImageEditor.ScaleImage.LabelPixels"); } } - /// "Percent" - public static string Website_Dialogs_ImageEditor_ScaleImage_LabelPercent { get { return T("Website.Dialogs.ImageEditor.ScaleImage.LabelPercent"); } } - /// "Login screen" - public static string Website_Dialogs_Options_LoginScreen { get { return T("Website.Dialogs.Options.LoginScreen"); } } - /// "Options" - public static string Website_Dialogs_Options_LabelOptions { get { return T("Website.Dialogs.Options.LabelOptions"); } } - /// "General" - public static string Website_Dialogs_Options_LabelGeneral { get { return T("Website.Dialogs.Options.LabelGeneral"); } } - /// "Advanced" - public static string Website_Dialogs_Options_LabelAdvanced { get { return T("Website.Dialogs.Options.LabelAdvanced"); } } - /// "Login Preferences" - public static string Website_Dialogs_Options_LabelLoginPreferences { get { return T("Website.Dialogs.Options.LabelLoginPreferences"); } } - /// "Fake login screen" - public static string Website_Dialogs_Options_LabelFakeLoginScreen { get { return T("Website.Dialogs.Options.LabelFakeLoginScreen"); } } - /// "No login screen" - public static string Website_Dialogs_Options_LabelNoLoginScreen { get { return T("Website.Dialogs.Options.LabelNoLoginScreen"); } } - /// "Error in web service method " - public static string Website_Dialogs_WebServices_Error { get { return T("Website.Dialogs.WebServices.Error"); } } - /// "Web Service Error" - public static string Website_Dialogs_WebServices_LabelWebServiceError { get { return T("Website.Dialogs.WebServices.LabelWebServiceError"); } } - /// "Insert Where?" - public static string Website_Dialogs_SystemTree_DetailedPaste_Title { get { return T("Website.Dialogs.SystemTree.DetailedPaste.Title"); } } - /// "Position" - public static string Website_Dialogs_SystemTree_DetailedPaste_LabelPosition { get { return T("Website.Dialogs.SystemTree.DetailedPaste.LabelPosition"); } } - /// "Insert before" - public static string Website_Dialogs_SystemTree_DetailedPaste_LabelInsertBefore { get { return T("Website.Dialogs.SystemTree.DetailedPaste.LabelInsertBefore"); } } - /// "Insert after" - public static string Website_Dialogs_SystemTree_DetailedPaste_LabelInsertAfter { get { return T("Website.Dialogs.SystemTree.DetailedPaste.LabelInsertAfter"); } } - /// "Basic view" - public static string Website_Dialogs_EditFunction_BasicView { get { return T("Website.Dialogs.EditFunction.BasicView"); } } - /// "Advanced view" - public static string Website_Dialogs_EditFunction_AdvancedView { get { return T("Website.Dialogs.EditFunction.AdvancedView"); } } - /// "This function has no parameters" - public static string Website_Dialogs_EditFunction_BasicView_NoParameters { get { return T("Website.Dialogs.EditFunction.BasicView.NoParameters"); } } - /// "Edit image" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelTitle { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelTitle"); } } - /// "File" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelFile { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelFile"); } } - /// "Save" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelSave { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelSave"); } } - /// "Save As..." - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelSaveAs { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelSaveAs"); } } - /// "Revert" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelRevert { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelRevert"); } } - /// "View" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelView { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelView"); } } - /// "Zoom" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelZoom { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelZoom"); } } - /// "Zoom In" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelZoomIn { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelZoomIn"); } } - /// "Zoom Out" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelZoomOut { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelZoomOut"); } } - /// "800%" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label800 { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label800"); } } - /// "400%" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label400 { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label400"); } } - /// "200%" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label200 { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label200"); } } - /// "100%" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label100 { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label100"); } } - /// "50%" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label50 { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label50"); } } - /// "25%" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label25 { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label25"); } } - /// "12%" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label12 { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label12"); } } - /// "Image" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelImage { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelImage"); } } - /// "Transform" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelTransform { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelTransform"); } } - /// "Flip Horizontally" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelFlipHorizontal { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelFlipHorizontal"); } } - /// "Flip Vertically" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelFlipVertical { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelFlipVertical"); } } - /// "Rotate 90 Degrees CW" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelRotate90CW { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelRotate90CW"); } } - /// "Rotate 90 Degrees CCW" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelRotate90CCW { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelRotate90CCW"); } } - /// "Rotate 180 Degrees" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelRotate180 { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelRotate180"); } } - /// "Scale Image..." - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelScale { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelScale"); } } - /// "Crop Image" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelCrop { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelCrop"); } } - /// "Select" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBox_ToolTipSelect { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBox.ToolTipSelect"); } } - /// "Zoom" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBox_ToolTipZoom { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBox.ToolTipZoom"); } } - /// "Save" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelSave { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelSave"); } } - /// "Scale image" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelScale { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelScale"); } } - /// "Crop image" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelCrop { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelCrop"); } } - /// "Undo" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelUndo { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelUndo"); } } - /// "Redo" - public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelRedo { get { return T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelRedo"); } } - /// "Permissions" - public static string Website_Content_Views_Editors_PermissionEditor_LabelTitle { get { return T("Website.Content.Views.Editors.PermissionEditor.LabelTitle"); } } - /// "Users" - public static string Website_Content_Views_Editors_PermissionEditor_LabelTabUsers { get { return T("Website.Content.Views.Editors.PermissionEditor.LabelTabUsers"); } } - /// "User Groups" - public static string Website_Content_Views_Editors_PermissionEditor_LabelTabUserGroups { get { return T("Website.Content.Views.Editors.PermissionEditor.LabelTabUserGroups"); } } - /// "Save" - public static string Website_Content_Views_Editors_PermissionEditor_LabelButtonSave { get { return T("Website.Content.Views.Editors.PermissionEditor.LabelButtonSave"); } } - /// "Go back one page" - public static string Website_Content_Views_Help_ToolTipBack { get { return T("Website.Content.Views.Help.ToolTipBack"); } } - /// "Go forward one page" - public static string Website_Content_Views_Help_ToolTipForward { get { return T("Website.Content.Views.Help.ToolTipForward"); } } - /// "Refresh page" - public static string Website_Content_Views_Help_ToolTipRefresh { get { return T("Website.Content.Views.Help.ToolTipRefresh"); } } - /// "Contents" - public static string Website_Content_Views_Help_LabelContents { get { return T("Website.Content.Views.Help.LabelContents"); } } - /// "Help contents" - public static string Website_Content_Views_Help_ToolTipContents { get { return T("Website.Content.Views.Help.ToolTipContents"); } } - /// "Collapse All" - public static string Website_Content_Views_SystemView_ToolTipCollapseAll { get { return T("Website.Content.Views.SystemView.ToolTipCollapseAll"); } } - /// "Link with Editor" - public static string Website_Content_Views_SystemView_ToolTipLinkWithEditor { get { return T("Website.Content.Views.SystemView.ToolTipLinkWithEditor"); } } - /// "New Search..." - public static string Website_Content_Views_Search_Search_LabelNewSearch { get { return T("Website.Content.Views.Search.Search.LabelNewSearch"); } } - /// "Formatted" - public static string Website_Content_Views_ViewSource_LabelFormatted { get { return T("Website.Content.Views.ViewSource.LabelFormatted"); } } - /// "Raw" - public static string Website_Content_Views_ViewSource_LabelRaw { get { return T("Website.Content.Views.ViewSource.LabelRaw"); } } - /// "Server Log" - public static string ServerLog_Element_Label { get { return T("ServerLog.Element.Label"); } } - /// "The server log contain security and system health related messages." - public static string ServerLog_Element_Tooltip { get { return T("ServerLog.Element.Tooltip"); } } - /// "View Server Log" - public static string ServerLog_Element_View_Label { get { return T("ServerLog.Element.View.Label"); } } - /// "View recent server events" - public static string ServerLog_Element_View_Tooltip { get { return T("ServerLog.Element.View.Tooltip"); } } - /// "Server Log" - public static string ServerLog_LabelTitle { get { return T("ServerLog.LabelTitle"); } } - /// "Delete old" - public static string ServerLog_LabelButtonDeleteOld { get { return T("ServerLog.LabelButtonDeleteOld"); } } - /// "Refresh" - public static string ServerLog_LabelButtonRefresh { get { return T("ServerLog.LabelButtonRefresh"); } } - /// "No log data available..." - public static string ServerLog_EmptyLabel { get { return T("ServerLog.EmptyLabel"); } } - /// "Date" - public static string ServerLog_LogEntry_DateLabel { get { return T("ServerLog.LogEntry.DateLabel"); } } - /// "Message" - public static string ServerLog_LogEntry_MessageLabel { get { return T("ServerLog.LogEntry.MessageLabel"); } } - /// "Title" - public static string ServerLog_LogEntry_TitleLabel { get { return T("ServerLog.LogEntry.TitleLabel"); } } - /// "EventType" - public static string ServerLog_LogEntry_EventTypeLabel { get { return T("ServerLog.LogEntry.EventTypeLabel"); } } - /// "Verbose" - public static string ServerLog_Severity_Verbose { get { return T("ServerLog.Severity.Verbose"); } } - /// "Information" - public static string ServerLog_Severity_Information { get { return T("ServerLog.Severity.Information"); } } - /// "Warning" - public static string ServerLog_Severity_Warning { get { return T("ServerLog.Severity.Warning"); } } - /// "Error" - public static string ServerLog_Severity_Error { get { return T("ServerLog.Severity.Error"); } } - /// "Critical" - public static string ServerLog_Severity_Critical { get { return T("ServerLog.Severity.Critical"); } } - /// "Refresh" - public static string FunctionDocumentation_LabelButtonRefresh { get { return T("FunctionDocumentation.LabelButtonRefresh"); } } - /// "Print" - public static string FunctionDocumentation_LabelButtonPrint { get { return T("FunctionDocumentation.LabelButtonPrint"); } } - /// "Execution Ended" - public static string Website_FlowUICompleted_ExecutionEndedTitle { get { return T("Website.FlowUICompleted.ExecutionEndedTitle"); } } - /// "The action executed in this window has ended." - public static string Website_FlowUICompleted_ExecutionEndedMessage { get { return T("Website.FlowUICompleted.ExecutionEndedMessage"); } } - /// "Server Error" - public static string Website_ServerError_ServerErrorTitle { get { return T("Website.ServerError.ServerErrorTitle"); } } - /// "An unfortunate error has occurred." - public static string Website_ServerError_ServerErrorMessage { get { return T("Website.ServerError.ServerErrorMessage"); } } - /// "Details" - public static string Website_ServerError_ServerErrorDetails { get { return T("Website.ServerError.ServerErrorDetails"); } } - /// "License Violation" - public static string Website_LicenseViolation_LicenseViolationTitle { get { return T("Website.LicenseViolation.LicenseViolationTitle"); } } - /// "The requested action is in violates with your current license." - public static string Website_LicenseViolation_LicenseViolationMessage { get { return T("Website.LicenseViolation.LicenseViolationMessage"); } } - /// "Flash options" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelFlashOptions { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelFlashOptions"); } } - /// "High" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelHigh { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelHigh"); } } - /// "Low" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelLow { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelLow"); } } - /// "Autohigh" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelAutohigh { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelAutohigh"); } } - /// "Autolow" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelAutolow { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelAutolow"); } } - /// "Best" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelBest { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelBest"); } } - /// "Window" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelWindow { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelWindow"); } } - /// "Opaque" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelOpaque { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelOpaque"); } } - /// "Transparent" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelTransparent { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelTransparent"); } } - /// "Showall" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelShowall { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelShowall"); } } - /// "Noborder" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelNoborder { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelNoborder"); } } - /// "Exactfit" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelExactfit { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelExactfit"); } } - /// "Auto play" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelAutoPlay { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelAutoPlay"); } } - /// "Loop" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelLoop { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelLoop"); } } - /// "Show menu" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelShowMenu { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelShowMenu"); } } - /// "SWLiveConnect" - public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelSWLiveConnect { get { return T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelSWLiveConnect"); } } - /// "Quicktime options" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelQuickTimeOptions { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelQuickTimeOptions"); } } - /// "Loop" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelLoop { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelLoop"); } } - /// "Cache" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelCache { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelCache"); } } - /// "No correction" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelNoCorrection { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelNoCorrection"); } } - /// "Kiosk mode" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelKioskMode { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelKioskMode"); } } - /// "Play every frame" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelPlayEveryFrame { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelPlayEveryFrame"); } } - /// "Auto play" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelAutoPlay { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelAutoPlay"); } } - /// "Controller" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelController { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelController"); } } - /// "Enable Javascript" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelEnableJavaScript { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelEnableJavaScript"); } } - /// "AutoHREF" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelAutoHRef { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelAutoHRef"); } } - /// "Target cache" - public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelTargetCache { get { return T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelTargetCache"); } } - /// "Shockwave options" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelShockWaveOptions { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelShockWaveOptions"); } } - /// "High" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelHigh { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelHigh"); } } - /// "Low" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelLow { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelLow"); } } - /// "Autohigh" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelAutoHigh { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelAutoHigh"); } } - /// "Autolow" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelAutoLow { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelAutoLow"); } } - /// "Best" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelBest { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelBest"); } } - /// "Window" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelWindow { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelWindow"); } } - /// "Opaque" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelOpaque { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelOpaque"); } } - /// "Transparent" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelTransparent { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelTransparent"); } } - /// "Showall" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelShowAll { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelShowAll"); } } - /// "Noborder" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelNoBorder { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelNoBorder"); } } - /// "Exactfit" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelExactFit { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelExactFit"); } } - /// "Auto play" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelAutoPlay { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelAutoPlay"); } } - /// "Loop" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelLoop { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelLoop"); } } - /// "Show menu" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelShowMenu { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelShowMenu"); } } - /// "SWLiveConnect" - public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelSWLiveConnect { get { return T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelSWLiveConnect"); } } - /// "Quicktime options" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelQuickTimeOptions { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelQuickTimeOptions"); } } - /// "Auto Start" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelAutoStart { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelAutoStart"); } } - /// "Show menu" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelShowMenu { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelShowMenu"); } } - /// "Invoke URLs" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelInvokeURLs { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelInvokeURLs"); } } - /// "Stretch to fit" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelStretchToFit { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelStretchToFit"); } } - /// "Enabled" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelEnabled { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelEnabled"); } } - /// "Fullscreen" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelFullScreen { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelFullScreen"); } } - /// "Mute" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelMute { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelMute"); } } - /// "Windowless video" - public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelWindowLessVideo { get { return T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelWindowLessVideo"); } } - /// "Save" - public static string Website_App_LabelSave { get { return T("Website.App.LabelSave"); } } - /// "Save and Publish" - public static string Website_App_LabelSaveAndPublish { get { return T("Website.App.LabelSaveAndPublish"); } } - /// "Close Tab" - public static string Website_App_LabelCloseTab { get { return T("Website.App.LabelCloseTab"); } } - /// "Close Others" - public static string Website_App_LabelCloseOthers { get { return T("Website.App.LabelCloseOthers"); } } - /// "Refresh View" - public static string Website_App_LabelRefreshView { get { return T("Website.App.LabelRefreshView"); } } - /// "Make Dirty" - public static string Website_App_LabelMakeDirty { get { return T("Website.App.LabelMakeDirty"); } } - /// "View Source" - public static string Website_App_LabelViewSource { get { return T("Website.App.LabelViewSource"); } } - /// "View Generated" - public static string Website_App_LabelViewGenerated { get { return T("Website.App.LabelViewGenerated"); } } - /// "View Serialized" - public static string Website_App_LabelViewSerialized { get { return T("Website.App.LabelViewSerialized"); } } - /// "Close" - public static string Website_App_LabelClose { get { return T("Website.App.LabelClose"); } } - /// "File" - public static string Website_App_LabelFile { get { return T("Website.App.LabelFile"); } } - /// "Close" - public static string Website_App_LabelFileClose { get { return T("Website.App.LabelFileClose"); } } - /// "Close All" - public static string Website_App_LabelFileCloseAll { get { return T("Website.App.LabelFileCloseAll"); } } - /// "Save All..." - public static string Website_App_LabelFileSaveAll { get { return T("Website.App.LabelFileSaveAll"); } } - /// "Sign out" - public static string Website_App_LabelFileExit { get { return T("Website.App.LabelFileExit"); } } - /// "View" - public static string Website_App_LabelView { get { return T("Website.App.LabelView"); } } - /// "Composite Start" - public static string Website_App_LabelViewCompositeStart { get { return T("Website.App.LabelViewCompositeStart"); } } - /// "System Log" - public static string Website_App_LabelSystemLog { get { return T("Website.App.LabelSystemLog"); } } - /// "Developer Panel" - public static string Website_App_LabelDeveloperPanel { get { return T("Website.App.LabelDeveloperPanel"); } } - /// "Tools" - public static string Website_App_LabelTools { get { return T("Website.App.LabelTools"); } } - /// "Help" - public static string Website_App_LabelHelp { get { return T("Website.App.LabelHelp"); } } - /// "Settings" - public static string Website_App_LabelSettings { get { return T("Website.App.LabelSettings"); } } - /// "Help Contents" - public static string Website_App_LabelHelpContents { get { return T("Website.App.LabelHelpContents"); } } - /// "Provide Feedback..." - public static string Website_App_LabelFeedback { get { return T("Website.App.LabelFeedback"); } } - /// "About {applicationname}" - public static string Website_App_LabelAbout { get { return T("Website.App.LabelAbout"); } } - /// "Cut" - public static string Website_App_LabelCut { get { return T("Website.App.LabelCut"); } } - /// "Copy" - public static string Website_App_LabelCopy { get { return T("Website.App.LabelCopy"); } } - /// "Paste" - public static string Website_App_LabelPaste { get { return T("Website.App.LabelPaste"); } } - /// "Refresh" - public static string Website_App_LabelRefresh { get { return T("Website.App.LabelRefresh"); } } - /// "Only first {0} elements are shown in the tree." - public static string Website_App_LimitedElementsShown(object parameter0) { return string.Format(T("Website.App.LimitedElementsShown"), parameter0); } - /// "Loading..." - public static string Website_App_LabelLoading { get { return T("Website.App.LabelLoading"); } } - /// "Loaded" - public static string Website_App_LabelLoaded { get { return T("Website.App.LabelLoaded"); } } - /// "Saved" - public static string Website_App_LabelSaved { get { return T("Website.App.LabelSaved"); } } - /// "Minimize" - public static string Website_App_ToolTipMinimize { get { return T("Website.App.ToolTipMinimize"); } } - /// "Maximize" - public static string Website_App_ToolTipMaximize { get { return T("Website.App.ToolTipMaximize"); } } - /// "Restore" - public static string Website_App_ToolTipUnMaximize { get { return T("Website.App.ToolTipUnMaximize"); } } - /// "Restore" - public static string Website_App_ToolTipUnMinimize { get { return T("Website.App.ToolTipUnMinimize"); } } - /// "Close" - public static string Website_App_ToolTipClose { get { return T("Website.App.ToolTipClose"); } } - /// "Opening {0}..." - public static string Website_App_StatusBar_Opening(object parameter0) { return string.Format(T("Website.App.StatusBar.Opening"), parameter0); } - /// "Refreshing {0}..." - public static string Website_App_StatusBar_Refreshing(object parameter0) { return string.Format(T("Website.App.StatusBar.Refreshing"), parameter0); } - /// "Loading {0}..." - public static string Website_App_StatusBar_Loading(object parameter0) { return string.Format(T("Website.App.StatusBar.Loading"), parameter0); } - /// "Error" - public static string Website_App_StatusBar_Error { get { return T("Website.App.StatusBar.Error"); } } - /// "Warning" - public static string Website_App_StatusBar_Warn { get { return T("Website.App.StatusBar.Warn"); } } - /// "Working..." - public static string Website_App_StatusBar_Busy { get { return T("Website.App.StatusBar.Busy"); } } - /// "Ready!" - public static string Website_App_StatusBar_Ready { get { return T("Website.App.StatusBar.Ready"); } } - /// "Error in" - public static string Website_App_StatusBar_ErrorInField { get { return T("Website.App.StatusBar.ErrorInField"); } } - /// "Add New Media File" - public static string Website_Forms_Administrative_AddNewMediaFile_Layout_Label { get { return T("Website.Forms.Administrative.AddNewMediaFile.Layout.Label"); } } - /// "Filename" - public static string Website_Forms_Administrative_AddNewMediaFile_FileUpload_Label { get { return T("Website.Forms.Administrative.AddNewMediaFile.FileUpload.Label"); } } - /// "Select the file to upload" - public static string Website_Forms_Administrative_AddNewMediaFile_FileUpload_Help { get { return T("Website.Forms.Administrative.AddNewMediaFile.FileUpload.Help"); } } - /// "Allow overwrite" - public static string Website_Forms_Administrative_AddNewMediaFile_OverwriteCheckBox_Label { get { return T("Website.Forms.Administrative.AddNewMediaFile.OverwriteCheckBox.Label"); } } - /// "Replace existing file" - public static string Website_Forms_Administrative_AddNewMediaFile_OverwriteCheckBox_Help { get { return T("Website.Forms.Administrative.AddNewMediaFile.OverwriteCheckBox.Help"); } } - /// "Filename" - public static string Website_Forms_Administrative_AddNewMediaFile_FilenameTextBox_Label { get { return T("Website.Forms.Administrative.AddNewMediaFile.FilenameTextBox.Label"); } } - /// "The name of the file in the media library" - public static string Website_Forms_Administrative_AddNewMediaFile_FilenameTextBox_Help { get { return T("Website.Forms.Administrative.AddNewMediaFile.FilenameTextBox.Help"); } } - /// "Title" - public static string Website_Forms_Administrative_AddNewMediaFile_TitleTextBox_Label { get { return T("Website.Forms.Administrative.AddNewMediaFile.TitleTextBox.Label"); } } - /// "Use this field for an image title" - public static string Website_Forms_Administrative_AddNewMediaFile_TitleTextBox_Help { get { return T("Website.Forms.Administrative.AddNewMediaFile.TitleTextBox.Help"); } } - /// "Description" - public static string Website_Forms_Administrative_AddNewMediaFile_DescriptionTextBox_Label { get { return T("Website.Forms.Administrative.AddNewMediaFile.DescriptionTextBox.Label"); } } - /// "Use this field for a short description of the image" - public static string Website_Forms_Administrative_AddNewMediaFile_DescriptionTextBox_Help { get { return T("Website.Forms.Administrative.AddNewMediaFile.DescriptionTextBox.Help"); } } - /// "Please select a file to upload" - public static string Website_Forms_Administrative_AddNewMediaFile_MissingUploadedFile_Message { get { return T("Website.Forms.Administrative.AddNewMediaFile.MissingUploadedFile.Message"); } } - /// "A file with the same name exists. Check allow overwrite or change the filename" - public static string Website_Forms_Administrative_AddNewMediaFile_FileExists_Message { get { return T("Website.Forms.Administrative.AddNewMediaFile.FileExists.Message"); } } - /// "The total length of the filename (folder and filename) is too long" - public static string Website_Forms_Administrative_AddNewMediaFile_TotalFilenameToLong_Message { get { return T("Website.Forms.Administrative.AddNewMediaFile.TotalFilenameToLong.Message"); } } - /// "Add New Media Folder" - public static string Website_Forms_Administrative_AddNewMediaFolder_Label_AddNewMediaFolder { get { return T("Website.Forms.Administrative.AddNewMediaFolder.Label.AddNewMediaFolder"); } } - /// "Folder Name" - public static string Website_Forms_Administrative_AddNewMediaFolder_LabelFolderName { get { return T("Website.Forms.Administrative.AddNewMediaFolder.LabelFolderName"); } } - /// "" - public static string Website_Forms_Administrative_AddNewMediaFolder_HelpFolderName { get { return T("Website.Forms.Administrative.AddNewMediaFolder.HelpFolderName"); } } - /// "Title" - public static string Website_Forms_Administrative_AddNewMediaFolder_LabelTitle { get { return T("Website.Forms.Administrative.AddNewMediaFolder.LabelTitle"); } } - /// "" - public static string Website_Forms_Administrative_AddNewMediaFolder_HelpTitle { get { return T("Website.Forms.Administrative.AddNewMediaFolder.HelpTitle"); } } - /// "Description" - public static string Website_Forms_Administrative_AddNewMediaFolder_LabelDescription { get { return T("Website.Forms.Administrative.AddNewMediaFolder.LabelDescription"); } } - /// "" - public static string Website_Forms_Administrative_AddNewMediaFolder_HelpDescription { get { return T("Website.Forms.Administrative.AddNewMediaFolder.HelpDescription"); } } - /// "The folder already exists" - public static string Website_Forms_Administrative_AddNewMediaFolder_FolderNameAlreadyUsed { get { return T("Website.Forms.Administrative.AddNewMediaFolder.FolderNameAlreadyUsed"); } } - /// "The total length of the folder name is too long" - public static string Website_Forms_Administrative_AddNewMediaFolder_FolderNameTooLong { get { return T("Website.Forms.Administrative.AddNewMediaFolder.FolderNameTooLong"); } } - /// "The folder name can not only be '/' or '\'" - public static string Website_Forms_Administrative_AddNewMediaFolder_FolderNotOnlySlash { get { return T("Website.Forms.Administrative.AddNewMediaFolder.FolderNotOnlySlash"); } } - /// "Upload Multiple Files via a Zip File" - public static string Website_Forms_Administrative_AddZipMediaFile_LabelDialog { get { return T("Website.Forms.Administrative.AddZipMediaFile.LabelDialog"); } } - /// "Zip file" - public static string Website_Forms_Administrative_AddZipMediaFile_LabelFile { get { return T("Website.Forms.Administrative.AddZipMediaFile.LabelFile"); } } - /// "Create a Zip file (right click local folder and select Send to -> Compressed folder) and select it using the Browse button" - public static string Website_Forms_Administrative_AddZipMediaFile_HelpFile { get { return T("Website.Forms.Administrative.AddZipMediaFile.HelpFile"); } } - /// "Create folders" - public static string Website_Forms_Administrative_AddZipMediaFile_LabelRecreateStructure { get { return T("Website.Forms.Administrative.AddZipMediaFile.LabelRecreateStructure"); } } - /// "Selecting this option will copy the exact folder structure from your Zip file" - public static string Website_Forms_Administrative_AddZipMediaFile_HelpRecreateStructure { get { return T("Website.Forms.Administrative.AddZipMediaFile.HelpRecreateStructure"); } } - /// "Extract folders from Zip file" - public static string Website_Forms_Administrative_AddZipMediaFile_LabelRecreateStructureCheckBox { get { return T("Website.Forms.Administrative.AddZipMediaFile.LabelRecreateStructureCheckBox"); } } - /// "Overwrite existing" - public static string Website_Forms_Administrative_AddZipMediaFile_LabelOverwriteExsisting { get { return T("Website.Forms.Administrative.AddZipMediaFile.LabelOverwriteExsisting"); } } - /// "Selecting this option will overwrite existing files in the media archive with matching file names" - public static string Website_Forms_Administrative_AddZipMediaFile_HelpOverwriteExsisting { get { return T("Website.Forms.Administrative.AddZipMediaFile.HelpOverwriteExsisting"); } } - /// "Error" - public static string Website_Forms_Administrative_AddZipMediaFile_Error_Title { get { return T("Website.Forms.Administrative.AddZipMediaFile.Error.Title"); } } - /// "Overwrite existing files" - public static string Website_Forms_Administrative_AddZipMediaFile_LabelOverwriteExsistingCheckBox { get { return T("Website.Forms.Administrative.AddZipMediaFile.LabelOverwriteExsistingCheckBox"); } } - /// "Please select a file to upload" - public static string Website_Forms_Administrative_AddZipMediaFile_MissingUploadedFile_Message { get { return T("Website.Forms.Administrative.AddZipMediaFile.MissingUploadedFile.Message"); } } - /// "Please use the normal upload command to upload .docx files" - public static string Website_Forms_Administrative_AddZipMediaFile_CannotUploadDocxFile { get { return T("Website.Forms.Administrative.AddZipMediaFile.CannotUploadDocxFile"); } } - /// "The selected file was not a correct zip file" - public static string Website_Forms_Administrative_AddZipMediaFile_WrongUploadedFile_Message { get { return T("Website.Forms.Administrative.AddZipMediaFile.WrongUploadedFile.Message"); } } - /// "Function search" - public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelFunctionSearch { get { return T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelFunctionSearch"); } } - /// "Keyword" - public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelKeyword { get { return T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelKeyword"); } } - /// "Write a keyword to search for." - public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelKeywordHelp { get { return T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelKeywordHelp"); } } - /// "Return type" - public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelReturnType { get { return T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelReturnType"); } } - /// "Select a return type to search for." - public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelReturnTypeHelp { get { return T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelReturnTypeHelp"); } } - /// "Delete This File?" - public static string Website_Forms_Administrative_DeleteMediaFile_LabelFieldGroup { get { return T("Website.Forms.Administrative.DeleteMediaFile.LabelFieldGroup"); } } - /// "Delete this file?" - public static string Website_Forms_Administrative_DeleteMediaFile_Text { get { return T("Website.Forms.Administrative.DeleteMediaFile.Text"); } } - /// "Deleting a file" - public static string Website_Forms_Administrative_DeleteMediaFile_DeleteDataConfirmationHeader { get { return T("Website.Forms.Administrative.DeleteMediaFile.DeleteDataConfirmationHeader"); } } - /// "There is some referenced data that will also be deleted, do you want to continue?" - public static string Website_Forms_Administrative_DeleteMediaFile_DeleteDataConfirmationText { get { return T("Website.Forms.Administrative.DeleteMediaFile.DeleteDataConfirmationText"); } } - /// "Delete This Folder?" - public static string Website_Forms_Administrative_DeleteMediaFolder_LabelFieldGroup { get { return T("Website.Forms.Administrative.DeleteMediaFolder.LabelFieldGroup"); } } - /// "Delete this folder?" - public static string Website_Forms_Administrative_DeleteMediaFolder_Text { get { return T("Website.Forms.Administrative.DeleteMediaFolder.Text"); } } - /// "This folder contains one or more files or subfolders. Deleting this folder will also delete all sub files and folders. Delete this folder?" - public static string Website_Forms_Administrative_DeleteMediaFolder_HasChildringText { get { return T("Website.Forms.Administrative.DeleteMediaFolder.HasChildringText"); } } - /// "Media Properties" - public static string Website_Forms_Administrative_EditMediaFile_LabelFieldGroup { get { return T("Website.Forms.Administrative.EditMediaFile.LabelFieldGroup"); } } - /// "Title" - public static string Website_Forms_Administrative_EditMediaFile_LabelTitle { get { return T("Website.Forms.Administrative.EditMediaFile.LabelTitle"); } } - /// "A human friendly short text describing the content of the media file" - public static string Website_Forms_Administrative_EditMediaFile_HelpTitle { get { return T("Website.Forms.Administrative.EditMediaFile.HelpTitle"); } } - /// "File Name" - public static string Website_Forms_Administrative_EditMediaFile_LabelFileName { get { return T("Website.Forms.Administrative.EditMediaFile.LabelFileName"); } } - /// "The file name to use when the media file is downloaded." - public static string Website_Forms_Administrative_EditMediaFile_HelpFileName { get { return T("Website.Forms.Administrative.EditMediaFile.HelpFileName"); } } - /// "Description" - public static string Website_Forms_Administrative_EditMediaFile_LabelDescription { get { return T("Website.Forms.Administrative.EditMediaFile.LabelDescription"); } } - /// "A description of the media file content" - public static string Website_Forms_Administrative_EditMediaFile_HelpDescription { get { return T("Website.Forms.Administrative.EditMediaFile.HelpDescription"); } } - /// "The total length of the filename (folder and filename) is too long" - public static string Website_Forms_Administrative_EditMediaFile_TotalFilenameToLong_Message { get { return T("Website.Forms.Administrative.EditMediaFile.TotalFilenameToLong.Message"); } } - /// "A file with the same name already exists in this folder." - public static string Website_Forms_Administrative_EditMediaFile_FileExists_Message { get { return T("Website.Forms.Administrative.EditMediaFile.FileExists.Message"); } } - /// "Folder Properties" - public static string Website_Forms_Administrative_EditMediaFolder_LabelFieldGroup { get { return T("Website.Forms.Administrative.EditMediaFolder.LabelFieldGroup"); } } - /// "Folder Name" - public static string Website_Forms_Administrative_EditMediaFolder_LabelFolderName { get { return T("Website.Forms.Administrative.EditMediaFolder.LabelFolderName"); } } - /// "" - public static string Website_Forms_Administrative_EditMediaFolder_HelpFolderName { get { return T("Website.Forms.Administrative.EditMediaFolder.HelpFolderName"); } } - /// "Title" - public static string Website_Forms_Administrative_EditMediaFolder_LabelTitle { get { return T("Website.Forms.Administrative.EditMediaFolder.LabelTitle"); } } - /// "Use this field for a folder title" - public static string Website_Forms_Administrative_EditMediaFolder_HelpTitle { get { return T("Website.Forms.Administrative.EditMediaFolder.HelpTitle"); } } - /// "Description" - public static string Website_Forms_Administrative_EditMediaFolder_LabelDescription { get { return T("Website.Forms.Administrative.EditMediaFolder.LabelDescription"); } } - /// "" - public static string Website_Forms_Administrative_EditMediaFolder_HelpDescription { get { return T("Website.Forms.Administrative.EditMediaFolder.HelpDescription"); } } - /// "The folder contains a file where the total length of the filename and the new folder name is too long" - public static string Website_Forms_Administrative_EditMediaFolder_TotalFilenameToLong_Message { get { return T("Website.Forms.Administrative.EditMediaFolder.TotalFilenameToLong.Message"); } } - /// "Draft" - public static string Website_Forms_Administrative_EditPage_DraftTransition { get { return T("Website.Forms.Administrative.EditPage.DraftTransition"); } } - /// "Awaiting Approval" - public static string Website_Forms_Administrative_EditPage_AwaitingApprovalTransition { get { return T("Website.Forms.Administrative.EditPage.AwaitingApprovalTransition"); } } - /// "Awaiting Publication" - public static string Website_Forms_Administrative_EditPage_AwaitingPublicationTransition { get { return T("Website.Forms.Administrative.EditPage.AwaitingPublicationTransition"); } } - /// "Saved, but not published" - public static string Website_Forms_Administrative_EditPage_PublishDatePreventPublishTitle { get { return T("Website.Forms.Administrative.EditPage.PublishDatePreventPublishTitle"); } } - /// "Your page has been saved, but not published since you have a future publish date set on the 'Settings' tab." - public static string Website_Forms_Administrative_EditPage_PublishDatePreventPublish { get { return T("Website.Forms.Administrative.EditPage.PublishDatePreventPublish"); } } - /// "Search" - public static string Website_Forms_Administrative_ElementKeywordSearch_LabelFieldGroup { get { return T("Website.Forms.Administrative.ElementKeywordSearch.LabelFieldGroup"); } } - /// "Keyword" - public static string Website_Forms_Administrative_ElementKeywordSearch_LabelKeyword { get { return T("Website.Forms.Administrative.ElementKeywordSearch.LabelKeyword"); } } - /// "Write a keyword to search for." - public static string Website_Forms_Administrative_ElementKeywordSearch_LabelSearchKeyword { get { return T("Website.Forms.Administrative.ElementKeywordSearch.LabelSearchKeyword"); } } - /// "Upload New Media File" - public static string Website_Forms_Administrative_UploadMediaFile_LabelFieldGroup { get { return T("Website.Forms.Administrative.UploadMediaFile.LabelFieldGroup"); } } - /// "File name:" - public static string Website_Forms_Administrative_UploadMediaFile_LabelFile { get { return T("Website.Forms.Administrative.UploadMediaFile.LabelFile"); } } - /// "" - public static string Website_Forms_Administrative_UploadMediaFile_HelpFile { get { return T("Website.Forms.Administrative.UploadMediaFile.HelpFile"); } } - /// "File missing or empty" - public static string Website_Forms_Administrative_UploadMediaFile_EmptyFileErrorTitle { get { return T("Website.Forms.Administrative.UploadMediaFile.EmptyFileErrorTitle"); } } - /// "No file data was received. Please use the browse button and ensure that the selected file is not empty." - public static string Website_Forms_Administrative_UploadMediaFile_EmptyFileErrorMessage { get { return T("Website.Forms.Administrative.UploadMediaFile.EmptyFileErrorMessage"); } } - /// "Upload New Media File to Existing File" - public static string Website_Forms_Administrative_UploadNewMediaFile_LabelFieldGroup { get { return T("Website.Forms.Administrative.UploadNewMediaFile.LabelFieldGroup"); } } - /// "File name:" - public static string Website_Forms_Administrative_UploadNewMediaFile_LabelFile { get { return T("Website.Forms.Administrative.UploadNewMediaFile.LabelFile"); } } - /// "" - public static string Website_Forms_Administrative_UploadNewMediaFile_HelpFile { get { return T("Website.Forms.Administrative.UploadNewMediaFile.HelpFile"); } } - /// "Save" - public static string Website_Forms_Administrative_AdministrativeTemplates_Document_LabelSave { get { return T("Website.Forms.Administrative.AdministrativeTemplates.Document.LabelSave"); } } - /// "Save As..." - public static string Website_Forms_Administrative_AdministrativeTemplates_Document_LabelSaveAs { get { return T("Website.Forms.Administrative.AdministrativeTemplates.Document.LabelSaveAs"); } } - /// "Previous" - public static string Website_Forms_Administrative_AdministrativeTemplates_Wizard_LabelPrevious { get { return T("Website.Forms.Administrative.AdministrativeTemplates.Wizard.LabelPrevious"); } } - /// "Next" - public static string Website_Forms_Administrative_AdministrativeTemplates_Wizard_LabelNext { get { return T("Website.Forms.Administrative.AdministrativeTemplates.Wizard.LabelNext"); } } - /// "Finish" - public static string Website_Forms_Administrative_AdministrativeTemplates_Wizard_LabelFinish { get { return T("Website.Forms.Administrative.AdministrativeTemplates.Wizard.LabelFinish"); } } - /// "Cancel" - public static string Website_Forms_Administrative_AdministrativeTemplates_Wizard_LabelCancel { get { return T("Website.Forms.Administrative.AdministrativeTemplates.Wizard.LabelCancel"); } } - /// "OK" - public static string Website_Forms_Administrative_AdministrativeTemplates_DataDialog_LabelOk { get { return T("Website.Forms.Administrative.AdministrativeTemplates.DataDialog.LabelOk"); } } - /// "Cancel" - public static string Website_Forms_Administrative_AdministrativeTemplates_DataDialog_LabelCancel { get { return T("Website.Forms.Administrative.AdministrativeTemplates.DataDialog.LabelCancel"); } } - /// "OK" - public static string Website_Forms_Administrative_AdministrativeTemplates_ConfirmDialog_LabelOk { get { return T("Website.Forms.Administrative.AdministrativeTemplates.ConfirmDialog.LabelOk"); } } - /// "Cancel" - public static string Website_Forms_Administrative_AdministrativeTemplates_ConfirmDialog_LabelCancel { get { return T("Website.Forms.Administrative.AdministrativeTemplates.ConfirmDialog.LabelCancel"); } } - /// "Input" - public static string Website_Misc_SourceCodeViewer_LabelInput { get { return T("Website.Misc.SourceCodeViewer.LabelInput"); } } - /// "Output" - public static string Website_Misc_SourceCodeViewer_LabelOutput { get { return T("Website.Misc.SourceCodeViewer.LabelOutput"); } } - /// "Not allowed." - public static string Website_Misc_Trees_DialogTitle_PasteNotAllowed { get { return T("Website.Misc.Trees.DialogTitle.PasteNotAllowed"); } } - /// "Paste not allowed in this context." - public static string Website_Misc_Trees_DialogText_PasteNotAllowed { get { return T("Website.Misc.Trees.DialogText.PasteNotAllowed"); } } - /// "Not allowed" - public static string Website_Misc_Trees_DialogTitle_PasteTypeNotAllowed { get { return T("Website.Misc.Trees.DialogTitle.PasteTypeNotAllowed"); } } - /// "Folder won't accept document type." - public static string Website_Misc_Trees_DialogText_PasteTypeNotAllowed { get { return T("Website.Misc.Trees.DialogText.PasteTypeNotAllowed"); } } - /// "Edit Selections" - public static string Website_Misc_MultiSelector_LabelEditSelections { get { return T("Website.Misc.MultiSelector.LabelEditSelections"); } } - /// "Version information" - public static string GenericVersionProcessController_Version { get { return T("GenericVersionProcessController.Version"); } } - /// "Show version information" - public static string GenericVersionProcessController_VersionToolTip { get { return T("GenericVersionProcessController.VersionToolTip"); } } - /// "Select a value..." - public static string AspNetUiControl_Selector_SelectValueLabel { get { return T("AspNetUiControl.Selector.SelectValueLabel"); } } - /// "< broken reference >..." - public static string AspNetUiControl_Selector_BrokenReference { get { return T("AspNetUiControl.Selector.BrokenReference"); } } - /// "(no selection)" - public static string AspNetUiControl_Selector_NoSelection { get { return T("AspNetUiControl.Selector.NoSelection"); } } - /// "No matches for '{0}'" - public static string AspNetUiControl_Selector_NoMatchesFor(object parameter0) { return string.Format(T("AspNetUiControl.Selector.NoMatchesFor"), parameter0); } - /// "This field contains a broken reference" - public static string Validation_BrokenReference { get { return T("Validation.BrokenReference"); } } - /// "This field is required." - public static string Validation_RequiredField { get { return T("Validation.RequiredField"); } } - /// "Only {0} digit(s) after decimal point allowed" - public static string Validation_Decimal_SymbolsAfterPointAllowed(object parameter0) { return string.Format(T("Validation.Decimal.SymbolsAfterPointAllowed"), parameter0); } - /// "Only {0} digit(s) before decimal point allowed" - public static string Validation_Decimal_SymbolsBeforePointAllowed(object parameter0) { return string.Format(T("Validation.Decimal.SymbolsBeforePointAllowed"), parameter0); } - /// "Invalid date string: '{0}'. Use the format '{1}'." - public static string Validation_DateTime_InvalidDateFormat(object parameter0,object parameter1) { return string.Format(T("Validation.DateTime.InvalidDateFormat"), parameter0,parameter1); } - /// "The specified value is either too big or too small. The acceptable range is from -2,147,483,648 to 2,147,483,647" - public static string Validation_Int32_Overflow { get { return T("Validation.Int32.Overflow"); } } - /// "Page Browser" - public static string Browser_Label { get { return T("Browser.Label"); } } - /// "Browse unpublished pages" - public static string Browser_ToolTip { get { return T("Browser.ToolTip"); } } +///"Edit Permissions" +public static string ManageUserPermissions_ManageUserPermissionsOnBranchLabel=>T("ManageUserPermissions.ManageUserPermissionsOnBranchLabel"); +///"Edit Permissions" +public static string ManageUserPermissions_ManageUserPermissionsOnItemLabel=>T("ManageUserPermissions.ManageUserPermissionsOnItemLabel"); +///"User Permission Settings" +public static string ManageUserPermissions_ManageGlobalUserPermissionsLabel=>T("ManageUserPermissions.ManageGlobalUserPermissionsLabel"); +///"Manage user permissions" +public static string ManageUserPermissions_ManageUserPermissionsToolTip=>T("ManageUserPermissions.ManageUserPermissionsToolTip"); +///"Metadata" +public static string DataCompositionVisabilityFacade_DefaultContainerLabel=>T("DataCompositionVisabilityFacade.DefaultContainerLabel"); +///"Delete User?" +public static string Website_Forms_Administrative_DeleteUserStep1_LabelFieldGroup=>T("Website.Forms.Administrative.DeleteUserStep1.LabelFieldGroup"); +///"Delete the selected user?" +public static string Website_Forms_Administrative_DeleteUserStep1_Text=>T("Website.Forms.Administrative.DeleteUserStep1.Text"); +///"Cascade delete error" +public static string DeleteUserWorkflow_CascadeDeleteErrorTitle=>T("DeleteUserWorkflow.CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string DeleteUserWorkflow_CascadeDeleteErrorMessage=>T("DeleteUserWorkflow.CascadeDeleteErrorMessage"); +///"Cannot delete a user" +public static string DeleteUserWorkflow_DeleteSelfTitle=>T("DeleteUserWorkflow.DeleteSelfTitle"); +///"You can not delete an account you logged in as." +public static string DeleteUserWorkflow_DeleteSelfErrorMessage=>T("DeleteUserWorkflow.DeleteSelfErrorMessage"); +///"Select Function" +public static string Website_Function_SelectDialog_Title=>T("Website.Function.SelectDialog.Title"); +///"Select Widget" +public static string Website_Widget_SelectDialog_Title=>T("Website.Widget.SelectDialog.Title"); +///"Select Page or File" +public static string Website_ContentLink_SelectDialog_Title=>T("Website.ContentLink.SelectDialog.Title"); +///"Select Page" +public static string Website_Page_SelectDialog_Title=>T("Website.Page.SelectDialog.Title"); +///"Select Frontend File" +public static string Website_FrontendFile_SelectDialog_Title=>T("Website.FrontendFile.SelectDialog.Title"); +///"Select Media" +public static string Website_Media_SelectDialog_Title=>T("Website.Media.SelectDialog.Title"); +///"Select Image" +public static string Website_Image_SelectDialog_Title=>T("Website.Image.SelectDialog.Title"); +///"Select Folder" +public static string Website_Folder_SelectDialog_Title=>T("Website.Folder.SelectDialog.Title"); +///"Draft" +public static string PublishingStatus_draft=>T("PublishingStatus.draft"); +///"Awaiting Approval" +public static string PublishingStatus_awaitingApproval=>T("PublishingStatus.awaitingApproval"); +///"Awaiting Publication" +public static string PublishingStatus_awaitingPublication=>T("PublishingStatus.awaitingPublication"); +///"Published" +public static string PublishingStatus_published=>T("PublishingStatus.published"); +///"General settings" +public static string Website_Forms_Administrative_EditUserStep1_LabelFieldGroup=>T("Website.Forms.Administrative.EditUserStep1.LabelFieldGroup"); +///"User name" +public static string Website_Forms_Administrative_EditUserStep1_UserNameLabel=>T("Website.Forms.Administrative.EditUserStep1.UserNameLabel"); +///"User names can not be changed. This is a 'read only' field." +public static string Website_Forms_Administrative_EditUserStep1_UserNameHelp=>T("Website.Forms.Administrative.EditUserStep1.UserNameHelp"); +///"Password" +public static string Website_Forms_Administrative_EditUserStep1_PasswordLabel=>T("Website.Forms.Administrative.EditUserStep1.PasswordLabel"); +///"The password has to be more than 6 characters long." +public static string Website_Forms_Administrative_EditUserStep1_PasswordHelp=>T("Website.Forms.Administrative.EditUserStep1.PasswordHelp"); +///"Name" +public static string Website_Forms_Administrative_EditUserStep1_NameLabel=>T("Website.Forms.Administrative.EditUserStep1.NameLabel"); +///"The full name of the person using this account." +public static string Website_Forms_Administrative_EditUserStep1_NameHelp=>T("Website.Forms.Administrative.EditUserStep1.NameHelp"); +///"Email" +public static string Website_Forms_Administrative_EditUserStep1_EmailLabel=>T("Website.Forms.Administrative.EditUserStep1.EmailLabel"); +///"The e-mail address of the user (optional)." +public static string Website_Forms_Administrative_EditUserStep1_EmailHelp=>T("Website.Forms.Administrative.EditUserStep1.EmailHelp"); +///"Folder" +public static string Website_Forms_Administrative_EditUserStep1_GroupLabel=>T("Website.Forms.Administrative.EditUserStep1.GroupLabel"); +///"If you enter a folder name that does not already exist a new folder will be created." +public static string Website_Forms_Administrative_EditUserStep1_GroupHelp=>T("Website.Forms.Administrative.EditUserStep1.GroupHelp"); +///"C1 Console Localization" +public static string Website_Forms_Administrative_EditUserStep1_LabelLocalizationFieldGroup=>T("Website.Forms.Administrative.EditUserStep1.LabelLocalizationFieldGroup"); +///"Regional settings" +public static string Website_Forms_Administrative_EditUserStep1_CultureLabel=>T("Website.Forms.Administrative.EditUserStep1.CultureLabel"); +///"To change the way numbers, dates, and hours are displayed, select an entry from the list." +public static string Website_Forms_Administrative_EditUserStep1_CultureHelp=>T("Website.Forms.Administrative.EditUserStep1.CultureHelp"); +///"C1 Console Language" +public static string Website_Forms_Administrative_EditUserStep1_C1ConsoleLanguageLabel=>T("Website.Forms.Administrative.EditUserStep1.C1ConsoleLanguageLabel"); +///"Select the language to be used for labels, help texts, dialogs etc. The available options here are limited to languages installed. You may install more languages via the Package system, see Composite.Localization." +public static string Website_Forms_Administrative_EditUserStep1_C1ConsoleLanguageHelp=>T("Website.Forms.Administrative.EditUserStep1.C1ConsoleLanguageHelp"); +///"Perspectives" +public static string Website_Forms_Administrative_EditUserStep1_ActivePerspectiveFieldLabel=>T("Website.Forms.Administrative.EditUserStep1.ActivePerspectiveFieldLabel"); +///"Visible perspectives" +public static string Website_Forms_Administrative_EditUserStep1_ActivePerspectiveMultiSelectLabel=>T("Website.Forms.Administrative.EditUserStep1.ActivePerspectiveMultiSelectLabel"); +///"Select which perspectives should be visible when the user starts the C1 Console." +public static string Website_Forms_Administrative_EditUserStep1_ActivePerspectiveMultiSelectHelp=>T("Website.Forms.Administrative.EditUserStep1.ActivePerspectiveMultiSelectHelp"); +///"Global permissions" +public static string Website_Forms_Administrative_EditUserStep1_GlobalPermissionsFieldLabel=>T("Website.Forms.Administrative.EditUserStep1.GlobalPermissionsFieldLabel"); +///"Global permissions" +public static string Website_Forms_Administrative_EditUserStep1_GlobalPermissionsMultiSelectLabel=>T("Website.Forms.Administrative.EditUserStep1.GlobalPermissionsMultiSelectLabel"); +///"The Administrate permission grants the user access to manage user permissions and execute other administrative tasks. The Configure permission grants access to super user tasks." +public static string Website_Forms_Administrative_EditUserStep1_GlobalPermissionsMultiSelectHelp=>T("Website.Forms.Administrative.EditUserStep1.GlobalPermissionsMultiSelectHelp"); +///"The removal of your own administrative permission has been ignored. You still have administrative privileges." +public static string Website_Forms_Administrative_EditUserStep1_GlobalPermissions_IgnoredOwnAdministrativeRemoval=>T("Website.Forms.Administrative.EditUserStep1.GlobalPermissions.IgnoredOwnAdministrativeRemoval"); +///"Data language access" +public static string Website_Forms_Administrative_EditUserStep1_ActiveLocalesFieldLabel=>T("Website.Forms.Administrative.EditUserStep1.ActiveLocalesFieldLabel"); +///"Data Languages" +public static string Website_Forms_Administrative_EditUserStep1_ActiveLocalesMultiSelectLabel=>T("Website.Forms.Administrative.EditUserStep1.ActiveLocalesMultiSelectLabel"); +///"User has access to manage data in the selected languages." +public static string Website_Forms_Administrative_EditUserStep1_ActiveLocalesMultiSelectHelp=>T("Website.Forms.Administrative.EditUserStep1.ActiveLocalesMultiSelectHelp"); +///"Active content language" +public static string Website_Forms_Administrative_EditUserStep1_ActiveLocaleLabel=>T("Website.Forms.Administrative.EditUserStep1.ActiveLocaleLabel"); +///"The content language this user will edit." +public static string Website_Forms_Administrative_EditUserStep1_ActiveLocaleHelp=>T("Website.Forms.Administrative.EditUserStep1.ActiveLocaleHelp"); +///"The selected language is not checked in the data language section." +public static string Website_Forms_Administrative_EditUserStep1_ActiveLocaleNotChecked=>T("Website.Forms.Administrative.EditUserStep1.ActiveLocaleNotChecked"); +///"You must select at least one active language." +public static string Website_Forms_Administrative_EditUserStep1_NoActiveLocaleSelected=>T("Website.Forms.Administrative.EditUserStep1.NoActiveLocaleSelected"); +///"General" +public static string Website_Forms_Administrative_EditUserStep1_GenerelTabLabel=>T("Website.Forms.Administrative.EditUserStep1.GenerelTabLabel"); +///"Permissions" +public static string Website_Forms_Administrative_EditUserStep1_PermissionsTabLabel=>T("Website.Forms.Administrative.EditUserStep1.PermissionsTabLabel"); +///"Perspectives" +public static string Website_Forms_Administrative_EditUserStep1_PerspectivesTabLabel=>T("Website.Forms.Administrative.EditUserStep1.PerspectivesTabLabel"); +///"User Groups" +public static string Website_Forms_Administrative_EditUserStep1_UserGroupsFieldLabel=>T("Website.Forms.Administrative.EditUserStep1.UserGroupsFieldLabel"); +///"Select the user groups that the selected user should be a member of." +public static string Website_Forms_Administrative_EditUserStep1_UserGroupsMultiSelectHelp=>T("Website.Forms.Administrative.EditUserStep1.UserGroupsMultiSelectHelp"); +///"Is Locked" +public static string Website_Forms_Administrative_EditUserStep1_IsLockedLabel=>T("Website.Forms.Administrative.EditUserStep1.IsLockedLabel"); +///"User can not log in" +public static string Website_Forms_Administrative_EditUserStep1_IsLockedItemLabel=>T("Website.Forms.Administrative.EditUserStep1.IsLockedItemLabel"); +///"When checked the user will be forbidden from logging in." +public static string Website_Forms_Administrative_EditUserStep1_IsLockedHelp=>T("Website.Forms.Administrative.EditUserStep1.IsLockedHelp"); +///"Error" +public static string EditUserWorkflow_EditErrorTitle=>T("EditUserWorkflow.EditErrorTitle"); +///"You can not delete your own access rights to 'System' perspective." +public static string EditUserWorkflow_EditOwnAccessToSystemPerspective=>T("EditUserWorkflow.EditOwnAccessToSystemPerspective"); +///"You can not lock your own account." +public static string EditUserWorkflow_LockingOwnUserAccount=>T("EditUserWorkflow.LockingOwnUserAccount"); +///"Users" +public static string UserElementProvider_RootLabel=>T("UserElementProvider.RootLabel"); +///"Users" +public static string UserElementProvider_RootToolTip=>T("UserElementProvider.RootToolTip"); +///"Add User" +public static string UserElementProvider_AddUserLabel=>T("UserElementProvider.AddUserLabel"); +///"Add new user" +public static string UserElementProvider_AddUserToolTip=>T("UserElementProvider.AddUserToolTip"); +///"Edit User" +public static string UserElementProvider_EditUserLabel=>T("UserElementProvider.EditUserLabel"); +///"Edit selected user" +public static string UserElementProvider_EditUserToolTip=>T("UserElementProvider.EditUserToolTip"); +///"Delete User" +public static string UserElementProvider_DeleteUserLabel=>T("UserElementProvider.DeleteUserLabel"); +///"Delete the selected user" +public static string UserElementProvider_DeleteUserToolTip=>T("UserElementProvider.DeleteUserToolTip"); +///"Warning" +public static string UserElementProvider_ChangeOtherActiveLocaleTitle=>T("UserElementProvider.ChangeOtherActiveLocaleTitle"); +///"You have change the active language for a user that is currently logged on. The users console will be reloaded and data might be lost." +public static string UserElementProvider_ChangeOtherActiveLocaleMessage=>T("UserElementProvider.ChangeOtherActiveLocaleMessage"); +///"Cleanup Required" +public static string UserElementProvider_ChangeOtherActiveLocaleDialogTitle=>T("UserElementProvider.ChangeOtherActiveLocaleDialogTitle"); +///"This requires a stage cleanup. Active editors will be saved and closed." +public static string UserElementProvider_ChangeOtherActiveLocaleDialogText=>T("UserElementProvider.ChangeOtherActiveLocaleDialogText"); +///"A user with the same name already exists" +public static string AddNewUserWorkflow_UsernameDuplicateError=>T("AddNewUserWorkflow.UsernameDuplicateError"); +///"Add New User" +public static string Website_Forms_Administrative_AddNewUserStep1_LabelFieldGroup=>T("Website.Forms.Administrative.AddNewUserStep1.LabelFieldGroup"); +///"User name" +public static string Website_Forms_Administrative_AddNewUserStep1_UserNameLabel=>T("Website.Forms.Administrative.AddNewUserStep1.UserNameLabel"); +///"When you have created a new user the username cannot be changed." +public static string Website_Forms_Administrative_AddNewUserStep1_UserNameHelp=>T("Website.Forms.Administrative.AddNewUserStep1.UserNameHelp"); +///"Password" +public static string Website_Forms_Administrative_AddNewUserStep1_PasswordLabel=>T("Website.Forms.Administrative.AddNewUserStep1.PasswordLabel"); +///"The password has to be more than 6 characters long." +public static string Website_Forms_Administrative_AddNewUserStep1_PasswordHelp=>T("Website.Forms.Administrative.AddNewUserStep1.PasswordHelp"); +///"Name" +public static string Website_Forms_Administrative_AddNewUserStep1_NameLabel=>T("Website.Forms.Administrative.AddNewUserStep1.NameLabel"); +///"The full name of the person using this account." +public static string Website_Forms_Administrative_AddNewUserStep1_NameHelp=>T("Website.Forms.Administrative.AddNewUserStep1.NameHelp"); +///"Email address" +public static string Website_Forms_Administrative_AddNewUserStep1_EmailLabel=>T("Website.Forms.Administrative.AddNewUserStep1.EmailLabel"); +///"The e-mail address of the user (optional)." +public static string Website_Forms_Administrative_AddNewUserStep1_EmailHelp=>T("Website.Forms.Administrative.AddNewUserStep1.EmailHelp"); +///"Folder" +public static string Website_Forms_Administrative_AddNewUserStep1_GroupLabel=>T("Website.Forms.Administrative.AddNewUserStep1.GroupLabel"); +///"If you enter a folder name that does not already exist a new folder will be created." +public static string Website_Forms_Administrative_AddNewUserStep1_GroupHelp=>T("Website.Forms.Administrative.AddNewUserStep1.GroupHelp"); +///"Regional settings" +public static string Website_Forms_Administrative_AddNewUserStep1_CultureLabel=>T("Website.Forms.Administrative.AddNewUserStep1.CultureLabel"); +///"To change the way numbers, dates, and hours are displayed, select an entry from the list." +public static string Website_Forms_Administrative_AddNewUserStep1_CultureHelp=>T("Website.Forms.Administrative.AddNewUserStep1.CultureHelp"); +///"C1 Console Language" +public static string Website_Forms_Administrative_AddNewUserStep1_C1ConsoleLanguageLabel=>T("Website.Forms.Administrative.AddNewUserStep1.C1ConsoleLanguageLabel"); +///"Select the language to be used for labels, help texts, dialogs etc. The available options here are limited to languages installed. You may install more languages via the Package system, see Composite.Localization." +public static string Website_Forms_Administrative_AddNewUserStep1_C1ConsoleLanguageHelp=>T("Website.Forms.Administrative.AddNewUserStep1.C1ConsoleLanguageHelp"); +///"A language is required" +public static string UserElementProvider_MissingActiveLanguageTitle=>T("UserElementProvider.MissingActiveLanguageTitle"); +///"To create a user a language is required, but no languages have been added yet. You can add one under the System perspective." +public static string UserElementProvider_MissingActiveLanguageMessage=>T("UserElementProvider.MissingActiveLanguageMessage"); +///"User with the same login already exist" +public static string UserElementProvider_UserLoginIsAlreadyUsed=>T("UserElementProvider.UserLoginIsAlreadyUsed"); +///"Add Datafolder" +public static string AssociatedDataElementProviderHelper_AddDataFolderTypeLabel=>T("AssociatedDataElementProviderHelper.AddDataFolderTypeLabel"); +///"Add datafolder" +public static string AssociatedDataElementProviderHelper_AddDataFolderTypeToolTip=>T("AssociatedDataElementProviderHelper.AddDataFolderTypeToolTip"); +///"Add Data" +public static string AssociatedDataElementProviderHelper_AddAssociatedDataLabel=>T("AssociatedDataElementProviderHelper.AddAssociatedDataLabel"); +///"Add data" +public static string AssociatedDataElementProviderHelper_AddAssociatedDataToolTip=>T("AssociatedDataElementProviderHelper.AddAssociatedDataToolTip"); +///"Edit Data" +public static string AssociatedDataElementProviderHelper_EditAssociatedDataLabel=>T("AssociatedDataElementProviderHelper.EditAssociatedDataLabel"); +///"Edit data" +public static string AssociatedDataElementProviderHelper_EditAssociatedDataToolTip=>T("AssociatedDataElementProviderHelper.EditAssociatedDataToolTip"); +///"Delete Data" +public static string AssociatedDataElementProviderHelper_DeleteAssociatedDataLabel=>T("AssociatedDataElementProviderHelper.DeleteAssociatedDataLabel"); +///"Delete data" +public static string AssociatedDataElementProviderHelper_DeleteAssociatedDataToolTip=>T("AssociatedDataElementProviderHelper.DeleteAssociatedDataToolTip"); +///"Localize" +public static string AssociatedDataElementProviderHelper_LocalizeData=>T("AssociatedDataElementProviderHelper.LocalizeData"); +///"Localize data" +public static string AssociatedDataElementProviderHelper_LocalizeDataToolTip=>T("AssociatedDataElementProviderHelper.LocalizeDataToolTip"); +///"Not yet approved or published" +public static string AssociatedDataElementProviderHelper_DisabledData=>T("AssociatedDataElementProviderHelper.DisabledData"); +///"Add Datafolder" +public static string AssociatedDataElementProviderHelper_AddDataFolderExSelectType_FieldLabel=>T("AssociatedDataElementProviderHelper.AddDataFolderExSelectType.FieldLabel"); +///"Datafolder type" +public static string AssociatedDataElementProviderHelper_AddDataFolderExSelectType_SelectorLabel=>T("AssociatedDataElementProviderHelper.AddDataFolderExSelectType.SelectorLabel"); +///"Create new datatype or use an existing datatype (if present)." +public static string AssociatedDataElementProviderHelper_AddDataFolderExSelectType_SelectorHelp=>T("AssociatedDataElementProviderHelper.AddDataFolderExSelectType.SelectorHelp"); +///"Settings" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelNewType=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelNewType"); +///"Type name" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelTypeName=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelTypeName"); +///"The technical name of the data type (ex. Product). This is used to identify this type in code and should not be changed once used externally." +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HelpTypeName=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HelpTypeName"); +///"Type namespace" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelTypeNamespace=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelTypeNamespace"); +///"The namespace (module / category name) of the type. This is used to identify this type in code and should not be changed." +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HelpTypeNamespace=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HelpTypeNamespace"); +///"Title" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelTypeTitle=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelTypeTitle"); +///"Use this entry to specify a user friendly name. You can change this field as you like." +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HelpTypeTitle=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HelpTypeTitle"); +///"Fields" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_LabelFields=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.LabelFields"); +///"Services" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_ServicesLabel=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.ServicesLabel"); +///"Has publishing" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HasPublishing=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HasPublishing"); +///"Has localization" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_HasLocalization=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.HasLocalization"); +///"No page datafolders exists" +public static string AssociatedDataElementProviderHelper_AddDataFolderExWorkflow_NoTypesTitle=>T("AssociatedDataElementProviderHelper.AddDataFolderExWorkflow.NoTypesTitle"); +///"No page datafolders have been created yet. You can create a page datafolder in the 'Data' perspective." +public static string AssociatedDataElementProviderHelper_AddDataFolderExWorkflow_NoTypesMessage=>T("AssociatedDataElementProviderHelper.AddDataFolderExWorkflow.NoTypesMessage"); +///"No Unused Page Datafolders Exist" +public static string AssociatedDataElementProviderHelper_AddDataFolderExWorkflow_NoUnusedTypesTitle=>T("AssociatedDataElementProviderHelper.AddDataFolderExWorkflow.NoUnusedTypesTitle"); +///"All available page datafolders have been added already. To create a new page datafolder go to the 'Data' perspective." +public static string AssociatedDataElementProviderHelper_AddDataFolderExWorkflow_NoUnusedTypesMessage=>T("AssociatedDataElementProviderHelper.AddDataFolderExWorkflow.NoUnusedTypesMessage"); +///"Error" +public static string AssociatedDataElementProviderHelper_AddDataFolderExCreateNewType_ErrorTitle=>T("AssociatedDataElementProviderHelper.AddDataFolderExCreateNewType.ErrorTitle"); +///"Select existing data folder type to add" +public static string AssociatedDataElementProviderHelper_AddDataFolderSelectType_FieldLabel=>T("AssociatedDataElementProviderHelper.AddDataFolderSelectType.FieldLabel"); +///"Existing data folder types" +public static string AssociatedDataElementProviderHelper_AddDataFolderSelectType_SelectorLabel=>T("AssociatedDataElementProviderHelper.AddDataFolderSelectType.SelectorLabel"); +///"Select existing data folder type to add" +public static string AssociatedDataElementProviderHelper_AddDataFolderSelectType_SelectorHelp=>T("AssociatedDataElementProviderHelper.AddDataFolderSelectType.SelectorHelp"); +///"Remove Metadata Field" +public static string AssociatedDataElementProviderHelper_RemoveMetaDataTypeLabel=>T("AssociatedDataElementProviderHelper.RemoveMetaDataTypeLabel"); +///"Remove metadata field" +public static string AssociatedDataElementProviderHelper_RemoveMetaDataTypeToolTip=>T("AssociatedDataElementProviderHelper.RemoveMetaDataTypeToolTip"); +///"Remove Datafolder from Page" +public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_LabelFieldGroup=>T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.LabelFieldGroup"); +///"Data cleanup" +public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_FieldGroupLabel=>T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.FieldGroupLabel"); +///"Delete data" +public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_DeleteFolderDataLabel=>T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.DeleteFolderDataLabel"); +///"Yes, delete folder data" +public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_DeleteFolderDataCheckBoxLabel=>T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.DeleteFolderDataCheckBoxLabel"); +///"If you want data in this folder to stay in the database, you should uncheck this option." +public static string AssociatedDataElementProviderHelper_DeleteDataFolderWorkflow_DeleteFolderDataHelp=>T("AssociatedDataElementProviderHelper.DeleteDataFolderWorkflow.DeleteFolderDataHelp"); +///"Add Metadata Field" +public static string AssociatedDataElementProviderHelper_AddMetaDataSelectType_LayoutLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataSelectType.LayoutLabel"); +///"Add Metadata Field" +public static string AssociatedDataElementProviderHelper_AddMetaDataTypeLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataTypeLabel"); +///"Add metadata field" +public static string AssociatedDataElementProviderHelper_AddMetaDataTypeToolTip=>T("AssociatedDataElementProviderHelper.AddMetaDataTypeToolTip"); +///"Select existing metadata type to add" +public static string AssociatedDataElementProviderHelper_AddMetaDataSelectType_FieldLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataSelectType.FieldLabel"); +///"Existing metadata types" +public static string AssociatedDataElementProviderHelper_AddMetaDataSelectType_SelectorLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataSelectType.SelectorLabel"); +///"Select existing metadata type to add" +public static string AssociatedDataElementProviderHelper_AddMetaDataSelectType_SelectorHelp=>T("AssociatedDataElementProviderHelper.AddMetaDataSelectType.SelectorHelp"); +///"No page metadata types exists" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_NoTypesTitle=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.NoTypesTitle"); +///"No page metatypes have been created yet. You can create a Page metatype in the 'Data' perspective." +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_NoTypesMessage=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.NoTypesMessage"); +///"Metadata field group naming" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_NamingFieldLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.NamingFieldLabel"); +///"Name" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_FieldGroupNameLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.FieldGroupNameLabel"); +///"Enter a unique name identifying this metadata field group" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_FieldGroupNameHelp=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.FieldGroupNameHelp"); +///"Label" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_FieldGroupLabelLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.FieldGroupLabelLabel"); +///"Enter a user friendly label for this metadata field group" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_FieldGroupLabelHelp=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.FieldGroupLabelHelp"); +///"Metadata field group visibility" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_VisabilityFieldLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.VisabilityFieldLabel"); +///"Tab" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_ContainerSelectorLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.ContainerSelectorLabel"); +///"Select the tab for which this metadata should exists" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_ContainerSelectorHelp=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.ContainerSelectorHelp"); +///"Start display from" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_StartDisplaySelectorLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.StartDisplaySelectorLabel"); +///"Start display from" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_StartDisplaySelectorHelp=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.StartDisplaySelectorHelp"); +///"Inherit display" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_InheritDisplaySelectorLabel=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.InheritDisplaySelectorLabel"); +///"Inherit display" +public static string AssociatedDataElementProviderHelper_AddMetaDataCreateFieldGroup_InheritDisplaySelectorHelp=>T("AssociatedDataElementProviderHelper.AddMetaDataCreateFieldGroup.InheritDisplaySelectorHelp"); +///"The metadata field group has no items in scope" +public static string AssociatedDataElementProviderHelper_NoItems_Title=>T("AssociatedDataElementProviderHelper.NoItems.Title"); +///"There are currently no items within the specified display range. Press Previous to change the display range or Finish to create the metadata field group." +public static string AssociatedDataElementProviderHelper_NoItems_Description=>T("AssociatedDataElementProviderHelper.NoItems.Description"); +///"This item" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption0=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption0"); +///"Children" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption1=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption1"); +///"2nd generation descendants" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption2=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption2"); +///"3rd generation descendants" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption3=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption3"); +///"4th generation descendants" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption4=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption4"); +///"5th generation descendants" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_StartDisplayOption5=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.StartDisplayOption5"); +///"Do not inherit" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption0=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption0"); +///"Inherit 1 generation" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption1=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption1"); +///"Inherit 2 generations" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption2=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption2"); +///"Inherit 3 generations" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption3=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption3"); +///"Always inherit" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_InheritDisplayOption4=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.InheritDisplayOption4"); +///"The field group name is in use" +public static string AssociatedDataElementProviderHelper_AddMetaDataWorkflow_FieldGroupNameNotValid=>T("AssociatedDataElementProviderHelper.AddMetaDataWorkflow.FieldGroupNameNotValid"); +///"Remove Metadata Field Group" +public static string AssociatedDataElementProviderHelper_DeleteMetaDataSelectType_LayoutLabel=>T("AssociatedDataElementProviderHelper.DeleteMetaDataSelectType.LayoutLabel"); +///"Select a metadata field group to remove" +public static string AssociatedDataElementProviderHelper_DeleteMetaDataSelectFieldGroupName_FieldLabel=>T("AssociatedDataElementProviderHelper.DeleteMetaDataSelectFieldGroupName.FieldLabel"); +///"Field group" +public static string AssociatedDataElementProviderHelper_DeleteMetaDataSelectFieldGroupName_SelectorLabel=>T("AssociatedDataElementProviderHelper.DeleteMetaDataSelectFieldGroupName.SelectorLabel"); +///"Select a metadata field group to remove" +public static string AssociatedDataElementProviderHelper_DeleteMetaDataSelectFieldGroupName_SelectorHelp=>T("AssociatedDataElementProviderHelper.DeleteMetaDataSelectFieldGroupName.SelectorHelp"); +///"Edit Metadata Field" +public static string AssociatedDataElementProviderHelper_EditMetaDataTypeLabel=>T("AssociatedDataElementProviderHelper.EditMetaDataTypeLabel"); +///"Edit metadata field" +public static string AssociatedDataElementProviderHelper_EditMetaDataTypeToolTip=>T("AssociatedDataElementProviderHelper.EditMetaDataTypeToolTip"); +///"Edit Page Metadata Field" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_Layout_Label=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.Layout.Label"); +///"Page metadata field settings" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_FieldGroup_Label=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.FieldGroup.Label"); +///"Label" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_LabelTextBox_Label=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.LabelTextBox.Label"); +///"The label of the metadata field. Used when editing pages" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_LabelTextBox_Help=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.LabelTextBox.Help"); +///"Tab" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataContainerSelector_Label=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataContainerSelector.Label"); +///"Select the tab for which this metadata should exists" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataContainerSelector_Help=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataContainerSelector.Help"); +///"Start display from" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_StartDisplaySelectorLabel=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.StartDisplaySelectorLabel"); +///"Start display from" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_StartDisplaySelectorHelp=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.StartDisplaySelectorHelp"); +///"Inherit display" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_InheritDisplaySelectorLabel=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.InheritDisplaySelectorLabel"); +///"Inherit display" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_InheritDisplaySelectorHelp=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.InheritDisplaySelectorHelp"); +///"Metadata field" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataDefinitionSelector_Label=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataDefinitionSelector.Label"); +///"Select the metadata field to edit" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataDefinitionSelector_Help=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataDefinitionSelector.Help"); +///"No Metadata Fields to Edit" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_NoMetaDataDefinitionsExists_Title=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.NoMetaDataDefinitionsExists.Title"); +///"There is no metadata fields defined on this item to edit" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_NoMetaDataDefinitionsExists_Message=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.NoMetaDataDefinitionsExists.Message"); +///"The metadata type is used another place with same name but different label" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataFieldNameAlreadyUsed=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataFieldNameAlreadyUsed"); +///"There exists one or more definitions with the same name, container change is not allowed" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_MetaDataContainerChangeNotAllowed=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.MetaDataContainerChangeNotAllowed"); +///"Press finish to save" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_NoDefaultValuesNeeded_Title=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.NoDefaultValuesNeeded.Title"); +///"All required information has been gathered. Press Finish to update the metadata field" +public static string AssociatedDataElementProviderHelper_EditMetaDataWorkflow_NoDefaultValuesNeeded_Description=>T("AssociatedDataElementProviderHelper.EditMetaDataWorkflow.NoDefaultValuesNeeded.Description"); +///"No Metadata Fields to Remove" +public static string AssociatedDataElementProviderHelper_DeleteMetaDataWorkflow_NoDefinedTypesExists_Title=>T("AssociatedDataElementProviderHelper.DeleteMetaDataWorkflow.NoDefinedTypesExists.Title"); +///"There is no metadata fields defined on this item to remove" +public static string AssociatedDataElementProviderHelper_DeleteMetaDataWorkflow_NoDefinedTypesExists_Message=>T("AssociatedDataElementProviderHelper.DeleteMetaDataWorkflow.NoDefinedTypesExists.Message"); +///"Cascade delete error" +public static string DeleteAssociatedDataWorkflow_CascadeDeleteErrorTitle=>T("DeleteAssociatedDataWorkflow.CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string DeleteAssociatedDataWorkflow_CascadeDeleteErrorMessage=>T("DeleteAssociatedDataWorkflow.CascadeDeleteErrorMessage"); +///"Settings" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelNewType=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelNewType"); +///"Type name" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelTypeName=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelTypeName"); +///"The name of the new type that you are creating (ex. product)" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HelpTypeName=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HelpTypeName"); +///"Type namespace" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelTypeNamespace=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelTypeNamespace"); +///"The name of the module, category or namespace that you are creating" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HelpTypeNamespace=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HelpTypeNamespace"); +///"Title" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelTypeTitle=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelTypeTitle"); +///"Use this entry to specify a user friendly name" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HelpTypeTitle=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HelpTypeTitle"); +///"Fields" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_LabelFields=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.LabelFields"); +///"Services" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_ServicesLabel=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.ServicesLabel"); +///"Has versioning" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HasVersioning=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HasVersioning"); +///"Has publishing" +public static string Website_Forms_Administrative_CreateNewAssociatedTypeStep1_HasPublishing=>T("Website.Forms.Administrative.CreateNewAssociatedTypeStep1.HasPublishing"); +///"Delete Data?" +public static string Website_Forms_Administrative_DeleteAssociatedTypeDataStep1_FieldGroupLabel=>T("Website.Forms.Administrative.DeleteAssociatedTypeDataStep1.FieldGroupLabel"); +///"Delete data?" +public static string Website_Forms_Administrative_DeleteAssociatedTypeDataStep1_Text=>T("Website.Forms.Administrative.DeleteAssociatedTypeDataStep1.Text"); +///"Add page data" +public static string Website_Forms_Administrative_AddAssociatedDataWorkflow_FieldGroupLabel=>T("Website.Forms.Administrative.AddAssociatedDataWorkflow.FieldGroupLabel"); +///"Select a datatype to add" +public static string Website_Forms_Administrative_AddAssociatedDataWorkflow_TypeSelectorLabel=>T("Website.Forms.Administrative.AddAssociatedDataWorkflow.TypeSelectorLabel"); +///"Select one of the existing types to add data to" +public static string Website_Forms_Administrative_AddAssociatedDataWorkflow_TypeSelectorHelp=>T("Website.Forms.Administrative.AddAssociatedDataWorkflow.TypeSelectorHelp"); +///"Add page datatype" +public static string Website_Forms_Administrative_AddAssociatedTypeWorkflow_FieldGroupLabel=>T("Website.Forms.Administrative.AddAssociatedTypeWorkflow.FieldGroupLabel"); +///"Select type to add" +public static string Website_Forms_Administrative_AddAssociatedTypeAddExisting_TypeSelectorLabel=>T("Website.Forms.Administrative.AddAssociatedTypeAddExisting.TypeSelectorLabel"); +///"Select one of the existing types in the system" +public static string Website_Forms_Administrative_AddAssociatedTypeAddExisting_TypeSelectorHelp=>T("Website.Forms.Administrative.AddAssociatedTypeAddExisting.TypeSelectorHelp"); +///"Select a foreign key" +public static string Website_Forms_Administrative_AddAssociatedTypeAddExistingSelectForeignKey_KeySelectorLabel=>T("Website.Forms.Administrative.AddAssociatedTypeAddExistingSelectForeignKey.KeySelectorLabel"); +///"Select one of the fields from the type to use as foreign key" +public static string Website_Forms_Administrative_AddAssociatedTypeAddExistingSelectForeignKey_KeySelectorHelp=>T("Website.Forms.Administrative.AddAssociatedTypeAddExistingSelectForeignKey.KeySelectorHelp"); +///"Add a" +public static string Website_Forms_Administrative_AddAssociatedTypeAddingTypeSelection_KeySelectorLabel=>T("Website.Forms.Administrative.AddAssociatedTypeAddingTypeSelection.KeySelectorLabel"); +///"Creating a new type or using an existing type" +public static string Website_Forms_Administrative_AddAssociatedTypeAddingTypeSelection_KeySelectorHelp=>T("Website.Forms.Administrative.AddAssociatedTypeAddingTypeSelection.KeySelectorHelp"); +///"Select type:" +public static string Website_Forms_Administrative_AddAssociatedTypeAssociationTypeSelection_KeySelectorLabel=>T("Website.Forms.Administrative.AddAssociatedTypeAssociationTypeSelection.KeySelectorLabel"); +///"Regular data is a new type that are created under a page. Metadata is a new field that are created on a page" +public static string Website_Forms_Administrative_AddAssociatedTypeAssociationTypeSelection_KeySelectorHelp=>T("Website.Forms.Administrative.AddAssociatedTypeAssociationTypeSelection.KeySelectorHelp"); +///"Rule name" +public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeRuleNameLabel=>T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeRuleNameLabel"); +///"Rule name are saved with the metadata and are a part of the metadata key. The name must be unique." +public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeRuleNameHelp=>T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeRuleNameHelp"); +///"Rule label" +public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeRuleLabelLabel=>T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeRuleLabelLabel"); +///"Rule label is used as a user friendly name for the instance. Can be localized" +public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeRuleHelpHelp=>T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeRuleHelpHelp"); +///"Select composition container" +public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ContainerKeySelectorLabel=>T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ContainerKeySelectorLabel"); +///"Select container for the new rule." +public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ContainerKeySelectorHelp=>T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ContainerKeySelectorHelp"); +///"Select composition scope" +public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeKeySelectorLabel=>T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeKeySelectorLabel"); +///"Select the scope for the new composition" +public static string Website_Forms_Administrative_AddAssociatedTypeCompositionScopeSelection_ScopeKeySelectorHelp=>T("Website.Forms.Administrative.AddAssociatedTypeCompositionScopeSelection.ScopeKeySelectorHelp"); +///"Levels" +public static string Website_Forms_Administrative_AddAssociatedTypeLevelsScopeSelection_LevelsLabel=>T("Website.Forms.Administrative.AddAssociatedTypeLevelsScopeSelection.LevelsLabel"); +///"The depth of sub pages in which the composition will be visible" +public static string Website_Forms_Administrative_AddAssociatedTypeLevelsScopeSelection_LevelsHelp=>T("Website.Forms.Administrative.AddAssociatedTypeLevelsScopeSelection.LevelsHelp"); +///"Confirm new datatype:" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_AssociationTypeLabel=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.AssociationTypeLabel"); +///"Metadata is a new field that are created on a page" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_AssociationTypeHelp=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.AssociationTypeHelp"); +///"Composition scope rule name" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeRuleNameLabel=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeRuleNameLabel"); +///"Rule name are saved with the metadata and are a part of the metadata key. The name must be unique." +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeRuleNameHelp=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeRuleNameHelp"); +///"Composition scope rule label" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeRuleLabelLabel=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeRuleLabelLabel"); +///"Rule label is used as a user friendly name for the instance. Can be localized" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeRuleHelpHelp=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeRuleHelpHelp"); +///"Composition scope" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeLabel=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeLabel"); +///"This is the scope in which the new composition will be visible when editing pages" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_CompositionScopeHelp=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.CompositionScopeHelp"); +///"Adding type" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_AddingTypeLabel=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.AddingTypeLabel"); +///"Create a new type or use an existing type" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_AddingTypeHelp=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.AddingTypeHelp"); +///"Existing type name" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_ExistingTypeNameLabel=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.ExistingTypeNameLabel"); +///"The name of the selected existing type in the system to use" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_ExistingTypeNameHelp=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.ExistingTypeNameHelp"); +///"Foreign key field name" +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_ForeignKeyFieldNameLabel=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.ForeignKeyFieldNameLabel"); +///"The name of the field of the existing type to use as a foreign key " +public static string Website_Forms_Administrative_AddAssociatedTypeFinalInfo_ForeignKeyFieldNameHelp=>T("Website.Forms.Administrative.AddAssociatedTypeFinalInfo.ForeignKeyFieldNameHelp"); +///"Remove Datafolder" +public static string AssociatedDataElementProviderHelper_RemoveAssociatedTypeLabel=>T("AssociatedDataElementProviderHelper.RemoveAssociatedTypeLabel"); +///"Remove datafolder" +public static string AssociatedDataElementProviderHelper_RemoveAssociatedTypeToolTip=>T("AssociatedDataElementProviderHelper.RemoveAssociatedTypeToolTip"); +///"Remove page datatype" +public static string Website_Forms_Administrative_RemoveAssociatedType_FieldGroupLabel=>T("Website.Forms.Administrative.RemoveAssociatedType.FieldGroupLabel"); +///"Remove page datatype" +public static string Website_Forms_Administrative_RemoveAssociatedTypeFinalInfo_AssociationTypeLabel=>T("Website.Forms.Administrative.RemoveAssociatedTypeFinalInfo.AssociationTypeLabel"); +///"Composition scope rule name" +public static string Website_Forms_Administrative_RemoveAssociatedTypeFinalInfo_CompositionScopeRuleNameLabel=>T("Website.Forms.Administrative.RemoveAssociatedTypeFinalInfo.CompositionScopeRuleNameLabel"); +///"Select a rule" +public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectRuleName_KeySelectorLabel=>T("Website.Forms.Administrative.RemoveAssociatedTypeSelectRuleName.KeySelectorLabel"); +///"The name of the rule to remove" +public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectRuleName_KeySelectorHelp=>T("Website.Forms.Administrative.RemoveAssociatedTypeSelectRuleName.KeySelectorHelp"); +///"Select page datatype" +public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectAssociationType_KeySelectorLabel=>T("Website.Forms.Administrative.RemoveAssociatedTypeSelectAssociationType.KeySelectorLabel"); +///"" +public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectAssociationType_KeySelectorHelp=>T("Website.Forms.Administrative.RemoveAssociatedTypeSelectAssociationType.KeySelectorHelp"); +///"Select datatype" +public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectType_TypeSelectorLabel=>T("Website.Forms.Administrative.RemoveAssociatedTypeSelectType.TypeSelectorLabel"); +///"Select one of the existing types" +public static string Website_Forms_Administrative_RemoveAssociatedTypeSelectType_TypeSelectorHelp=>T("Website.Forms.Administrative.RemoveAssociatedTypeSelectType.TypeSelectorHelp"); +///"Virtual root" +public static string VirtualElementProviderElementProvider_ID01=>T("VirtualElementProviderElementProvider.ID01"); +///"Users and Permissions" +public static string VirtualElementProviderElementProvider_PermissionsPerspective=>T("VirtualElementProviderElementProvider.PermissionsPerspective"); +///"Users" +public static string VirtualElementProviderElementProvider_UserPerspective=>T("VirtualElementProviderElementProvider.UserPerspective"); +///"Developer Apps" +public static string VirtualElementProviderElementProvider_DeveloperApplicationPerspective=>T("VirtualElementProviderElementProvider.DeveloperApplicationPerspective"); +///"User Groups" +public static string VirtualElementProviderElementProvider_UserGroupPerspective=>T("VirtualElementProviderElementProvider.UserGroupPerspective"); +///"System" +public static string VirtualElementProviderElementProvider_SystemPerspective=>T("VirtualElementProviderElementProvider.SystemPerspective"); +///"Content" +public static string VirtualElementProviderElementProvider_ContentPerspective=>T("VirtualElementProviderElementProvider.ContentPerspective"); +///"Data" +public static string VirtualElementProviderElementProvider_DatasPerspective=>T("VirtualElementProviderElementProvider.DatasPerspective"); +///"Layout" +public static string VirtualElementProviderElementProvider_DesignPerspective=>T("VirtualElementProviderElementProvider.DesignPerspective"); +///"Functions" +public static string VirtualElementProviderElementProvider_FunctionsPerspective=>T("VirtualElementProviderElementProvider.FunctionsPerspective"); +///"All Media Files" +public static string VirtualElementProviderElementProvider_MediaFilePerspective=>T("VirtualElementProviderElementProvider.MediaFilePerspective"); +///"Media" +public static string VirtualElementProviderElementProvider_MediaPerspective=>T("VirtualElementProviderElementProvider.MediaPerspective"); +///"All Functions" +public static string VirtualElementProviderElementProvider_ReadOnlyFunctionPerspective=>T("VirtualElementProviderElementProvider.ReadOnlyFunctionPerspective"); +///"All Widget Functions" +public static string VirtualElementProviderElementProvider_ReadOnlyWidgetFunctionPerspective=>T("VirtualElementProviderElementProvider.ReadOnlyWidgetFunctionPerspective"); +///"SQL Functions" +public static string VirtualElementProviderElementProvider_SqlFunctionPerspective=>T("VirtualElementProviderElementProvider.SqlFunctionPerspective"); +///"Xslt Based Functions" +public static string VirtualElementProviderElementProvider_XsltBasedFunctionPerspective=>T("VirtualElementProviderElementProvider.XsltBasedFunctionPerspective"); +///"Broadcast Message" +public static string VirtualElementProviderElementProvider_RootActions_SendMessageLabel=>T("VirtualElementProviderElementProvider.RootActions.SendMessageLabel"); +///"Send a message to all running consoles" +public static string VirtualElementProviderElementProvider_RootActions_SendMessageTooltip=>T("VirtualElementProviderElementProvider.RootActions.SendMessageTooltip"); +///"Time Zone Settings" +public static string VirtualElementProviderElementProvider_RootActions_SetTimezoneLabel=>T("VirtualElementProviderElementProvider.RootActions.SetTimezoneLabel"); +///"Time zone to be displayed for all users within the console" +public static string VirtualElementProviderElementProvider_RootActions_SetTimezoneTooltip=>T("VirtualElementProviderElementProvider.RootActions.SetTimezoneTooltip"); +///"Global Settings" +public static string VirtualElementProviderElementProvider_RootActions_GlobalSetting=>T("VirtualElementProviderElementProvider.RootActions.GlobalSetting"); +///"Restart server" +public static string VirtualElementProviderElementProvider_RootActions_RestartApplicationLabel=>T("VirtualElementProviderElementProvider.RootActions.RestartApplicationLabel"); +///"Restart the server" +public static string VirtualElementProviderElementProvider_RootActions_RestartApplicationTooltip=>T("VirtualElementProviderElementProvider.RootActions.RestartApplicationTooltip"); +///"Broadcast Message to All {applicationname} Consoles" +public static string SendMessageToConsolesWorkflow_Layout_Label=>T("SendMessageToConsolesWorkflow.Layout.Label"); +///"Title" +public static string SendMessageToConsolesWorkflow_TitleTextBox_Label=>T("SendMessageToConsolesWorkflow.TitleTextBox.Label"); +///"Dialog title of broadcast message" +public static string SendMessageToConsolesWorkflow_TitleTextBox_Help=>T("SendMessageToConsolesWorkflow.TitleTextBox.Help"); +///"Message" +public static string SendMessageToConsolesWorkflow_MessageTextArea_Label=>T("SendMessageToConsolesWorkflow.MessageTextArea.Label"); +///"The message to broadcast" +public static string SendMessageToConsolesWorkflow_MessageTextArea_Help=>T("SendMessageToConsolesWorkflow.MessageTextArea.Help"); +///"Time Zone Updated" +public static string SendMessageToConsolesWorkflow_SuccessMessage_TimezoneChangedTitle=>T("SendMessageToConsolesWorkflow.SuccessMessage.TimezoneChangedTitle"); +///"Time zone has been successfully updated" +public static string SendMessageToConsolesWorkflow_SuccessMessage_TimezoneChangedMessage=>T("SendMessageToConsolesWorkflow.SuccessMessage.TimezoneChangedMessage"); +///"Set Time Zone Display" +public static string SetTimezoneWorkflow_Layout_Label=>T("SetTimezoneWorkflow.Layout.Label"); +///"Select Time Zone" +public static string SetTimezoneWorkflow_TitleTextBox_Label=>T("SetTimezoneWorkflow.TitleTextBox.Label"); +///"Time zone to be displayed for all users within the console. The console will restart once time zone updated. Any unsaved changes will be lost." +public static string SetTimezoneWorkflow_TitleTextBox_Help=>T("SetTimezoneWorkflow.TitleTextBox.Help"); +///"Time zone update requires a console restart. Any unsaved changes will be lost." +public static string SetTimezoneWorkflow_WarningText_Text=>T("SetTimezoneWorkflow.WarningText.Text"); +///"Login" +public static string LoginWebRequestHandler_Login=>T("LoginWebRequestHandler.Login"); +///"Login to {0}" +public static string LoginWebRequestHandler_Header(object parameter0)=>string.Format(T("LoginWebRequestHandler.Header"), parameter0); +///"Incorrect user name or password" +public static string LoginWebRequestHandler_LoginFailed=>T("LoginWebRequestHandler.LoginFailed"); +///"Password" +public static string LoginWebRequestHandler_Password=>T("LoginWebRequestHandler.Password"); +///"Username" +public static string LoginWebRequestHandler_Username=>T("LoginWebRequestHandler.Username"); +///"Log in as another user." +public static string LoginWebRequestHandler_LogInAsOtherUser=>T("LoginWebRequestHandler.LogInAsOtherUser"); +///"Wrong username or password." +public static string LoginWebRequestHandler_WrongUserNameOrPassword=>T("LoginWebRequestHandler.WrongUserNameOrPassword"); +///"The supplied Windows login, {0}\{1} is not registered in the user database. You must use a different login." +public static string LoginWebRequestHandler_UserNameNotRegistered(object parameter0,object parameter1)=>string.Format(T("LoginWebRequestHandler.UserNameNotRegistered"), parameter0,parameter1); +///"The type {0} is not an interface." +public static string DataInterfaceValidator_TypeNotAnInterface(object parameter0)=>string.Format(T("DataInterfaceValidator.TypeNotAnInterface"), parameter0); +///"The interface type {0} does not implement the interface {1}." +public static string DataInterfaceValidator_TypeDoesNotImplementInterface(object parameter0,object parameter1)=>string.Format(T("DataInterfaceValidator.TypeDoesNotImplementInterface"), parameter0,parameter1); +///"The property {0} on the interface type {1} is not a accepted type." +public static string DataInterfaceValidator_NotAcceptedType(object parameter0,object parameter1)=>string.Format(T("DataInterfaceValidator.NotAcceptedType"), parameter0,parameter1); +///"The interface {0} is not a valid IData interface." +public static string DataInterfaceValidator_NotValidIDataInterface(object parameter0)=>string.Format(T("DataInterfaceValidator.NotValidIDataInterface"), parameter0); +///"Cascade delete error" +public static string DeleteMediaFileWorkflow_CascadeDeleteErrorTitle=>T("DeleteMediaFileWorkflow.CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string DeleteMediaFileWorkflow_CascadeDeleteErrorMessage=>T("DeleteMediaFileWorkflow.CascadeDeleteErrorMessage"); +///"Cascade delete error" +public static string DeleteMediaFolderWorkflow_CascadeDeleteErrorTitle=>T("DeleteMediaFolderWorkflow.CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string DeleteMediaFolderWorkflow_CascadeDeleteErrorMessage=>T("DeleteMediaFolderWorkflow.CascadeDeleteErrorMessage"); +///"Add folders and files to the media archive" +public static string MediaFileProviderElementProvider_RootToolTip=>T("MediaFileProviderElementProvider.RootToolTip"); +///"Add Folder" +public static string MediaFileProviderElementProvider_AddMediaFolder=>T("MediaFileProviderElementProvider.AddMediaFolder"); +///"Add new media folder" +public static string MediaFileProviderElementProvider_AddMediaFolderToolTip=>T("MediaFileProviderElementProvider.AddMediaFolderToolTip"); +///"Upload File" +public static string MediaFileProviderElementProvider_AddMediaFile=>T("MediaFileProviderElementProvider.AddMediaFile"); +///"Add new media file" +public static string MediaFileProviderElementProvider_AddMediaFileToolTip=>T("MediaFileProviderElementProvider.AddMediaFileToolTip"); +///"Delete File" +public static string MediaFileProviderElementProvider_DeleteMediaFile=>T("MediaFileProviderElementProvider.DeleteMediaFile"); +///"Delete the selected media file" +public static string MediaFileProviderElementProvider_DeleteMediaFileToolTip=>T("MediaFileProviderElementProvider.DeleteMediaFileToolTip"); +///"Delete Folder" +public static string MediaFileProviderElementProvider_DeleteMediaFolder=>T("MediaFileProviderElementProvider.DeleteMediaFolder"); +///"Delete the media folder and all items under it." +public static string MediaFileProviderElementProvider_DeleteMediaFolderToolTip=>T("MediaFileProviderElementProvider.DeleteMediaFolderToolTip"); +///"Download" +public static string MediaFileProviderElementProvider_Download=>T("MediaFileProviderElementProvider.Download"); +///"Download file" +public static string MediaFileProviderElementProvider_DownloadToolTip=>T("MediaFileProviderElementProvider.DownloadToolTip"); +///"File Properties" +public static string MediaFileProviderElementProvider_EditMediaFile=>T("MediaFileProviderElementProvider.EditMediaFile"); +///"Rename the selected media file" +public static string MediaFileProviderElementProvider_EditMediaFileToolTip=>T("MediaFileProviderElementProvider.EditMediaFileToolTip"); +///"Edit text" +public static string MediaFileProviderElementProvider_EditMediaFileTextContent=>T("MediaFileProviderElementProvider.EditMediaFileTextContent"); +///"Edit text content" +public static string MediaFileProviderElementProvider_EditMediaFileTextContentToolTip=>T("MediaFileProviderElementProvider.EditMediaFileTextContentToolTip"); +///"Image Editor" +public static string MediaFileProviderElementProvider_EditImage=>T("MediaFileProviderElementProvider.EditImage"); +///"Open the selected media file in the image editor" +public static string MediaFileProviderElementProvider_EditImageToolTip=>T("MediaFileProviderElementProvider.EditImageToolTip"); +///"Folder Properties" +public static string MediaFileProviderElementProvider_EditMediaFolder=>T("MediaFileProviderElementProvider.EditMediaFolder"); +///"Edit media folder properties" +public static string MediaFileProviderElementProvider_EditMediaFolderToolTip=>T("MediaFileProviderElementProvider.EditMediaFolderToolTip"); +///"Replace File" +public static string MediaFileProviderElementProvider_ChangeMediaFile=>T("MediaFileProviderElementProvider.ChangeMediaFile"); +///"Replace the selected with another media file" +public static string MediaFileProviderElementProvider_ChangeMediaFileToolTip=>T("MediaFileProviderElementProvider.ChangeMediaFileToolTip"); +///"Upload Multiple" +public static string MediaFileProviderElementProvider_UploadZipFile=>T("MediaFileProviderElementProvider.UploadZipFile"); +///"Upload Zip file" +public static string MediaFileProviderElementProvider_UploadZipFileToolTip=>T("MediaFileProviderElementProvider.UploadZipFileToolTip"); +///"Media Item" +public static string MediaFileProviderElementProvider_MediaFileItemToolTip=>T("MediaFileProviderElementProvider.MediaFileItemToolTip"); +///"Organize folders and files" +public static string MediaFileProviderElementProvider_OrganizedFilesAndFoldersToolTip=>T("MediaFileProviderElementProvider.OrganizedFilesAndFoldersToolTip"); +///"Error" +public static string MediaFileProviderElementProvider_ErrorMessageTitle=>T("MediaFileProviderElementProvider.ErrorMessageTitle"); +///"File '{0}' already exists in folder '{1}'" +public static string MediaFileProviderElementProvider_FileAlreadyExistsMessage(object parameter0,object parameter1)=>string.Format(T("MediaFileProviderElementProvider.FileAlreadyExistsMessage"), parameter0,parameter1); +///"Failure" +public static string UploadNewMediaFileWorkflow_UploadFailure=>T("UploadNewMediaFileWorkflow.UploadFailure"); +///"The uploaded file must be of the same type as the original. The file you uploaded is of a different type." +public static string UploadNewMediaFileWorkflow_UploadFailureMessage=>T("UploadNewMediaFileWorkflow.UploadFailureMessage"); +///"Show Graph" +public static string RelationshipGraphActionExecutor_ShowGraph=>T("RelationshipGraphActionExecutor.ShowGraph"); +///"Show relationship graph" +public static string RelationshipGraphActionExecutor_ShowGraphToolTip=>T("RelationshipGraphActionExecutor.ShowGraphToolTip"); +///"Show Oriented Graph" +public static string RelationshipGraphActionExecutor_ShowOrientedGraph=>T("RelationshipGraphActionExecutor.ShowOrientedGraph"); +///"Show Oriented Relationship graph" +public static string RelationshipGraphActionExecutor_ShowOrientedGraphToolTip=>T("RelationshipGraphActionExecutor.ShowOrientedGraphToolTip"); +///"Show Element Information" +public static string ShowElementInformationActionExecutor_ShowElementInformation_Label=>T("ShowElementInformationActionExecutor.ShowElementInformation.Label"); +///"Show Element Information" +public static string ShowElementInformationActionExecutor_ShowElementInformation_ToolTip=>T("ShowElementInformationActionExecutor.ShowElementInformation.ToolTip"); +///"Search elements" +public static string RelationshipGraphActionExecutor_Search=>T("RelationshipGraphActionExecutor.Search"); +///"Search for elements" +public static string RelationshipGraphActionExecutor_SearchToolTip=>T("RelationshipGraphActionExecutor.SearchToolTip"); +///"Search elements" +public static string RelationshipGraphActionExecutor_SearchElements=>T("RelationshipGraphActionExecutor.SearchElements"); +///"Search for elements" +public static string RelationshipGraphActionExecutor_SearchElementsToolTip=>T("RelationshipGraphActionExecutor.SearchElementsToolTip"); +///"Version No." +public static string Website_General_LabelVersionNumber=>T("Website.General.LabelVersionNumber"); +///"Restart?" +public static string Website_Application_DialogReload_Title=>T("Website.Application.DialogReload.Title"); +///"Restart {applicationname}? All unsaved changes will be lost." +public static string Website_Application_DialogReload_Text=>T("Website.Application.DialogReload.Text"); +///"Save Resource?" +public static string WebSite_Application_DialogSaveResource_Title=>T("WebSite.Application.DialogSaveResource.Title"); +///""${resourcename}" has been modified. Save changes?" +public static string WebSite_Application_DialogSaveResource_Text=>T("WebSite.Application.DialogSaveResource.Text"); +///"Save Resources?" +public static string Website_Dialogs_SaveAll_LabelSaveResources=>T("Website.Dialogs.SaveAll.LabelSaveResources"); +///"Unsaved resources" +public static string Website_Dialogs_SaveAll_LabelUnsavedResources=>T("Website.Dialogs.SaveAll.LabelUnsavedResources"); +///"Yes" +public static string Website_Dialogs_LabelYes=>T("Website.Dialogs.LabelYes"); +///"No" +public static string Website_Dialogs_LabelNo=>T("Website.Dialogs.LabelNo"); +///"OK" +public static string Website_Dialogs_LabelAccept=>T("Website.Dialogs.LabelAccept"); +///"Cancel" +public static string Website_Dialogs_LabelCancel=>T("Website.Dialogs.LabelCancel"); +///"More Info" +public static string Website_Dialogs_LabelDisclosure=>T("Website.Dialogs.LabelDisclosure"); +///"About {applicationname}" +public static string Website_Dialogs_About_Title=>T("Website.Dialogs.About.Title"); +///"Credits" +public static string Website_Dialogs_About_LabelCredits=>T("Website.Dialogs.About.LabelCredits"); +///"Back" +public static string Website_Dialogs_About_LabelBack=>T("Website.Dialogs.About.LabelBack"); +///"Credits" +public static string Website_Dialogs_About_LabelCredits2=>T("Website.Dialogs.About.LabelCredits2"); +///"No access" +public static string Website_Dialogs_NoAccessTitle=>T("Website.Dialogs.NoAccessTitle"); +///"You have not been granted access rights to the system. Please contact your administrator." +public static string Website_Dialogs_NoAccessText=>T("Website.Dialogs.NoAccessText"); +///"Unit" +public static string Website_Dialogs_ImageEditor_ScaleImage_Unit=>T("Website.Dialogs.ImageEditor.ScaleImage.Unit"); +///"Width" +public static string Website_Dialogs_ImageEditor_ScaleImage_Width=>T("Website.Dialogs.ImageEditor.ScaleImage.Width"); +///"Height" +public static string Website_Dialogs_ImageEditor_ScaleImage_Height=>T("Website.Dialogs.ImageEditor.ScaleImage.Height"); +///"Scale Image" +public static string Website_Dialogs_ImageEditor_ScaleImage_LabelScaleImage=>T("Website.Dialogs.ImageEditor.ScaleImage.LabelScaleImage"); +///"Dimensions" +public static string Website_Dialogs_ImageEditor_ScaleImage_LabelDimensions=>T("Website.Dialogs.ImageEditor.ScaleImage.LabelDimensions"); +///"Image Size" +public static string Website_Dialogs_ImageEditor_ScaleImage_LabelImageSize=>T("Website.Dialogs.ImageEditor.ScaleImage.LabelImageSize"); +///"Fixed Ratio" +public static string Website_Dialogs_ImageEditor_ScaleImage_LabelFixedRatio=>T("Website.Dialogs.ImageEditor.ScaleImage.LabelFixedRatio"); +///"Free Resize" +public static string Website_Dialogs_ImageEditor_ScaleImage_LabelFreeResize=>T("Website.Dialogs.ImageEditor.ScaleImage.LabelFreeResize"); +///"Pixels" +public static string Website_Dialogs_ImageEditor_ScaleImage_LabelPixels=>T("Website.Dialogs.ImageEditor.ScaleImage.LabelPixels"); +///"Percent" +public static string Website_Dialogs_ImageEditor_ScaleImage_LabelPercent=>T("Website.Dialogs.ImageEditor.ScaleImage.LabelPercent"); +///"Login screen" +public static string Website_Dialogs_Options_LoginScreen=>T("Website.Dialogs.Options.LoginScreen"); +///"Options" +public static string Website_Dialogs_Options_LabelOptions=>T("Website.Dialogs.Options.LabelOptions"); +///"General" +public static string Website_Dialogs_Options_LabelGeneral=>T("Website.Dialogs.Options.LabelGeneral"); +///"Advanced" +public static string Website_Dialogs_Options_LabelAdvanced=>T("Website.Dialogs.Options.LabelAdvanced"); +///"Login Preferences" +public static string Website_Dialogs_Options_LabelLoginPreferences=>T("Website.Dialogs.Options.LabelLoginPreferences"); +///"Fake login screen" +public static string Website_Dialogs_Options_LabelFakeLoginScreen=>T("Website.Dialogs.Options.LabelFakeLoginScreen"); +///"No login screen" +public static string Website_Dialogs_Options_LabelNoLoginScreen=>T("Website.Dialogs.Options.LabelNoLoginScreen"); +///"Error in web service method " +public static string Website_Dialogs_WebServices_Error=>T("Website.Dialogs.WebServices.Error"); +///"Web Service Error" +public static string Website_Dialogs_WebServices_LabelWebServiceError=>T("Website.Dialogs.WebServices.LabelWebServiceError"); +///"Insert Where?" +public static string Website_Dialogs_SystemTree_DetailedPaste_Title=>T("Website.Dialogs.SystemTree.DetailedPaste.Title"); +///"Position" +public static string Website_Dialogs_SystemTree_DetailedPaste_LabelPosition=>T("Website.Dialogs.SystemTree.DetailedPaste.LabelPosition"); +///"Insert before" +public static string Website_Dialogs_SystemTree_DetailedPaste_LabelInsertBefore=>T("Website.Dialogs.SystemTree.DetailedPaste.LabelInsertBefore"); +///"Insert after" +public static string Website_Dialogs_SystemTree_DetailedPaste_LabelInsertAfter=>T("Website.Dialogs.SystemTree.DetailedPaste.LabelInsertAfter"); +///"Basic view" +public static string Website_Dialogs_EditFunction_BasicView=>T("Website.Dialogs.EditFunction.BasicView"); +///"Advanced view" +public static string Website_Dialogs_EditFunction_AdvancedView=>T("Website.Dialogs.EditFunction.AdvancedView"); +///"This function has no parameters" +public static string Website_Dialogs_EditFunction_BasicView_NoParameters=>T("Website.Dialogs.EditFunction.BasicView.NoParameters"); +///"Edit image" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelTitle=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelTitle"); +///"File" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelFile=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelFile"); +///"Save" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelSave=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelSave"); +///"Save As..." +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelSaveAs=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelSaveAs"); +///"Revert" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelRevert=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelRevert"); +///"View" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelView=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelView"); +///"Zoom" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelZoom=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelZoom"); +///"Zoom In" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelZoomIn=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelZoomIn"); +///"Zoom Out" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelZoomOut=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelZoomOut"); +///"800%" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label800=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label800"); +///"400%" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label400=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label400"); +///"200%" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label200=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label200"); +///"100%" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label100=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label100"); +///"50%" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label50=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label50"); +///"25%" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label25=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label25"); +///"12%" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_Label12=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.Label12"); +///"Image" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelImage=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelImage"); +///"Transform" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelTransform=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelTransform"); +///"Flip Horizontally" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelFlipHorizontal=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelFlipHorizontal"); +///"Flip Vertically" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelFlipVertical=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelFlipVertical"); +///"Rotate 90 Degrees CW" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelRotate90CW=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelRotate90CW"); +///"Rotate 90 Degrees CCW" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelRotate90CCW=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelRotate90CCW"); +///"Rotate 180 Degrees" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelRotate180=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelRotate180"); +///"Scale Image..." +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelScale=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelScale"); +///"Crop Image" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_LabelCrop=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.LabelCrop"); +///"Select" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBox_ToolTipSelect=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBox.ToolTipSelect"); +///"Zoom" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBox_ToolTipZoom=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBox.ToolTipZoom"); +///"Save" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelSave=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelSave"); +///"Scale image" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelScale=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelScale"); +///"Crop image" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelCrop=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelCrop"); +///"Undo" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelUndo=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelUndo"); +///"Redo" +public static string Website_Content_Views_Editors_ImageEditor_ImageEditor_ToolBar_LabelRedo=>T("Website.Content.Views.Editors.ImageEditor.ImageEditor.ToolBar.LabelRedo"); +///"Permissions" +public static string Website_Content_Views_Editors_PermissionEditor_LabelTitle=>T("Website.Content.Views.Editors.PermissionEditor.LabelTitle"); +///"Users" +public static string Website_Content_Views_Editors_PermissionEditor_LabelTabUsers=>T("Website.Content.Views.Editors.PermissionEditor.LabelTabUsers"); +///"User Groups" +public static string Website_Content_Views_Editors_PermissionEditor_LabelTabUserGroups=>T("Website.Content.Views.Editors.PermissionEditor.LabelTabUserGroups"); +///"Save" +public static string Website_Content_Views_Editors_PermissionEditor_LabelButtonSave=>T("Website.Content.Views.Editors.PermissionEditor.LabelButtonSave"); +///"Go back one page" +public static string Website_Content_Views_Help_ToolTipBack=>T("Website.Content.Views.Help.ToolTipBack"); +///"Go forward one page" +public static string Website_Content_Views_Help_ToolTipForward=>T("Website.Content.Views.Help.ToolTipForward"); +///"Refresh page" +public static string Website_Content_Views_Help_ToolTipRefresh=>T("Website.Content.Views.Help.ToolTipRefresh"); +///"Contents" +public static string Website_Content_Views_Help_LabelContents=>T("Website.Content.Views.Help.LabelContents"); +///"Help contents" +public static string Website_Content_Views_Help_ToolTipContents=>T("Website.Content.Views.Help.ToolTipContents"); +///"Collapse All" +public static string Website_Content_Views_SystemView_ToolTipCollapseAll=>T("Website.Content.Views.SystemView.ToolTipCollapseAll"); +///"Link with Editor" +public static string Website_Content_Views_SystemView_ToolTipLinkWithEditor=>T("Website.Content.Views.SystemView.ToolTipLinkWithEditor"); +///"New Search..." +public static string Website_Content_Views_Search_Search_LabelNewSearch=>T("Website.Content.Views.Search.Search.LabelNewSearch"); +///"Formatted" +public static string Website_Content_Views_ViewSource_LabelFormatted=>T("Website.Content.Views.ViewSource.LabelFormatted"); +///"Raw" +public static string Website_Content_Views_ViewSource_LabelRaw=>T("Website.Content.Views.ViewSource.LabelRaw"); +///"Server Log" +public static string ServerLog_Element_Label=>T("ServerLog.Element.Label"); +///"The server log contain security and system health related messages." +public static string ServerLog_Element_Tooltip=>T("ServerLog.Element.Tooltip"); +///"View Server Log" +public static string ServerLog_Element_View_Label=>T("ServerLog.Element.View.Label"); +///"View recent server events" +public static string ServerLog_Element_View_Tooltip=>T("ServerLog.Element.View.Tooltip"); +///"Server Log" +public static string ServerLog_LabelTitle=>T("ServerLog.LabelTitle"); +///"Delete old" +public static string ServerLog_LabelButtonDeleteOld=>T("ServerLog.LabelButtonDeleteOld"); +///"Refresh" +public static string ServerLog_LabelButtonRefresh=>T("ServerLog.LabelButtonRefresh"); +///"No log data available..." +public static string ServerLog_EmptyLabel=>T("ServerLog.EmptyLabel"); +///"Only the {0} most recent log entries are shown. Open the log for more entries." +public static string ServerLog_LogEntriesRemovedBrowserViewLabel(object parameter0)=>string.Format(T("ServerLog.LogEntriesRemovedBrowserViewLabel"), parameter0); +///"Only the {0} most recent log entries are shown. {1} entries exists for the current search. Either narrow the search or use the log viewer tool from http://docs.composite.net/Configuration/Logging for full log access." +public static string ServerLog_LogEntriesRemovedLabel(object parameter0,object parameter1)=>string.Format(T("ServerLog.LogEntriesRemovedLabel"), parameter0,parameter1); +///"Date" +public static string ServerLog_LogEntry_DateLabel=>T("ServerLog.LogEntry.DateLabel"); +///"Message" +public static string ServerLog_LogEntry_MessageLabel=>T("ServerLog.LogEntry.MessageLabel"); +///"Title" +public static string ServerLog_LogEntry_TitleLabel=>T("ServerLog.LogEntry.TitleLabel"); +///"EventType" +public static string ServerLog_LogEntry_EventTypeLabel=>T("ServerLog.LogEntry.EventTypeLabel"); +///"Verbose" +public static string ServerLog_Severity_Verbose=>T("ServerLog.Severity.Verbose"); +///"Information" +public static string ServerLog_Severity_Information=>T("ServerLog.Severity.Information"); +///"Warning" +public static string ServerLog_Severity_Warning=>T("ServerLog.Severity.Warning"); +///"Error" +public static string ServerLog_Severity_Error=>T("ServerLog.Severity.Error"); +///"Critical" +public static string ServerLog_Severity_Critical=>T("ServerLog.Severity.Critical"); +///"Refresh" +public static string FunctionDocumentation_LabelButtonRefresh=>T("FunctionDocumentation.LabelButtonRefresh"); +///"Print" +public static string FunctionDocumentation_LabelButtonPrint=>T("FunctionDocumentation.LabelButtonPrint"); +///"Execution Ended" +public static string Website_FlowUICompleted_ExecutionEndedTitle=>T("Website.FlowUICompleted.ExecutionEndedTitle"); +///"The action executed in this window has ended." +public static string Website_FlowUICompleted_ExecutionEndedMessage=>T("Website.FlowUICompleted.ExecutionEndedMessage"); +///"Server Error" +public static string Website_ServerError_ServerErrorTitle=>T("Website.ServerError.ServerErrorTitle"); +///"An unfortunate error has occurred." +public static string Website_ServerError_ServerErrorMessage=>T("Website.ServerError.ServerErrorMessage"); +///"Details" +public static string Website_ServerError_ServerErrorDetails=>T("Website.ServerError.ServerErrorDetails"); +///"License Violation" +public static string Website_LicenseViolation_LicenseViolationTitle=>T("Website.LicenseViolation.LicenseViolationTitle"); +///"The requested action is in violates with your current license." +public static string Website_LicenseViolation_LicenseViolationMessage=>T("Website.LicenseViolation.LicenseViolationMessage"); +///"Flash options" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelFlashOptions=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelFlashOptions"); +///"High" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelHigh=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelHigh"); +///"Low" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelLow=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelLow"); +///"Autohigh" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelAutohigh=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelAutohigh"); +///"Autolow" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelAutolow=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelAutolow"); +///"Best" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelBest=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelBest"); +///"Window" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelWindow=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelWindow"); +///"Opaque" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelOpaque=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelOpaque"); +///"Transparent" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelTransparent=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelTransparent"); +///"Showall" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelShowall=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelShowall"); +///"Noborder" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelNoborder=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelNoborder"); +///"Exactfit" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelExactfit=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelExactfit"); +///"Auto play" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelAutoPlay=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelAutoPlay"); +///"Loop" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelLoop=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelLoop"); +///"Show menu" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelShowMenu=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelShowMenu"); +///"SWLiveConnect" +public static string Website_Templates_WysiwygEditorPlugins_MediaFlashOptions_LabelSWLiveConnect=>T("Website.Templates.WysiwygEditorPlugins.MediaFlashOptions.LabelSWLiveConnect"); +///"Quicktime options" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelQuickTimeOptions=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelQuickTimeOptions"); +///"Loop" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelLoop=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelLoop"); +///"Cache" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelCache=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelCache"); +///"No correction" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelNoCorrection=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelNoCorrection"); +///"Kiosk mode" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelKioskMode=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelKioskMode"); +///"Play every frame" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelPlayEveryFrame=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelPlayEveryFrame"); +///"Auto play" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelAutoPlay=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelAutoPlay"); +///"Controller" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelController=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelController"); +///"Enable Javascript" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelEnableJavaScript=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelEnableJavaScript"); +///"AutoHREF" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelAutoHRef=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelAutoHRef"); +///"Target cache" +public static string Website_Templates_WysiwygEditorPlugins_MediaQuickTimeOptions_LabelTargetCache=>T("Website.Templates.WysiwygEditorPlugins.MediaQuickTimeOptions.LabelTargetCache"); +///"Shockwave options" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelShockWaveOptions=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelShockWaveOptions"); +///"High" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelHigh=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelHigh"); +///"Low" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelLow=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelLow"); +///"Autohigh" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelAutoHigh=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelAutoHigh"); +///"Autolow" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelAutoLow=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelAutoLow"); +///"Best" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelBest=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelBest"); +///"Window" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelWindow=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelWindow"); +///"Opaque" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelOpaque=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelOpaque"); +///"Transparent" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelTransparent=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelTransparent"); +///"Showall" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelShowAll=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelShowAll"); +///"Noborder" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelNoBorder=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelNoBorder"); +///"Exactfit" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelExactFit=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelExactFit"); +///"Auto play" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelAutoPlay=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelAutoPlay"); +///"Loop" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelLoop=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelLoop"); +///"Show menu" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelShowMenu=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelShowMenu"); +///"SWLiveConnect" +public static string Website_Templates_WysiwygEditorPlugins_MediaShockWaveOptions_LabelSWLiveConnect=>T("Website.Templates.WysiwygEditorPlugins.MediaShockWaveOptions.LabelSWLiveConnect"); +///"Quicktime options" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelQuickTimeOptions=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelQuickTimeOptions"); +///"Auto Start" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelAutoStart=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelAutoStart"); +///"Show menu" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelShowMenu=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelShowMenu"); +///"Invoke URLs" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelInvokeURLs=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelInvokeURLs"); +///"Stretch to fit" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelStretchToFit=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelStretchToFit"); +///"Enabled" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelEnabled=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelEnabled"); +///"Fullscreen" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelFullScreen=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelFullScreen"); +///"Mute" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelMute=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelMute"); +///"Windowless video" +public static string Website_Templates_WysiwygEditorPlugins_MediaWinMediaOptions_LabelWindowLessVideo=>T("Website.Templates.WysiwygEditorPlugins.MediaWinMediaOptions.LabelWindowLessVideo"); +///"Save" +public static string Website_App_LabelSave=>T("Website.App.LabelSave"); +///"Save and Publish" +public static string Website_App_LabelSaveAndPublish=>T("Website.App.LabelSaveAndPublish"); +///"Close Tab" +public static string Website_App_LabelCloseTab=>T("Website.App.LabelCloseTab"); +///"Close Others" +public static string Website_App_LabelCloseOthers=>T("Website.App.LabelCloseOthers"); +///"Refresh View" +public static string Website_App_LabelRefreshView=>T("Website.App.LabelRefreshView"); +///"Make Dirty" +public static string Website_App_LabelMakeDirty=>T("Website.App.LabelMakeDirty"); +///"View Source" +public static string Website_App_LabelViewSource=>T("Website.App.LabelViewSource"); +///"View Generated" +public static string Website_App_LabelViewGenerated=>T("Website.App.LabelViewGenerated"); +///"View Serialized" +public static string Website_App_LabelViewSerialized=>T("Website.App.LabelViewSerialized"); +///"Close" +public static string Website_App_LabelClose=>T("Website.App.LabelClose"); +///"File" +public static string Website_App_LabelFile=>T("Website.App.LabelFile"); +///"Close" +public static string Website_App_LabelFileClose=>T("Website.App.LabelFileClose"); +///"Close All" +public static string Website_App_LabelFileCloseAll=>T("Website.App.LabelFileCloseAll"); +///"Save All..." +public static string Website_App_LabelFileSaveAll=>T("Website.App.LabelFileSaveAll"); +///"Sign out" +public static string Website_App_LabelFileExit=>T("Website.App.LabelFileExit"); +///"View" +public static string Website_App_LabelView=>T("Website.App.LabelView"); +///"Composite Start" +public static string Website_App_LabelViewCompositeStart=>T("Website.App.LabelViewCompositeStart"); +///"System Log" +public static string Website_App_LabelSystemLog=>T("Website.App.LabelSystemLog"); +///"Developer Panel" +public static string Website_App_LabelDeveloperPanel=>T("Website.App.LabelDeveloperPanel"); +///"Tools" +public static string Website_App_LabelTools=>T("Website.App.LabelTools"); +///"Help" +public static string Website_App_LabelHelp=>T("Website.App.LabelHelp"); +///"Settings" +public static string Website_App_LabelSettings=>T("Website.App.LabelSettings"); +///"Help Contents" +public static string Website_App_LabelHelpContents=>T("Website.App.LabelHelpContents"); +///"Provide Feedback..." +public static string Website_App_LabelFeedback=>T("Website.App.LabelFeedback"); +///"About {applicationname}" +public static string Website_App_LabelAbout=>T("Website.App.LabelAbout"); +///"Cut" +public static string Website_App_LabelCut=>T("Website.App.LabelCut"); +///"Copy" +public static string Website_App_LabelCopy=>T("Website.App.LabelCopy"); +///"Paste" +public static string Website_App_LabelPaste=>T("Website.App.LabelPaste"); +///"Refresh" +public static string Website_App_LabelRefresh=>T("Website.App.LabelRefresh"); +///"Only first {0} elements are shown in the tree." +public static string Website_App_LimitedElementsShown(object parameter0)=>string.Format(T("Website.App.LimitedElementsShown"), parameter0); +///"Loading..." +public static string Website_App_LabelLoading=>T("Website.App.LabelLoading"); +///"Loaded" +public static string Website_App_LabelLoaded=>T("Website.App.LabelLoaded"); +///"Saved" +public static string Website_App_LabelSaved=>T("Website.App.LabelSaved"); +///"Minimize" +public static string Website_App_ToolTipMinimize=>T("Website.App.ToolTipMinimize"); +///"Maximize" +public static string Website_App_ToolTipMaximize=>T("Website.App.ToolTipMaximize"); +///"Restore" +public static string Website_App_ToolTipUnMaximize=>T("Website.App.ToolTipUnMaximize"); +///"Restore" +public static string Website_App_ToolTipUnMinimize=>T("Website.App.ToolTipUnMinimize"); +///"Close" +public static string Website_App_ToolTipClose=>T("Website.App.ToolTipClose"); +///"Opening {0}..." +public static string Website_App_StatusBar_Opening(object parameter0)=>string.Format(T("Website.App.StatusBar.Opening"), parameter0); +///"Refreshing {0}..." +public static string Website_App_StatusBar_Refreshing(object parameter0)=>string.Format(T("Website.App.StatusBar.Refreshing"), parameter0); +///"Loading {0}..." +public static string Website_App_StatusBar_Loading(object parameter0)=>string.Format(T("Website.App.StatusBar.Loading"), parameter0); +///"Error" +public static string Website_App_StatusBar_Error=>T("Website.App.StatusBar.Error"); +///"Warning" +public static string Website_App_StatusBar_Warn=>T("Website.App.StatusBar.Warn"); +///"Working..." +public static string Website_App_StatusBar_Busy=>T("Website.App.StatusBar.Busy"); +///"Ready!" +public static string Website_App_StatusBar_Ready=>T("Website.App.StatusBar.Ready"); +///"Error in" +public static string Website_App_StatusBar_ErrorInField=>T("Website.App.StatusBar.ErrorInField"); +///"Add New Media File" +public static string Website_Forms_Administrative_AddNewMediaFile_Layout_Label=>T("Website.Forms.Administrative.AddNewMediaFile.Layout.Label"); +///"Filename" +public static string Website_Forms_Administrative_AddNewMediaFile_FileUpload_Label=>T("Website.Forms.Administrative.AddNewMediaFile.FileUpload.Label"); +///"Select the file to upload" +public static string Website_Forms_Administrative_AddNewMediaFile_FileUpload_Help=>T("Website.Forms.Administrative.AddNewMediaFile.FileUpload.Help"); +///"Allow overwrite" +public static string Website_Forms_Administrative_AddNewMediaFile_OverwriteCheckBox_Label=>T("Website.Forms.Administrative.AddNewMediaFile.OverwriteCheckBox.Label"); +///"Replace existing file" +public static string Website_Forms_Administrative_AddNewMediaFile_OverwriteCheckBox_Help=>T("Website.Forms.Administrative.AddNewMediaFile.OverwriteCheckBox.Help"); +///"Filename" +public static string Website_Forms_Administrative_AddNewMediaFile_FilenameTextBox_Label=>T("Website.Forms.Administrative.AddNewMediaFile.FilenameTextBox.Label"); +///"The name of the file in the media library" +public static string Website_Forms_Administrative_AddNewMediaFile_FilenameTextBox_Help=>T("Website.Forms.Administrative.AddNewMediaFile.FilenameTextBox.Help"); +///"Title" +public static string Website_Forms_Administrative_AddNewMediaFile_TitleTextBox_Label=>T("Website.Forms.Administrative.AddNewMediaFile.TitleTextBox.Label"); +///"Use this field for an image title" +public static string Website_Forms_Administrative_AddNewMediaFile_TitleTextBox_Help=>T("Website.Forms.Administrative.AddNewMediaFile.TitleTextBox.Help"); +///"Description" +public static string Website_Forms_Administrative_AddNewMediaFile_DescriptionTextBox_Label=>T("Website.Forms.Administrative.AddNewMediaFile.DescriptionTextBox.Label"); +///"Use this field for a short description of the image" +public static string Website_Forms_Administrative_AddNewMediaFile_DescriptionTextBox_Help=>T("Website.Forms.Administrative.AddNewMediaFile.DescriptionTextBox.Help"); +///"Please select a file to upload" +public static string Website_Forms_Administrative_AddNewMediaFile_MissingUploadedFile_Message=>T("Website.Forms.Administrative.AddNewMediaFile.MissingUploadedFile.Message"); +///"A file with the same name exists. Check allow overwrite or change the filename" +public static string Website_Forms_Administrative_AddNewMediaFile_FileExists_Message=>T("Website.Forms.Administrative.AddNewMediaFile.FileExists.Message"); +///"The total length of the filename (folder and filename) is too long" +public static string Website_Forms_Administrative_AddNewMediaFile_TotalFilenameToLong_Message=>T("Website.Forms.Administrative.AddNewMediaFile.TotalFilenameToLong.Message"); +///"Add New Media Folder" +public static string Website_Forms_Administrative_AddNewMediaFolder_Label_AddNewMediaFolder=>T("Website.Forms.Administrative.AddNewMediaFolder.Label.AddNewMediaFolder"); +///"Folder Name" +public static string Website_Forms_Administrative_AddNewMediaFolder_LabelFolderName=>T("Website.Forms.Administrative.AddNewMediaFolder.LabelFolderName"); +///"" +public static string Website_Forms_Administrative_AddNewMediaFolder_HelpFolderName=>T("Website.Forms.Administrative.AddNewMediaFolder.HelpFolderName"); +///"Title" +public static string Website_Forms_Administrative_AddNewMediaFolder_LabelTitle=>T("Website.Forms.Administrative.AddNewMediaFolder.LabelTitle"); +///"" +public static string Website_Forms_Administrative_AddNewMediaFolder_HelpTitle=>T("Website.Forms.Administrative.AddNewMediaFolder.HelpTitle"); +///"Description" +public static string Website_Forms_Administrative_AddNewMediaFolder_LabelDescription=>T("Website.Forms.Administrative.AddNewMediaFolder.LabelDescription"); +///"" +public static string Website_Forms_Administrative_AddNewMediaFolder_HelpDescription=>T("Website.Forms.Administrative.AddNewMediaFolder.HelpDescription"); +///"The folder already exists" +public static string Website_Forms_Administrative_AddNewMediaFolder_FolderNameAlreadyUsed=>T("Website.Forms.Administrative.AddNewMediaFolder.FolderNameAlreadyUsed"); +///"The total length of the folder name is too long" +public static string Website_Forms_Administrative_AddNewMediaFolder_FolderNameTooLong=>T("Website.Forms.Administrative.AddNewMediaFolder.FolderNameTooLong"); +///"The folder name can not only be '/' or '\'" +public static string Website_Forms_Administrative_AddNewMediaFolder_FolderNotOnlySlash=>T("Website.Forms.Administrative.AddNewMediaFolder.FolderNotOnlySlash"); +///"Upload Multiple Files via a Zip File" +public static string Website_Forms_Administrative_AddZipMediaFile_LabelDialog=>T("Website.Forms.Administrative.AddZipMediaFile.LabelDialog"); +///"Zip file" +public static string Website_Forms_Administrative_AddZipMediaFile_LabelFile=>T("Website.Forms.Administrative.AddZipMediaFile.LabelFile"); +///"Create a Zip file (right click local folder and select Send to -> Compressed folder) and select it using the Browse button" +public static string Website_Forms_Administrative_AddZipMediaFile_HelpFile=>T("Website.Forms.Administrative.AddZipMediaFile.HelpFile"); +///"Create folders" +public static string Website_Forms_Administrative_AddZipMediaFile_LabelRecreateStructure=>T("Website.Forms.Administrative.AddZipMediaFile.LabelRecreateStructure"); +///"Selecting this option will copy the exact folder structure from your Zip file" +public static string Website_Forms_Administrative_AddZipMediaFile_HelpRecreateStructure=>T("Website.Forms.Administrative.AddZipMediaFile.HelpRecreateStructure"); +///"Extract folders from Zip file" +public static string Website_Forms_Administrative_AddZipMediaFile_LabelRecreateStructureCheckBox=>T("Website.Forms.Administrative.AddZipMediaFile.LabelRecreateStructureCheckBox"); +///"Overwrite existing" +public static string Website_Forms_Administrative_AddZipMediaFile_LabelOverwriteExsisting=>T("Website.Forms.Administrative.AddZipMediaFile.LabelOverwriteExsisting"); +///"Selecting this option will overwrite existing files in the media archive with matching file names" +public static string Website_Forms_Administrative_AddZipMediaFile_HelpOverwriteExsisting=>T("Website.Forms.Administrative.AddZipMediaFile.HelpOverwriteExsisting"); +///"Error" +public static string Website_Forms_Administrative_AddZipMediaFile_Error_Title=>T("Website.Forms.Administrative.AddZipMediaFile.Error.Title"); +///"Overwrite existing files" +public static string Website_Forms_Administrative_AddZipMediaFile_LabelOverwriteExsistingCheckBox=>T("Website.Forms.Administrative.AddZipMediaFile.LabelOverwriteExsistingCheckBox"); +///"Please select a file to upload" +public static string Website_Forms_Administrative_AddZipMediaFile_MissingUploadedFile_Message=>T("Website.Forms.Administrative.AddZipMediaFile.MissingUploadedFile.Message"); +///"Please use the normal upload command to upload .docx files" +public static string Website_Forms_Administrative_AddZipMediaFile_CannotUploadDocxFile=>T("Website.Forms.Administrative.AddZipMediaFile.CannotUploadDocxFile"); +///"The selected file was not a correct zip file" +public static string Website_Forms_Administrative_AddZipMediaFile_WrongUploadedFile_Message=>T("Website.Forms.Administrative.AddZipMediaFile.WrongUploadedFile.Message"); +///"Function search" +public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelFunctionSearch=>T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelFunctionSearch"); +///"Keyword" +public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelKeyword=>T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelKeyword"); +///"Write a keyword to search for." +public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelKeywordHelp=>T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelKeywordHelp"); +///"Return type" +public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelReturnType=>T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelReturnType"); +///"Select a return type to search for." +public static string Website_Forms_Administrative_AllFunctionsElementProviderSearchForm_LabelReturnTypeHelp=>T("Website.Forms.Administrative.AllFunctionsElementProviderSearchForm.LabelReturnTypeHelp"); +///"Delete This File?" +public static string Website_Forms_Administrative_DeleteMediaFile_LabelFieldGroup=>T("Website.Forms.Administrative.DeleteMediaFile.LabelFieldGroup"); +///"Delete this file?" +public static string Website_Forms_Administrative_DeleteMediaFile_Text=>T("Website.Forms.Administrative.DeleteMediaFile.Text"); +///"Deleting a file" +public static string Website_Forms_Administrative_DeleteMediaFile_DeleteDataConfirmationHeader=>T("Website.Forms.Administrative.DeleteMediaFile.DeleteDataConfirmationHeader"); +///"There is some referenced data that will also be deleted, do you want to continue?" +public static string Website_Forms_Administrative_DeleteMediaFile_DeleteDataConfirmationText=>T("Website.Forms.Administrative.DeleteMediaFile.DeleteDataConfirmationText"); +///"Delete This Folder?" +public static string Website_Forms_Administrative_DeleteMediaFolder_LabelFieldGroup=>T("Website.Forms.Administrative.DeleteMediaFolder.LabelFieldGroup"); +///"Delete this folder?" +public static string Website_Forms_Administrative_DeleteMediaFolder_Text=>T("Website.Forms.Administrative.DeleteMediaFolder.Text"); +///"This folder contains one or more files or subfolders. Deleting this folder will also delete all sub files and folders. Delete this folder?" +public static string Website_Forms_Administrative_DeleteMediaFolder_HasChildringText=>T("Website.Forms.Administrative.DeleteMediaFolder.HasChildringText"); +///"Media Properties" +public static string Website_Forms_Administrative_EditMediaFile_LabelFieldGroup=>T("Website.Forms.Administrative.EditMediaFile.LabelFieldGroup"); +///"Title" +public static string Website_Forms_Administrative_EditMediaFile_LabelTitle=>T("Website.Forms.Administrative.EditMediaFile.LabelTitle"); +///"A human friendly short text describing the content of the media file" +public static string Website_Forms_Administrative_EditMediaFile_HelpTitle=>T("Website.Forms.Administrative.EditMediaFile.HelpTitle"); +///"File Name" +public static string Website_Forms_Administrative_EditMediaFile_LabelFileName=>T("Website.Forms.Administrative.EditMediaFile.LabelFileName"); +///"The file name to use when the media file is downloaded." +public static string Website_Forms_Administrative_EditMediaFile_HelpFileName=>T("Website.Forms.Administrative.EditMediaFile.HelpFileName"); +///"Description" +public static string Website_Forms_Administrative_EditMediaFile_LabelDescription=>T("Website.Forms.Administrative.EditMediaFile.LabelDescription"); +///"A description of the media file content" +public static string Website_Forms_Administrative_EditMediaFile_HelpDescription=>T("Website.Forms.Administrative.EditMediaFile.HelpDescription"); +///"The total length of the filename (folder and filename) is too long" +public static string Website_Forms_Administrative_EditMediaFile_TotalFilenameToLong_Message=>T("Website.Forms.Administrative.EditMediaFile.TotalFilenameToLong.Message"); +///"A file with the same name already exists in this folder." +public static string Website_Forms_Administrative_EditMediaFile_FileExists_Message=>T("Website.Forms.Administrative.EditMediaFile.FileExists.Message"); +///"Folder Properties" +public static string Website_Forms_Administrative_EditMediaFolder_LabelFieldGroup=>T("Website.Forms.Administrative.EditMediaFolder.LabelFieldGroup"); +///"Folder Name" +public static string Website_Forms_Administrative_EditMediaFolder_LabelFolderName=>T("Website.Forms.Administrative.EditMediaFolder.LabelFolderName"); +///"" +public static string Website_Forms_Administrative_EditMediaFolder_HelpFolderName=>T("Website.Forms.Administrative.EditMediaFolder.HelpFolderName"); +///"Title" +public static string Website_Forms_Administrative_EditMediaFolder_LabelTitle=>T("Website.Forms.Administrative.EditMediaFolder.LabelTitle"); +///"Use this field for a folder title" +public static string Website_Forms_Administrative_EditMediaFolder_HelpTitle=>T("Website.Forms.Administrative.EditMediaFolder.HelpTitle"); +///"Description" +public static string Website_Forms_Administrative_EditMediaFolder_LabelDescription=>T("Website.Forms.Administrative.EditMediaFolder.LabelDescription"); +///"" +public static string Website_Forms_Administrative_EditMediaFolder_HelpDescription=>T("Website.Forms.Administrative.EditMediaFolder.HelpDescription"); +///"The folder contains a file where the total length of the filename and the new folder name is too long" +public static string Website_Forms_Administrative_EditMediaFolder_TotalFilenameToLong_Message=>T("Website.Forms.Administrative.EditMediaFolder.TotalFilenameToLong.Message"); +///"Saved, but not published" +public static string Website_Forms_Administrative_EditPage_PublishDatePreventPublishTitle=>T("Website.Forms.Administrative.EditPage.PublishDatePreventPublishTitle"); +///"Your page has been saved, but not published since you have a future publish date set on the 'Settings' tab." +public static string Website_Forms_Administrative_EditPage_PublishDatePreventPublish=>T("Website.Forms.Administrative.EditPage.PublishDatePreventPublish"); +///"Search" +public static string Website_Forms_Administrative_ElementKeywordSearch_LabelFieldGroup=>T("Website.Forms.Administrative.ElementKeywordSearch.LabelFieldGroup"); +///"Keyword" +public static string Website_Forms_Administrative_ElementKeywordSearch_LabelKeyword=>T("Website.Forms.Administrative.ElementKeywordSearch.LabelKeyword"); +///"Write a keyword to search for." +public static string Website_Forms_Administrative_ElementKeywordSearch_LabelSearchKeyword=>T("Website.Forms.Administrative.ElementKeywordSearch.LabelSearchKeyword"); +///"Upload New Media File" +public static string Website_Forms_Administrative_UploadMediaFile_LabelFieldGroup=>T("Website.Forms.Administrative.UploadMediaFile.LabelFieldGroup"); +///"File name:" +public static string Website_Forms_Administrative_UploadMediaFile_LabelFile=>T("Website.Forms.Administrative.UploadMediaFile.LabelFile"); +///"" +public static string Website_Forms_Administrative_UploadMediaFile_HelpFile=>T("Website.Forms.Administrative.UploadMediaFile.HelpFile"); +///"File missing or empty" +public static string Website_Forms_Administrative_UploadMediaFile_EmptyFileErrorTitle=>T("Website.Forms.Administrative.UploadMediaFile.EmptyFileErrorTitle"); +///"No file data was received. Please use the browse button and ensure that the selected file is not empty." +public static string Website_Forms_Administrative_UploadMediaFile_EmptyFileErrorMessage=>T("Website.Forms.Administrative.UploadMediaFile.EmptyFileErrorMessage"); +///"Upload New Media File to Existing File" +public static string Website_Forms_Administrative_UploadNewMediaFile_LabelFieldGroup=>T("Website.Forms.Administrative.UploadNewMediaFile.LabelFieldGroup"); +///"File name:" +public static string Website_Forms_Administrative_UploadNewMediaFile_LabelFile=>T("Website.Forms.Administrative.UploadNewMediaFile.LabelFile"); +///"" +public static string Website_Forms_Administrative_UploadNewMediaFile_HelpFile=>T("Website.Forms.Administrative.UploadNewMediaFile.HelpFile"); +///"Save" +public static string Website_Forms_Administrative_AdministrativeTemplates_Document_LabelSave=>T("Website.Forms.Administrative.AdministrativeTemplates.Document.LabelSave"); +///"Save As..." +public static string Website_Forms_Administrative_AdministrativeTemplates_Document_LabelSaveAs=>T("Website.Forms.Administrative.AdministrativeTemplates.Document.LabelSaveAs"); +///"Previous" +public static string Website_Forms_Administrative_AdministrativeTemplates_Wizard_LabelPrevious=>T("Website.Forms.Administrative.AdministrativeTemplates.Wizard.LabelPrevious"); +///"Next" +public static string Website_Forms_Administrative_AdministrativeTemplates_Wizard_LabelNext=>T("Website.Forms.Administrative.AdministrativeTemplates.Wizard.LabelNext"); +///"Finish" +public static string Website_Forms_Administrative_AdministrativeTemplates_Wizard_LabelFinish=>T("Website.Forms.Administrative.AdministrativeTemplates.Wizard.LabelFinish"); +///"Cancel" +public static string Website_Forms_Administrative_AdministrativeTemplates_Wizard_LabelCancel=>T("Website.Forms.Administrative.AdministrativeTemplates.Wizard.LabelCancel"); +///"OK" +public static string Website_Forms_Administrative_AdministrativeTemplates_DataDialog_LabelOk=>T("Website.Forms.Administrative.AdministrativeTemplates.DataDialog.LabelOk"); +///"Cancel" +public static string Website_Forms_Administrative_AdministrativeTemplates_DataDialog_LabelCancel=>T("Website.Forms.Administrative.AdministrativeTemplates.DataDialog.LabelCancel"); +///"OK" +public static string Website_Forms_Administrative_AdministrativeTemplates_ConfirmDialog_LabelOk=>T("Website.Forms.Administrative.AdministrativeTemplates.ConfirmDialog.LabelOk"); +///"Cancel" +public static string Website_Forms_Administrative_AdministrativeTemplates_ConfirmDialog_LabelCancel=>T("Website.Forms.Administrative.AdministrativeTemplates.ConfirmDialog.LabelCancel"); +///"Input" +public static string Website_Misc_SourceCodeViewer_LabelInput=>T("Website.Misc.SourceCodeViewer.LabelInput"); +///"Output" +public static string Website_Misc_SourceCodeViewer_LabelOutput=>T("Website.Misc.SourceCodeViewer.LabelOutput"); +///"Not allowed." +public static string Website_Misc_Trees_DialogTitle_PasteNotAllowed=>T("Website.Misc.Trees.DialogTitle.PasteNotAllowed"); +///"Paste not allowed in this context." +public static string Website_Misc_Trees_DialogText_PasteNotAllowed=>T("Website.Misc.Trees.DialogText.PasteNotAllowed"); +///"Not allowed" +public static string Website_Misc_Trees_DialogTitle_PasteTypeNotAllowed=>T("Website.Misc.Trees.DialogTitle.PasteTypeNotAllowed"); +///"Folder won't accept document type." +public static string Website_Misc_Trees_DialogText_PasteTypeNotAllowed=>T("Website.Misc.Trees.DialogText.PasteTypeNotAllowed"); +///"Edit Selections" +public static string Website_Misc_MultiSelector_LabelEditSelections=>T("Website.Misc.MultiSelector.LabelEditSelections"); +///"Version information" +public static string GenericVersionProcessController_Version=>T("GenericVersionProcessController.Version"); +///"Show version information" +public static string GenericVersionProcessController_VersionToolTip=>T("GenericVersionProcessController.VersionToolTip"); +///"Select a value" +public static string AspNetUiControl_Selector_SelectValueLabel=>T("AspNetUiControl.Selector.SelectValueLabel"); +///"< broken reference >..." +public static string AspNetUiControl_Selector_BrokenReference=>T("AspNetUiControl.Selector.BrokenReference"); +///"(no selection)" +public static string AspNetUiControl_Selector_NoSelection=>T("AspNetUiControl.Selector.NoSelection"); +///"No matches for '{0}'" +public static string AspNetUiControl_Selector_NoMatchesFor(object parameter0)=>string.Format(T("AspNetUiControl.Selector.NoMatchesFor"), parameter0); +///"This field contains a broken reference" +public static string Validation_BrokenReference=>T("Validation.BrokenReference"); +///"This field is required." +public static string Validation_RequiredField=>T("Validation.RequiredField"); +///"Only {0} digit(s) after decimal point allowed" +public static string Validation_Decimal_SymbolsAfterPointAllowed(object parameter0)=>string.Format(T("Validation.Decimal.SymbolsAfterPointAllowed"), parameter0); +///"Only {0} digit(s) before decimal point allowed" +public static string Validation_Decimal_SymbolsBeforePointAllowed(object parameter0)=>string.Format(T("Validation.Decimal.SymbolsBeforePointAllowed"), parameter0); +///"Invalid date string: '{0}'. Use the format '{1}'." +public static string Validation_DateTime_InvalidDateFormat(object parameter0,object parameter1)=>string.Format(T("Validation.DateTime.InvalidDateFormat"), parameter0,parameter1); +///"The specified value is either too big or too small. The acceptable range is from -2,147,483,648 to 2,147,483,647" +public static string Validation_Int32_Overflow=>T("Validation.Int32.Overflow"); +///"Page Browser" +public static string Browser_Label=>T("Browser.Label"); +///"Browse unpublished pages" +public static string Browser_ToolTip=>T("Browser.ToolTip"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Management", key); @@ -2438,16 +2462,16 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_NameValidation { - /// "Name can not be an empty string" - public static string EmptyName { get { return T("EmptyName"); } } - /// "Namespace can not be an empty string" - public static string EmptyNamespace { get { return T("EmptyNamespace"); } } - /// "Namespace can not contain the same name part multiple times" - public static string DuplicateElementNamespace { get { return T("DuplicateElementNamespace"); } } - /// "The name '{0}' is not a valid identifier" - public static string InvalidIdentifier(object parameter0) { return string.Format(T("InvalidIdentifier"), parameter0); } - /// "The name '{0}' is not a valid identifier. Identifiers may not start with digits." - public static string InvalidIdentifierDigit(object parameter0) { return string.Format(T("InvalidIdentifierDigit"), parameter0); } +///"Name can not be an empty string" +public static string EmptyName=>T("EmptyName"); +///"Namespace can not be an empty string" +public static string EmptyNamespace=>T("EmptyNamespace"); +///"Namespace can not contain the same name part multiple times" +public static string DuplicateElementNamespace=>T("DuplicateElementNamespace"); +///"The name '{0}' is not a valid identifier" +public static string InvalidIdentifier(object parameter0)=>string.Format(T("InvalidIdentifier"), parameter0); +///"The name '{0}' is not a valid identifier. Identifiers may not start with digits." +public static string InvalidIdentifierDigit(object parameter0)=>string.Format(T("InvalidIdentifierDigit"), parameter0); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.NameValidation", key); @@ -2457,26 +2481,26 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Permissions { - /// "Read" - public static string ReadLabel { get { return T("ReadLabel"); } } - /// "Edit" - public static string EditLabel { get { return T("EditLabel"); } } - /// "Add" - public static string AddLabel { get { return T("AddLabel"); } } - /// "Delete" - public static string DeleteLabel { get { return T("DeleteLabel"); } } - /// "Approve" - public static string ApproveLabel { get { return T("ApproveLabel"); } } - /// "Publish" - public static string PublishLabel { get { return T("PublishLabel"); } } - /// "Configure" - public static string ConfigureLabel { get { return T("ConfigureLabel"); } } - /// "Administrate" - public static string AdministrateLabel { get { return T("AdministrateLabel"); } } - /// "ClearPermissions" - public static string ClearPermissionsLabel { get { return T("ClearPermissionsLabel"); } } - /// "This operation would remove your administrative permissions from this entity. You can not remove your own administrative permissions." - public static string AdminLockoutMessage { get { return T("AdminLockoutMessage"); } } +///"Read" +public static string ReadLabel=>T("ReadLabel"); +///"Edit" +public static string EditLabel=>T("EditLabel"); +///"Add" +public static string AddLabel=>T("AddLabel"); +///"Delete" +public static string DeleteLabel=>T("DeleteLabel"); +///"Approve" +public static string ApproveLabel=>T("ApproveLabel"); +///"Publish" +public static string PublishLabel=>T("PublishLabel"); +///"Configure" +public static string ConfigureLabel=>T("ConfigureLabel"); +///"Administrate" +public static string AdministrateLabel=>T("AdministrateLabel"); +///"ClearPermissions" +public static string ClearPermissionsLabel=>T("ClearPermissionsLabel"); +///"This operation would remove your administrative permissions from this entity. You can not remove your own administrative permissions." +public static string AdminLockoutMessage=>T("AdminLockoutMessage"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Permissions", key); @@ -2486,52 +2510,52 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_AllFunctionsElementProvider { - /// "All Functions" - public static string Plugins_AllFunctionsElementProvider_FunctionRootFolderLabel { get { return T("Plugins.AllFunctionsElementProvider.FunctionRootFolderLabel"); } } - /// "All functions" - public static string Plugins_AllFunctionsElementProvider_FunctionRootFolderToolTip { get { return T("Plugins.AllFunctionsElementProvider.FunctionRootFolderToolTip"); } } - /// "All Widget Functions" - public static string Plugins_AllFunctionsElementProvider_WidgetFunctionRootFolderLabel { get { return T("Plugins.AllFunctionsElementProvider.WidgetFunctionRootFolderLabel"); } } - /// "All widget functions" - public static string Plugins_AllFunctionsElementProvider_WidgetFunctionRootFolderToolTip { get { return T("Plugins.AllFunctionsElementProvider.WidgetFunctionRootFolderToolTip"); } } - /// "Generate Documentation" - public static string AllFunctionsElementProvider_GenerateDocumentation { get { return T("AllFunctionsElementProvider.GenerateDocumentation"); } } - /// "Generate documentation for all functions below this folder" - public static string AllFunctionsElementProvider_GenerateDocumentationTooltip { get { return T("AllFunctionsElementProvider.GenerateDocumentationTooltip"); } } - /// "Information" - public static string AllFunctionsElementProvider_ViewFunctionInformation { get { return T("AllFunctionsElementProvider.ViewFunctionInformation"); } } - /// "View function information" - public static string AllFunctionsElementProvider_ViewFunctionInformationTooltip { get { return T("AllFunctionsElementProvider.ViewFunctionInformationTooltip"); } } - /// "Test: {0}" - public static string FunctionTesterWorkflow_Layout_Label(object parameter0) { return string.Format(T("FunctionTesterWorkflow.Layout.Label"), parameter0); } - /// "Functions" - public static string FunctionTesterWorkflow_FunctionCalls_Label { get { return T("FunctionTesterWorkflow.FunctionCalls.Label"); } } - /// "Results" - public static string FunctionTesterWorkflow_Preview_Label { get { return T("FunctionTesterWorkflow.Preview.Label"); } } - /// "Runtime" - public static string FunctionTesterWorkflow_Runtime_FieldGroup_Label { get { return T("FunctionTesterWorkflow.Runtime.FieldGroup.Label"); } } - /// "Settings" - public static string FunctionTesterWorkflow_DebugFieldGroup_Label { get { return T("FunctionTesterWorkflow.DebugFieldGroup.Label"); } } - /// "Page" - public static string FunctionTesterWorkflow_DebugPage_Label { get { return T("FunctionTesterWorkflow.DebugPage.Label"); } } - /// "When executing the function, this page is used as current page" - public static string FunctionTesterWorkflow_DebugPage_Help { get { return T("FunctionTesterWorkflow.DebugPage.Help"); } } - /// "Data scope" - public static string FunctionTesterWorkflow_DebugPageDataScope_Label { get { return T("FunctionTesterWorkflow.DebugPageDataScope.Label"); } } - /// "When executing the function, this is used as current data scope" - public static string FunctionTesterWorkflow_DebugPageDataScope_Help { get { return T("FunctionTesterWorkflow.DebugPageDataScope.Help"); } } - /// "Language" - public static string FunctionTesterWorkflow_DebugActiveLocale_Label { get { return T("FunctionTesterWorkflow.DebugActiveLocale.Label"); } } - /// "When executing the function, this is used as the current language" - public static string FunctionTesterWorkflow_DebugActiveLocale_Help { get { return T("FunctionTesterWorkflow.DebugActiveLocale.Help"); } } - /// "Administrative" - public static string FunctionTesterWorkflow_AdminitrativeScope_Label { get { return T("FunctionTesterWorkflow.AdminitrativeScope.Label"); } } - /// "Public" - public static string FunctionTesterWorkflow_PublicScope_Label { get { return T("FunctionTesterWorkflow.PublicScope.Label"); } } - /// "Test Function" - public static string AllFunctionsElementProvider_FunctionTester_Label { get { return T("AllFunctionsElementProvider.FunctionTester.Label"); } } - /// "Test function" - public static string AllFunctionsElementProvider_FunctionTester_ToolTip { get { return T("AllFunctionsElementProvider.FunctionTester.ToolTip"); } } +///"All Functions" +public static string Plugins_AllFunctionsElementProvider_FunctionRootFolderLabel=>T("Plugins.AllFunctionsElementProvider.FunctionRootFolderLabel"); +///"All functions" +public static string Plugins_AllFunctionsElementProvider_FunctionRootFolderToolTip=>T("Plugins.AllFunctionsElementProvider.FunctionRootFolderToolTip"); +///"All Widget Functions" +public static string Plugins_AllFunctionsElementProvider_WidgetFunctionRootFolderLabel=>T("Plugins.AllFunctionsElementProvider.WidgetFunctionRootFolderLabel"); +///"All widget functions" +public static string Plugins_AllFunctionsElementProvider_WidgetFunctionRootFolderToolTip=>T("Plugins.AllFunctionsElementProvider.WidgetFunctionRootFolderToolTip"); +///"Generate Documentation" +public static string AllFunctionsElementProvider_GenerateDocumentation=>T("AllFunctionsElementProvider.GenerateDocumentation"); +///"Generate documentation for all functions below this folder" +public static string AllFunctionsElementProvider_GenerateDocumentationTooltip=>T("AllFunctionsElementProvider.GenerateDocumentationTooltip"); +///"Information" +public static string AllFunctionsElementProvider_ViewFunctionInformation=>T("AllFunctionsElementProvider.ViewFunctionInformation"); +///"View function information" +public static string AllFunctionsElementProvider_ViewFunctionInformationTooltip=>T("AllFunctionsElementProvider.ViewFunctionInformationTooltip"); +///"Test: {0}" +public static string FunctionTesterWorkflow_Layout_Label(object parameter0)=>string.Format(T("FunctionTesterWorkflow.Layout.Label"), parameter0); +///"Functions" +public static string FunctionTesterWorkflow_FunctionCalls_Label=>T("FunctionTesterWorkflow.FunctionCalls.Label"); +///"Results" +public static string FunctionTesterWorkflow_Preview_Label=>T("FunctionTesterWorkflow.Preview.Label"); +///"Runtime" +public static string FunctionTesterWorkflow_Runtime_FieldGroup_Label=>T("FunctionTesterWorkflow.Runtime.FieldGroup.Label"); +///"Settings" +public static string FunctionTesterWorkflow_DebugFieldGroup_Label=>T("FunctionTesterWorkflow.DebugFieldGroup.Label"); +///"Page" +public static string FunctionTesterWorkflow_DebugPage_Label=>T("FunctionTesterWorkflow.DebugPage.Label"); +///"When executing the function, this page is used as current page" +public static string FunctionTesterWorkflow_DebugPage_Help=>T("FunctionTesterWorkflow.DebugPage.Help"); +///"Data scope" +public static string FunctionTesterWorkflow_DebugPageDataScope_Label=>T("FunctionTesterWorkflow.DebugPageDataScope.Label"); +///"When executing the function, this is used as current data scope" +public static string FunctionTesterWorkflow_DebugPageDataScope_Help=>T("FunctionTesterWorkflow.DebugPageDataScope.Help"); +///"Language" +public static string FunctionTesterWorkflow_DebugActiveLocale_Label=>T("FunctionTesterWorkflow.DebugActiveLocale.Label"); +///"When executing the function, this is used as the current language" +public static string FunctionTesterWorkflow_DebugActiveLocale_Help=>T("FunctionTesterWorkflow.DebugActiveLocale.Help"); +///"Administrative" +public static string FunctionTesterWorkflow_AdminitrativeScope_Label=>T("FunctionTesterWorkflow.AdminitrativeScope.Label"); +///"Public" +public static string FunctionTesterWorkflow_PublicScope_Label=>T("FunctionTesterWorkflow.PublicScope.Label"); +///"Test Function" +public static string AllFunctionsElementProvider_FunctionTester_Label=>T("AllFunctionsElementProvider.FunctionTester.Label"); +///"Test function" +public static string AllFunctionsElementProvider_FunctionTester_ToolTip=>T("AllFunctionsElementProvider.FunctionTester.ToolTip"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.AllFunctionsElementProvider", key); @@ -2541,266 +2565,262 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_GeneratedDataTypesElementProvider { - /// "Global Datatypes" - public static string GlobalDataFolderLabel { get { return T("GlobalDataFolderLabel"); } } - /// "Global datatypes" - public static string GlobalDataFolderToolTip { get { return T("GlobalDataFolderToolTip"); } } - /// "Website Items" - public static string GlobalDataFolderLabel_OnlyGlobalData { get { return T("GlobalDataFolderLabel_OnlyGlobalData"); } } - /// "Website Items (Data)" - public static string GlobalDataFolderToolTip_OnlyGlobalData { get { return T("GlobalDataFolderToolTip_OnlyGlobalData"); } } - /// "Page Datafolders" - public static string PageDataFolderDataFolderLabel { get { return T("PageDataFolderDataFolderLabel"); } } - /// "Page datafolders" - public static string PageDataFolderDataFolderToolTip { get { return T("PageDataFolderDataFolderToolTip"); } } - /// "Page Metatypes" - public static string PageMetaDataFolderLabel { get { return T("PageMetaDataFolderLabel"); } } - /// "Page metatypes" - public static string PageMetaDataFolderToolTip { get { return T("PageMetaDataFolderToolTip"); } } - /// "Add Datatype" - public static string Add { get { return T("Add"); } } - /// "Add new global datatype" - public static string AddToolTip { get { return T("AddToolTip"); } } - /// "List Unpublished Data" - public static string ViewUnpublishedItems { get { return T("ViewUnpublishedItems"); } } - /// "Get an overview of data that haven't been published yet" - public static string ViewUnpublishedItemsToolTip { get { return T("ViewUnpublishedItemsToolTip"); } } - /// "Unpublished data" - public static string ViewUnpublishedItems_document_title { get { return T("ViewUnpublishedItems-document-title"); } } - /// "The list below display data items which are currently being edited or are ready to be approved / published." - public static string ViewUnpublishedItems_document_description { get { return T("ViewUnpublishedItems-document-description"); } } - /// "No unpublished data." - public static string ViewUnpublishedItems_document_empty_label { get { return T("ViewUnpublishedItems-document-empty-label"); } } - /// "Add Datafolder" - public static string AddDataFolder { get { return T("AddDataFolder"); } } - /// "Add new datafolder" - public static string AddDataFolderToolTip { get { return T("AddDataFolderToolTip"); } } - /// "Add Metatype" - public static string AddMetaDataLabel { get { return T("AddMetaDataLabel"); } } - /// "Add metatype" - public static string AddMetaDataToolTip { get { return T("AddMetaDataToolTip"); } } - /// "Edit Datatype" - public static string Edit { get { return T("Edit"); } } - /// "Edit selected datatype" - public static string EditToolTip { get { return T("EditToolTip"); } } - /// "Edit" - public static string EditDataFolderTypeLabel { get { return T("EditDataFolderTypeLabel"); } } - /// "Edit selected datafolder" - public static string EditDataFolderTypeToolTip { get { return T("EditDataFolderTypeToolTip"); } } - /// "Edit" - public static string EditMetaDataTypeLabel { get { return T("EditMetaDataTypeLabel"); } } - /// "Edit selected metadata" - public static string EditMetaDataTypeToolTip { get { return T("EditMetaDataTypeToolTip"); } } - /// "Delete Datatype" - public static string Delete { get { return T("Delete"); } } - /// "Delete selected datatype" - public static string DeleteToolTip { get { return T("DeleteToolTip"); } } - /// "Delete" - public static string DeleteDataFolderTypeLabel { get { return T("DeleteDataFolderTypeLabel"); } } - /// "Delete selected datafolder" - public static string DeleteDataFolderTypeToolTip { get { return T("DeleteDataFolderTypeToolTip"); } } - /// "Delete" - public static string DeleteMetaDataTypeLabel { get { return T("DeleteMetaDataTypeLabel"); } } - /// "Delete selected metadata" - public static string DeleteMetaDataTypeToolTip { get { return T("DeleteMetaDataTypeToolTip"); } } - /// "Edit Form Markup" - public static string EditFormMarkup { get { return T("EditFormMarkup"); } } - /// "Modify the layout of the data form using markup" - public static string EditFormMarkupToolTip { get { return T("EditFormMarkupToolTip"); } } - /// "Enable Localization" - public static string EnableLocalization { get { return T("EnableLocalization"); } } - /// "Enable localization" - public static string EnableLocalizationToolTip { get { return T("EnableLocalizationToolTip"); } } - /// "Disable Localization" - public static string DisableLocalization { get { return T("DisableLocalization"); } } - /// "Disable localization" - public static string DisableLocalizationToolTip { get { return T("DisableLocalizationToolTip"); } } - /// "Not yet approved or published" - public static string DisabledData { get { return T("DisabledData"); } } - /// "(undefined [{0}])" - public static string UndefinedLabelTemplate(object parameter0) { return string.Format(T("UndefinedLabelTemplate"), parameter0); } - /// "(undefined)" - public static string UndefinedDataLavelTemplate { get { return T("UndefinedDataLavelTemplate"); } } - /// "Show in Content perspective" - public static string ShowInContent { get { return T("ShowInContent"); } } - /// "Show in Content perspective" - public static string ShowInContentToolTip { get { return T("ShowInContentToolTip"); } } - /// "Add Data" - public static string AddData { get { return T("AddData"); } } - /// "Add new data" - public static string AddDataToolTip { get { return T("AddDataToolTip"); } } - /// "Edit Data" - public static string EditData { get { return T("EditData"); } } - /// "Edit selected data" - public static string EditDataToolTip { get { return T("EditDataToolTip"); } } - /// "Delete Data" - public static string DeleteData { get { return T("DeleteData"); } } - /// "Delete selected data" - public static string DeleteDataToolTip { get { return T("DeleteDataToolTip"); } } - /// "Translate Data" - public static string LocalizeData { get { return T("LocalizeData"); } } - /// "Translate selected data" - public static string LocalizeDataToolTip { get { return T("LocalizeDataToolTip"); } } - /// "Draft" - public static string DraftTransition { get { return T("DraftTransition"); } } - /// "Awaiting Approval" - public static string AwaitingApprovalTransition { get { return T("AwaitingApprovalTransition"); } } - /// "Publication settings" - public static string PublicationSettings_FieldGroupLabel { get { return T("PublicationSettings.FieldGroupLabel"); } } - /// "Status" - public static string PublicationStatus_Label { get { return T("PublicationStatus.Label"); } } - /// "Send the data to another publication status." - public static string PublicationStatus_Help { get { return T("PublicationStatus.Help"); } } - /// "Publish date" - public static string PublishDate_Label { get { return T("PublishDate.Label"); } } - /// "Specify at which date and time you want the data to be published automatically." - public static string PublishDate_Help { get { return T("PublishDate.Help"); } } - /// "Unpublish date" - public static string UnpublishDate_Label { get { return T("UnpublishDate.Label"); } } - /// "Specify at which date and time you want the data to be unpublished automatically." - public static string UnpublishDate_Help { get { return T("UnpublishDate.Help"); } } - /// "New Datatype" - public static string AddNewInterfaceTypeStep1_DocumentTitle { get { return T("AddNewInterfaceTypeStep1.DocumentTitle"); } } - /// "New Page Metatype" - public static string AddNewCompositionTypeWorkflow_DocumentTitle { get { return T("AddNewCompositionTypeWorkflow.DocumentTitle"); } } - /// "New Page Datafolder" - public static string AddNewAggregationTypeWorkflow_DocumentTitle { get { return T("AddNewAggregationTypeWorkflow.DocumentTitle"); } } - /// "Settings" - public static string EditorCommon_SettingsTab { get { return T("EditorCommon.SettingsTab"); } } - /// "Type title" - public static string EditorCommon_LabelTitleGroup { get { return T("EditorCommon.LabelTitleGroup"); } } - /// "Programmatic naming and services" - public static string EditorCommon_LabelProgrammaticNamingAndServices { get { return T("EditorCommon.LabelProgrammaticNamingAndServices"); } } - /// "Programmatic naming" - public static string EditorCommon_LabelProgrammaticNaming { get { return T("EditorCommon.LabelProgrammaticNaming"); } } - /// "Type name" - public static string EditorCommon_LabelTypeName { get { return T("EditorCommon.LabelTypeName"); } } - /// "The technical name of the data type (ex. Product). This is used to identify this type in code and should not be changed once used externally." - public static string EditorCommon_HelpTypeName { get { return T("EditorCommon.HelpTypeName"); } } - /// "Type namespace" - public static string EditorCommon_LabelTypeNamespace { get { return T("EditorCommon.LabelTypeNamespace"); } } - /// "The namespace (module / category name) of the type. This is used to identify this type in code and should not be changed once used externally." - public static string EditorCommon_HelpTypeNamespace { get { return T("EditorCommon.HelpTypeNamespace"); } } - /// "Title" - public static string EditorCommon_LabelTitle { get { return T("EditorCommon.LabelTitle"); } } - /// "Use this entry to specify a user friendly name. This name is used in most UI." - public static string EditorCommon_HelpTitle { get { return T("EditorCommon.HelpTitle"); } } - /// "Fields" - public static string EditorCommon_LabelFields { get { return T("EditorCommon.LabelFields"); } } - /// "Key field type" - public static string EditorCommon_KeyFieldTypeLabel { get { return T("EditorCommon.KeyFieldTypeLabel"); } } - /// "The type of the primary key. Use the default 'Guid' type for optimal performance and 'RandomString' for shorter data urls." - public static string EditorCommon_KeyFieldTypeHelp { get { return T("EditorCommon.KeyFieldTypeHelp"); } } - /// "Guid" - public static string EditorCommon_KeyFieldType_Guid { get { return T("EditorCommon.KeyFieldType.Guid"); } } - /// "Random String, 4 characters long" - public static string EditorCommon_KeyFieldType_RandomString4 { get { return T("EditorCommon.KeyFieldType.RandomString4"); } } - /// "Random String, 8 characters long" - public static string EditorCommon_KeyFieldType_RandomString8 { get { return T("EditorCommon.KeyFieldType.RandomString8"); } } - /// "Services" - public static string EditorCommon_ServicesLabel { get { return T("EditorCommon.ServicesLabel"); } } - /// "Short URL name" - public static string EditorCommon_InternalUrlPrefixLabel { get { return T("EditorCommon.InternalUrlPrefixLabel"); } } - /// "When specified, allows data items of the current type to be referenced in content. The internal links will have format '~/{ShortURLName}({id})', f.e. '~/product(aIkH34F)" - public static string EditorCommon_InternalUrlPrefixHelp { get { return T("EditorCommon.InternalUrlPrefixHelp"); } } - /// "Has caching" - public static string EditorCommon_HasCaching { get { return T("EditorCommon.HasCaching"); } } - /// "Has publishing" - public static string EditorCommon_HasPublishing { get { return T("EditorCommon.HasPublishing"); } } - /// "Is localizable data" - public static string EditorCommon_HasLocalization { get { return T("EditorCommon.HasLocalization"); } } - /// "Delete Data?" - public static string DeleteGeneratedDataStep1_LabelFieldGroup { get { return T("DeleteGeneratedDataStep1.LabelFieldGroup"); } } - /// "Delete data?" - public static string DeleteGeneratedDataStep1_Text { get { return T("DeleteGeneratedDataStep1.Text"); } } - /// "There is some referenced data that will also be deleted, do you want to continue?" - public static string DeleteDataConfirmationText { get { return T("DeleteDataConfirmationText"); } } - /// "Delete Datatype" - public static string DeleteGeneratedInterfaceStep1_LabelFieldGroup { get { return T("DeleteGeneratedInterfaceStep1.LabelFieldGroup"); } } - /// "Delete the datatype" - public static string DeleteGeneratedInterfaceStep1_Text { get { return T("DeleteGeneratedInterfaceStep1.Text"); } } - /// "Cascade delete error" - public static string CascadeDeleteErrorTitle { get { return T("CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string CascadeDeleteErrorMessage { get { return T("CascadeDeleteErrorMessage"); } } - /// "Delete Datatype" - public static string DeleteAggregationTypeWorkflow_LabelFieldGroup { get { return T("DeleteAggregationTypeWorkflow.LabelFieldGroup"); } } - /// "Delete the datatype" - public static string DeleteAggregationTypeWorkflow_Text { get { return T("DeleteAggregationTypeWorkflow.Text"); } } - /// "Error" - public static string DeleteAggregationTypeWorkflow_ErrorTitle { get { return T("DeleteAggregationTypeWorkflow.ErrorTitle"); } } - /// "Cannot delete type '{0}' since it is used by a page type." - public static string DeleteAggregationTypeWorkflow_IsUsedByPageType(object parameter0) { return string.Format(T("DeleteAggregationTypeWorkflow.IsUsedByPageType"), parameter0); } - /// "Delete Datatype" - public static string DeleteCompositionTypeWorkflow_LabelFieldGroup { get { return T("DeleteCompositionTypeWorkflow.LabelFieldGroup"); } } - /// "Delete the datatype" - public static string DeleteCompositionTypeWorkflow_Text { get { return T("DeleteCompositionTypeWorkflow.Text"); } } - /// "Error" - public static string DeleteCompositionTypeWorkflow_ErrorTitle { get { return T("DeleteCompositionTypeWorkflow.ErrorTitle"); } } - /// "Cannot delete type '{0}' since there're types that referenced to it." - public static string DeleteCompositionTypeWorkflow_TypeIsReferenced(object parameter0) { return string.Format(T("DeleteCompositionTypeWorkflow.TypeIsReferenced"), parameter0); } - /// "Cannot delete type '{0}' since it is used by a page type." - public static string DeleteCompositionTypeWorkflow_IsUsedByPageType(object parameter0) { return string.Format(T("DeleteCompositionTypeWorkflow.IsUsedByPageType"), parameter0); } - /// "To Xml" - public static string ToXmlLabel { get { return T("ToXmlLabel"); } } - /// "To Xml" - public static string ToXmlToolTip { get { return T("ToXmlToolTip"); } } - /// "Enable Localization" - public static string EnableTypeLocalizationWorkflow_Dialog_Label { get { return T("EnableTypeLocalizationWorkflow.Dialog.Label"); } } - /// "Enable localization" - public static string EnableTypeLocalizationWorkflow_Step1_FieldGroup_Label { get { return T("EnableTypeLocalizationWorkflow.Step1.FieldGroup.Label"); } } - /// "Move existing data to ..." - public static string EnableTypeLocalizationWorkflow_Step1_CultureSelector_Label { get { return T("EnableTypeLocalizationWorkflow.Step1.CultureSelector.Label"); } } - /// "When you enable 'localization' on a data type, all data must belong to a language. Select the language existing data should now be moved to." - public static string EnableTypeLocalizationWorkflow_Step1_CultureSelector_Help { get { return T("EnableTypeLocalizationWorkflow.Step1.CultureSelector.Help"); } } - /// "Confirmation" - public static string EnableTypeLocalizationWorkflow_Step2_Title { get { return T("EnableTypeLocalizationWorkflow.Step2.Title"); } } - /// "Data type will be localized and data copied to selected locale. Click Finish to continue." - public static string EnableTypeLocalizationWorkflow_Step2_Description { get { return T("EnableTypeLocalizationWorkflow.Step2.Description"); } } - /// "Warning" - public static string EnableTypeLocalizationWorkflow_Step3_Title { get { return T("EnableTypeLocalizationWorkflow.Step3.Title"); } } - /// "There's some datatypes which have references to the type. While localizing the data will be copied to all languages in order to prevent appearing of broken references." - public static string EnableTypeLocalizationWorkflow_Step3_Description { get { return T("EnableTypeLocalizationWorkflow.Step3.Description"); } } - /// "Missing active locales" - public static string EnableTypeLocalizationWorkflow_Abort_Title { get { return T("EnableTypeLocalizationWorkflow.Abort.Title"); } } - /// "There are no added active locales. Add at least one before localization this datatype." - public static string EnableTypeLocalizationWorkflow_Abort_Description { get { return T("EnableTypeLocalizationWorkflow.Abort.Description"); } } - /// "Disable Localization" - public static string DisableTypeLocalizationWorkflow_Dialog_Label { get { return T("DisableTypeLocalizationWorkflow.Dialog.Label"); } } - /// "Disable localization" - public static string DisableTypeLocalizationWorkflow_Step1_FieldGroup_Label { get { return T("DisableTypeLocalizationWorkflow.Step1.FieldGroup.Label"); } } - /// "Keep data from ..." - public static string DisableTypeLocalizationWorkflow_Step1_CultureSelector_Label { get { return T("DisableTypeLocalizationWorkflow.Step1.CultureSelector.Label"); } } - /// "When localization is disabled on a datatype only one translation can be kept. Data from other languages will be lost." - public static string DisableTypeLocalizationWorkflow_Step1_CultureSelector_Help { get { return T("DisableTypeLocalizationWorkflow.Step1.CultureSelector.Help"); } } - /// "Confirmation" - public static string DisableTypeLocalizationWorkflow_Step2_Title { get { return T("DisableTypeLocalizationWorkflow.Step2.Title"); } } - /// "All data from other locales than the one selected will be lost. Click Finish to continue." - public static string DisableTypeLocalizationWorkflow_Step2_Description { get { return T("DisableTypeLocalizationWorkflow.Step2.Description"); } } - /// "Failed to translate data" - public static string LocalizeDataWorkflow_ShowError_LayoutLabel { get { return T("LocalizeDataWorkflow.ShowError.LayoutLabel"); } } - /// "Translation errors" - public static string LocalizeDataWorkflow_ShowError_InfoTableCaption { get { return T("LocalizeDataWorkflow.ShowError.InfoTableCaption"); } } - /// "This data has already been translated. The translated version belongs to a different group." - public static string LocalizeDataWorkflow_ShowError_AlreadyTranslated { get { return T("LocalizeDataWorkflow.ShowError.AlreadyTranslated"); } } - /// "The following fields has a reference to a data type. You should translate these data items before you can translate this data item" - public static string LocalizeDataWorkflow_ShowError_Description { get { return T("LocalizeDataWorkflow.ShowError.Description"); } } - /// "The field '{0}' is referencing data of type '{1}' with the label '{2}'" - public static string LocalizeDataWorkflow_ShowError_FieldErrorFormat(object parameter0,object parameter1,object parameter2) { return string.Format(T("LocalizeDataWorkflow.ShowError.FieldErrorFormat"), parameter0,parameter1,parameter2); } - /// "Error" - public static string AddNewInterfaceTypeStep1_ErrorTitle { get { return T("AddNewInterfaceTypeStep1.ErrorTitle"); } } - /// "Error" - public static string EditInterfaceTypeStep1_ErrorTitle { get { return T("EditInterfaceTypeStep1.ErrorTitle"); } } - /// "Error" - public static string AddNewCompositionTypeWorkflow_ErrorTitle { get { return T("AddNewCompositionTypeWorkflow.ErrorTitle"); } } - /// "Error" - public static string EditCompositionTypeWorkflow_ErrorTitle { get { return T("EditCompositionTypeWorkflow.ErrorTitle"); } } - /// "XML Result" - public static string DataTypeDescriptorToXmlLabel { get { return T("DataTypeDescriptorToXmlLabel"); } } - /// "This type has custom form markup" - public static string FormMarkupInfo_Dialog_Label { get { return T("FormMarkupInfo.Dialog.Label"); } } - /// "Your field changes will not affect the form for editing data. Do '{0}' to change the form or delete the file '{1}'." - public static string FormMarkupInfo_Message(object parameter0,object parameter1) { return string.Format(T("FormMarkupInfo.Message"), parameter0,parameter1); } +///"Global Datatypes" +public static string GlobalDataFolderLabel=>T("GlobalDataFolderLabel"); +///"Global datatypes" +public static string GlobalDataFolderToolTip=>T("GlobalDataFolderToolTip"); +///"Website Items" +public static string GlobalDataFolderLabel_OnlyGlobalData=>T("GlobalDataFolderLabel_OnlyGlobalData"); +///"Website Items (Data)" +public static string GlobalDataFolderToolTip_OnlyGlobalData=>T("GlobalDataFolderToolTip_OnlyGlobalData"); +///"Page Datafolders" +public static string PageDataFolderDataFolderLabel=>T("PageDataFolderDataFolderLabel"); +///"Page datafolders" +public static string PageDataFolderDataFolderToolTip=>T("PageDataFolderDataFolderToolTip"); +///"Page Metatypes" +public static string PageMetaDataFolderLabel=>T("PageMetaDataFolderLabel"); +///"Page metatypes" +public static string PageMetaDataFolderToolTip=>T("PageMetaDataFolderToolTip"); +///"Add Datatype" +public static string Add=>T("Add"); +///"Add new global datatype" +public static string AddToolTip=>T("AddToolTip"); +///"List Unpublished Data" +public static string ViewUnpublishedItems=>T("ViewUnpublishedItems"); +///"Get an overview of data that haven't been published yet" +public static string ViewUnpublishedItemsToolTip=>T("ViewUnpublishedItemsToolTip"); +///"Unpublished data" +public static string ViewUnpublishedItems_document_title=>T("ViewUnpublishedItems-document-title"); +///"The list below display data items which are currently being edited or are ready to be approved / published." +public static string ViewUnpublishedItems_document_description=>T("ViewUnpublishedItems-document-description"); +///"No unpublished data." +public static string ViewUnpublishedItems_document_empty_label=>T("ViewUnpublishedItems-document-empty-label"); +///"Add Datafolder" +public static string AddDataFolder=>T("AddDataFolder"); +///"Add new datafolder" +public static string AddDataFolderToolTip=>T("AddDataFolderToolTip"); +///"Add Metatype" +public static string AddMetaDataLabel=>T("AddMetaDataLabel"); +///"Add metatype" +public static string AddMetaDataToolTip=>T("AddMetaDataToolTip"); +///"Edit Datatype" +public static string Edit=>T("Edit"); +///"Edit selected datatype" +public static string EditToolTip=>T("EditToolTip"); +///"Edit" +public static string EditDataFolderTypeLabel=>T("EditDataFolderTypeLabel"); +///"Edit selected datafolder" +public static string EditDataFolderTypeToolTip=>T("EditDataFolderTypeToolTip"); +///"Edit" +public static string EditMetaDataTypeLabel=>T("EditMetaDataTypeLabel"); +///"Edit selected metadata" +public static string EditMetaDataTypeToolTip=>T("EditMetaDataTypeToolTip"); +///"Delete Datatype" +public static string Delete=>T("Delete"); +///"Delete selected datatype" +public static string DeleteToolTip=>T("DeleteToolTip"); +///"Delete" +public static string DeleteDataFolderTypeLabel=>T("DeleteDataFolderTypeLabel"); +///"Delete selected datafolder" +public static string DeleteDataFolderTypeToolTip=>T("DeleteDataFolderTypeToolTip"); +///"Delete" +public static string DeleteMetaDataTypeLabel=>T("DeleteMetaDataTypeLabel"); +///"Delete selected metadata" +public static string DeleteMetaDataTypeToolTip=>T("DeleteMetaDataTypeToolTip"); +///"Edit Form Markup" +public static string EditFormMarkup=>T("EditFormMarkup"); +///"Modify the layout of the data form using markup" +public static string EditFormMarkupToolTip=>T("EditFormMarkupToolTip"); +///"Enable Localization" +public static string EnableLocalization=>T("EnableLocalization"); +///"Enable localization" +public static string EnableLocalizationToolTip=>T("EnableLocalizationToolTip"); +///"Disable Localization" +public static string DisableLocalization=>T("DisableLocalization"); +///"Disable localization" +public static string DisableLocalizationToolTip=>T("DisableLocalizationToolTip"); +///"Not yet approved or published" +public static string DisabledData=>T("DisabledData"); +///"(undefined [{0}])" +public static string UndefinedLabelTemplate(object parameter0)=>string.Format(T("UndefinedLabelTemplate"), parameter0); +///"(undefined)" +public static string UndefinedDataLavelTemplate=>T("UndefinedDataLavelTemplate"); +///"Show in Content perspective" +public static string ShowInContent=>T("ShowInContent"); +///"Show in Content perspective" +public static string ShowInContentToolTip=>T("ShowInContentToolTip"); +///"Add Data" +public static string AddData=>T("AddData"); +///"Add new data" +public static string AddDataToolTip=>T("AddDataToolTip"); +///"Edit Data" +public static string EditData=>T("EditData"); +///"Edit selected data" +public static string EditDataToolTip=>T("EditDataToolTip"); +///"Delete Data" +public static string DeleteData=>T("DeleteData"); +///"Delete selected data" +public static string DeleteDataToolTip=>T("DeleteDataToolTip"); +///"Translate Data" +public static string LocalizeData=>T("LocalizeData"); +///"Translate selected data" +public static string LocalizeDataToolTip=>T("LocalizeDataToolTip"); +///"Publication settings" +public static string PublicationSettings_FieldGroupLabel=>T("PublicationSettings.FieldGroupLabel"); +///"Status" +public static string PublicationStatus_Label=>T("PublicationStatus.Label"); +///"Send the data to another publication status." +public static string PublicationStatus_Help=>T("PublicationStatus.Help"); +///"Publish date" +public static string PublishDate_Label=>T("PublishDate.Label"); +///"Specify at which date and time you want the data to be published automatically." +public static string PublishDate_Help=>T("PublishDate.Help"); +///"Unpublish date" +public static string UnpublishDate_Label=>T("UnpublishDate.Label"); +///"Specify at which date and time you want the data to be unpublished automatically." +public static string UnpublishDate_Help=>T("UnpublishDate.Help"); +///"New Datatype" +public static string AddNewInterfaceTypeStep1_DocumentTitle=>T("AddNewInterfaceTypeStep1.DocumentTitle"); +///"New Page Metatype" +public static string AddNewCompositionTypeWorkflow_DocumentTitle=>T("AddNewCompositionTypeWorkflow.DocumentTitle"); +///"New Page Datafolder" +public static string AddNewAggregationTypeWorkflow_DocumentTitle=>T("AddNewAggregationTypeWorkflow.DocumentTitle"); +///"Settings" +public static string EditorCommon_SettingsTab=>T("EditorCommon.SettingsTab"); +///"Type title" +public static string EditorCommon_LabelTitleGroup=>T("EditorCommon.LabelTitleGroup"); +///"Programmatic naming and services" +public static string EditorCommon_LabelProgrammaticNamingAndServices=>T("EditorCommon.LabelProgrammaticNamingAndServices"); +///"Programmatic naming" +public static string EditorCommon_LabelProgrammaticNaming=>T("EditorCommon.LabelProgrammaticNaming"); +///"Type name" +public static string EditorCommon_LabelTypeName=>T("EditorCommon.LabelTypeName"); +///"The technical name of the data type (ex. Product). This is used to identify this type in code and should not be changed once used externally." +public static string EditorCommon_HelpTypeName=>T("EditorCommon.HelpTypeName"); +///"Type namespace" +public static string EditorCommon_LabelTypeNamespace=>T("EditorCommon.LabelTypeNamespace"); +///"The namespace (module / category name) of the type. This is used to identify this type in code and should not be changed once used externally." +public static string EditorCommon_HelpTypeNamespace=>T("EditorCommon.HelpTypeNamespace"); +///"Title" +public static string EditorCommon_LabelTitle=>T("EditorCommon.LabelTitle"); +///"Use this entry to specify a user friendly name. This name is used in most UI." +public static string EditorCommon_HelpTitle=>T("EditorCommon.HelpTitle"); +///"Fields" +public static string EditorCommon_LabelFields=>T("EditorCommon.LabelFields"); +///"Key field type" +public static string EditorCommon_KeyFieldTypeLabel=>T("EditorCommon.KeyFieldTypeLabel"); +///"The type of the primary key. Use the default 'Guid' type for optimal performance and 'RandomString' for shorter data urls." +public static string EditorCommon_KeyFieldTypeHelp=>T("EditorCommon.KeyFieldTypeHelp"); +///"Guid" +public static string EditorCommon_KeyFieldType_Guid=>T("EditorCommon.KeyFieldType.Guid"); +///"Random String, 4 characters long" +public static string EditorCommon_KeyFieldType_RandomString4=>T("EditorCommon.KeyFieldType.RandomString4"); +///"Random String, 8 characters long" +public static string EditorCommon_KeyFieldType_RandomString8=>T("EditorCommon.KeyFieldType.RandomString8"); +///"Services" +public static string EditorCommon_ServicesLabel=>T("EditorCommon.ServicesLabel"); +///"Short URL name" +public static string EditorCommon_InternalUrlPrefixLabel=>T("EditorCommon.InternalUrlPrefixLabel"); +///"When specified, allows data items of the current type to be referenced in content. The internal links will have format '~/{ShortURLName}({id})', f.e. '~/product(aIkH34F)" +public static string EditorCommon_InternalUrlPrefixHelp=>T("EditorCommon.InternalUrlPrefixHelp"); +///"Has caching" +public static string EditorCommon_HasCaching=>T("EditorCommon.HasCaching"); +///"Has publishing" +public static string EditorCommon_HasPublishing=>T("EditorCommon.HasPublishing"); +///"Is localizable data" +public static string EditorCommon_HasLocalization=>T("EditorCommon.HasLocalization"); +///"Delete Data?" +public static string DeleteGeneratedDataStep1_LabelFieldGroup=>T("DeleteGeneratedDataStep1.LabelFieldGroup"); +///"Delete data?" +public static string DeleteGeneratedDataStep1_Text=>T("DeleteGeneratedDataStep1.Text"); +///"There is some referenced data that will also be deleted, do you want to continue?" +public static string DeleteDataConfirmationText=>T("DeleteDataConfirmationText"); +///"Delete Datatype" +public static string DeleteGeneratedInterfaceStep1_LabelFieldGroup=>T("DeleteGeneratedInterfaceStep1.LabelFieldGroup"); +///"Delete the datatype" +public static string DeleteGeneratedInterfaceStep1_Text=>T("DeleteGeneratedInterfaceStep1.Text"); +///"Cascade delete error" +public static string CascadeDeleteErrorTitle=>T("CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string CascadeDeleteErrorMessage=>T("CascadeDeleteErrorMessage"); +///"Delete Datatype" +public static string DeleteAggregationTypeWorkflow_LabelFieldGroup=>T("DeleteAggregationTypeWorkflow.LabelFieldGroup"); +///"Delete the datatype" +public static string DeleteAggregationTypeWorkflow_Text=>T("DeleteAggregationTypeWorkflow.Text"); +///"Error" +public static string DeleteAggregationTypeWorkflow_ErrorTitle=>T("DeleteAggregationTypeWorkflow.ErrorTitle"); +///"Cannot delete type '{0}' since it is used by a page type." +public static string DeleteAggregationTypeWorkflow_IsUsedByPageType(object parameter0)=>string.Format(T("DeleteAggregationTypeWorkflow.IsUsedByPageType"), parameter0); +///"Delete Datatype" +public static string DeleteCompositionTypeWorkflow_LabelFieldGroup=>T("DeleteCompositionTypeWorkflow.LabelFieldGroup"); +///"Delete the datatype" +public static string DeleteCompositionTypeWorkflow_Text=>T("DeleteCompositionTypeWorkflow.Text"); +///"Error" +public static string DeleteCompositionTypeWorkflow_ErrorTitle=>T("DeleteCompositionTypeWorkflow.ErrorTitle"); +///"Cannot delete type '{0}' since there're types that referenced to it." +public static string DeleteCompositionTypeWorkflow_TypeIsReferenced(object parameter0)=>string.Format(T("DeleteCompositionTypeWorkflow.TypeIsReferenced"), parameter0); +///"Cannot delete type '{0}' since it is used by a page type." +public static string DeleteCompositionTypeWorkflow_IsUsedByPageType(object parameter0)=>string.Format(T("DeleteCompositionTypeWorkflow.IsUsedByPageType"), parameter0); +///"To Xml" +public static string ToXmlLabel=>T("ToXmlLabel"); +///"To Xml" +public static string ToXmlToolTip=>T("ToXmlToolTip"); +///"Enable Localization" +public static string EnableTypeLocalizationWorkflow_Dialog_Label=>T("EnableTypeLocalizationWorkflow.Dialog.Label"); +///"Enable localization" +public static string EnableTypeLocalizationWorkflow_Step1_FieldGroup_Label=>T("EnableTypeLocalizationWorkflow.Step1.FieldGroup.Label"); +///"Move existing data to ..." +public static string EnableTypeLocalizationWorkflow_Step1_CultureSelector_Label=>T("EnableTypeLocalizationWorkflow.Step1.CultureSelector.Label"); +///"When you enable 'localization' on a data type, all data must belong to a language. Select the language existing data should now be moved to." +public static string EnableTypeLocalizationWorkflow_Step1_CultureSelector_Help=>T("EnableTypeLocalizationWorkflow.Step1.CultureSelector.Help"); +///"Confirmation" +public static string EnableTypeLocalizationWorkflow_Step2_Title=>T("EnableTypeLocalizationWorkflow.Step2.Title"); +///"Data type will be localized and data copied to selected locale. Click Finish to continue." +public static string EnableTypeLocalizationWorkflow_Step2_Description=>T("EnableTypeLocalizationWorkflow.Step2.Description"); +///"Warning" +public static string EnableTypeLocalizationWorkflow_Step3_Title=>T("EnableTypeLocalizationWorkflow.Step3.Title"); +///"There's some datatypes which have references to the type. While localizing the data will be copied to all languages in order to prevent appearing of broken references." +public static string EnableTypeLocalizationWorkflow_Step3_Description=>T("EnableTypeLocalizationWorkflow.Step3.Description"); +///"Missing active locales" +public static string EnableTypeLocalizationWorkflow_Abort_Title=>T("EnableTypeLocalizationWorkflow.Abort.Title"); +///"There are no added active locales. Add at least one before localization this datatype." +public static string EnableTypeLocalizationWorkflow_Abort_Description=>T("EnableTypeLocalizationWorkflow.Abort.Description"); +///"Disable Localization" +public static string DisableTypeLocalizationWorkflow_Dialog_Label=>T("DisableTypeLocalizationWorkflow.Dialog.Label"); +///"Disable localization" +public static string DisableTypeLocalizationWorkflow_Step1_FieldGroup_Label=>T("DisableTypeLocalizationWorkflow.Step1.FieldGroup.Label"); +///"Keep data from ..." +public static string DisableTypeLocalizationWorkflow_Step1_CultureSelector_Label=>T("DisableTypeLocalizationWorkflow.Step1.CultureSelector.Label"); +///"When localization is disabled on a datatype only one translation can be kept. Data from other languages will be lost." +public static string DisableTypeLocalizationWorkflow_Step1_CultureSelector_Help=>T("DisableTypeLocalizationWorkflow.Step1.CultureSelector.Help"); +///"Confirmation" +public static string DisableTypeLocalizationWorkflow_Step2_Title=>T("DisableTypeLocalizationWorkflow.Step2.Title"); +///"All data from other locales than the one selected will be lost. Click Finish to continue." +public static string DisableTypeLocalizationWorkflow_Step2_Description=>T("DisableTypeLocalizationWorkflow.Step2.Description"); +///"Failed to translate data" +public static string LocalizeDataWorkflow_ShowError_LayoutLabel=>T("LocalizeDataWorkflow.ShowError.LayoutLabel"); +///"Translation errors" +public static string LocalizeDataWorkflow_ShowError_InfoTableCaption=>T("LocalizeDataWorkflow.ShowError.InfoTableCaption"); +///"This data has already been translated. The translated version belongs to a different group." +public static string LocalizeDataWorkflow_ShowError_AlreadyTranslated=>T("LocalizeDataWorkflow.ShowError.AlreadyTranslated"); +///"The following fields has a reference to a data type. You should translate these data items before you can translate this data item" +public static string LocalizeDataWorkflow_ShowError_Description=>T("LocalizeDataWorkflow.ShowError.Description"); +///"The field '{0}' is referencing data of type '{1}' with the label '{2}'" +public static string LocalizeDataWorkflow_ShowError_FieldErrorFormat(object parameter0,object parameter1,object parameter2)=>string.Format(T("LocalizeDataWorkflow.ShowError.FieldErrorFormat"), parameter0,parameter1,parameter2); +///"Error" +public static string AddNewInterfaceTypeStep1_ErrorTitle=>T("AddNewInterfaceTypeStep1.ErrorTitle"); +///"Error" +public static string EditInterfaceTypeStep1_ErrorTitle=>T("EditInterfaceTypeStep1.ErrorTitle"); +///"Error" +public static string AddNewCompositionTypeWorkflow_ErrorTitle=>T("AddNewCompositionTypeWorkflow.ErrorTitle"); +///"Error" +public static string EditCompositionTypeWorkflow_ErrorTitle=>T("EditCompositionTypeWorkflow.ErrorTitle"); +///"XML Result" +public static string DataTypeDescriptorToXmlLabel=>T("DataTypeDescriptorToXmlLabel"); +///"This type has custom form markup" +public static string FormMarkupInfo_Dialog_Label=>T("FormMarkupInfo.Dialog.Label"); +///"Your field changes will not affect the form for editing data. Do '{0}' to change the form or delete the file '{1}'." +public static string FormMarkupInfo_Message(object parameter0,object parameter1)=>string.Format(T("FormMarkupInfo.Message"), parameter0,parameter1); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.GeneratedDataTypesElementProvider", key); @@ -2810,34 +2830,34 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_GenericPublishProcessController { - /// "Send to Draft" - public static string SendToDraft { get { return T("SendToDraft"); } } - /// "" - public static string SendToDraftToolTip { get { return T("SendToDraftToolTip"); } } - /// "Publish" - public static string Publish { get { return T("Publish"); } } - /// "Publish to site" - public static string PublishToolTip { get { return T("PublishToolTip"); } } - /// "Unpublish" - public static string Unpublish { get { return T("Unpublish"); } } - /// "Set to draft status and remove the published version" - public static string UnpublishToolTip { get { return T("UnpublishToolTip"); } } - /// "Send for Approval" - public static string SendForApproval { get { return T("SendForApproval"); } } - /// "Send for approval" - public static string SendForApprovalToolTip { get { return T("SendForApprovalToolTip"); } } - /// "Send for Publication" - public static string SendForPublication { get { return T("SendForPublication"); } } - /// "Send for publication" - public static string SendForPublicationToolTip { get { return T("SendForPublicationToolTip"); } } - /// "Undo Changes" - public static string UndoPublishedChanges { get { return T("UndoPublishedChanges"); } } - /// "Undo unpublished changes" - public static string UndoPublishedChangesToolTip { get { return T("UndoPublishedChangesToolTip"); } } - /// "Action Not Possible" - public static string ValidationErrorTitle { get { return T("ValidationErrorTitle"); } } - /// "The data did not validate with the following errors:" - public static string ValidationErrorMessage { get { return T("ValidationErrorMessage"); } } +///"Send to Draft" +public static string SendToDraft=>T("SendToDraft"); +///"" +public static string SendToDraftToolTip=>T("SendToDraftToolTip"); +///"Publish" +public static string Publish=>T("Publish"); +///"Publish to site" +public static string PublishToolTip=>T("PublishToolTip"); +///"Unpublish" +public static string Unpublish=>T("Unpublish"); +///"Set to draft status and remove the published version" +public static string UnpublishToolTip=>T("UnpublishToolTip"); +///"Send for Approval" +public static string SendForApproval=>T("SendForApproval"); +///"Send for approval" +public static string SendForApprovalToolTip=>T("SendForApprovalToolTip"); +///"Send for Publication" +public static string SendForPublication=>T("SendForPublication"); +///"Send for publication" +public static string SendForPublicationToolTip=>T("SendForPublicationToolTip"); +///"Undo Changes" +public static string UndoPublishedChanges=>T("UndoPublishedChanges"); +///"Undo unpublished changes" +public static string UndoPublishedChangesToolTip=>T("UndoPublishedChangesToolTip"); +///"Action Not Possible" +public static string ValidationErrorTitle=>T("ValidationErrorTitle"); +///"The data did not validate with the following errors:" +public static string ValidationErrorMessage=>T("ValidationErrorMessage"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.GenericPublishProcessController", key); @@ -2847,68 +2867,68 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_LocalizationElementProvider { - /// "Languages" - public static string ElementProvider_RootFolderLabel { get { return T("ElementProvider.RootFolderLabel"); } } - /// "Explore and manage installed languages" - public static string ElementProvider_RootFolderToolTip { get { return T("ElementProvider.RootFolderToolTip"); } } - /// "Default" - public static string ElementProvider_DefaultLabel { get { return T("ElementProvider.DefaultLabel"); } } - /// "No Languages Available" - public static string AddSystemLocaleWorkflow_NoMoreLocalesTitle { get { return T("AddSystemLocaleWorkflow.NoMoreLocalesTitle"); } } - /// "You have installed all possible languages." - public static string AddSystemLocaleWorkflow_NoMoreLocalesMessage { get { return T("AddSystemLocaleWorkflow.NoMoreLocalesMessage"); } } - /// "Add Language" - public static string AddSystemLocaleWorkflow_AddElementActionLabel { get { return T("AddSystemLocaleWorkflow.AddElementActionLabel"); } } - /// "Add new language" - public static string AddSystemLocaleWorkflow_AddElementActionToolTip { get { return T("AddSystemLocaleWorkflow.AddElementActionToolTip"); } } - /// "Add Language" - public static string AddSystemLocaleWorkflow_Dialog_Label { get { return T("AddSystemLocaleWorkflow.Dialog.Label"); } } - /// "Languages" - public static string AddSystemLocaleWorkflow_CultureSelector_Label { get { return T("AddSystemLocaleWorkflow.CultureSelector.Label"); } } - /// "The list of available, uninstalled languages. Language packages may be installed for additional options." - public static string AddSystemLocaleWorkflow_CultureSelector_Help { get { return T("AddSystemLocaleWorkflow.CultureSelector.Help"); } } - /// "URL mapping name" - public static string AddSystemLocaleWorkflow_UrlMappingName_Label { get { return T("AddSystemLocaleWorkflow.UrlMappingName.Label"); } } - /// "This string will be inserted into the URL of pages published in a given language. The website "default" language may leave this entry blank." - public static string AddSystemLocaleWorkflow_UrlMappingName_Help { get { return T("AddSystemLocaleWorkflow.UrlMappingName.Help"); } } - /// "User access" - public static string AddSystemLocaleWorkflow_AllUsersAccess_Label { get { return T("AddSystemLocaleWorkflow.AllUsersAccess.Label"); } } - /// "Give access to all users" - public static string AddSystemLocaleWorkflow_AllUsersAccess_ItemLabel { get { return T("AddSystemLocaleWorkflow.AllUsersAccess.ItemLabel"); } } - /// "If checked, the language will be made available to all registered users for viewing and editing" - public static string AddSystemLocaleWorkflow_AllUsersAccess_Help { get { return T("AddSystemLocaleWorkflow.AllUsersAccess.Help"); } } - /// "URL mapping name is already in use" - public static string AddSystemLocaleWorkflow_UrlMappingName_InUseMessage { get { return T("AddSystemLocaleWorkflow.UrlMappingName.InUseMessage"); } } - /// "Edit Language" - public static string EditSystemLocaleWorkflow_EditElementActionLabel { get { return T("EditSystemLocaleWorkflow.EditElementActionLabel"); } } - /// "Edit language" - public static string EditSystemLocaleWorkflow_EditElementActionToolTip { get { return T("EditSystemLocaleWorkflow.EditElementActionToolTip"); } } - /// "Edit Language" - public static string EditSystemLocaleWorkflow_Dialog_Label { get { return T("EditSystemLocaleWorkflow.Dialog.Label"); } } - /// "Language properties" - public static string EditSystemLocaleWorkflow_FieldGroup_Label { get { return T("EditSystemLocaleWorkflow.FieldGroup.Label"); } } - /// "URL mapping name" - public static string EditSystemLocaleWorkflow_UrlMappingName_Label { get { return T("EditSystemLocaleWorkflow.UrlMappingName.Label"); } } - /// "URL mapping name" - public static string EditSystemLocaleWorkflow_UrlMappingName_Help { get { return T("EditSystemLocaleWorkflow.UrlMappingName.Help"); } } - /// "URL mapping name is already in use" - public static string EditSystemLocaleWorkflow_UrlMappingName_InUseMessage { get { return T("EditSystemLocaleWorkflow.UrlMappingName.InUseMessage"); } } - /// "Set as Default" - public static string DefineDefaultActiveLocaleWorkflow_ElementActionLabel { get { return T("DefineDefaultActiveLocaleWorkflow.ElementActionLabel"); } } - /// "Set as default language" - public static string DefineDefaultActiveLocaleWorkflow_ElementActionToolTip { get { return T("DefineDefaultActiveLocaleWorkflow.ElementActionToolTip"); } } - /// "Remove Language" - public static string RemoveSystemLocaleWorkflow_RemoveElementActionLabel { get { return T("RemoveSystemLocaleWorkflow.RemoveElementActionLabel"); } } - /// "Remove language" - public static string RemoveSystemLocaleWorkflow_RemoveElementActionToolTip { get { return T("RemoveSystemLocaleWorkflow.RemoveElementActionToolTip"); } } - /// "Remove Language?" - public static string RemoveSystemLocaleWorkflow_Dialog_Label { get { return T("RemoveSystemLocaleWorkflow.Dialog.Label"); } } - /// "Cannot Remove Last Language" - public static string RemoveSystemLocaleWorkflow_Abort_Title { get { return T("RemoveSystemLocaleWorkflow.Abort.Title"); } } - /// "You are about to remove a language that is the only language for one or more users. Please add other languages to these users and try again." - public static string RemoveSystemLocaleWorkflow_Abort_Description { get { return T("RemoveSystemLocaleWorkflow.Abort.Description"); } } - /// "Remove this language?" - public static string RemoveSystemLocaleWorkflow_Confirm_Description { get { return T("RemoveSystemLocaleWorkflow.Confirm.Description"); } } +///"Languages" +public static string ElementProvider_RootFolderLabel=>T("ElementProvider.RootFolderLabel"); +///"Explore and manage installed languages" +public static string ElementProvider_RootFolderToolTip=>T("ElementProvider.RootFolderToolTip"); +///"Default" +public static string ElementProvider_DefaultLabel=>T("ElementProvider.DefaultLabel"); +///"No Languages Available" +public static string AddSystemLocaleWorkflow_NoMoreLocalesTitle=>T("AddSystemLocaleWorkflow.NoMoreLocalesTitle"); +///"You have installed all possible languages." +public static string AddSystemLocaleWorkflow_NoMoreLocalesMessage=>T("AddSystemLocaleWorkflow.NoMoreLocalesMessage"); +///"Add Language" +public static string AddSystemLocaleWorkflow_AddElementActionLabel=>T("AddSystemLocaleWorkflow.AddElementActionLabel"); +///"Add new language" +public static string AddSystemLocaleWorkflow_AddElementActionToolTip=>T("AddSystemLocaleWorkflow.AddElementActionToolTip"); +///"Add Language" +public static string AddSystemLocaleWorkflow_Dialog_Label=>T("AddSystemLocaleWorkflow.Dialog.Label"); +///"Languages" +public static string AddSystemLocaleWorkflow_CultureSelector_Label=>T("AddSystemLocaleWorkflow.CultureSelector.Label"); +///"The list of available, uninstalled languages. Language packages may be installed for additional options." +public static string AddSystemLocaleWorkflow_CultureSelector_Help=>T("AddSystemLocaleWorkflow.CultureSelector.Help"); +///"URL mapping name" +public static string AddSystemLocaleWorkflow_UrlMappingName_Label=>T("AddSystemLocaleWorkflow.UrlMappingName.Label"); +///"This string will be inserted into the URL of pages published in a given language. The website "default" language may leave this entry blank." +public static string AddSystemLocaleWorkflow_UrlMappingName_Help=>T("AddSystemLocaleWorkflow.UrlMappingName.Help"); +///"User access" +public static string AddSystemLocaleWorkflow_AllUsersAccess_Label=>T("AddSystemLocaleWorkflow.AllUsersAccess.Label"); +///"Give access to all users" +public static string AddSystemLocaleWorkflow_AllUsersAccess_ItemLabel=>T("AddSystemLocaleWorkflow.AllUsersAccess.ItemLabel"); +///"If checked, the language will be made available to all registered users for viewing and editing" +public static string AddSystemLocaleWorkflow_AllUsersAccess_Help=>T("AddSystemLocaleWorkflow.AllUsersAccess.Help"); +///"URL mapping name is already in use" +public static string AddSystemLocaleWorkflow_UrlMappingName_InUseMessage=>T("AddSystemLocaleWorkflow.UrlMappingName.InUseMessage"); +///"Edit Language" +public static string EditSystemLocaleWorkflow_EditElementActionLabel=>T("EditSystemLocaleWorkflow.EditElementActionLabel"); +///"Edit language" +public static string EditSystemLocaleWorkflow_EditElementActionToolTip=>T("EditSystemLocaleWorkflow.EditElementActionToolTip"); +///"Edit Language" +public static string EditSystemLocaleWorkflow_Dialog_Label=>T("EditSystemLocaleWorkflow.Dialog.Label"); +///"Language properties" +public static string EditSystemLocaleWorkflow_FieldGroup_Label=>T("EditSystemLocaleWorkflow.FieldGroup.Label"); +///"URL mapping name" +public static string EditSystemLocaleWorkflow_UrlMappingName_Label=>T("EditSystemLocaleWorkflow.UrlMappingName.Label"); +///"URL mapping name" +public static string EditSystemLocaleWorkflow_UrlMappingName_Help=>T("EditSystemLocaleWorkflow.UrlMappingName.Help"); +///"URL mapping name is already in use" +public static string EditSystemLocaleWorkflow_UrlMappingName_InUseMessage=>T("EditSystemLocaleWorkflow.UrlMappingName.InUseMessage"); +///"Set as Default" +public static string DefineDefaultActiveLocaleWorkflow_ElementActionLabel=>T("DefineDefaultActiveLocaleWorkflow.ElementActionLabel"); +///"Set as default language" +public static string DefineDefaultActiveLocaleWorkflow_ElementActionToolTip=>T("DefineDefaultActiveLocaleWorkflow.ElementActionToolTip"); +///"Remove Language" +public static string RemoveSystemLocaleWorkflow_RemoveElementActionLabel=>T("RemoveSystemLocaleWorkflow.RemoveElementActionLabel"); +///"Remove language" +public static string RemoveSystemLocaleWorkflow_RemoveElementActionToolTip=>T("RemoveSystemLocaleWorkflow.RemoveElementActionToolTip"); +///"Remove Language?" +public static string RemoveSystemLocaleWorkflow_Dialog_Label=>T("RemoveSystemLocaleWorkflow.Dialog.Label"); +///"Cannot Remove Last Language" +public static string RemoveSystemLocaleWorkflow_Abort_Title=>T("RemoveSystemLocaleWorkflow.Abort.Title"); +///"You are about to remove a language that is the only language for one or more users. Please add other languages to these users and try again." +public static string RemoveSystemLocaleWorkflow_Abort_Description=>T("RemoveSystemLocaleWorkflow.Abort.Description"); +///"Remove this language?" +public static string RemoveSystemLocaleWorkflow_Confirm_Description=>T("RemoveSystemLocaleWorkflow.Confirm.Description"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.LocalizationElementProvider", key); @@ -2918,42 +2938,42 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_MasterPagePageTemplate { - /// "Add New Master Page" - public static string AddNewMasterPagePageTemplateWorkflow_LabelDialog { get { return T("AddNewMasterPagePageTemplateWorkflow.LabelDialog"); } } - /// "Edit Master Page" - public static string EditMasterPageAction_Label { get { return T("EditMasterPageAction.Label"); } } - /// "Edit source code of the master page" - public static string EditMasterPageAction_ToolTip { get { return T("EditMasterPageAction.ToolTip"); } } - /// "Delete" - public static string DeleteMasterPageAction_Label { get { return T("DeleteMasterPageAction.Label"); } } - /// "Delete page template" - public static string DeleteMasterPageAction_ToolTip { get { return T("DeleteMasterPageAction.ToolTip"); } } - /// "Validation error" - public static string EditTemplate_Validation_DialogTitle { get { return T("EditTemplate.Validation.DialogTitle"); } } - /// "Compilation failed: {0}" - public static string EditTemplate_Validation_CompilationFailed(object parameter0) { return string.Format(T("EditTemplate.Validation.CompilationFailed"), parameter0); } - /// "Page template class does not inherit '{0}'" - public static string EditTemplate_Validation_IncorrectBaseClass(object parameter0) { return string.Format(T("EditTemplate.Validation.IncorrectBaseClass"), parameter0); } - /// "Failed to evaluate page template property '{0}'. Exception: {1}" - public static string EditTemplate_Validation_PropertyError(object parameter0,object parameter1) { return string.Format(T("EditTemplate.Validation.PropertyError"), parameter0,parameter1); } - /// "It is not allowed to change the template ID through the current workflow. The original template ID is '{0}'" - public static string EditTemplate_Validation_TemplateIdChanged(object parameter0) { return string.Format(T("EditTemplate.Validation.TemplateIdChanged"), parameter0); } - /// "Add New Master Page Template" - public static string AddNewMasterPagePageTemplate_LabelDialog { get { return T("AddNewMasterPagePageTemplate.LabelDialog"); } } - /// "Template Title" - public static string AddNewMasterPagePageTemplate_LabelTemplateTitle { get { return T("AddNewMasterPagePageTemplate.LabelTemplateTitle"); } } - /// "The title identifies this template in lists. Consider selecting a short but meaningful name." - public static string AddNewMasterPagePageTemplate_LabelTemplateTitleHelp { get { return T("AddNewMasterPagePageTemplate.LabelTemplateTitleHelp"); } } - /// "Copy from" - public static string AddNewMasterPagePageTemplate_LabelCopyFrom { get { return T("AddNewMasterPagePageTemplate.LabelCopyFrom"); } } - /// "You can copy the markup from another Layout Template by selecting it in this list." - public static string AddNewMasterPagePageTemplate_LabelCopyFromHelp { get { return T("AddNewMasterPagePageTemplate.LabelCopyFromHelp"); } } - /// "(New template)" - public static string AddNewMasterPagePageTemplate_LabelCopyFromEmptyOption { get { return T("AddNewMasterPagePageTemplate.LabelCopyFromEmptyOption"); } } - /// "Title already used" - public static string AddNewMasterPagePageTemplateWorkflow_TitleInUseTitle { get { return T("AddNewMasterPagePageTemplateWorkflow.TitleInUseTitle"); } } - /// "The title is too long (used as part of a filename)." - public static string AddNewMasterPagePageTemplateWorkflow_TitleTooLong { get { return T("AddNewMasterPagePageTemplateWorkflow.TitleTooLong"); } } +///"Add New Master Page" +public static string AddNewMasterPagePageTemplateWorkflow_LabelDialog=>T("AddNewMasterPagePageTemplateWorkflow.LabelDialog"); +///"Edit Master Page" +public static string EditMasterPageAction_Label=>T("EditMasterPageAction.Label"); +///"Edit source code of the master page" +public static string EditMasterPageAction_ToolTip=>T("EditMasterPageAction.ToolTip"); +///"Delete" +public static string DeleteMasterPageAction_Label=>T("DeleteMasterPageAction.Label"); +///"Delete page template" +public static string DeleteMasterPageAction_ToolTip=>T("DeleteMasterPageAction.ToolTip"); +///"Validation error" +public static string EditTemplate_Validation_DialogTitle=>T("EditTemplate.Validation.DialogTitle"); +///"Compilation failed: {0}" +public static string EditTemplate_Validation_CompilationFailed(object parameter0)=>string.Format(T("EditTemplate.Validation.CompilationFailed"), parameter0); +///"Page template class does not inherit '{0}'" +public static string EditTemplate_Validation_IncorrectBaseClass(object parameter0)=>string.Format(T("EditTemplate.Validation.IncorrectBaseClass"), parameter0); +///"Failed to evaluate page template property '{0}'. Exception: {1}" +public static string EditTemplate_Validation_PropertyError(object parameter0,object parameter1)=>string.Format(T("EditTemplate.Validation.PropertyError"), parameter0,parameter1); +///"It is not allowed to change the template ID through the current workflow. The original template ID is '{0}'" +public static string EditTemplate_Validation_TemplateIdChanged(object parameter0)=>string.Format(T("EditTemplate.Validation.TemplateIdChanged"), parameter0); +///"Add New Master Page Template" +public static string AddNewMasterPagePageTemplate_LabelDialog=>T("AddNewMasterPagePageTemplate.LabelDialog"); +///"Template Title" +public static string AddNewMasterPagePageTemplate_LabelTemplateTitle=>T("AddNewMasterPagePageTemplate.LabelTemplateTitle"); +///"The title identifies this template in lists. Consider selecting a short but meaningful name." +public static string AddNewMasterPagePageTemplate_LabelTemplateTitleHelp=>T("AddNewMasterPagePageTemplate.LabelTemplateTitleHelp"); +///"Copy from" +public static string AddNewMasterPagePageTemplate_LabelCopyFrom=>T("AddNewMasterPagePageTemplate.LabelCopyFrom"); +///"You can copy the markup from another Layout Template by selecting it in this list." +public static string AddNewMasterPagePageTemplate_LabelCopyFromHelp=>T("AddNewMasterPagePageTemplate.LabelCopyFromHelp"); +///"(New template)" +public static string AddNewMasterPagePageTemplate_LabelCopyFromEmptyOption=>T("AddNewMasterPagePageTemplate.LabelCopyFromEmptyOption"); +///"Title already used" +public static string AddNewMasterPagePageTemplateWorkflow_TitleInUseTitle=>T("AddNewMasterPagePageTemplateWorkflow.TitleInUseTitle"); +///"The title is too long (used as part of a filename)." +public static string AddNewMasterPagePageTemplateWorkflow_TitleTooLong=>T("AddNewMasterPagePageTemplateWorkflow.TitleTooLong"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.MasterPagePageTemplate", key); @@ -2963,174 +2983,174 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_MethodBasedFunctionProviderElementProvider { - /// "C# Functions" - public static string RootFolderLabel { get { return T("RootFolderLabel"); } } - /// "Method functions" - public static string RootFolderToolTip { get { return T("RootFolderToolTip"); } } - /// "Delete This Function" - public static string DeleteFunction_LabelFieldGroup { get { return T("DeleteFunction.LabelFieldGroup"); } } - /// "Delete this function" - public static string DeleteFunction_Text { get { return T("DeleteFunction.Text"); } } - /// "Add External C# function" - public static string Add { get { return T("Add"); } } - /// "Add an external C# method based function." - public static string AddToolTip { get { return T("AddToolTip"); } } - /// "Add Inline C# function" - public static string Create { get { return T("Create"); } } - /// "Add an inline C# method based function." - public static string CreateToolTip { get { return T("CreateToolTip"); } } - /// "Edit" - public static string Edit { get { return T("Edit"); } } - /// "Edit Function." - public static string EditToolTip { get { return T("EditToolTip"); } } - /// "Delete" - public static string Delete { get { return T("Delete"); } } - /// "Delete Function." - public static string DeleteToolTip { get { return T("DeleteToolTip"); } } - /// "Type" - public static string AddNewMethodBasedFunctionStep1_LabelType { get { return T("AddNewMethodBasedFunctionStep1.LabelType"); } } - /// "The type that contains the method in question" - public static string AddNewMethodBasedFunctionStep1_LabelTypeHelp { get { return T("AddNewMethodBasedFunctionStep1.LabelTypeHelp"); } } - /// "Method name" - public static string AddNewMethodBasedFunctionStep2_LabelMethodName { get { return T("AddNewMethodBasedFunctionStep2.LabelMethodName"); } } - /// "" - public static string AddNewMethodBasedFunctionStep2_HelpMethodName { get { return T("AddNewMethodBasedFunctionStep2.HelpMethodName"); } } - /// "Method Name" - public static string AddNewMethodBasedFunctionStep3_LabelMethodName { get { return T("AddNewMethodBasedFunctionStep3.LabelMethodName"); } } - /// "" - public static string AddNewMethodBasedFunctionStep3_HelpMethodName { get { return T("AddNewMethodBasedFunctionStep3.HelpMethodName"); } } - /// "Namespace Name" - public static string AddNewMethodBasedFunctionStep3_LabelNamespaceName { get { return T("AddNewMethodBasedFunctionStep3.LabelNamespaceName"); } } - /// "" - public static string AddNewMethodBasedFunctionStep3_HelpNamespaceName { get { return T("AddNewMethodBasedFunctionStep3.HelpNamespaceName"); } } - /// "Error" - public static string AddNewMethodBasedFunctionStep3_LabelError { get { return T("AddNewMethodBasedFunctionStep3.LabelError"); } } - /// "Cascade delete error" - public static string CascadeDeleteErrorTitle { get { return T("CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string CascadeDeleteErrorMessage { get { return T("CascadeDeleteErrorMessage"); } } - /// "Could not find type" - public static string AddFunction_CouldNotFindType { get { return T("AddFunction.CouldNotFindType"); } } - /// "The type does not contain any valid method" - public static string AddFunction_TypeHasNoValidMethod { get { return T("AddFunction.TypeHasNoValidMethod"); } } - /// "The type is marked as either abstract or static. Calling methods on abstract or static types is not supported." - public static string AddFunction_TypeIsAbstractOrStatic { get { return T("AddFunction.TypeIsAbstractOrStatic"); } } - /// "The type must not have overloads" - public static string AddFunction_TypeMustNotHaveOverloads { get { return T("AddFunction.TypeMustNotHaveOverloads"); } } - /// "Method name must be non-empty" - public static string AddFunction_MethodNameIsEmpty { get { return T("AddFunction.MethodNameIsEmpty"); } } - /// "Namespace must be like A.B.C - not start and end with ." - public static string AddFunction_InvalidNamespace { get { return T("AddFunction.InvalidNamespace"); } } - /// "The function name '{0}' is already used" - public static string AddFunction_NameAlreadyUsed(object parameter0) { return string.Format(T("AddFunction.NameAlreadyUsed"), parameter0); } - /// "Edit Method Based Query" - public static string EditMethodBasedFunction_LabelFieldGroup { get { return T("EditMethodBasedFunction.LabelFieldGroup"); } } - /// "Method Name" - public static string EditMethodBasedFunction_LabelMethodName { get { return T("EditMethodBasedFunction.LabelMethodName"); } } - /// "The name that the function should be know under." - public static string EditMethodBasedFunction_LabelMethodNameHelp { get { return T("EditMethodBasedFunction.LabelMethodNameHelp"); } } - /// "Namespace Name" - public static string EditMethodBasedFunction_LabelNamespaceName { get { return T("EditMethodBasedFunction.LabelNamespaceName"); } } - /// "The namespace to place the method under." - public static string EditMethodBasedFunction_LabelNamespaceNameHelp { get { return T("EditMethodBasedFunction.LabelNamespaceNameHelp"); } } - /// "Type" - public static string EditMethodBasedFunction_LabelType { get { return T("EditMethodBasedFunction.LabelType"); } } - /// "The type that contains the method in question." - public static string EditMethodBasedFunction_LabelTypeHelp { get { return T("EditMethodBasedFunction.LabelTypeHelp"); } } - /// "Method" - public static string EditMethodBasedFunction_LabelMethod { get { return T("EditMethodBasedFunction.LabelMethod"); } } - /// "The method to invoke on the type." - public static string EditMethodBasedFunction_LabelMethodHelp { get { return T("EditMethodBasedFunction.LabelMethodHelp"); } } - /// "Error" - public static string EditMethodBasedFunction_LabelError { get { return T("EditMethodBasedFunction.LabelError"); } } - /// "Method name must be non-empty" - public static string EditFunction_MethodNameEmpty { get { return T("EditFunction.MethodNameEmpty"); } } - /// "Namespace must not start and end with . - example A.B.C" - public static string EditFunction_InvalidNamespace { get { return T("EditFunction.InvalidNamespace"); } } - /// "Could not find type" - public static string EditFunction_TypeNotFound { get { return T("EditFunction.TypeNotFound"); } } - /// "The type does not contain the method" - public static string EditFunction_MethodNotInType { get { return T("EditFunction.MethodNotInType"); } } - /// "The type does not contain any valid method" - public static string EditFunction_NoValidMethod { get { return T("EditFunction.NoValidMethod"); } } - /// "The type must not have overloads" - public static string EditFunction_MethodOverloadsNotAllowed { get { return T("EditFunction.MethodOverloadsNotAllowed"); } } - /// "Settings" - public static string AddInlineFunctionWorkflow_FieldGroup_Label { get { return T("AddInlineFunctionWorkflow.FieldGroup.Label"); } } - /// "Name" - public static string AddInlineFunctionWorkflow_MethodName_Label { get { return T("AddInlineFunctionWorkflow.MethodName.Label"); } } - /// "The name of the method you want to create" - public static string AddInlineFunctionWorkflow_MethodName_Help { get { return T("AddInlineFunctionWorkflow.MethodName.Help"); } } - /// "Namespace" - public static string AddInlineFunctionWorkflow_MethodNamespace_Label { get { return T("AddInlineFunctionWorkflow.MethodNamespace.Label"); } } - /// "The namespace of the method you want to create" - public static string AddInlineFunctionWorkflow_MethodNamespace_Help { get { return T("AddInlineFunctionWorkflow.MethodNamespace.Help"); } } - /// "Description" - public static string AddInlineFunctionWorkflow_MethodDescription_Label { get { return T("AddInlineFunctionWorkflow.MethodDescription.Label"); } } - /// "A short description of the function" - public static string AddInlineFunctionWorkflow_MethodDescription_Help { get { return T("AddInlineFunctionWorkflow.MethodDescription.Help"); } } - /// "Template" - public static string AddInlineFunctionWorkflow_InlineFunctionMethodTemplate_Label { get { return T("AddInlineFunctionWorkflow.InlineFunctionMethodTemplate.Label"); } } - /// "Select the template that you want to use for the new method." - public static string AddInlineFunctionWorkflow_InlineFunctionMethodTemplate_Help { get { return T("AddInlineFunctionWorkflow.InlineFunctionMethodTemplate.Help"); } } - /// "Settings" - public static string EditInlineFunctionWorkflow_FieldGroup_Label { get { return T("EditInlineFunctionWorkflow.FieldGroup.Label"); } } - /// "Name" - public static string EditInlineFunctionWorkflow_MethodName_Label { get { return T("EditInlineFunctionWorkflow.MethodName.Label"); } } - /// "The name of the method you want to create" - public static string EditInlineFunctionWorkflow_MethodName_Help { get { return T("EditInlineFunctionWorkflow.MethodName.Help"); } } - /// "Namespace" - public static string EditInlineFunctionWorkflow_MethodNamespace_Label { get { return T("EditInlineFunctionWorkflow.MethodNamespace.Label"); } } - /// "The namespace of the method you want to create" - public static string EditInlineFunctionWorkflow_MethodNamespace_Help { get { return T("EditInlineFunctionWorkflow.MethodNamespace.Help"); } } - /// "Description" - public static string EditInlineFunctionWorkflow_MethodDescription_Label { get { return T("EditInlineFunctionWorkflow.MethodDescription.Label"); } } - /// "A short description of the function" - public static string EditInlineFunctionWorkflow_MethodDescription_Help { get { return T("EditInlineFunctionWorkflow.MethodDescription.Help"); } } - /// "Debug" - public static string EditInlineFunctionWorkflow_DebugFieldGroup_Label { get { return T("EditInlineFunctionWorkflow.DebugFieldGroup.Label"); } } - /// "Page" - public static string EditInlineFunctionWorkflow_DebugPage_Label { get { return T("EditInlineFunctionWorkflow.DebugPage.Label"); } } - /// "When debugging, this page is used as current page" - public static string EditInlineFunctionWorkflow_DebugPage_Help { get { return T("EditInlineFunctionWorkflow.DebugPage.Help"); } } - /// "Data scope" - public static string EditInlineFunctionWorkflow_DebugPageDataScope_Label { get { return T("EditInlineFunctionWorkflow.DebugPageDataScope.Label"); } } - /// "When debugging, this is used as current data scope" - public static string EditInlineFunctionWorkflow_DebugPageDataScope_Help { get { return T("EditInlineFunctionWorkflow.DebugPageDataScope.Help"); } } - /// "Language" - public static string EditInlineFunctionWorkflow_DebugActiveLocale_Label { get { return T("EditInlineFunctionWorkflow.DebugActiveLocale.Label"); } } - /// "When debugging, this is used as the current language" - public static string EditInlineFunctionWorkflow_DebugActiveLocale_Help { get { return T("EditInlineFunctionWorkflow.DebugActiveLocale.Help"); } } - /// "Source" - public static string EditInlineFunctionWorkflow_Code_Label { get { return T("EditInlineFunctionWorkflow.Code.Label"); } } - /// "Assembly References" - public static string EditInlineFunctionWorkflow_AssembliesFieldGroup_Label { get { return T("EditInlineFunctionWorkflow.AssembliesFieldGroup.Label"); } } - /// "Preview" - public static string EditInlineFunctionWorkflow_Preview_Label { get { return T("EditInlineFunctionWorkflow.Preview.Label"); } } - /// "Input Parameters" - public static string EditInlineFunctionWorkflow_ParameterFieldGroup_Label { get { return T("EditInlineFunctionWorkflow.ParameterFieldGroup.Label"); } } - /// "Administrative" - public static string EditInlineFunctionWorkflow_AdminitrativeScope_Label { get { return T("EditInlineFunctionWorkflow.AdminitrativeScope.Label"); } } - /// "Public" - public static string EditInlineFunctionWorkflow_PublicScope_Label { get { return T("EditInlineFunctionWorkflow.PublicScope.Label"); } } - /// "Empty method" - public static string InlineFunctionMethodTemplate_Clean { get { return T("InlineFunctionMethodTemplate.Clean"); } } - /// "Method with parameters" - public static string InlineFunctionMethodTemplate_WithParameters { get { return T("InlineFunctionMethodTemplate.WithParameters"); } } - /// "Method using data connection" - public static string InlineFunctionMethodTemplate_DataConnection { get { return T("InlineFunctionMethodTemplate.DataConnection"); } } - /// "A public static class named {0} is missing from the code. This class should contain the function method." - public static string CSharpInlineFunction_OnMissingContainerType(object parameter0) { return string.Format(T("CSharpInlineFunction.OnMissingContainerType"), parameter0); } - /// "The namespace in the code '{0}' does not match the given function namespace '{1}'." - public static string CSharpInlineFunction_OnNamespaceMismatch(object parameter0,object parameter1) { return string.Format(T("CSharpInlineFunction.OnNamespaceMismatch"), parameter0,parameter1); } - /// "The given function name '{0}' was not found or not public static in the class '{1}'." - public static string CSharpInlineFunction_OnMissionMethod(object parameter0,object parameter1) { return string.Format(T("CSharpInlineFunction.OnMissionMethod"), parameter0,parameter1); } - /// "The parameter '{0}' has not been added to 'Input Parameters' - to call your function you need to add the parameter and give it either a test or default value." - public static string CSharpInlineFunction_MissingParameterDefinition(object parameter0) { return string.Format(T("CSharpInlineFunction.MissingParameterDefinition"), parameter0); } - /// "The parameter '{0}' is expecting test value of type '{1}', got value of type '{2}'." - public static string CSharpInlineFunction_WrongParameterTestValueType(object parameter0,object parameter1,object parameter2) { return string.Format(T("CSharpInlineFunction.WrongParameterTestValueType"), parameter0,parameter1,parameter2); } - /// "The parameter '{0}' defined on 'Input Parameters' must have a test or default value before your function can be evaluated." - public static string CSharpInlineFunction_MissingParameterTestOrDefaultValue(object parameter0) { return string.Format(T("CSharpInlineFunction.MissingParameterTestOrDefaultValue"), parameter0); } +///"C# Functions" +public static string RootFolderLabel=>T("RootFolderLabel"); +///"Method functions" +public static string RootFolderToolTip=>T("RootFolderToolTip"); +///"Delete This Function" +public static string DeleteFunction_LabelFieldGroup=>T("DeleteFunction.LabelFieldGroup"); +///"Delete this function" +public static string DeleteFunction_Text=>T("DeleteFunction.Text"); +///"Add External C# function" +public static string Add=>T("Add"); +///"Add an external C# method based function." +public static string AddToolTip=>T("AddToolTip"); +///"Add Inline C# function" +public static string Create=>T("Create"); +///"Add an inline C# method based function." +public static string CreateToolTip=>T("CreateToolTip"); +///"Edit" +public static string Edit=>T("Edit"); +///"Edit Function." +public static string EditToolTip=>T("EditToolTip"); +///"Delete" +public static string Delete=>T("Delete"); +///"Delete Function." +public static string DeleteToolTip=>T("DeleteToolTip"); +///"Type" +public static string AddNewMethodBasedFunctionStep1_LabelType=>T("AddNewMethodBasedFunctionStep1.LabelType"); +///"The type that contains the method in question" +public static string AddNewMethodBasedFunctionStep1_LabelTypeHelp=>T("AddNewMethodBasedFunctionStep1.LabelTypeHelp"); +///"Method name" +public static string AddNewMethodBasedFunctionStep2_LabelMethodName=>T("AddNewMethodBasedFunctionStep2.LabelMethodName"); +///"" +public static string AddNewMethodBasedFunctionStep2_HelpMethodName=>T("AddNewMethodBasedFunctionStep2.HelpMethodName"); +///"Method Name" +public static string AddNewMethodBasedFunctionStep3_LabelMethodName=>T("AddNewMethodBasedFunctionStep3.LabelMethodName"); +///"" +public static string AddNewMethodBasedFunctionStep3_HelpMethodName=>T("AddNewMethodBasedFunctionStep3.HelpMethodName"); +///"Namespace Name" +public static string AddNewMethodBasedFunctionStep3_LabelNamespaceName=>T("AddNewMethodBasedFunctionStep3.LabelNamespaceName"); +///"" +public static string AddNewMethodBasedFunctionStep3_HelpNamespaceName=>T("AddNewMethodBasedFunctionStep3.HelpNamespaceName"); +///"Error" +public static string AddNewMethodBasedFunctionStep3_LabelError=>T("AddNewMethodBasedFunctionStep3.LabelError"); +///"Cascade delete error" +public static string CascadeDeleteErrorTitle=>T("CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string CascadeDeleteErrorMessage=>T("CascadeDeleteErrorMessage"); +///"Could not find type" +public static string AddFunction_CouldNotFindType=>T("AddFunction.CouldNotFindType"); +///"The type does not contain any valid method" +public static string AddFunction_TypeHasNoValidMethod=>T("AddFunction.TypeHasNoValidMethod"); +///"The type is marked as either abstract or static. Calling methods on abstract or static types is not supported." +public static string AddFunction_TypeIsAbstractOrStatic=>T("AddFunction.TypeIsAbstractOrStatic"); +///"The type must not have overloads" +public static string AddFunction_TypeMustNotHaveOverloads=>T("AddFunction.TypeMustNotHaveOverloads"); +///"Method name must be non-empty" +public static string AddFunction_MethodNameIsEmpty=>T("AddFunction.MethodNameIsEmpty"); +///"Namespace must be like A.B.C - not start and end with ." +public static string AddFunction_InvalidNamespace=>T("AddFunction.InvalidNamespace"); +///"The function name '{0}' is already used" +public static string AddFunction_NameAlreadyUsed(object parameter0)=>string.Format(T("AddFunction.NameAlreadyUsed"), parameter0); +///"Edit Method Based Query" +public static string EditMethodBasedFunction_LabelFieldGroup=>T("EditMethodBasedFunction.LabelFieldGroup"); +///"Method Name" +public static string EditMethodBasedFunction_LabelMethodName=>T("EditMethodBasedFunction.LabelMethodName"); +///"The name that the function should be know under." +public static string EditMethodBasedFunction_LabelMethodNameHelp=>T("EditMethodBasedFunction.LabelMethodNameHelp"); +///"Namespace Name" +public static string EditMethodBasedFunction_LabelNamespaceName=>T("EditMethodBasedFunction.LabelNamespaceName"); +///"The namespace to place the method under." +public static string EditMethodBasedFunction_LabelNamespaceNameHelp=>T("EditMethodBasedFunction.LabelNamespaceNameHelp"); +///"Type" +public static string EditMethodBasedFunction_LabelType=>T("EditMethodBasedFunction.LabelType"); +///"The type that contains the method in question." +public static string EditMethodBasedFunction_LabelTypeHelp=>T("EditMethodBasedFunction.LabelTypeHelp"); +///"Method" +public static string EditMethodBasedFunction_LabelMethod=>T("EditMethodBasedFunction.LabelMethod"); +///"The method to invoke on the type." +public static string EditMethodBasedFunction_LabelMethodHelp=>T("EditMethodBasedFunction.LabelMethodHelp"); +///"Error" +public static string EditMethodBasedFunction_LabelError=>T("EditMethodBasedFunction.LabelError"); +///"Method name must be non-empty" +public static string EditFunction_MethodNameEmpty=>T("EditFunction.MethodNameEmpty"); +///"Namespace must not start and end with . - example A.B.C" +public static string EditFunction_InvalidNamespace=>T("EditFunction.InvalidNamespace"); +///"Could not find type" +public static string EditFunction_TypeNotFound=>T("EditFunction.TypeNotFound"); +///"The type does not contain the method" +public static string EditFunction_MethodNotInType=>T("EditFunction.MethodNotInType"); +///"The type does not contain any valid method" +public static string EditFunction_NoValidMethod=>T("EditFunction.NoValidMethod"); +///"The type must not have overloads" +public static string EditFunction_MethodOverloadsNotAllowed=>T("EditFunction.MethodOverloadsNotAllowed"); +///"Settings" +public static string AddInlineFunctionWorkflow_FieldGroup_Label=>T("AddInlineFunctionWorkflow.FieldGroup.Label"); +///"Name" +public static string AddInlineFunctionWorkflow_MethodName_Label=>T("AddInlineFunctionWorkflow.MethodName.Label"); +///"The name of the method you want to create" +public static string AddInlineFunctionWorkflow_MethodName_Help=>T("AddInlineFunctionWorkflow.MethodName.Help"); +///"Namespace" +public static string AddInlineFunctionWorkflow_MethodNamespace_Label=>T("AddInlineFunctionWorkflow.MethodNamespace.Label"); +///"The namespace of the method you want to create" +public static string AddInlineFunctionWorkflow_MethodNamespace_Help=>T("AddInlineFunctionWorkflow.MethodNamespace.Help"); +///"Description" +public static string AddInlineFunctionWorkflow_MethodDescription_Label=>T("AddInlineFunctionWorkflow.MethodDescription.Label"); +///"A short description of the function" +public static string AddInlineFunctionWorkflow_MethodDescription_Help=>T("AddInlineFunctionWorkflow.MethodDescription.Help"); +///"Template" +public static string AddInlineFunctionWorkflow_InlineFunctionMethodTemplate_Label=>T("AddInlineFunctionWorkflow.InlineFunctionMethodTemplate.Label"); +///"Select the template that you want to use for the new method." +public static string AddInlineFunctionWorkflow_InlineFunctionMethodTemplate_Help=>T("AddInlineFunctionWorkflow.InlineFunctionMethodTemplate.Help"); +///"Settings" +public static string EditInlineFunctionWorkflow_FieldGroup_Label=>T("EditInlineFunctionWorkflow.FieldGroup.Label"); +///"Name" +public static string EditInlineFunctionWorkflow_MethodName_Label=>T("EditInlineFunctionWorkflow.MethodName.Label"); +///"The name of the method you want to create" +public static string EditInlineFunctionWorkflow_MethodName_Help=>T("EditInlineFunctionWorkflow.MethodName.Help"); +///"Namespace" +public static string EditInlineFunctionWorkflow_MethodNamespace_Label=>T("EditInlineFunctionWorkflow.MethodNamespace.Label"); +///"The namespace of the method you want to create" +public static string EditInlineFunctionWorkflow_MethodNamespace_Help=>T("EditInlineFunctionWorkflow.MethodNamespace.Help"); +///"Description" +public static string EditInlineFunctionWorkflow_MethodDescription_Label=>T("EditInlineFunctionWorkflow.MethodDescription.Label"); +///"A short description of the function" +public static string EditInlineFunctionWorkflow_MethodDescription_Help=>T("EditInlineFunctionWorkflow.MethodDescription.Help"); +///"Debug" +public static string EditInlineFunctionWorkflow_DebugFieldGroup_Label=>T("EditInlineFunctionWorkflow.DebugFieldGroup.Label"); +///"Page" +public static string EditInlineFunctionWorkflow_DebugPage_Label=>T("EditInlineFunctionWorkflow.DebugPage.Label"); +///"When debugging, this page is used as current page" +public static string EditInlineFunctionWorkflow_DebugPage_Help=>T("EditInlineFunctionWorkflow.DebugPage.Help"); +///"Data scope" +public static string EditInlineFunctionWorkflow_DebugPageDataScope_Label=>T("EditInlineFunctionWorkflow.DebugPageDataScope.Label"); +///"When debugging, this is used as current data scope" +public static string EditInlineFunctionWorkflow_DebugPageDataScope_Help=>T("EditInlineFunctionWorkflow.DebugPageDataScope.Help"); +///"Language" +public static string EditInlineFunctionWorkflow_DebugActiveLocale_Label=>T("EditInlineFunctionWorkflow.DebugActiveLocale.Label"); +///"When debugging, this is used as the current language" +public static string EditInlineFunctionWorkflow_DebugActiveLocale_Help=>T("EditInlineFunctionWorkflow.DebugActiveLocale.Help"); +///"Source" +public static string EditInlineFunctionWorkflow_Code_Label=>T("EditInlineFunctionWorkflow.Code.Label"); +///"Assembly References" +public static string EditInlineFunctionWorkflow_AssembliesFieldGroup_Label=>T("EditInlineFunctionWorkflow.AssembliesFieldGroup.Label"); +///"Preview" +public static string EditInlineFunctionWorkflow_Preview_Label=>T("EditInlineFunctionWorkflow.Preview.Label"); +///"Input Parameters" +public static string EditInlineFunctionWorkflow_ParameterFieldGroup_Label=>T("EditInlineFunctionWorkflow.ParameterFieldGroup.Label"); +///"Administrative" +public static string EditInlineFunctionWorkflow_AdminitrativeScope_Label=>T("EditInlineFunctionWorkflow.AdminitrativeScope.Label"); +///"Public" +public static string EditInlineFunctionWorkflow_PublicScope_Label=>T("EditInlineFunctionWorkflow.PublicScope.Label"); +///"Empty method" +public static string InlineFunctionMethodTemplate_Clean=>T("InlineFunctionMethodTemplate.Clean"); +///"Method with parameters" +public static string InlineFunctionMethodTemplate_WithParameters=>T("InlineFunctionMethodTemplate.WithParameters"); +///"Method using data connection" +public static string InlineFunctionMethodTemplate_DataConnection=>T("InlineFunctionMethodTemplate.DataConnection"); +///"A public static class named {0} is missing from the code. This class should contain the function method." +public static string CSharpInlineFunction_OnMissingContainerType(object parameter0)=>string.Format(T("CSharpInlineFunction.OnMissingContainerType"), parameter0); +///"The namespace in the code '{0}' does not match the given function namespace '{1}'." +public static string CSharpInlineFunction_OnNamespaceMismatch(object parameter0,object parameter1)=>string.Format(T("CSharpInlineFunction.OnNamespaceMismatch"), parameter0,parameter1); +///"The given function name '{0}' was not found or not public static in the class '{1}'." +public static string CSharpInlineFunction_OnMissionMethod(object parameter0,object parameter1)=>string.Format(T("CSharpInlineFunction.OnMissionMethod"), parameter0,parameter1); +///"The parameter '{0}' has not been added to 'Input Parameters' - to call your function you need to add the parameter and give it either a test or default value." +public static string CSharpInlineFunction_MissingParameterDefinition(object parameter0)=>string.Format(T("CSharpInlineFunction.MissingParameterDefinition"), parameter0); +///"The parameter '{0}' is expecting test value of type '{1}', got value of type '{2}'." +public static string CSharpInlineFunction_WrongParameterTestValueType(object parameter0,object parameter1,object parameter2)=>string.Format(T("CSharpInlineFunction.WrongParameterTestValueType"), parameter0,parameter1,parameter2); +///"The parameter '{0}' defined on 'Input Parameters' must have a test or default value before your function can be evaluated." +public static string CSharpInlineFunction_MissingParameterTestOrDefaultValue(object parameter0)=>string.Format(T("CSharpInlineFunction.MissingParameterTestOrDefaultValue"), parameter0); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.MethodBasedFunctionProviderElementProvider", key); @@ -3140,274 +3160,280 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_PackageElementProvider { - /// "Packages" - public static string RootFolderLabel { get { return T("RootFolderLabel"); } } - /// "Explore and manage installed packages" - public static string RootFolderToolTip { get { return T("RootFolderToolTip"); } } - /// "Available Packages" - public static string AvailablePackagesFolderLabel { get { return T("AvailablePackagesFolderLabel"); } } - /// "Available packages" - public static string AvailablePackagesFolderToolTip { get { return T("AvailablePackagesFolderToolTip"); } } - /// "Installed Packages" - public static string InstalledPackageFolderLabel { get { return T("InstalledPackageFolderLabel"); } } - /// "Installed packages" - public static string InstalledPackageFolderToolTip { get { return T("InstalledPackageFolderToolTip"); } } - /// "Local Packages" - public static string LocalPackagesFolderLabel { get { return T("LocalPackagesFolderLabel"); } } - /// "Local packages" - public static string LocalPackagesFolderToolTip { get { return T("LocalPackagesFolderToolTip"); } } - /// "Package Sources" - public static string PackageSourcesFolderLabel { get { return T("PackageSourcesFolderLabel"); } } - /// "Package sources" - public static string PackageSourcesFolderToolTip { get { return T("PackageSourcesFolderToolTip"); } } - /// "Package Info" - public static string ViewAvailableInformationLabel { get { return T("ViewAvailableInformationLabel"); } } - /// "View package information" - public static string ViewAvailableInformationToolTip { get { return T("ViewAvailableInformationToolTip"); } } - /// "Package Info" - public static string ViewInstalledInformationLabel { get { return T("ViewInstalledInformationLabel"); } } - /// "View package information" - public static string ViewInstalledInformationToolTip { get { return T("ViewInstalledInformationToolTip"); } } - /// "Install Local Package..." - public static string InstallLocalPackageLabel { get { return T("InstallLocalPackageLabel"); } } - /// "Install package from local file system" - public static string InstallLocalPackageToolTip { get { return T("InstallLocalPackageToolTip"); } } - /// "Add Package Source" - public static string AddPackageSourceLabel { get { return T("AddPackageSourceLabel"); } } - /// "Add package source" - public static string AddPackageSourceToolTip { get { return T("AddPackageSourceToolTip"); } } - /// "Delete Package Source" - public static string DeletePackageSourceLabel { get { return T("DeletePackageSourceLabel"); } } - /// "Delete package source" - public static string DeletePackageSourceToolTip { get { return T("DeletePackageSourceToolTip"); } } - /// "Clear Cache" - public static string ClearServerCacheLabel { get { return T("ClearServerCacheLabel"); } } - /// "Clear cache to get the newest packages" - public static string ClearServerCacheToolTip { get { return T("ClearServerCacheToolTip"); } } - /// "Package Info" - public static string ViewAvailableInformation_FieldGroupLabel { get { return T("ViewAvailableInformation.FieldGroupLabel"); } } - /// "Name" - public static string ViewAvailableInformation_NameTextLabel { get { return T("ViewAvailableInformation.NameTextLabel"); } } - /// "Description" - public static string ViewAvailableInformation_DescriptionTextLabel { get { return T("ViewAvailableInformation.DescriptionTextLabel"); } } - /// "Author" - public static string ViewAvailableInformation_AuthorTextLabel { get { return T("ViewAvailableInformation.AuthorTextLabel"); } } - /// "Free Trial Info" - public static string ViewAvailableInformation_TrialInfoFieldGroupLabel { get { return T("ViewAvailableInformation.TrialInfoFieldGroupLabel"); } } - /// "Trial information" - public static string ViewAvailableInformation_TrialInformationLabel { get { return T("ViewAvailableInformation.TrialInformationLabel"); } } - /// "This is a commercial package, available for free in the trial period. When the trial period has expired functionality may be degraded, unless you choose to purchase a license." - public static string ViewAvailableInformation_TrialInformationText { get { return T("ViewAvailableInformation.TrialInformationText"); } } - /// "Free trial period (days)" - public static string ViewAvailableInformation_TrialDaysLabel { get { return T("ViewAvailableInformation.TrialDaysLabel"); } } - /// "Installation Info" - public static string ViewAvailableInformation_InstallationInfoFieldGroupLabel { get { return T("ViewAvailableInformation.InstallationInfoFieldGroupLabel"); } } - /// "Version" - public static string ViewAvailableInformation_VersionTextLabel { get { return T("ViewAvailableInformation.VersionTextLabel"); } } - /// "Technical Description" - public static string ViewAvailableInformation_TechicalDescriptionTextLabel { get { return T("ViewAvailableInformation.TechicalDescriptionTextLabel"); } } - /// "Source" - public static string ViewAvailableInformation_PackageSourceTextLabel { get { return T("ViewAvailableInformation.PackageSourceTextLabel"); } } - /// "Price (USD)" - public static string ViewAvailableInformation_PriceTextLabel { get { return T("ViewAvailableInformation.PriceTextLabel"); } } - /// "Install" - public static string ViewAvailableInformation_Toolbar_InstallLabel { get { return T("ViewAvailableInformation.Toolbar.InstallLabel"); } } - /// "Read more" - public static string ViewAvailableInformation_Toolbar_ReadMoreLabel { get { return T("ViewAvailableInformation.Toolbar.ReadMoreLabel"); } } - /// "Already Installed" - public static string ViewAvailableInformation_ShowError_MessageTitle { get { return T("ViewAvailableInformation.ShowError.MessageTitle"); } } - /// "The package is already installed, cannot install the selected package." - public static string ViewAvailableInformation_ShowError_MessageMessage { get { return T("ViewAvailableInformation.ShowError.MessageMessage"); } } - /// "Package server did not respond" - public static string ViewAvailableInformation_ShowServerError_MessageTitle { get { return T("ViewAvailableInformation.ShowServerError.MessageTitle"); } } - /// "The package server did not respond, try again or contact the system administrator" - public static string ViewAvailableInformation_ShowServerError_MessageMessage { get { return T("ViewAvailableInformation.ShowServerError.MessageMessage"); } } - /// "Package Info" - public static string ViewInstalledInformation_FieldGroupLabel { get { return T("ViewInstalledInformation.FieldGroupLabel"); } } - /// "Name" - public static string ViewInstalledInformation_NameTextLabel { get { return T("ViewInstalledInformation.NameTextLabel"); } } - /// "Installation date" - public static string ViewInstalledInformation_DateTextLabel { get { return T("ViewInstalledInformation.DateTextLabel"); } } - /// "Installed by" - public static string ViewInstalledInformation_UserTextLabel { get { return T("ViewInstalledInformation.UserTextLabel"); } } - /// "Author" - public static string ViewInstalledInformation_AuthorTextLabel { get { return T("ViewInstalledInformation.AuthorTextLabel"); } } - /// "Version" - public static string ViewInstalledInformation_VersionTextLabel { get { return T("ViewInstalledInformation.VersionTextLabel"); } } - /// "Trial info" - public static string ViewInstalledInformation_TrialInfoFieldGroupLabel { get { return T("ViewInstalledInformation.TrialInfoFieldGroupLabel"); } } - /// "Trial information" - public static string ViewInstalledInformation_TrialInformationLabel { get { return T("ViewInstalledInformation.TrialInformationLabel"); } } - /// "This is a commercial package, available for free in the trial period. When the trial period has expired functionality may be degraded, unless you choose to purchase a license." - public static string ViewInstalledInformation_TrialInformationText { get { return T("ViewInstalledInformation.TrialInformationText"); } } - /// "Trial expiration date" - public static string ViewInstalledInformation_TrialExpireLabel { get { return T("ViewInstalledInformation.TrialExpireLabel"); } } - /// "Uninstall" - public static string ViewInstalledInformation_Toolbar_UninstallLabel { get { return T("ViewInstalledInformation.Toolbar.UninstallLabel"); } } - /// "Purchase this!" - public static string ViewInstalledInformation_Toolbar_PurchaseLabel { get { return T("ViewInstalledInformation.Toolbar.PurchaseLabel"); } } - /// "Already Uninstalled" - public static string ViewInstalledInformation_ShowError_MessageTitle { get { return T("ViewInstalledInformation.ShowError.MessageTitle"); } } - /// "The package is already uninstalled, cannot uninstall the selected package." - public static string ViewInstalledInformation_ShowError_MessageMessage { get { return T("ViewInstalledInformation.ShowError.MessageMessage"); } } - /// "Install Package" - public static string InstallRemotePackage_Step1_LayoutLabel { get { return T("InstallRemotePackage.Step1.LayoutLabel"); } } - /// "This is a trial/payment package" - public static string InstallRemotePackage_Step1_HeadingTitle { get { return T("InstallRemotePackage.Step1.HeadingTitle"); } } - /// "This package is subject to payment - please examine the EULA on the next screen for details about trial period and payment terms." - public static string InstallRemotePackage_Step1_HeadingDescription { get { return T("InstallRemotePackage.Step1.HeadingDescription"); } } - /// "Install Package" - public static string InstallRemotePackage_Step2_LayoutLabel { get { return T("InstallRemotePackage.Step2.LayoutLabel"); } } - /// "License agreement" - public static string InstallRemotePackage_Step2_HeadingTitle { get { return T("InstallRemotePackage.Step2.HeadingTitle"); } } - /// "If you accept the terms of the agreement, click the check box below. You must accept the agreement to install." - public static string InstallRemotePackage_Step2_HeadingDescription { get { return T("InstallRemotePackage.Step2.HeadingDescription"); } } - /// "I accept the license agreement" - public static string InstallRemotePackage_Step2_IAcceptItemLabel { get { return T("InstallRemotePackage.Step2.IAcceptItemLabel"); } } - /// "You must accept the terms of the license agreement before you can proceed." - public static string InstallRemotePackage_Step2_AcceptMissing { get { return T("InstallRemotePackage.Step2.AcceptMissing"); } } - /// "Install Package" - public static string InstallRemotePackage_Step3_LayoutLabel { get { return T("InstallRemotePackage.Step3.LayoutLabel"); } } - /// "Download and validate package" - public static string InstallRemotePackage_Step3_HeadingTitle { get { return T("InstallRemotePackage.Step3.HeadingTitle"); } } - /// "The package will be downloaded and validated. Please note that this may take several minutes. Click Next to continue." - public static string InstallRemotePackage_Step3_HeadingDescription { get { return T("InstallRemotePackage.Step3.HeadingDescription"); } } - /// "Install Local Package" - public static string InstallRemotePackage_Step4_LayoutLabel { get { return T("InstallRemotePackage.Step4.LayoutLabel"); } } - /// "Ready to install" - public static string InstallRemotePackage_Step4_HeadingTitle { get { return T("InstallRemotePackage.Step4.HeadingTitle"); } } - /// "Ready to install the package. Please note that the installation may take several minutes. Click Next to continue." - public static string InstallRemotePackage_Step4_HeadingDescription { get { return T("InstallRemotePackage.Step4.HeadingDescription"); } } - /// "Ready to install" - public static string InstallRemotePackage_Step4_NonUninstallableHeadingTitle { get { return T("InstallRemotePackage.Step4.NonUninstallableHeadingTitle"); } } - /// "Ready to install the package. Please note that the installation may take several minutes. Also note that this package can not be uninstalled. Click Next to continue." - public static string InstallRemotePackage_Step4_NonUninstallableHeadingDescription { get { return T("InstallRemotePackage.Step4.NonUninstallableHeadingDescription"); } } - /// "Package Installed" - public static string InstallRemotePackage_Step5_LayoutLabel { get { return T("InstallRemotePackage.Step5.LayoutLabel"); } } - /// "Package installed successfully" - public static string InstallRemotePackage_Step5_HeadingTitle { get { return T("InstallRemotePackage.Step5.HeadingTitle"); } } - /// "Package installed successfully." - public static string InstallRemotePackage_Step5_HeadingDescription { get { return T("InstallRemotePackage.Step5.HeadingDescription"); } } - /// "Package installation failed" - public static string InstallRemotePackage_ShowError_LayoutLabel { get { return T("InstallRemotePackage.ShowError.LayoutLabel"); } } - /// "Package Installation Failed" - public static string InstallRemotePackage_ShowError_InfoTableCaption { get { return T("InstallRemotePackage.ShowError.InfoTableCaption"); } } - /// "Message" - public static string InstallRemotePackage_ShowError_MessageTitle { get { return T("InstallRemotePackage.ShowError.MessageTitle"); } } - /// "The package Did Not Validate" - public static string InstallRemotePackage_ShowWarning_LayoutLabel { get { return T("InstallRemotePackage.ShowWarning.LayoutLabel"); } } - /// "The package did not validate" - public static string InstallRemotePackage_ShowWarning_InfoTableCaption { get { return T("InstallRemotePackage.ShowWarning.InfoTableCaption"); } } - /// "Install Local Package" - public static string InstallLocalPackage_Step1_LayoutLabel { get { return T("InstallLocalPackage.Step1.LayoutLabel"); } } - /// "Package file" - public static string InstallLocalPackage_Step1_FileUploadLabel { get { return T("InstallLocalPackage.Step1.FileUploadLabel"); } } - /// "Browse to and select the local package file" - public static string InstallLocalPackage_Step1_FileUploadHelp { get { return T("InstallLocalPackage.Step1.FileUploadHelp"); } } - /// "Install Local Package" - public static string InstallLocalPackage_Step2_LayoutLabel { get { return T("InstallLocalPackage.Step2.LayoutLabel"); } } - /// "Ready to install" - public static string InstallLocalPackage_Step2_HeadingTitle { get { return T("InstallLocalPackage.Step2.HeadingTitle"); } } - /// "Ready to install the package. Please note that the installation may take several minutes. Click Next to continue." - public static string InstallLocalPackage_Step2_HeadingDescription { get { return T("InstallLocalPackage.Step2.HeadingDescription"); } } - /// "Package Installed" - public static string InstallLocalPackage_Step3_LayoutLabel { get { return T("InstallLocalPackage.Step3.LayoutLabel"); } } - /// "Package installed successfully" - public static string InstallLocalPackage_Step3_HeadingTitle { get { return T("InstallLocalPackage.Step3.HeadingTitle"); } } - /// "Package installed successfully." - public static string InstallLocalPackage_Step3_HeadingDescription { get { return T("InstallLocalPackage.Step3.HeadingDescription"); } } - /// "Package Installation Failed" - public static string InstallLocalPackage_ShowError_LayoutLabel { get { return T("InstallLocalPackage.ShowError.LayoutLabel"); } } - /// "Package installation failed" - public static string InstallLocalPackage_ShowError_InfoTableCaption { get { return T("InstallLocalPackage.ShowError.InfoTableCaption"); } } - /// "Message" - public static string InstallLocalPackage_ShowError_MessageTitle { get { return T("InstallLocalPackage.ShowError.MessageTitle"); } } - /// "The package Did Not Validate" - public static string InstallLocalPackage_ShowWarning_LayoutLabel { get { return T("InstallLocalPackage.ShowWarning.LayoutLabel"); } } - /// "The package did not validate" - public static string InstallLocalPackage_ShowWarning_InfoTableCaption { get { return T("InstallLocalPackage.ShowWarning.InfoTableCaption"); } } - /// "Uninstall Package" - public static string UninstallRemotePackage_Step1_LayoutLabel { get { return T("UninstallRemotePackage.Step1.LayoutLabel"); } } - /// "Ready to check uninstallation process" - public static string UninstallRemotePackage_Step1_HeadingTitle { get { return T("UninstallRemotePackage.Step1.HeadingTitle"); } } - /// "Ready to check the uninstall process of the package. Click Next to continue." - public static string UninstallRemotePackage_Step1_HeadingDescription { get { return T("UninstallRemotePackage.Step1.HeadingDescription"); } } - /// "Uninstall Package" - public static string UninstallRemotePackage_Step2_LayoutLabel { get { return T("UninstallRemotePackage.Step2.LayoutLabel"); } } - /// "Ready to uninstall" - public static string UninstallRemotePackage_Step2_HeadingTitle { get { return T("UninstallRemotePackage.Step2.HeadingTitle"); } } - /// "Ready to uninstall the package. Please note that the installation may take several minutes. Click Next to continue." - public static string UninstallRemotePackage_Step2_HeadingDescription { get { return T("UninstallRemotePackage.Step2.HeadingDescription"); } } - /// "Package Uninstalled" - public static string UninstallRemotePackage_Step3_LayoutLabel { get { return T("UninstallRemotePackage.Step3.LayoutLabel"); } } - /// "Package uninstalled successfully" - public static string UninstallRemotePackage_Step3_HeadingTitle { get { return T("UninstallRemotePackage.Step3.HeadingTitle"); } } - /// "Package uninstalled successfully." - public static string UninstallRemotePackage_Step3_HeadingDescription { get { return T("UninstallRemotePackage.Step3.HeadingDescription"); } } - /// "Package Uninstallation Failed" - public static string UninstallRemotePackage_ShowError_LayoutLabel { get { return T("UninstallRemotePackage.ShowError.LayoutLabel"); } } - /// "Package uninstallation failed" - public static string UninstallRemotePackage_ShowError_InfoTableCaption { get { return T("UninstallRemotePackage.ShowError.InfoTableCaption"); } } - /// "Message" - public static string UninstallRemotePackage_ShowError_MessageTitle { get { return T("UninstallRemotePackage.ShowError.MessageTitle"); } } - /// "Uninstall Package" - public static string UninstallRemotePackage_ShowUnregistre_LayoutLabel { get { return T("UninstallRemotePackage.ShowUnregistre.LayoutLabel"); } } - /// "Registration of uninstallation failed" - public static string UninstallRemotePackage_ShowUnregistre_HeadingTitle { get { return T("UninstallRemotePackage.ShowUnregistre.HeadingTitle"); } } - /// "The registration of uninstallation failed. Contact the package vendor for manual unregistration." - public static string UninstallRemotePackage_ShowUnregistre_HeadingDescription { get { return T("UninstallRemotePackage.ShowUnregistre.HeadingDescription"); } } - /// "Uninstall Local Package" - public static string UninstallLocalPackage_Step1_LayoutLabel { get { return T("UninstallLocalPackage.Step1.LayoutLabel"); } } - /// "Ready to check uninstallation process" - public static string UninstallLocalPackage_Step1_HeadingTitle { get { return T("UninstallLocalPackage.Step1.HeadingTitle"); } } - /// "Ready to check the uninstall process of the package. Click Next to continue." - public static string UninstallLocalPackage_Step1_HeadingDescription { get { return T("UninstallLocalPackage.Step1.HeadingDescription"); } } - /// "Uninstall Local Package" - public static string UninstallLocalPackage_Step2_LayoutLabel { get { return T("UninstallLocalPackage.Step2.LayoutLabel"); } } - /// "Ready to uninstall" - public static string UninstallLocalPackage_Step2_HeadingTitle { get { return T("UninstallLocalPackage.Step2.HeadingTitle"); } } - /// "Ready to uninstall the package. Please note that the installation may take several minutes. Click Next to continue." - public static string UninstallLocalPackage_Step2_HeadingDescription { get { return T("UninstallLocalPackage.Step2.HeadingDescription"); } } - /// "Package Uninstalled" - public static string UninstallLocalPackage_Step3_LayoutLabel { get { return T("UninstallLocalPackage.Step3.LayoutLabel"); } } - /// "Package uninstalled successfully" - public static string UninstallLocalPackage_Step3_HeadingTitle { get { return T("UninstallLocalPackage.Step3.HeadingTitle"); } } - /// "Package uninstalled successfully." - public static string UninstallLocalPackage_Step3_HeadingDescription { get { return T("UninstallLocalPackage.Step3.HeadingDescription"); } } - /// "Package Uninstallation Failed" - public static string UninstallLocalPackage_ShowError_LayoutLabel { get { return T("UninstallLocalPackage.ShowError.LayoutLabel"); } } - /// "Package uninstallation failed" - public static string UninstallLocalPackage_ShowError_InfoTableCaption { get { return T("UninstallLocalPackage.ShowError.InfoTableCaption"); } } - /// "Message" - public static string UninstallLocalPackage_ShowError_MessageTitle { get { return T("UninstallLocalPackage.ShowError.MessageTitle"); } } - /// "New Package Source" - public static string AddPackageSource_Step1_LayoutLabel { get { return T("AddPackageSource.Step1.LayoutLabel"); } } - /// "Package source data" - public static string AddPackageSource_Step1_FieldGroupLabel { get { return T("AddPackageSource.Step1.FieldGroupLabel"); } } - /// "Package web service URL" - public static string AddPackageSource_Step1_UrlLabel { get { return T("AddPackageSource.Step1.UrlLabel"); } } - /// "Packages can be hosted on remote servers. The package web service URL will be validated in the next step." - public static string AddPackageSource_Step1_UrlHelp { get { return T("AddPackageSource.Step1.UrlHelp"); } } - /// "The entered text was not a valid URL" - public static string AddPackageSource_Step1_UrlNotValid { get { return T("AddPackageSource.Step1.UrlNotValid"); } } - /// "The server is not a Composite C1 package server" - public static string AddPackageSource_Step1_UrlNonPackageServer { get { return T("AddPackageSource.Step1.UrlNonPackageServer"); } } - /// "Add Package Server Source" - public static string AddPackageSource_Step2_LayoutLabel { get { return T("AddPackageSource.Step2.LayoutLabel"); } } - /// "Server URL is valid" - public static string AddPackageSource_Step2_HeadingTitle { get { return T("AddPackageSource.Step2.HeadingTitle"); } } - /// "Note that the HTTP protocol is used on this connection. This implies that all information will be send unencrypted. Click Finish to add the source." - public static string AddPackageSource_Step2_HeadingNoHttpsDescription { get { return T("AddPackageSource.Step2.HeadingNoHttpsDescription"); } } - /// "Click Finish to add the source." - public static string AddPackageSource_Step2_HeadingWithHttpsDescription { get { return T("AddPackageSource.Step2.HeadingWithHttpsDescription"); } } - /// "Delete Confirmation" - public static string DeletePackageSource_Step1_LayoutLabel { get { return T("DeletePackageSource.Step1.LayoutLabel"); } } - /// "Delete the selected server source" - public static string DeletePackageSource_Step1_Text { get { return T("DeletePackageSource.Step1.Text"); } } - /// "Trial Period Has Expired" - public static string ConfirmLicense_ExpiredTitle { get { return T("ConfirmLicense.ExpiredTitle"); } } - /// "The trial period of the package has expired. You need to obtain a valid license." - public static string ConfirmLicense_ExpiredMessage { get { return T("ConfirmLicense.ExpiredMessage"); } } +///"Packages" +public static string RootFolderLabel=>T("RootFolderLabel"); +///"Explore and manage installed packages" +public static string RootFolderToolTip=>T("RootFolderToolTip"); +///"Available Packages" +public static string AvailablePackagesFolderLabel=>T("AvailablePackagesFolderLabel"); +///"Available packages" +public static string AvailablePackagesFolderToolTip=>T("AvailablePackagesFolderToolTip"); +///"Installed Packages" +public static string InstalledPackageFolderLabel=>T("InstalledPackageFolderLabel"); +///"Installed packages" +public static string InstalledPackageFolderToolTip=>T("InstalledPackageFolderToolTip"); +///"Local Packages" +public static string LocalPackagesFolderLabel=>T("LocalPackagesFolderLabel"); +///"Local packages" +public static string LocalPackagesFolderToolTip=>T("LocalPackagesFolderToolTip"); +///"Package Sources" +public static string PackageSourcesFolderLabel=>T("PackageSourcesFolderLabel"); +///"Package sources" +public static string PackageSourcesFolderToolTip=>T("PackageSourcesFolderToolTip"); +///"Package Info" +public static string ViewAvailableInformationLabel=>T("ViewAvailableInformationLabel"); +///"View package information" +public static string ViewAvailableInformationToolTip=>T("ViewAvailableInformationToolTip"); +///"Install" +public static string InstallLabel=>T("InstallLabel"); +///"Install this C1 Package on your system" +public static string InstallToolTip=>T("InstallToolTip"); +///"Package Info" +public static string ViewInstalledInformationLabel=>T("ViewInstalledInformationLabel"); +///"View package information" +public static string ViewInstalledInformationToolTip=>T("ViewInstalledInformationToolTip"); +///"Install Local Package..." +public static string InstallLocalPackageLabel=>T("InstallLocalPackageLabel"); +///"Install package from local file system" +public static string InstallLocalPackageToolTip=>T("InstallLocalPackageToolTip"); +///"Add Package Source" +public static string AddPackageSourceLabel=>T("AddPackageSourceLabel"); +///"Add package source" +public static string AddPackageSourceToolTip=>T("AddPackageSourceToolTip"); +///"Delete Package Source" +public static string DeletePackageSourceLabel=>T("DeletePackageSourceLabel"); +///"Delete package source" +public static string DeletePackageSourceToolTip=>T("DeletePackageSourceToolTip"); +///"Clear Cache" +public static string ClearServerCacheLabel=>T("ClearServerCacheLabel"); +///"Clear cache to get the newest packages" +public static string ClearServerCacheToolTip=>T("ClearServerCacheToolTip"); +///"Package Info" +public static string ViewAvailableInformation_FieldGroupLabel=>T("ViewAvailableInformation.FieldGroupLabel"); +///"Name" +public static string ViewAvailableInformation_NameTextLabel=>T("ViewAvailableInformation.NameTextLabel"); +///"Description" +public static string ViewAvailableInformation_DescriptionTextLabel=>T("ViewAvailableInformation.DescriptionTextLabel"); +///"Author" +public static string ViewAvailableInformation_AuthorTextLabel=>T("ViewAvailableInformation.AuthorTextLabel"); +///"Free Trial Info" +public static string ViewAvailableInformation_TrialInfoFieldGroupLabel=>T("ViewAvailableInformation.TrialInfoFieldGroupLabel"); +///"Trial information" +public static string ViewAvailableInformation_TrialInformationLabel=>T("ViewAvailableInformation.TrialInformationLabel"); +///"This is a commercial package, available for free in the trial period. When the trial period has expired functionality may be degraded, unless you choose to purchase a license." +public static string ViewAvailableInformation_TrialInformationText=>T("ViewAvailableInformation.TrialInformationText"); +///"Free trial period (days)" +public static string ViewAvailableInformation_TrialDaysLabel=>T("ViewAvailableInformation.TrialDaysLabel"); +///"Installation Info" +public static string ViewAvailableInformation_InstallationInfoFieldGroupLabel=>T("ViewAvailableInformation.InstallationInfoFieldGroupLabel"); +///"Version" +public static string ViewAvailableInformation_VersionTextLabel=>T("ViewAvailableInformation.VersionTextLabel"); +///"Technical Description" +public static string ViewAvailableInformation_TechicalDescriptionTextLabel=>T("ViewAvailableInformation.TechicalDescriptionTextLabel"); +///"Source" +public static string ViewAvailableInformation_PackageSourceTextLabel=>T("ViewAvailableInformation.PackageSourceTextLabel"); +///"Price" +public static string ViewAvailableInformation_PriceTextLabel=>T("ViewAvailableInformation.PriceTextLabel"); +///"Subscriptions that include this package" +public static string ViewAvailableInformation_SubscriptionListLabel=>T("ViewAvailableInformation.SubscriptionListLabel"); +///"Install" +public static string ViewAvailableInformation_Toolbar_InstallLabel=>T("ViewAvailableInformation.Toolbar.InstallLabel"); +///"Read more" +public static string ViewAvailableInformation_Toolbar_ReadMoreLabel=>T("ViewAvailableInformation.Toolbar.ReadMoreLabel"); +///"Already Installed" +public static string ViewAvailableInformation_ShowError_MessageTitle=>T("ViewAvailableInformation.ShowError.MessageTitle"); +///"The package is already installed, cannot install the selected package." +public static string ViewAvailableInformation_ShowError_MessageMessage=>T("ViewAvailableInformation.ShowError.MessageMessage"); +///"Package server did not respond" +public static string ViewAvailableInformation_ShowServerError_MessageTitle=>T("ViewAvailableInformation.ShowServerError.MessageTitle"); +///"The package server did not respond, try again or contact the system administrator" +public static string ViewAvailableInformation_ShowServerError_MessageMessage=>T("ViewAvailableInformation.ShowServerError.MessageMessage"); +///"Package Info" +public static string ViewInstalledInformation_FieldGroupLabel=>T("ViewInstalledInformation.FieldGroupLabel"); +///"Name" +public static string ViewInstalledInformation_NameTextLabel=>T("ViewInstalledInformation.NameTextLabel"); +///"Installation date" +public static string ViewInstalledInformation_DateTextLabel=>T("ViewInstalledInformation.DateTextLabel"); +///"Installed by" +public static string ViewInstalledInformation_UserTextLabel=>T("ViewInstalledInformation.UserTextLabel"); +///"Author" +public static string ViewInstalledInformation_AuthorTextLabel=>T("ViewInstalledInformation.AuthorTextLabel"); +///"Version" +public static string ViewInstalledInformation_VersionTextLabel=>T("ViewInstalledInformation.VersionTextLabel"); +///"Trial info" +public static string ViewInstalledInformation_TrialInfoFieldGroupLabel=>T("ViewInstalledInformation.TrialInfoFieldGroupLabel"); +///"Trial information" +public static string ViewInstalledInformation_TrialInformationLabel=>T("ViewInstalledInformation.TrialInformationLabel"); +///"This is a commercial package, available for free in the trial period. When the trial period has expired functionality may be degraded, unless you choose to purchase a license." +public static string ViewInstalledInformation_TrialInformationText=>T("ViewInstalledInformation.TrialInformationText"); +///"Trial expiration date" +public static string ViewInstalledInformation_TrialExpireLabel=>T("ViewInstalledInformation.TrialExpireLabel"); +///"Uninstall" +public static string ViewInstalledInformation_Toolbar_UninstallLabel=>T("ViewInstalledInformation.Toolbar.UninstallLabel"); +///"Purchase this!" +public static string ViewInstalledInformation_Toolbar_PurchaseLabel=>T("ViewInstalledInformation.Toolbar.PurchaseLabel"); +///"Already Uninstalled" +public static string ViewInstalledInformation_ShowError_MessageTitle=>T("ViewInstalledInformation.ShowError.MessageTitle"); +///"The package is already uninstalled, cannot uninstall the selected package." +public static string ViewInstalledInformation_ShowError_MessageMessage=>T("ViewInstalledInformation.ShowError.MessageMessage"); +///"Install Package" +public static string InstallRemotePackage_Step1_LayoutLabel=>T("InstallRemotePackage.Step1.LayoutLabel"); +///"This is a trial/payment package" +public static string InstallRemotePackage_Step1_HeadingTitle=>T("InstallRemotePackage.Step1.HeadingTitle"); +///"This package is subject to payment - please examine the EULA on the next screen for details about trial period and payment terms." +public static string InstallRemotePackage_Step1_HeadingDescription=>T("InstallRemotePackage.Step1.HeadingDescription"); +///"Install Package" +public static string InstallRemotePackage_Step2_LayoutLabel=>T("InstallRemotePackage.Step2.LayoutLabel"); +///"License agreement" +public static string InstallRemotePackage_Step2_HeadingTitle=>T("InstallRemotePackage.Step2.HeadingTitle"); +///"If you accept the terms of the agreement, click the check box below. You must accept the agreement to install." +public static string InstallRemotePackage_Step2_HeadingDescription=>T("InstallRemotePackage.Step2.HeadingDescription"); +///"I accept the license agreement" +public static string InstallRemotePackage_Step2_IAcceptItemLabel=>T("InstallRemotePackage.Step2.IAcceptItemLabel"); +///"You must accept the terms of the license agreement before you can proceed." +public static string InstallRemotePackage_Step2_AcceptMissing=>T("InstallRemotePackage.Step2.AcceptMissing"); +///"Install Package" +public static string InstallRemotePackage_Step3_LayoutLabel=>T("InstallRemotePackage.Step3.LayoutLabel"); +///"Download and validate package" +public static string InstallRemotePackage_Step3_HeadingTitle=>T("InstallRemotePackage.Step3.HeadingTitle"); +///"The package will be downloaded and validated. Please note that this may take several minutes. Click Next to continue." +public static string InstallRemotePackage_Step3_HeadingDescription=>T("InstallRemotePackage.Step3.HeadingDescription"); +///"Install Local Package" +public static string InstallRemotePackage_Step4_LayoutLabel=>T("InstallRemotePackage.Step4.LayoutLabel"); +///"Ready to install" +public static string InstallRemotePackage_Step4_HeadingTitle=>T("InstallRemotePackage.Step4.HeadingTitle"); +///"Ready to install the package. Please note that the installation may take several minutes. Click Next to continue." +public static string InstallRemotePackage_Step4_HeadingDescription=>T("InstallRemotePackage.Step4.HeadingDescription"); +///"Ready to install" +public static string InstallRemotePackage_Step4_NonUninstallableHeadingTitle=>T("InstallRemotePackage.Step4.NonUninstallableHeadingTitle"); +///"Ready to install the package. Please note that the installation may take several minutes. Also note that this package can not be uninstalled. Click Next to continue." +public static string InstallRemotePackage_Step4_NonUninstallableHeadingDescription=>T("InstallRemotePackage.Step4.NonUninstallableHeadingDescription"); +///"Package Installed" +public static string InstallRemotePackage_Step5_LayoutLabel=>T("InstallRemotePackage.Step5.LayoutLabel"); +///"Package installed successfully" +public static string InstallRemotePackage_Step5_HeadingTitle=>T("InstallRemotePackage.Step5.HeadingTitle"); +///"Package installed successfully." +public static string InstallRemotePackage_Step5_HeadingDescription=>T("InstallRemotePackage.Step5.HeadingDescription"); +///"Package installation failed" +public static string InstallRemotePackage_ShowError_LayoutLabel=>T("InstallRemotePackage.ShowError.LayoutLabel"); +///"Package Installation Failed" +public static string InstallRemotePackage_ShowError_InfoTableCaption=>T("InstallRemotePackage.ShowError.InfoTableCaption"); +///"Message" +public static string InstallRemotePackage_ShowError_MessageTitle=>T("InstallRemotePackage.ShowError.MessageTitle"); +///"The package Did Not Validate" +public static string InstallRemotePackage_ShowWarning_LayoutLabel=>T("InstallRemotePackage.ShowWarning.LayoutLabel"); +///"The package did not validate" +public static string InstallRemotePackage_ShowWarning_InfoTableCaption=>T("InstallRemotePackage.ShowWarning.InfoTableCaption"); +///"Install Local Package" +public static string InstallLocalPackage_Step1_LayoutLabel=>T("InstallLocalPackage.Step1.LayoutLabel"); +///"Package file" +public static string InstallLocalPackage_Step1_FileUploadLabel=>T("InstallLocalPackage.Step1.FileUploadLabel"); +///"Browse to and select the local package file" +public static string InstallLocalPackage_Step1_FileUploadHelp=>T("InstallLocalPackage.Step1.FileUploadHelp"); +///"Install Local Package" +public static string InstallLocalPackage_Step2_LayoutLabel=>T("InstallLocalPackage.Step2.LayoutLabel"); +///"Ready to install" +public static string InstallLocalPackage_Step2_HeadingTitle=>T("InstallLocalPackage.Step2.HeadingTitle"); +///"Ready to install the package. Please note that the installation may take several minutes. Click Next to continue." +public static string InstallLocalPackage_Step2_HeadingDescription=>T("InstallLocalPackage.Step2.HeadingDescription"); +///"Package Installed" +public static string InstallLocalPackage_Step3_LayoutLabel=>T("InstallLocalPackage.Step3.LayoutLabel"); +///"Package installed successfully" +public static string InstallLocalPackage_Step3_HeadingTitle=>T("InstallLocalPackage.Step3.HeadingTitle"); +///"Package installed successfully." +public static string InstallLocalPackage_Step3_HeadingDescription=>T("InstallLocalPackage.Step3.HeadingDescription"); +///"Package Installation Failed" +public static string InstallLocalPackage_ShowError_LayoutLabel=>T("InstallLocalPackage.ShowError.LayoutLabel"); +///"Package installation failed" +public static string InstallLocalPackage_ShowError_InfoTableCaption=>T("InstallLocalPackage.ShowError.InfoTableCaption"); +///"Message" +public static string InstallLocalPackage_ShowError_MessageTitle=>T("InstallLocalPackage.ShowError.MessageTitle"); +///"The package Did Not Validate" +public static string InstallLocalPackage_ShowWarning_LayoutLabel=>T("InstallLocalPackage.ShowWarning.LayoutLabel"); +///"The package did not validate" +public static string InstallLocalPackage_ShowWarning_InfoTableCaption=>T("InstallLocalPackage.ShowWarning.InfoTableCaption"); +///"Uninstall Package" +public static string UninstallRemotePackage_Step1_LayoutLabel=>T("UninstallRemotePackage.Step1.LayoutLabel"); +///"Ready to check uninstallation process" +public static string UninstallRemotePackage_Step1_HeadingTitle=>T("UninstallRemotePackage.Step1.HeadingTitle"); +///"Ready to check the uninstall process of the package. Click Next to continue." +public static string UninstallRemotePackage_Step1_HeadingDescription=>T("UninstallRemotePackage.Step1.HeadingDescription"); +///"Uninstall Package" +public static string UninstallRemotePackage_Step2_LayoutLabel=>T("UninstallRemotePackage.Step2.LayoutLabel"); +///"Ready to uninstall" +public static string UninstallRemotePackage_Step2_HeadingTitle=>T("UninstallRemotePackage.Step2.HeadingTitle"); +///"Ready to uninstall the package. Please note that the installation may take several minutes. Click Next to continue." +public static string UninstallRemotePackage_Step2_HeadingDescription=>T("UninstallRemotePackage.Step2.HeadingDescription"); +///"Package Uninstalled" +public static string UninstallRemotePackage_Step3_LayoutLabel=>T("UninstallRemotePackage.Step3.LayoutLabel"); +///"Package uninstalled successfully" +public static string UninstallRemotePackage_Step3_HeadingTitle=>T("UninstallRemotePackage.Step3.HeadingTitle"); +///"Package uninstalled successfully." +public static string UninstallRemotePackage_Step3_HeadingDescription=>T("UninstallRemotePackage.Step3.HeadingDescription"); +///"Package Uninstallation Failed" +public static string UninstallRemotePackage_ShowError_LayoutLabel=>T("UninstallRemotePackage.ShowError.LayoutLabel"); +///"Package uninstallation failed" +public static string UninstallRemotePackage_ShowError_InfoTableCaption=>T("UninstallRemotePackage.ShowError.InfoTableCaption"); +///"Message" +public static string UninstallRemotePackage_ShowError_MessageTitle=>T("UninstallRemotePackage.ShowError.MessageTitle"); +///"Uninstall Package" +public static string UninstallRemotePackage_ShowUnregistre_LayoutLabel=>T("UninstallRemotePackage.ShowUnregistre.LayoutLabel"); +///"Registration of uninstallation failed" +public static string UninstallRemotePackage_ShowUnregistre_HeadingTitle=>T("UninstallRemotePackage.ShowUnregistre.HeadingTitle"); +///"The registration of uninstallation failed. Contact the package vendor for manual unregistration." +public static string UninstallRemotePackage_ShowUnregistre_HeadingDescription=>T("UninstallRemotePackage.ShowUnregistre.HeadingDescription"); +///"Uninstall Local Package" +public static string UninstallLocalPackage_Step1_LayoutLabel=>T("UninstallLocalPackage.Step1.LayoutLabel"); +///"Ready to check uninstallation process" +public static string UninstallLocalPackage_Step1_HeadingTitle=>T("UninstallLocalPackage.Step1.HeadingTitle"); +///"Ready to check the uninstall process of the package. Click Next to continue." +public static string UninstallLocalPackage_Step1_HeadingDescription=>T("UninstallLocalPackage.Step1.HeadingDescription"); +///"Uninstall Local Package" +public static string UninstallLocalPackage_Step2_LayoutLabel=>T("UninstallLocalPackage.Step2.LayoutLabel"); +///"Ready to uninstall" +public static string UninstallLocalPackage_Step2_HeadingTitle=>T("UninstallLocalPackage.Step2.HeadingTitle"); +///"Ready to uninstall the package. Please note that the installation may take several minutes. Click Next to continue." +public static string UninstallLocalPackage_Step2_HeadingDescription=>T("UninstallLocalPackage.Step2.HeadingDescription"); +///"Package Uninstalled" +public static string UninstallLocalPackage_Step3_LayoutLabel=>T("UninstallLocalPackage.Step3.LayoutLabel"); +///"Package uninstalled successfully" +public static string UninstallLocalPackage_Step3_HeadingTitle=>T("UninstallLocalPackage.Step3.HeadingTitle"); +///"Package uninstalled successfully." +public static string UninstallLocalPackage_Step3_HeadingDescription=>T("UninstallLocalPackage.Step3.HeadingDescription"); +///"Package Uninstallation Failed" +public static string UninstallLocalPackage_ShowError_LayoutLabel=>T("UninstallLocalPackage.ShowError.LayoutLabel"); +///"Package uninstallation failed" +public static string UninstallLocalPackage_ShowError_InfoTableCaption=>T("UninstallLocalPackage.ShowError.InfoTableCaption"); +///"Message" +public static string UninstallLocalPackage_ShowError_MessageTitle=>T("UninstallLocalPackage.ShowError.MessageTitle"); +///"New Package Source" +public static string AddPackageSource_Step1_LayoutLabel=>T("AddPackageSource.Step1.LayoutLabel"); +///"Package source data" +public static string AddPackageSource_Step1_FieldGroupLabel=>T("AddPackageSource.Step1.FieldGroupLabel"); +///"Package web service URL" +public static string AddPackageSource_Step1_UrlLabel=>T("AddPackageSource.Step1.UrlLabel"); +///"Packages can be hosted on remote servers. The package web service URL will be validated in the next step." +public static string AddPackageSource_Step1_UrlHelp=>T("AddPackageSource.Step1.UrlHelp"); +///"The entered text was not a valid URL" +public static string AddPackageSource_Step1_UrlNotValid=>T("AddPackageSource.Step1.UrlNotValid"); +///"The server is not a Composite C1 package server" +public static string AddPackageSource_Step1_UrlNonPackageServer=>T("AddPackageSource.Step1.UrlNonPackageServer"); +///"Add Package Server Source" +public static string AddPackageSource_Step2_LayoutLabel=>T("AddPackageSource.Step2.LayoutLabel"); +///"Server URL is valid" +public static string AddPackageSource_Step2_HeadingTitle=>T("AddPackageSource.Step2.HeadingTitle"); +///"Note that the HTTP protocol is used on this connection. This implies that all information will be send unencrypted. Click Finish to add the source." +public static string AddPackageSource_Step2_HeadingNoHttpsDescription=>T("AddPackageSource.Step2.HeadingNoHttpsDescription"); +///"Click Finish to add the source." +public static string AddPackageSource_Step2_HeadingWithHttpsDescription=>T("AddPackageSource.Step2.HeadingWithHttpsDescription"); +///"Delete Confirmation" +public static string DeletePackageSource_Step1_LayoutLabel=>T("DeletePackageSource.Step1.LayoutLabel"); +///"Delete the selected server source" +public static string DeletePackageSource_Step1_Text=>T("DeletePackageSource.Step1.Text"); +///"Trial Period Has Expired" +public static string ConfirmLicense_ExpiredTitle=>T("ConfirmLicense.ExpiredTitle"); +///"The trial period of the package has expired. You need to obtain a valid license." +public static string ConfirmLicense_ExpiredMessage=>T("ConfirmLicense.ExpiredMessage"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.PackageElementProvider", key); @@ -3417,220 +3443,248 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_PageElementProvider { - /// "Add New Page" - public static string AddNewPageStep1_DialogLabel { get { return T("AddNewPageStep1.DialogLabel"); } } - /// "General settings" - public static string GeneralSettings_FieldGroupLabel { get { return T("GeneralSettings.FieldGroupLabel"); } } - /// "Publication settings" - public static string PublicationSettings_FieldGroupLabel { get { return T("PublicationSettings.FieldGroupLabel"); } } - /// "Advanced settings" - public static string AdvancedSettings_FieldGroupLabel { get { return T("AdvancedSettings.FieldGroupLabel"); } } - /// "Page title" - public static string AddNewPageStep1_LabelTitle { get { return T("AddNewPageStep1.LabelTitle"); } } - /// "The entry specified in this field is shown in the browser window title bar. The field is used by search engines and sitemaps" - public static string AddNewPageStep1_LabelTitleHelp { get { return T("AddNewPageStep1.LabelTitleHelp"); } } - /// "Description" - public static string AddNewPageStep1_LabelAbstract { get { return T("AddNewPageStep1.LabelAbstract"); } } - /// "Use this field for at short description of the page" - public static string AddNewPageStep1_LabelAbstractHelp { get { return T("AddNewPageStep1.LabelAbstractHelp"); } } - /// "Page type" - public static string AddNewPageStep1_LabelTemplate { get { return T("AddNewPageStep1.LabelTemplate"); } } - /// "The page type selection influences the behavior and features of your page, like 'a normal page' or 'a blog'. The options available depend on features installed." - public static string AddNewPageStep1_HelpTemplate { get { return T("AddNewPageStep1.HelpTemplate"); } } - /// "Position" - public static string AddNewPageStep1_LabelPosition { get { return T("AddNewPageStep1.LabelPosition"); } } - /// "Select where in the content tree you want the page to be placed." - public static string AddNewPageStep1_HelpPosition { get { return T("AddNewPageStep1.HelpPosition"); } } - /// "Insert at the top" - public static string AddNewPageStep1_LabelAddToTop { get { return T("AddNewPageStep1.LabelAddToTop"); } } - /// "Insert at the bottom" - public static string AddNewPageStep1_LabelAddToBottom { get { return T("AddNewPageStep1.LabelAddToBottom"); } } - /// "Insert alphabetically" - public static string AddNewPageStep1_LabelAddAlphabetic { get { return T("AddNewPageStep1.LabelAddAlphabetic"); } } - /// "Select position..." - public static string AddNewPageStep1_LabelAddBelowOtherPage { get { return T("AddNewPageStep1.LabelAddBelowOtherPage"); } } - /// "URL title" - public static string AddNewPageStep2_LabelUrlTitle { get { return T("AddNewPageStep2.LabelUrlTitle"); } } - /// "The entry specified in this field is shown in the browser address bar. The field is used by search engines" - public static string AddNewPageStep2_HelpUrlTitle { get { return T("AddNewPageStep2.HelpUrlTitle"); } } - /// "Menu title" - public static string AddNewPageStep2_LabelMenuTitle { get { return T("AddNewPageStep2.LabelMenuTitle"); } } - /// "The entry specified in this field can be used in the navigation on the website" - public static string AddNewPageStep2_HelpMenuTitle { get { return T("AddNewPageStep2.HelpMenuTitle"); } } - /// "Select detailed page position" - public static string AddNewPageStep2_LabelPositionSelectorPanel { get { return T("AddNewPageStep2.LabelPositionSelectorPanel"); } } - /// "Position below" - public static string AddNewPageStep2_LabelPositionSelector { get { return T("AddNewPageStep2.LabelPositionSelector"); } } - /// "" - public static string AddNewPageStep2_HelpPositionSelector { get { return T("AddNewPageStep2.HelpPositionSelector"); } } - /// "The specified title is too long. Make it shorter and try again" - public static string AddNewPageStep1_TitleTooLong { get { return T("AddNewPageStep1.TitleTooLong"); } } - /// "The specified menu title is too long. Make it shorter and try again" - public static string AddNewPageStep1_MenuTitleTooLong { get { return T("AddNewPageStep1.MenuTitleTooLong"); } } - /// "Settings" - public static string EditPage_LabelPaneSettings { get { return T("EditPage.LabelPaneSettings"); } } - /// "Status" - public static string EditPage_LabelPublicationState { get { return T("EditPage.LabelPublicationState"); } } - /// "Send the page to another status" - public static string EditPage_HelpPublicationState { get { return T("EditPage.HelpPublicationState"); } } - /// "Page title" - public static string EditPage_LabelPageTitle { get { return T("EditPage.LabelPageTitle"); } } - /// "The entry specified in this field is shown in the browser window title bar. The field is used by search engines and sitemaps" - public static string EditPage_LabelPageTitleHelp { get { return T("EditPage.LabelPageTitleHelp"); } } - /// "Menu title" - public static string EditPage_LabelMenuTitle { get { return T("EditPage.LabelMenuTitle"); } } - /// "The entry specified in this field can be used in the navigation on the website" - public static string EditPage_HelpMenuTitle { get { return T("EditPage.HelpMenuTitle"); } } - /// "URL title" - public static string EditPage_LabelUrlTitle { get { return T("EditPage.LabelUrlTitle"); } } - /// "URL title was rewritten" - public static string EditPage_UrlTitleFormattedTitle { get { return T("EditPage.UrlTitleFormattedTitle"); } } - /// "According to the current URL replacement rules, URL title was changed to '{0}'" - public static string EditPage_UrlTitleFormattedMessage(object parameter0) { return string.Format(T("EditPage.UrlTitleFormattedMessage"), parameter0); } - /// "The entry specified in this field is shown in the browser address bar as a part of the URL address. The field is used by search engines" - public static string EditPage_HelpUrlTitle { get { return T("EditPage.HelpUrlTitle"); } } - /// "Friendly URL" - public static string EditPage_LabelFriendlyUrl { get { return T("EditPage.LabelFriendlyUrl"); } } - /// "The entry specified in this field is a shorter version of the actual page URL and redirects to it, when entered in the browser address bar. Note that some servers may have to be configured to support this feature." - public static string EditPage_HelpFriendlyUrl { get { return T("EditPage.HelpFriendlyUrl"); } } - /// "Description" - public static string EditPage_LabelAbstract { get { return T("EditPage.LabelAbstract"); } } - /// "Use this field for a short description of the page" - public static string EditPage_LabelAbstractHelp { get { return T("EditPage.LabelAbstractHelp"); } } - /// "Publish date" - public static string EditPage_LabelPublishDate { get { return T("EditPage.LabelPublishDate"); } } - /// "Specify at which date and time you want the page to be published automatically." - public static string EditPage_HelpPublishDate { get { return T("EditPage.HelpPublishDate"); } } - /// "Unpublish date" - public static string EditPage_LabelUnpublishDate { get { return T("EditPage.LabelUnpublishDate"); } } - /// "Specify at which date and time you want the page to be unpublished automatically." - public static string EditPage_HelpUnpublishDate { get { return T("EditPage.HelpUnpublishDate"); } } - /// "Content" - public static string EditPage_LabelContent { get { return T("EditPage.LabelContent"); } } - /// "Preview" - public static string EditPage_LabelPreview { get { return T("EditPage.LabelPreview"); } } - /// "Page type" - public static string EditPage_PageTypeSelectorLabel { get { return T("EditPage.PageTypeSelectorLabel"); } } - /// "The page type selection defines the role of the page, like 'a normal page' or 'a blog'. The options available depend on features installed." - public static string EditPage_PageTypeSelectorHelp { get { return T("EditPage.PageTypeSelectorHelp"); } } - /// "{0} characters maximum" - public static string EditPage_MaxLength(object parameter0) { return string.Format(T("EditPage.MaxLength"), parameter0); } - /// "Delete page?" - public static string DeletePage_LabelFieldGroup { get { return T("DeletePage.LabelFieldGroup"); } } - /// "Delete page and all subpages" - public static string DeletePageStep1_Title { get { return T("DeletePageStep1.Title"); } } - /// "All subpages will also be deleted. Continue?" - public static string DeletePageStep1_Description { get { return T("DeletePageStep1.Description"); } } - /// "Delete page '{0}'?" - public static string DeletePageStep2_Text(object parameter0) { return string.Format(T("DeletePageStep2.Text"), parameter0); } - /// "Another page is using the specified URL title. URL titles must be unique among pages with the same parent." - public static string UrlTitleNotUniqueError { get { return T("UrlTitleNotUniqueError"); } } - /// "The specified URL title contains invalid characters. Since this field is used to build the web address for the page, certain special characters (like question mark, slash and dot) are not allowed. You can use letters, digits and dash." - public static string UrlTitleNotValidError { get { return T("UrlTitleNotValidError"); } } - /// "The specified URL title is too long. Make it shorter and try again" - public static string UrlTitleTooLong { get { return T("UrlTitleTooLong"); } } - /// "Another page is using the specified Friendly URL. Friendly URL's must be unique." - public static string FriendlyUrlNotUniqueError { get { return T("FriendlyUrlNotUniqueError"); } } - /// "The title can not be empty." - public static string TitleMissingError { get { return T("TitleMissingError"); } } - /// "Page not saved" - public static string PageSaveValidationFailedTitle { get { return T("PageSaveValidationFailedTitle"); } } - /// "The page did not validate and has not been saved. Please examine field messages." - public static string PageSaveValidationFailedMessage { get { return T("PageSaveValidationFailedMessage"); } } - /// "Websites" - public static string PageElementProvider_RootLabel { get { return T("PageElementProvider.RootLabel"); } } - /// "Websites" - public static string PageElementProvider_RootLabelToolTip { get { return T("PageElementProvider.RootLabelToolTip"); } } - /// "Add Website..." - public static string PageElementProvider_AddPageAtRoot { get { return T("PageElementProvider.AddPageAtRoot"); } } - /// "Add new homepage" - public static string PageElementProvider_AddPageAtRootToolTip { get { return T("PageElementProvider.AddPageAtRootToolTip"); } } - /// "List Unpublished Pages" - public static string PageElementProvider_ViewUnpublishedItems { get { return T("PageElementProvider.ViewUnpublishedItems"); } } - /// "Get an overview of pages and page folder data that haven't been published yet." - public static string PageElementProvider_ViewUnpublishedItemsToolTip { get { return T("PageElementProvider.ViewUnpublishedItemsToolTip"); } } - /// "Unpublished content" - public static string PageElementProvider_ViewUnpublishedItems_document_title { get { return T("PageElementProvider.ViewUnpublishedItems-document-title"); } } - /// "The list below displays pages and page data which are currently being edited or are ready to be approved / published." - public static string PageElementProvider_ViewUnpublishedItems_document_description { get { return T("PageElementProvider.ViewUnpublishedItems-document-description"); } } - /// "Edit Page" - public static string PageElementProvider_EditPage { get { return T("PageElementProvider.EditPage"); } } - /// "Edit selected page" - public static string PageElementProvider_EditPageToolTip { get { return T("PageElementProvider.EditPageToolTip"); } } - /// "Delete" - public static string PageElementProvider_Delete { get { return T("PageElementProvider.Delete"); } } - /// "Delete the selected page" - public static string PageElementProvider_DeleteToolTip { get { return T("PageElementProvider.DeleteToolTip"); } } - /// "Translate Page" - public static string PageElementProvider_LocalizePage { get { return T("PageElementProvider.LocalizePage"); } } - /// "Translate selected page" - public static string PageElementProvider_LocalizePageToolTip { get { return T("PageElementProvider.LocalizePageToolTip"); } } - /// "Add Page..." - public static string PageElementProvider_AddSubPage { get { return T("PageElementProvider.AddSubPage"); } } - /// "Add new page below the selected" - public static string PageElementProvider_AddSubPageToolTip { get { return T("PageElementProvider.AddSubPageToolTip"); } } - /// "Show page local orderings" - public static string PageElementProvider_DisplayLocalOrderingLabel { get { return T("PageElementProvider.DisplayLocalOrderingLabel"); } } - /// "Show page local orderings" - public static string PageElementProvider_DisplayLocalOrderingToolTip { get { return T("PageElementProvider.DisplayLocalOrderingToolTip"); } } - /// "Not yet approved or published" - public static string PageElementProvider_DisabledPage { get { return T("PageElementProvider.DisabledPage"); } } - /// "Website Template required" - public static string PageElementProvider_MissingTemplateTitle { get { return T("PageElementProvider.MissingTemplateTitle"); } } - /// "You should create a 'Page Template' first. Go to the 'Layout' perspective and create one." - public static string PageElementProvider_MissingTemplateMessage { get { return T("PageElementProvider.MissingTemplateMessage"); } } - /// "Language required" - public static string PageElementProvider_MissingActiveLanguageTitle { get { return T("PageElementProvider.MissingActiveLanguageTitle"); } } - /// "To add a page, you should firstly add at least one language. It can be done in the 'System' perspective." - public static string PageElementProvider_MissingActiveLanguageMessage { get { return T("PageElementProvider.MissingActiveLanguageMessage"); } } - /// "No page type available" - public static string PageElementProvider_NoPageTypesAvailableTitle { get { return T("PageElementProvider.NoPageTypesAvailableTitle"); } } - /// "You should create a 'Page Type' first. Go to the 'Layout' perspective and create one." - public static string PageElementProvider_NoPageTypesAvailableMessage { get { return T("PageElementProvider.NoPageTypesAvailableMessage"); } } - /// "Page type required" - public static string PageElementProvider_MissingPageTypeTitle { get { return T("PageElementProvider.MissingPageTypeTitle"); } } - /// "To create a homepage, a page type without the "only subpages" restriction is required, but none have been added yet. You can add one under the Layout perspective." - public static string PageElementProvider_MissingPageTypeHomepageMessage { get { return T("PageElementProvider.MissingPageTypeHomepageMessage"); } } - /// "To create a subpage, a page type without the the only homepages restriction is required, but none have been added yet. You can add one under the Layout perspective." - public static string PageElementProvider_MissingPageTypeSubpageMessage { get { return T("PageElementProvider.MissingPageTypeSubpageMessage"); } } - /// "Unable to add a page!" - public static string PageElementProvider_RuleDontAllowPageAddTitle { get { return T("PageElementProvider.RuleDontAllowPageAddTitle"); } } - /// "The rules that define availability for Page Types prohibit adding a page here." - public static string PageElementProvider_RuleDontAllowPageAddMessage { get { return T("PageElementProvider.RuleDontAllowPageAddMessage"); } } - /// "Manage host name" - public static string ManageHostNames_Add_DialogLabel { get { return T("ManageHostNames.Add.DialogLabel"); } } - /// "Add host name association to page" - public static string ManageHostNames_Add_HeadingTitle { get { return T("ManageHostNames.Add.HeadingTitle"); } } - /// "You can associate a host name (or a domain name) to a page by specifying it in the field below. Please note that the DNS settings for the specified host name must also be configured, which is done outside this system." - public static string ManageHostNames_Add_HeadingDescription { get { return T("ManageHostNames.Add.HeadingDescription"); } } - /// "Host name association to page" - public static string ManageHostNames_Add_FieldGroupLabel { get { return T("ManageHostNames.Add.FieldGroupLabel"); } } - /// "Host name" - public static string ManageHostNames_Add_HostNameTextBoxLabel { get { return T("ManageHostNames.Add.HostNameTextBoxLabel"); } } - /// "Specify the host name (like 'www.composite.net' or 'composite.net') you want to associate with this page" - public static string ManageHostNames_Add_HostNametextBoxHelp { get { return T("ManageHostNames.Add.HostNametextBoxHelp"); } } - /// "The syntax of the host name is not valid" - public static string ManageHostNames_Add_InvalidHostNameSyntaxError { get { return T("ManageHostNames.Add.InvalidHostNameSyntaxError"); } } - /// "This host name is already associated to a page. You must remove the existing association first." - public static string ManageHostNames_Add_HostNameNotUniqueError { get { return T("ManageHostNames.Add.HostNameNotUniqueError"); } } - /// "Manage host name" - public static string ManageHostNames_Remove_DialogLabel { get { return T("ManageHostNames.Remove.DialogLabel"); } } - /// "Remove host name association from page" - public static string ManageHostNames_Remove_FieldGroupLabel { get { return T("ManageHostNames.Remove.FieldGroupLabel"); } } - /// "Host names to remove" - public static string ManageHostNames_Remove_MultiSelectorLabel { get { return T("ManageHostNames.Remove.MultiSelectorLabel"); } } - /// "The host names you select will no longer be associated with the page" - public static string ManageHostNames_Remove_MultiSelectorHelp { get { return T("ManageHostNames.Remove.MultiSelectorHelp"); } } - /// "Please confirm deletion of all sub pages" - public static string DeletePageWorkflow_MissingConfirmErrorMessage { get { return T("DeletePageWorkflow.MissingConfirmErrorMessage"); } } - /// "Cascade delete error" - public static string DeletePageWorkflow_CascadeDeleteErrorTitle { get { return T("DeletePageWorkflow.CascadeDeleteErrorTitle"); } } - /// "The page is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string DeletePageWorkflow_CascadeDeleteErrorMessage { get { return T("DeletePageWorkflow.CascadeDeleteErrorMessage"); } } - /// "Can not delete page" - public static string DeletePageWorkflow_HasCompositionsTitle { get { return T("DeletePageWorkflow.HasCompositionsTitle"); } } - /// "This page has one or more page folders or metadata fields defined on it. Delete these first." - public static string DeletePageWorkflow_HasCompositionsMessage { get { return T("DeletePageWorkflow.HasCompositionsMessage"); } } +///"Add New Page" +public static string AddNewPageStep1_DialogLabel=>T("AddNewPageStep1.DialogLabel"); +///"Add New {0}" +public static string AddNewPageStep1_DialogLabelFormat(object parameter0)=>string.Format(T("AddNewPageStep1.DialogLabelFormat"), parameter0); +///"General settings" +public static string GeneralSettings_FieldGroupLabel=>T("GeneralSettings.FieldGroupLabel"); +///"Publication settings" +public static string PublicationSettings_FieldGroupLabel=>T("PublicationSettings.FieldGroupLabel"); +///"Advanced settings" +public static string AdvancedSettings_FieldGroupLabel=>T("AdvancedSettings.FieldGroupLabel"); +///"Page title" +public static string AddNewPageStep1_LabelTitle=>T("AddNewPageStep1.LabelTitle"); +///"The entry specified in this field is shown in the browser window title bar. The field is used by search engines and sitemaps" +public static string AddNewPageStep1_LabelTitleHelp=>T("AddNewPageStep1.LabelTitleHelp"); +///"Description" +public static string AddNewPageStep1_LabelAbstract=>T("AddNewPageStep1.LabelAbstract"); +///"Use this field for at short description of the page" +public static string AddNewPageStep1_LabelAbstractHelp=>T("AddNewPageStep1.LabelAbstractHelp"); +///"Page type" +public static string AddNewPageStep1_LabelTemplate=>T("AddNewPageStep1.LabelTemplate"); +///"The page type selection influences the behavior and features of your page, like 'a normal page' or 'a blog'. The options available depend on features installed." +public static string AddNewPageStep1_HelpTemplate=>T("AddNewPageStep1.HelpTemplate"); +///"Position" +public static string AddNewPageStep1_LabelPosition=>T("AddNewPageStep1.LabelPosition"); +///"Select where in the content tree you want the page to be placed." +public static string AddNewPageStep1_HelpPosition=>T("AddNewPageStep1.HelpPosition"); +///"Insert at the top" +public static string AddNewPageStep1_LabelAddToTop=>T("AddNewPageStep1.LabelAddToTop"); +///"Insert at the bottom" +public static string AddNewPageStep1_LabelAddToBottom=>T("AddNewPageStep1.LabelAddToBottom"); +///"Insert alphabetically" +public static string AddNewPageStep1_LabelAddAlphabetic=>T("AddNewPageStep1.LabelAddAlphabetic"); +///"Select position..." +public static string AddNewPageStep1_LabelAddBelowOtherPage=>T("AddNewPageStep1.LabelAddBelowOtherPage"); +///"URL title" +public static string AddNewPageStep2_LabelUrlTitle=>T("AddNewPageStep2.LabelUrlTitle"); +///"The entry specified in this field is shown in the browser address bar. The field is used by search engines" +public static string AddNewPageStep2_HelpUrlTitle=>T("AddNewPageStep2.HelpUrlTitle"); +///"Menu title" +public static string AddNewPageStep2_LabelMenuTitle=>T("AddNewPageStep2.LabelMenuTitle"); +///"The entry specified in this field can be used in the navigation on the website" +public static string AddNewPageStep2_HelpMenuTitle=>T("AddNewPageStep2.HelpMenuTitle"); +///"Select detailed page position" +public static string AddNewPageStep2_LabelPositionSelectorPanel=>T("AddNewPageStep2.LabelPositionSelectorPanel"); +///"Position below" +public static string AddNewPageStep2_LabelPositionSelector=>T("AddNewPageStep2.LabelPositionSelector"); +///"" +public static string AddNewPageStep2_HelpPositionSelector=>T("AddNewPageStep2.HelpPositionSelector"); +///"The specified title is too long. Make it shorter and try again" +public static string AddNewPageStep1_TitleTooLong=>T("AddNewPageStep1.TitleTooLong"); +///"The specified menu title is too long. Make it shorter and try again" +public static string AddNewPageStep1_MenuTitleTooLong=>T("AddNewPageStep1.MenuTitleTooLong"); +///"Settings" +public static string EditPage_LabelPaneSettings=>T("EditPage.LabelPaneSettings"); +///"Status" +public static string EditPage_LabelPublicationState=>T("EditPage.LabelPublicationState"); +///"Send the page to another status" +public static string EditPage_HelpPublicationState=>T("EditPage.HelpPublicationState"); +///"Page title" +public static string EditPage_LabelPageTitle=>T("EditPage.LabelPageTitle"); +///"The entry specified in this field is shown in the browser window title bar. The field is used by search engines and sitemaps" +public static string EditPage_LabelPageTitleHelp=>T("EditPage.LabelPageTitleHelp"); +///"Menu title" +public static string EditPage_LabelMenuTitle=>T("EditPage.LabelMenuTitle"); +///"The entry specified in this field can be used in the navigation on the website" +public static string EditPage_HelpMenuTitle=>T("EditPage.HelpMenuTitle"); +///"URL title" +public static string EditPage_LabelUrlTitle=>T("EditPage.LabelUrlTitle"); +///"URL title was rewritten" +public static string EditPage_UrlTitleFormattedTitle=>T("EditPage.UrlTitleFormattedTitle"); +///"According to the current URL replacement rules, URL title was changed to '{0}'" +public static string EditPage_UrlTitleFormattedMessage(object parameter0)=>string.Format(T("EditPage.UrlTitleFormattedMessage"), parameter0); +///"The entry specified in this field is shown in the browser address bar as a part of the URL address. The field is used by search engines" +public static string EditPage_HelpUrlTitle=>T("EditPage.HelpUrlTitle"); +///"Friendly URL" +public static string EditPage_LabelFriendlyUrl=>T("EditPage.LabelFriendlyUrl"); +///"The entry specified in this field is a shorter version of the actual page URL and redirects to it, when entered in the browser address bar. Note that some servers may have to be configured to support this feature." +public static string EditPage_HelpFriendlyUrl=>T("EditPage.HelpFriendlyUrl"); +///"Description" +public static string EditPage_LabelAbstract=>T("EditPage.LabelAbstract"); +///"Use this field for a short description of the page" +public static string EditPage_LabelAbstractHelp=>T("EditPage.LabelAbstractHelp"); +///"Publish date" +public static string EditPage_LabelPublishDate=>T("EditPage.LabelPublishDate"); +///"Specify at which date and time you want the page to be published automatically." +public static string EditPage_HelpPublishDate=>T("EditPage.HelpPublishDate"); +///"Unpublish date" +public static string EditPage_LabelUnpublishDate=>T("EditPage.LabelUnpublishDate"); +///"Specify at which date and time you want the page to be unpublished automatically." +public static string EditPage_HelpUnpublishDate=>T("EditPage.HelpUnpublishDate"); +///"Content" +public static string EditPage_LabelContent=>T("EditPage.LabelContent"); +///"Preview" +public static string EditPage_LabelPreview=>T("EditPage.LabelPreview"); +///"Page type" +public static string EditPage_PageTypeSelectorLabel=>T("EditPage.PageTypeSelectorLabel"); +///"The page type selection defines the role of the page, like 'a normal page' or 'a blog'. The options available depend on features installed." +public static string EditPage_PageTypeSelectorHelp=>T("EditPage.PageTypeSelectorHelp"); +///"{0} characters maximum" +public static string EditPage_MaxLength(object parameter0)=>string.Format(T("EditPage.MaxLength"), parameter0); +///"Delete page?" +public static string DeletePage_LabelFieldGroup=>T("DeletePage.LabelFieldGroup"); +///"Delete page and all subpages" +public static string DeletePageStep1_Title=>T("DeletePageStep1.Title"); +///"All subpages will also be deleted. Continue?" +public static string DeletePageStep1_Description=>T("DeletePageStep1.Description"); +///"Delete page '{0}'?" +public static string DeletePageStep2_Text(object parameter0)=>string.Format(T("DeletePageStep2.Text"), parameter0); +///"Another page is using the specified URL title. URL titles must be unique among pages with the same parent." +public static string UrlTitleNotUniqueError=>T("UrlTitleNotUniqueError"); +///"The specified URL title contains invalid characters. Since this field is used to build the web address for the page, certain special characters (like question mark, slash and dot) are not allowed. You can use letters, digits and dash." +public static string UrlTitleNotValidError=>T("UrlTitleNotValidError"); +///"The specified URL title is too long. Make it shorter and try again" +public static string UrlTitleTooLong=>T("UrlTitleTooLong"); +///"Another page is using the specified Friendly URL. Friendly URL's must be unique." +public static string FriendlyUrlNotUniqueError=>T("FriendlyUrlNotUniqueError"); +///"The title can not be empty." +public static string TitleMissingError=>T("TitleMissingError"); +///"Page not saved" +public static string PageSaveValidationFailedTitle=>T("PageSaveValidationFailedTitle"); +///"The page did not validate and has not been saved. Please examine field messages." +public static string PageSaveValidationFailedMessage=>T("PageSaveValidationFailedMessage"); +///"Websites" +public static string PageElementProvider_RootLabel=>T("PageElementProvider.RootLabel"); +///"Websites" +public static string PageElementProvider_RootLabelToolTip=>T("PageElementProvider.RootLabelToolTip"); +///"Add Website" +public static string PageElementProvider_AddPageAtRoot=>T("PageElementProvider.AddPageAtRoot"); +///"Add {0}" +public static string PageElementProvider_AddPageAtRootFormat(object parameter0)=>string.Format(T("PageElementProvider.AddPageAtRootFormat"), parameter0); +///"Add new homepage" +public static string PageElementProvider_AddPageAtRootToolTip=>T("PageElementProvider.AddPageAtRootToolTip"); +///"List Unpublished Pages" +public static string PageElementProvider_ViewUnpublishedItems=>T("PageElementProvider.ViewUnpublishedItems"); +///"Get an overview of pages and page folder data that haven't been published yet." +public static string PageElementProvider_ViewUnpublishedItemsToolTip=>T("PageElementProvider.ViewUnpublishedItemsToolTip"); +///"Unpublished content" +public static string PageElementProvider_ViewUnpublishedItems_document_title=>T("PageElementProvider.ViewUnpublishedItems-document-title"); +///"The list below displays pages and page data which are currently being edited or are ready to be approved / published." +public static string PageElementProvider_ViewUnpublishedItems_document_description=>T("PageElementProvider.ViewUnpublishedItems-document-description"); +///"Edit Page" +public static string PageElementProvider_EditPage=>T("PageElementProvider.EditPage"); +///"Edit selected page" +public static string PageElementProvider_EditPageToolTip=>T("PageElementProvider.EditPageToolTip"); +///"Delete" +public static string PageElementProvider_Delete=>T("PageElementProvider.Delete"); +///"Delete the selected page" +public static string PageElementProvider_DeleteToolTip=>T("PageElementProvider.DeleteToolTip"); +///"Translate Page" +public static string PageElementProvider_LocalizePage=>T("PageElementProvider.LocalizePage"); +///"Translate selected page" +public static string PageElementProvider_LocalizePageToolTip=>T("PageElementProvider.LocalizePageToolTip"); +///"Add page" +public static string PageElementProvider_AddSubPage=>T("PageElementProvider.AddSubPage"); +///"Add {0}" +public static string PageElementProvider_AddSubPageFormat(object parameter0)=>string.Format(T("PageElementProvider.AddSubPageFormat"), parameter0); +///"Add new page below the selected" +public static string PageElementProvider_AddSubPageToolTip=>T("PageElementProvider.AddSubPageToolTip"); +///"Show page local orderings" +public static string PageElementProvider_DisplayLocalOrderingLabel=>T("PageElementProvider.DisplayLocalOrderingLabel"); +///"Show page local orderings" +public static string PageElementProvider_DisplayLocalOrderingToolTip=>T("PageElementProvider.DisplayLocalOrderingToolTip"); +///"Not yet approved or published" +public static string PageElementProvider_DisabledPage=>T("PageElementProvider.DisabledPage"); +///"Website Template required" +public static string PageElementProvider_MissingTemplateTitle=>T("PageElementProvider.MissingTemplateTitle"); +///"You should create a 'Page Template' first. Go to the 'Layout' perspective and create one." +public static string PageElementProvider_MissingTemplateMessage=>T("PageElementProvider.MissingTemplateMessage"); +///"Language required" +public static string PageElementProvider_MissingActiveLanguageTitle=>T("PageElementProvider.MissingActiveLanguageTitle"); +///"To add a page, you should firstly add at least one language. It can be done in the 'System' perspective." +public static string PageElementProvider_MissingActiveLanguageMessage=>T("PageElementProvider.MissingActiveLanguageMessage"); +///"No page type available" +public static string PageElementProvider_NoPageTypesAvailableTitle=>T("PageElementProvider.NoPageTypesAvailableTitle"); +///"You should create a 'Page Type' first. Go to the 'Layout' perspective and create one." +public static string PageElementProvider_NoPageTypesAvailableMessage=>T("PageElementProvider.NoPageTypesAvailableMessage"); +///"Page type required" +public static string PageElementProvider_MissingPageTypeTitle=>T("PageElementProvider.MissingPageTypeTitle"); +///"To create a homepage, a page type without the "only subpages" restriction is required, but none have been added yet. You can add one under the Layout perspective." +public static string PageElementProvider_MissingPageTypeHomepageMessage=>T("PageElementProvider.MissingPageTypeHomepageMessage"); +///"To create a subpage, a page type without the the only homepages restriction is required, but none have been added yet. You can add one under the Layout perspective." +public static string PageElementProvider_MissingPageTypeSubpageMessage=>T("PageElementProvider.MissingPageTypeSubpageMessage"); +///"Unable to add a page!" +public static string PageElementProvider_RuleDontAllowPageAddTitle=>T("PageElementProvider.RuleDontAllowPageAddTitle"); +///"The rules that define availability for Page Types prohibit adding a page here." +public static string PageElementProvider_RuleDontAllowPageAddMessage=>T("PageElementProvider.RuleDontAllowPageAddMessage"); +///"Manage host name" +public static string ManageHostNames_Add_DialogLabel=>T("ManageHostNames.Add.DialogLabel"); +///"Add host name association to page" +public static string ManageHostNames_Add_HeadingTitle=>T("ManageHostNames.Add.HeadingTitle"); +///"You can associate a host name (or a domain name) to a page by specifying it in the field below. Please note that the DNS settings for the specified host name must also be configured, which is done outside this system." +public static string ManageHostNames_Add_HeadingDescription=>T("ManageHostNames.Add.HeadingDescription"); +///"Host name association to page" +public static string ManageHostNames_Add_FieldGroupLabel=>T("ManageHostNames.Add.FieldGroupLabel"); +///"Host name" +public static string ManageHostNames_Add_HostNameTextBoxLabel=>T("ManageHostNames.Add.HostNameTextBoxLabel"); +///"Specify the host name (like 'www.composite.net' or 'composite.net') you want to associate with this page" +public static string ManageHostNames_Add_HostNametextBoxHelp=>T("ManageHostNames.Add.HostNametextBoxHelp"); +///"The syntax of the host name is not valid" +public static string ManageHostNames_Add_InvalidHostNameSyntaxError=>T("ManageHostNames.Add.InvalidHostNameSyntaxError"); +///"This host name is already associated to a page. You must remove the existing association first." +public static string ManageHostNames_Add_HostNameNotUniqueError=>T("ManageHostNames.Add.HostNameNotUniqueError"); +///"Manage host name" +public static string ManageHostNames_Remove_DialogLabel=>T("ManageHostNames.Remove.DialogLabel"); +///"Remove host name association from page" +public static string ManageHostNames_Remove_FieldGroupLabel=>T("ManageHostNames.Remove.FieldGroupLabel"); +///"Host names to remove" +public static string ManageHostNames_Remove_MultiSelectorLabel=>T("ManageHostNames.Remove.MultiSelectorLabel"); +///"The host names you select will no longer be associated with the page" +public static string ManageHostNames_Remove_MultiSelectorHelp=>T("ManageHostNames.Remove.MultiSelectorHelp"); +///"Please confirm deletion of all sub pages" +public static string DeletePageWorkflow_MissingConfirmErrorMessage=>T("DeletePageWorkflow.MissingConfirmErrorMessage"); +///"Cascade delete error" +public static string DeletePageWorkflow_CascadeDeleteErrorTitle=>T("DeletePageWorkflow.CascadeDeleteErrorTitle"); +///"The page is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string DeletePageWorkflow_CascadeDeleteErrorMessage=>T("DeletePageWorkflow.CascadeDeleteErrorMessage"); +///"Can not delete page" +public static string DeletePageWorkflow_HasCompositionsTitle=>T("DeletePageWorkflow.HasCompositionsTitle"); +///"This page has one or more page folders or metadata fields defined on it. Delete these first." +public static string DeletePageWorkflow_HasCompositionsMessage=>T("DeletePageWorkflow.HasCompositionsMessage"); +///"Page Title" +public static string ViewUnpublishedItems_PageTitleLabel=>T("ViewUnpublishedItems.PageTitleLabel"); +///"Version" +public static string ViewUnpublishedItems_VersionLabel=>T("ViewUnpublishedItems.VersionLabel"); +///"Status" +public static string ViewUnpublishedItems_StatusLabel=>T("ViewUnpublishedItems.StatusLabel"); +///"Publish Date" +public static string ViewUnpublishedItems_PublishDateLabel=>T("ViewUnpublishedItems.PublishDateLabel"); +///"This is the date and time that has been set for the page to be published automatically. To update or remove, see the Publication Schedule in Edit Page mode. Otherwise you can override these dates by publishing manually from this view." +public static string ViewUnpublishedItems_PublishDateHelp=>T("ViewUnpublishedItems.PublishDateHelp"); +///"Unpublish Date" +public static string ViewUnpublishedItems_UnpublishDateLabel=>T("ViewUnpublishedItems.UnpublishDateLabel"); +///"This is the date and time that has been set for the page to be unpublished automatically. To update or remove, see the Publication Schedule in Edit Page mode." +public static string ViewUnpublishedItems_UnpublishDateHelp=>T("ViewUnpublishedItems.UnpublishDateHelp"); +///"Date Created" +public static string ViewUnpublishedItems_DateCreatedLabel=>T("ViewUnpublishedItems.DateCreatedLabel"); +///"Date Modified" +public static string ViewUnpublishedItems_DateModifiedLabel=>T("ViewUnpublishedItems.DateModifiedLabel"); +///"Publish Pages" +public static string ViewUnpublishedItems_PublishConfirmTitle=>T("ViewUnpublishedItems.PublishConfirmTitle"); +///"You are about to publish these pages. Continue?" +public static string ViewUnpublishedItems_PublishConfirmText=>T("ViewUnpublishedItems.PublishConfirmText"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", key); @@ -3640,86 +3694,86 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_PageTemplateElementProvider { - /// "Page Templates" - public static string PageTemplateElementProvider_RootLabel { get { return T("PageTemplateElementProvider.RootLabel"); } } - /// "You can find the sites XHTML templates here" - public static string PageTemplateElementProvider_RootLabelToolTip { get { return T("PageTemplateElementProvider.RootLabelToolTip"); } } - /// "Add Template" - public static string PageTemplateElementProvider_AddTemplate { get { return T("PageTemplateElementProvider.AddTemplate"); } } - /// "Add new template" - public static string PageTemplateElementProvider_AddTemplateToolTip { get { return T("PageTemplateElementProvider.AddTemplateToolTip"); } } - /// "Delete" - public static string PageTemplateElementProvider_DeleteTemplate { get { return T("PageTemplateElementProvider.DeleteTemplate"); } } - /// "Delete this item" - public static string PageTemplateElementProvider_DeleteTemplateToolTip { get { return T("PageTemplateElementProvider.DeleteTemplateToolTip"); } } - /// "Shared Code" - public static string PageTemplateElementProvider_SharedCodeFolder_Title { get { return T("PageTemplateElementProvider.SharedCodeFolder.Title"); } } - /// "Files used by layout files" - public static string PageTemplateElementProvider_SharedCodeFolder_ToolTip { get { return T("PageTemplateElementProvider.SharedCodeFolder.ToolTip"); } } - /// "Edit" - public static string EditSharedCodeFile_Label { get { return T("EditSharedCodeFile.Label"); } } - /// "Edit the file" - public static string EditSharedCodeFile_ToolTip { get { return T("EditSharedCodeFile.ToolTip"); } } - /// "Edit XML Template" - public static string PageTemplateElementProvider_EditXmlTemplate { get { return T("PageTemplateElementProvider.EditXmlTemplate"); } } - /// "Edit the selected XML template" - public static string PageTemplateElementProvider_EditXmlTemplateToolTip { get { return T("PageTemplateElementProvider.EditXmlTemplateToolTip"); } } - /// "Add New XML Page Template" - public static string AddNewXmlPageTemplate_LabelDialog { get { return T("AddNewXmlPageTemplate.LabelDialog"); } } - /// "Template Title" - public static string AddNewXmlPageTemplate_LabelTemplateTitle { get { return T("AddNewXmlPageTemplate.LabelTemplateTitle"); } } - /// "The title identifies this template in lists. Consider selecting a short but meaningful name." - public static string AddNewXmlPageTemplate_LabelTemplateTitleHelp { get { return T("AddNewXmlPageTemplate.LabelTemplateTitleHelp"); } } - /// "Copy from" - public static string AddNewXmlPageTemplate_LabelCopyFrom { get { return T("AddNewXmlPageTemplate.LabelCopyFrom"); } } - /// "You can copy the markup from another XML Page Template by selecting it in this list." - public static string AddNewXmlPageTemplate_LabelCopyFromHelp { get { return T("AddNewXmlPageTemplate.LabelCopyFromHelp"); } } - /// "(New template)" - public static string AddNewXmlPageTemplate_LabelCopyFromEmptyOption { get { return T("AddNewXmlPageTemplate.LabelCopyFromEmptyOption"); } } - /// "Title already used" - public static string AddNewXmlPageTemplateWorkflow_TitleInUseTitle { get { return T("AddNewXmlPageTemplateWorkflow.TitleInUseTitle"); } } - /// "The title is too long (used as part of the XML filename)." - public static string AddNewXmlPageTemplateWorkflow_TitleTooLong { get { return T("AddNewXmlPageTemplateWorkflow.TitleTooLong"); } } - /// "Markup Code" - public static string EditXmlPageTemplate_LabelMarkUpCode { get { return T("EditXmlPageTemplate.LabelMarkUpCode"); } } - /// "Template Info" - public static string EditXmlPageTemplate_LabelTemplateIdentification { get { return T("EditXmlPageTemplate.LabelTemplateIdentification"); } } - /// "Template Title" - public static string EditXmlPageTemplate_LabelTemplateTitle { get { return T("EditXmlPageTemplate.LabelTemplateTitle"); } } - /// "The title identifies this template in lists. Consider selecting a short but meaningful name." - public static string EditXmlPageTemplate_LabelTemplateTitleHelp { get { return T("EditXmlPageTemplate.LabelTemplateTitleHelp"); } } - /// "Unable to Save Template" - public static string EditXmlPageTemplateWorkflow_InvalidXmlTitle { get { return T("EditXmlPageTemplateWorkflow.InvalidXmlTitle"); } } - /// "The page template markup did not validate. {0}" - public static string EditXmlPageTemplateWorkflow_InvalidXmlMessage(object parameter0) { return string.Format(T("EditXmlPageTemplateWorkflow.InvalidXmlMessage"), parameter0); } - /// "Cannot rename a template - the file with the name '{0}' already exists." - public static string EditXmlPageTemplateWorkflow_CannotRenameFileExists(object parameter0) { return string.Format(T("EditXmlPageTemplateWorkflow.CannotRenameFileExists"), parameter0); } - /// "Title already used" - public static string EditXmlPageTemplateWorkflow_TitleInUseTitle { get { return T("EditXmlPageTemplateWorkflow.TitleInUseTitle"); } } - /// "Delete This Page Template?" - public static string DeletePageTemplateStep1_LabelFieldGroup { get { return T("DeletePageTemplateStep1.LabelFieldGroup"); } } - /// "Delete page template?" - public static string DeletePageTemplateStep1_Text { get { return T("DeletePageTemplateStep1.Text"); } } - /// "Cascade Delete Error" - public static string DeletePageTemplateWorkflow_CascadeDeleteErrorTitle { get { return T("DeletePageTemplateWorkflow.CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted." - public static string DeletePageTemplateWorkflow_CascadeDeleteErrorMessage { get { return T("DeletePageTemplateWorkflow.CascadeDeleteErrorMessage"); } } - /// "There are {0} page[s] referencing this template: {1}" - public static string DeletePageTemplateWorkflow_PageReference(object parameter0,object parameter1) { return string.Format(T("DeletePageTemplateWorkflow.PageReference"), parameter0,parameter1); } - /// "There are {0} page type[s] referencing this template: {1}" - public static string DeletePageTemplateWorkflow_PageTypeReference(object parameter0,object parameter1) { return string.Format(T("DeletePageTemplateWorkflow.PageTypeReference"), parameter0,parameter1); } - /// "Add New Page Template" - public static string AddNewPageTemplate_LabelDialog { get { return T("AddNewPageTemplate.LabelDialog"); } } - /// "Choose one of the possible types of page templates" - public static string AddNewPageTemplate_TemplateTypeHelp { get { return T("AddNewPageTemplate.TemplateTypeHelp"); } } - /// "Template type" - public static string AddNewPageTemplate_TemplateTypeLabel { get { return T("AddNewPageTemplate.TemplateTypeLabel"); } } - /// "Razor" - public static string AddNewPageTemplate_TemplateType_Razor { get { return T("AddNewPageTemplate.TemplateType.Razor"); } } - /// "Master Page" - public static string AddNewPageTemplate_TemplateType_MasterPage { get { return T("AddNewPageTemplate.TemplateType.MasterPage"); } } - /// "XML" - public static string AddNewPageTemplate_TemplateType_XML { get { return T("AddNewPageTemplate.TemplateType.XML"); } } +///"Page Templates" +public static string PageTemplateElementProvider_RootLabel=>T("PageTemplateElementProvider.RootLabel"); +///"You can find the sites XHTML templates here" +public static string PageTemplateElementProvider_RootLabelToolTip=>T("PageTemplateElementProvider.RootLabelToolTip"); +///"Add Template" +public static string PageTemplateElementProvider_AddTemplate=>T("PageTemplateElementProvider.AddTemplate"); +///"Add new template" +public static string PageTemplateElementProvider_AddTemplateToolTip=>T("PageTemplateElementProvider.AddTemplateToolTip"); +///"Delete" +public static string PageTemplateElementProvider_DeleteTemplate=>T("PageTemplateElementProvider.DeleteTemplate"); +///"Delete this item" +public static string PageTemplateElementProvider_DeleteTemplateToolTip=>T("PageTemplateElementProvider.DeleteTemplateToolTip"); +///"Shared Code" +public static string PageTemplateElementProvider_SharedCodeFolder_Title=>T("PageTemplateElementProvider.SharedCodeFolder.Title"); +///"Files used by layout files" +public static string PageTemplateElementProvider_SharedCodeFolder_ToolTip=>T("PageTemplateElementProvider.SharedCodeFolder.ToolTip"); +///"Edit" +public static string EditSharedCodeFile_Label=>T("EditSharedCodeFile.Label"); +///"Edit the file" +public static string EditSharedCodeFile_ToolTip=>T("EditSharedCodeFile.ToolTip"); +///"Edit XML Template" +public static string PageTemplateElementProvider_EditXmlTemplate=>T("PageTemplateElementProvider.EditXmlTemplate"); +///"Edit the selected XML template" +public static string PageTemplateElementProvider_EditXmlTemplateToolTip=>T("PageTemplateElementProvider.EditXmlTemplateToolTip"); +///"Add New XML Page Template" +public static string AddNewXmlPageTemplate_LabelDialog=>T("AddNewXmlPageTemplate.LabelDialog"); +///"Template Title" +public static string AddNewXmlPageTemplate_LabelTemplateTitle=>T("AddNewXmlPageTemplate.LabelTemplateTitle"); +///"The title identifies this template in lists. Consider selecting a short but meaningful name." +public static string AddNewXmlPageTemplate_LabelTemplateTitleHelp=>T("AddNewXmlPageTemplate.LabelTemplateTitleHelp"); +///"Copy from" +public static string AddNewXmlPageTemplate_LabelCopyFrom=>T("AddNewXmlPageTemplate.LabelCopyFrom"); +///"You can copy the markup from another XML Page Template by selecting it in this list." +public static string AddNewXmlPageTemplate_LabelCopyFromHelp=>T("AddNewXmlPageTemplate.LabelCopyFromHelp"); +///"(New template)" +public static string AddNewXmlPageTemplate_LabelCopyFromEmptyOption=>T("AddNewXmlPageTemplate.LabelCopyFromEmptyOption"); +///"Title already used" +public static string AddNewXmlPageTemplateWorkflow_TitleInUseTitle=>T("AddNewXmlPageTemplateWorkflow.TitleInUseTitle"); +///"The title is too long (used as part of the XML filename)." +public static string AddNewXmlPageTemplateWorkflow_TitleTooLong=>T("AddNewXmlPageTemplateWorkflow.TitleTooLong"); +///"Markup Code" +public static string EditXmlPageTemplate_LabelMarkUpCode=>T("EditXmlPageTemplate.LabelMarkUpCode"); +///"Template Info" +public static string EditXmlPageTemplate_LabelTemplateIdentification=>T("EditXmlPageTemplate.LabelTemplateIdentification"); +///"Template Title" +public static string EditXmlPageTemplate_LabelTemplateTitle=>T("EditXmlPageTemplate.LabelTemplateTitle"); +///"The title identifies this template in lists. Consider selecting a short but meaningful name." +public static string EditXmlPageTemplate_LabelTemplateTitleHelp=>T("EditXmlPageTemplate.LabelTemplateTitleHelp"); +///"Unable to Save Template" +public static string EditXmlPageTemplateWorkflow_InvalidXmlTitle=>T("EditXmlPageTemplateWorkflow.InvalidXmlTitle"); +///"The page template markup did not validate. {0}" +public static string EditXmlPageTemplateWorkflow_InvalidXmlMessage(object parameter0)=>string.Format(T("EditXmlPageTemplateWorkflow.InvalidXmlMessage"), parameter0); +///"Cannot rename a template - the file with the name '{0}' already exists." +public static string EditXmlPageTemplateWorkflow_CannotRenameFileExists(object parameter0)=>string.Format(T("EditXmlPageTemplateWorkflow.CannotRenameFileExists"), parameter0); +///"Title already used" +public static string EditXmlPageTemplateWorkflow_TitleInUseTitle=>T("EditXmlPageTemplateWorkflow.TitleInUseTitle"); +///"Delete This Page Template?" +public static string DeletePageTemplateStep1_LabelFieldGroup=>T("DeletePageTemplateStep1.LabelFieldGroup"); +///"Delete page template?" +public static string DeletePageTemplateStep1_Text=>T("DeletePageTemplateStep1.Text"); +///"Cascade Delete Error" +public static string DeletePageTemplateWorkflow_CascadeDeleteErrorTitle=>T("DeletePageTemplateWorkflow.CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted." +public static string DeletePageTemplateWorkflow_CascadeDeleteErrorMessage=>T("DeletePageTemplateWorkflow.CascadeDeleteErrorMessage"); +///"There are {0} page[s] referencing this template: {1}" +public static string DeletePageTemplateWorkflow_PageReference(object parameter0,object parameter1)=>string.Format(T("DeletePageTemplateWorkflow.PageReference"), parameter0,parameter1); +///"There are {0} page type[s] referencing this template: {1}" +public static string DeletePageTemplateWorkflow_PageTypeReference(object parameter0,object parameter1)=>string.Format(T("DeletePageTemplateWorkflow.PageTypeReference"), parameter0,parameter1); +///"Add New Page Template" +public static string AddNewPageTemplate_LabelDialog=>T("AddNewPageTemplate.LabelDialog"); +///"Choose one of the possible types of page templates" +public static string AddNewPageTemplate_TemplateTypeHelp=>T("AddNewPageTemplate.TemplateTypeHelp"); +///"Template type" +public static string AddNewPageTemplate_TemplateTypeLabel=>T("AddNewPageTemplate.TemplateTypeLabel"); +///"Razor" +public static string AddNewPageTemplate_TemplateType_Razor=>T("AddNewPageTemplate.TemplateType.Razor"); +///"Master Page" +public static string AddNewPageTemplate_TemplateType_MasterPage=>T("AddNewPageTemplate.TemplateType.MasterPage"); +///"XML" +public static string AddNewPageTemplate_TemplateType_XML=>T("AddNewPageTemplate.TemplateType.XML"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.PageTemplateElementProvider", key); @@ -3729,50 +3783,50 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_PageTemplateFeatureElementProvider { - /// "Page Template Features" - public static string ElementProvider_RootLabel { get { return T("ElementProvider.RootLabel"); } } - /// "Here you can find features - snippets of HTML and functionality - included in the website templates." - public static string ElementProvider_RootToolTip { get { return T("ElementProvider.RootToolTip"); } } - /// "Add Template Feature" - public static string ElementProvider_AddTemplateFeature { get { return T("ElementProvider.AddTemplateFeature"); } } - /// "Add a new page template feature" - public static string ElementProvider_AddTemplateFeatureToolTip { get { return T("ElementProvider.AddTemplateFeatureToolTip"); } } - /// "Delete Template Feature" - public static string ElementProvider_DeleteTemplateFeature { get { return T("ElementProvider.DeleteTemplateFeature"); } } - /// "Delete this template feature" - public static string ElementProvider_DeleteTemplateFeatureToolTip { get { return T("ElementProvider.DeleteTemplateFeatureToolTip"); } } - /// "Edit Template Feature" - public static string ElementProvider_EditTemplateFeature { get { return T("ElementProvider.EditTemplateFeature"); } } - /// "Edit the selected template feature" - public static string ElementProvider_EditTemplateFeatureToolTip { get { return T("ElementProvider.EditTemplateFeatureToolTip"); } } - /// "Use Visual Editor" - public static string ElementProvider_EditVisually { get { return T("ElementProvider.EditVisually"); } } - /// "When enabled the visual editor will be used to manage this feature" - public static string ElementProvider_EditVisuallyToolTip { get { return T("ElementProvider.EditVisuallyToolTip"); } } - /// "Add New Page Template Feature" - public static string AddWorkflow_LabelDialog { get { return T("AddWorkflow.LabelDialog"); } } - /// "Feature name" - public static string AddWorkflow_LabelTemplateFeatureName { get { return T("AddWorkflow.LabelTemplateFeatureName"); } } - /// "The name is used to identify this feature when included in templates" - public static string AddWorkflow_LabelTemplateFeatureNameHelp { get { return T("AddWorkflow.LabelTemplateFeatureNameHelp"); } } - /// "Editor type" - public static string AddWorkflow_LabelTemplateFeatureEditorType { get { return T("AddWorkflow.LabelTemplateFeatureEditorType"); } } - /// "Choose which type of editor to use when maintaining this feature. You can always switch the editor type in the tree later." - public static string AddWorkflow_LabelTemplateFeatureEditorTypeHelp { get { return T("AddWorkflow.LabelTemplateFeatureEditorTypeHelp"); } } - /// "Visual Editor" - public static string AddWorkflow_LabelTemplateFeatureEditorType_html { get { return T("AddWorkflow.LabelTemplateFeatureEditorType.html"); } } - /// "Markup Editor" - public static string AddWorkflow_LabelTemplateFeatureEditorType_xml { get { return T("AddWorkflow.LabelTemplateFeatureEditorType.xml"); } } - /// "The name is already used by another feature" - public static string AddWorkflow_NameInUse { get { return T("AddWorkflow.NameInUse"); } } - /// "The title is too long (max 50 characters)" - public static string AddWorkflow_NameTooLong { get { return T("AddWorkflow.NameTooLong"); } } - /// "The name must be usable in a file name - you have invalid characters you need to remove" - public static string AddWorkflow_NameNotValidInFilename { get { return T("AddWorkflow.NameNotValidInFilename"); } } - /// "Delete This Page Template Feature?" - public static string DeleteWorkflow_Title { get { return T("DeleteWorkflow.Title"); } } - /// "If this feature is in use by page templates, this action could lead to errors." - public static string DeleteWorkflow_Text { get { return T("DeleteWorkflow.Text"); } } +///"Page Template Features" +public static string ElementProvider_RootLabel=>T("ElementProvider.RootLabel"); +///"Here you can find features - snippets of HTML and functionality - included in the website templates." +public static string ElementProvider_RootToolTip=>T("ElementProvider.RootToolTip"); +///"Add Template Feature" +public static string ElementProvider_AddTemplateFeature=>T("ElementProvider.AddTemplateFeature"); +///"Add a new page template feature" +public static string ElementProvider_AddTemplateFeatureToolTip=>T("ElementProvider.AddTemplateFeatureToolTip"); +///"Delete Template Feature" +public static string ElementProvider_DeleteTemplateFeature=>T("ElementProvider.DeleteTemplateFeature"); +///"Delete this template feature" +public static string ElementProvider_DeleteTemplateFeatureToolTip=>T("ElementProvider.DeleteTemplateFeatureToolTip"); +///"Edit Template Feature" +public static string ElementProvider_EditTemplateFeature=>T("ElementProvider.EditTemplateFeature"); +///"Edit the selected template feature" +public static string ElementProvider_EditTemplateFeatureToolTip=>T("ElementProvider.EditTemplateFeatureToolTip"); +///"Use Visual Editor" +public static string ElementProvider_EditVisually=>T("ElementProvider.EditVisually"); +///"When enabled the visual editor will be used to manage this feature" +public static string ElementProvider_EditVisuallyToolTip=>T("ElementProvider.EditVisuallyToolTip"); +///"Add New Page Template Feature" +public static string AddWorkflow_LabelDialog=>T("AddWorkflow.LabelDialog"); +///"Feature name" +public static string AddWorkflow_LabelTemplateFeatureName=>T("AddWorkflow.LabelTemplateFeatureName"); +///"The name is used to identify this feature when included in templates" +public static string AddWorkflow_LabelTemplateFeatureNameHelp=>T("AddWorkflow.LabelTemplateFeatureNameHelp"); +///"Editor type" +public static string AddWorkflow_LabelTemplateFeatureEditorType=>T("AddWorkflow.LabelTemplateFeatureEditorType"); +///"Choose which type of editor to use when maintaining this feature. You can always switch the editor type in the tree later." +public static string AddWorkflow_LabelTemplateFeatureEditorTypeHelp=>T("AddWorkflow.LabelTemplateFeatureEditorTypeHelp"); +///"Visual Editor" +public static string AddWorkflow_LabelTemplateFeatureEditorType_html=>T("AddWorkflow.LabelTemplateFeatureEditorType.html"); +///"Markup Editor" +public static string AddWorkflow_LabelTemplateFeatureEditorType_xml=>T("AddWorkflow.LabelTemplateFeatureEditorType.xml"); +///"The name is already used by another feature" +public static string AddWorkflow_NameInUse=>T("AddWorkflow.NameInUse"); +///"The title is too long (max 50 characters)" +public static string AddWorkflow_NameTooLong=>T("AddWorkflow.NameTooLong"); +///"The name must be usable in a file name - you have invalid characters you need to remove" +public static string AddWorkflow_NameNotValidInFilename=>T("AddWorkflow.NameNotValidInFilename"); +///"Delete This Page Template Feature?" +public static string DeleteWorkflow_Title=>T("DeleteWorkflow.Title"); +///"If this feature is in use by page templates, this action could lead to errors." +public static string DeleteWorkflow_Text=>T("DeleteWorkflow.Text"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.PageTemplateFeatureElementProvider", key); @@ -3782,218 +3836,218 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_PageTypeElementProvider { - /// "Page Types" - public static string PageType_Tree_Root_Label { get { return T("PageType.Tree.Root.Label"); } } - /// "Placeholder Content" - public static string PageType_Tree_DefaultContentElement_Label { get { return T("PageType.Tree.DefaultContentElement.Label"); } } - /// "Metadata Fields" - public static string PageType_Tree_MetaDataFieldsElement_Label { get { return T("PageType.Tree.MetaDataFieldsElement.Label"); } } - /// "Add Page Type" - public static string PageType_Tree_AddNewPageType_Label { get { return T("PageType.Tree.AddNewPageType.Label"); } } - /// "Add new page type" - public static string PageType_Tree_AddNewPageType_ToolTip { get { return T("PageType.Tree.AddNewPageType.ToolTip"); } } - /// "Edit Page Type" - public static string PageType_Tree_EditPageType_Label { get { return T("PageType.Tree.EditPageType.Label"); } } - /// "Edit selected page type" - public static string PageType_Tree_EditPageType_ToolTip { get { return T("PageType.Tree.EditPageType.ToolTip"); } } - /// "Delete Page Type" - public static string PageType_Tree_DeletePageType_Label { get { return T("PageType.Tree.DeletePageType.Label"); } } - /// "Delete selected page type" - public static string PageType_Tree_DeletePageType_ToolTip { get { return T("PageType.Tree.DeletePageType.ToolTip"); } } - /// "Add Default Content" - public static string PageType_Tree_AddDefaultPageContent_Label { get { return T("PageType.Tree.AddDefaultPageContent.Label"); } } - /// "Add placeholder default content" - public static string PageType_Tree_AddDefaultPageContent_ToolTip { get { return T("PageType.Tree.AddDefaultPageContent.ToolTip"); } } - /// "Edit Default Content" - public static string PageType_Tree_EditDefaultPageContent_Label { get { return T("PageType.Tree.EditDefaultPageContent.Label"); } } - /// "Edit placeholder default content" - public static string PageType_Tree_EditDefaultPageContent_ToolTip { get { return T("PageType.Tree.EditDefaultPageContent.ToolTip"); } } - /// "Delete Default Content" - public static string PageType_Tree_DeleteDefaultPageContent_Label { get { return T("PageType.Tree.DeleteDefaultPageContent.Label"); } } - /// "Delete default content" - public static string PageType_Tree_DeleteDefaultPageContent_ToolTip { get { return T("PageType.Tree.DeleteDefaultPageContent.ToolTip"); } } - /// "Add Metadata Field" - public static string PageType_Tree_AddMetaDataField_Label { get { return T("PageType.Tree.AddMetaDataField.Label"); } } - /// "Add new Metadata field" - public static string PageType_Tree_AddMetaDataField_ToolTip { get { return T("PageType.Tree.AddMetaDataField.ToolTip"); } } - /// "Edit Metadata Field" - public static string PageType_Tree_EditMetaDataField_Label { get { return T("PageType.Tree.EditMetaDataField.Label"); } } - /// "Edit selected Metadata field" - public static string PageType_Tree_EditMetaDataField_ToolTip { get { return T("PageType.Tree.EditMetaDataField.ToolTip"); } } - /// "Delete Metadata Field" - public static string PageType_Tree_DeleteMetaDataField_Label { get { return T("PageType.Tree.DeleteMetaDataField.Label"); } } - /// "Delete selected Metadata field" - public static string PageType_Tree_DeleteMetaDataField_ToolTip { get { return T("PageType.Tree.DeleteMetaDataField.ToolTip"); } } - /// "Add New Page Type" - public static string PageType_AddNewPageTypeWorkflow_Layout_Label { get { return T("PageType.AddNewPageTypeWorkflow.Layout.Label"); } } - /// "New page type settings" - public static string PageType_AddNewPageTypeWorkflow_FieldGroup_Label { get { return T("PageType.AddNewPageTypeWorkflow.FieldGroup.Label"); } } - /// "Name" - public static string PageType_AddNewPageTypeWorkflow_NameTextBox_Label { get { return T("PageType.AddNewPageTypeWorkflow.NameTextBox.Label"); } } - /// "The name of the new page type" - public static string PageType_AddNewPageTypeWorkflow_NameTextBox_Help { get { return T("PageType.AddNewPageTypeWorkflow.NameTextBox.Help"); } } - /// "Description" - public static string PageType_AddNewPageTypeWorkflow_DescriptionTextArea_Label { get { return T("PageType.AddNewPageTypeWorkflow.DescriptionTextArea.Label"); } } - /// "The description of the new page type" - public static string PageType_AddNewPageTypeWorkflow_DescriptionTextArea_Help { get { return T("PageType.AddNewPageTypeWorkflow.DescriptionTextArea.Help"); } } - /// "Settings" - public static string PageType_EditPageTypeWorkflow_SettingsPlaceHolder_Label { get { return T("PageType.EditPageTypeWorkflow.SettingsPlaceHolder.Label"); } } - /// "Page type settings" - public static string PageType_EditPageTypeWorkflow_SettingsFieldGroup_Label { get { return T("PageType.EditPageTypeWorkflow.SettingsFieldGroup.Label"); } } - /// "Name" - public static string PageType_EditPageTypeWorkflow_NameTextBox_Label { get { return T("PageType.EditPageTypeWorkflow.NameTextBox.Label"); } } - /// "The name of the page type" - public static string PageType_EditPageTypeWorkflow_NameTextBox_Help { get { return T("PageType.EditPageTypeWorkflow.NameTextBox.Help"); } } - /// "Description" - public static string PageType_EditPageTypeWorkflow_DescriptionTextArea_Label { get { return T("PageType.EditPageTypeWorkflow.DescriptionTextArea.Label"); } } - /// "The description of the page type" - public static string PageType_EditPageTypeWorkflow_DescriptionTextArea_Help { get { return T("PageType.EditPageTypeWorkflow.DescriptionTextArea.Help"); } } - /// "Available" - public static string PageType_EditPageTypeWorkflow_AvailableCheckBox_Label { get { return T("PageType.EditPageTypeWorkflow.AvailableCheckBox.Label"); } } - /// "Unchecking this will make this page non-selectable on any page" - public static string PageType_EditPageTypeWorkflow_AvailableCheckBox_Help { get { return T("PageType.EditPageTypeWorkflow.AvailableCheckBox.Help"); } } - /// "Preset menu title" - public static string PageType_EditPageTypeWorkflow_PresetMenuTitleCheckBox_Label { get { return T("PageType.EditPageTypeWorkflow.PresetMenuTitleCheckBox.Label"); } } - /// "If this is checked a default value for the menu title on pages is preset" - public static string PageType_EditPageTypeWorkflow_PresetMenuTitleCheckBox_Help { get { return T("PageType.EditPageTypeWorkflow.PresetMenuTitleCheckBox.Help"); } } - /// "Default child page type" - public static string PageType_EditPageTypeWorkflow_DefaultChildPageTypeKeySelector_Label { get { return T("PageType.EditPageTypeWorkflow.DefaultChildPageTypeKeySelector.Label"); } } - /// "Select a page type to be the default page type for child pages created with this page type" - public static string PageType_EditPageTypeWorkflow_DefaultChildPageTypeKeySelector_Help { get { return T("PageType.EditPageTypeWorkflow.DefaultChildPageTypeKeySelector.Help"); } } - /// "[None]" - public static string PageType_EditPageTypeWorkflow_DefaultChildPageTypeKeySelector_NoneSelectedLabel { get { return T("PageType.EditPageTypeWorkflow.DefaultChildPageTypeKeySelector.NoneSelectedLabel"); } } - /// "Layout" - public static string PageType_EditPageTypeWorkflow_PageTemplatePlaceHolder_Label { get { return T("PageType.EditPageTypeWorkflow.PageTemplatePlaceHolder.Label"); } } - /// "Layout" - public static string PageType_EditPageTypeWorkflow_PageTemplateRestrictionFieldGroup_Label { get { return T("PageType.EditPageTypeWorkflow.PageTemplateRestrictionFieldGroup.Label"); } } - /// "Layout restrictions" - public static string PageType_EditPageTypeWorkflow_PageTemplateRestrictionMultiKeySelector_Label { get { return T("PageType.EditPageTypeWorkflow.PageTemplateRestrictionMultiKeySelector.Label"); } } - /// "Select layouts to be only available when editing pages of this page type. If none is selected (default), all will be available." - public static string PageType_EditPageTypeWorkflow_PageTemplateRestrictionMultiKeySelector_Help { get { return T("PageType.EditPageTypeWorkflow.PageTemplateRestrictionMultiKeySelector.Help"); } } - /// "Default layout" - public static string PageType_EditPageTypeWorkflow_DefaultPageTemplateKeySelector_Label { get { return T("PageType.EditPageTypeWorkflow.DefaultPageTemplateKeySelector.Label"); } } - /// "Select a layout to be the default layout for pages created with this page type" - public static string PageType_EditPageTypeWorkflow_DefaultPageTemplateKeySelector_Help { get { return T("PageType.EditPageTypeWorkflow.DefaultPageTemplateKeySelector.Help"); } } - /// "[None]" - public static string PageType_EditPageTypeWorkflow_DefaultPageTemplateKeySelector_NoneSelectedLabel { get { return T("PageType.EditPageTypeWorkflow.DefaultPageTemplateKeySelector.NoneSelectedLabel"); } } - /// "Availability" - public static string PageType_EditPageTypeWorkflow_AvailabilityPlaceHolder_Label { get { return T("PageType.EditPageTypeWorkflow.AvailabilityPlaceHolder.Label"); } } - /// "Availability" - public static string PageType_EditPageTypeWorkflow_AvailabilityFieldGroup_Label { get { return T("PageType.EditPageTypeWorkflow.AvailabilityFieldGroup.Label"); } } - /// "Homepage relation" - public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_Label { get { return T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.Label"); } } - /// "Homepage relation" - public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_Help { get { return T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.Help"); } } - /// "No restrictions" - public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_NoRestrictionLabel { get { return T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.NoRestrictionLabel"); } } - /// "Only sub pages" - public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_OnlySubPagesLabel { get { return T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.OnlySubPagesLabel"); } } - /// "Only home pages" - public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_OnlyHomePagesLabel { get { return T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.OnlyHomePagesLabel"); } } - /// "Page type parent restriction" - public static string PageType_EditPageTypeWorkflow_PageTypeChildRestrictionMultiKeySelector_Label { get { return T("PageType.EditPageTypeWorkflow.PageTypeChildRestrictionMultiKeySelector.Label"); } } - /// "Only allow this page type as for child pages with the selected page types" - public static string PageType_EditPageTypeWorkflow_PageTypeChildRestrictionMultiKeySelector_Help { get { return T("PageType.EditPageTypeWorkflow.PageTypeChildRestrictionMultiKeySelector.Help"); } } - /// "DataFolders / Applications" - public static string PageType_EditPageTypeWorkflow_DataFolderApplicationPlaceHolder_Label { get { return T("PageType.EditPageTypeWorkflow.DataFolderApplicationPlaceHolder.Label"); } } - /// "Data folders" - public static string PageType_EditPageTypeWorkflow_DataFolderFieldGroup_Label { get { return T("PageType.EditPageTypeWorkflow.DataFolderFieldGroup.Label"); } } - /// "Data folders" - public static string PageType_EditPageTypeWorkflow_DataFolderMultiKeySelector_Label { get { return T("PageType.EditPageTypeWorkflow.DataFolderMultiKeySelector.Label"); } } - /// "Select the data folders that should automatically be added to pages using this page type" - public static string PageType_EditPageTypeWorkflow_DataFolderMultiKeySelector_Help { get { return T("PageType.EditPageTypeWorkflow.DataFolderMultiKeySelector.Help"); } } - /// "Applications" - public static string PageType_EditPageTypeWorkflow_ApplicationFieldGroup_Label { get { return T("PageType.EditPageTypeWorkflow.ApplicationFieldGroup.Label"); } } - /// "Applications" - public static string PageType_EditPageTypeWorkflow_ApplicationMultiKeySelector_Label { get { return T("PageType.EditPageTypeWorkflow.ApplicationMultiKeySelector.Label"); } } - /// "Select the applications that should automatically be added to pages using this page type" - public static string PageType_EditPageTypeWorkflow_ApplicationMultiKeySelector_Help { get { return T("PageType.EditPageTypeWorkflow.ApplicationMultiKeySelector.Help"); } } - /// "The default layout is not one of the selected restricted layouts" - public static string PageType_EditPageTypeWorkflow_ValidationError_DefaultTemplateNotInRestrictions { get { return T("PageType.EditPageTypeWorkflow.ValidationError.DefaultTemplateNotInRestrictions"); } } - /// "Page type parent restrictions are not allowed with home pages only" - public static string PageType_EditPageTypeWorkflow_ValidationError_HomepageRelationConflictsWithParentRestrictions { get { return T("PageType.EditPageTypeWorkflow.ValidationError.HomepageRelationConflictsWithParentRestrictions"); } } - /// "Delete This Page Type?" - public static string PageType_DeletePageTypeWorkflow_Confirm_Layout_Label { get { return T("PageType.DeletePageTypeWorkflow.Confirm.Layout.Label"); } } - /// "Delete the page type {0}?" - public static string PageType_DeletePageTypeWorkflow_Confirm_Layout_Messeage(object parameter0) { return string.Format(T("PageType.DeletePageTypeWorkflow.Confirm.Layout.Messeage"), parameter0); } - /// "Page Type in Use" - public static string PageType_DeletePageTypeWorkflow_PagesRefering_Layout_Label { get { return T("PageType.DeletePageTypeWorkflow.PagesRefering.Layout.Label"); } } - /// "The page type {0} is in use and it is not possible to delete it" - public static string PageType_DeletePageTypeWorkflow_PagesRefering_Layout_Message(object parameter0) { return string.Format(T("PageType.DeletePageTypeWorkflow.PagesRefering.Layout.Message"), parameter0); } - /// "Add Default Content" - public static string PageType_AddPageTypeDefaultPageContentWorkflow_Layout_Label { get { return T("PageType.AddPageTypeDefaultPageContentWorkflow.Layout.Label"); } } - /// "Placeholder ID" - public static string PageType_AddPageTypeDefaultPageContentWorkflow_PlaceHolderIdTextBox_Label { get { return T("PageType.AddPageTypeDefaultPageContentWorkflow.PlaceHolderIdTextBox.Label"); } } - /// "The ID of the placeholder. You can write a non-existing ID and create the placeholder afterwards (by editing Page Template markup)." - public static string PageType_AddPageTypeDefaultPageContentWorkflow_PlaceHolderIdTextBox_Help { get { return T("PageType.AddPageTypeDefaultPageContentWorkflow.PlaceHolderIdTextBox.Help"); } } - /// "No templates with {0}" - public static string PageType_AddPageTypeDefaultPageContentWorkflow_NonExistingPlaceholderId_Title(object parameter0) { return string.Format(T("PageType.AddPageTypeDefaultPageContentWorkflow.NonExistingPlaceholderId.Title"), parameter0); } - /// "Please note that the Placeholder ID you specified '{0}', is currently not in any Layout Template." - public static string PageType_AddPageTypeDefaultPageContentWorkflow_NonExistingPlaceholderId_Message(object parameter0) { return string.Format(T("PageType.AddPageTypeDefaultPageContentWorkflow.NonExistingPlaceholderId.Message"), parameter0); } - /// "Edit default content" - public static string PageType_EditPageTypeDefaultPageContentWorkflow_Layout_Label { get { return T("PageType.EditPageTypeDefaultPageContentWorkflow.Layout.Label"); } } - /// "Settings" - public static string PageType_EditPageTypeDefaultPageContentWorkflow_SettingsPlaceHolder_Label { get { return T("PageType.EditPageTypeDefaultPageContentWorkflow.SettingsPlaceHolder.Label"); } } - /// "Placeholder Info" - public static string PageType_EditPageTypeDefaultPageContentWorkflow_SettingsFieldGroup_Label { get { return T("PageType.EditPageTypeDefaultPageContentWorkflow.SettingsFieldGroup.Label"); } } - /// "Placeholder ID" - public static string PageType_EditPageTypeDefaultPageContentWorkflow_PlaceHolderIdTextBox_Label { get { return T("PageType.EditPageTypeDefaultPageContentWorkflow.PlaceHolderIdTextBox.Label"); } } - /// "The ID of the placeholder. You can write a non-existing ID and create the placeholder afterwards (edit Page Template markup)." - public static string PageType_EditPageTypeDefaultPageContentWorkflow_PlaceHolderIdTextBox_Help { get { return T("PageType.EditPageTypeDefaultPageContentWorkflow.PlaceHolderIdTextBox.Help"); } } - /// "Content" - public static string PageType_EditPageTypeDefaultPageContentWorkflow_ContentXhtmlEditor_Label { get { return T("PageType.EditPageTypeDefaultPageContentWorkflow.ContentXhtmlEditor.Label"); } } - /// "Add Metadata Field" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_Layout_Label { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.Layout.Label"); } } - /// "" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_FieldGroup_Label { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.FieldGroup.Label"); } } - /// "Programmatic name" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_NameTextBox_Label { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.NameTextBox.Label"); } } - /// "The unique name of the Metadata field. This can not be changed later!" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_NameTextBox_Help { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.NameTextBox.Help"); } } - /// "Show with label" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_LabelTextBox_Label { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.LabelTextBox.Label"); } } - /// "The label of the Metadata field. Used for UI." - public static string PageType_AddPageTypeMetaDataFieldWorkflow_LabelTextBox_Help { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.LabelTextBox.Help"); } } - /// "Metadata type" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_MetaDataTypeKeySelector_Label { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.MetaDataTypeKeySelector.Label"); } } - /// "The Metadata type" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_MetaDataTypeKeySelector_Help { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.MetaDataTypeKeySelector.Help"); } } - /// "Display on tab" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_MetaDataContainerKeySelector_Label { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.MetaDataContainerKeySelector.Label"); } } - /// "Select the tab to display the Metadata when editing a page." - public static string PageType_AddPageTypeMetaDataFieldWorkflow_MetaDataContainerKeySelector_Help { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.MetaDataContainerKeySelector.Help"); } } - /// "Add Metadata default values" - public static string PageType_AddPageTypeMetaDataFieldWorkflow_AddingDefaultMetaData_Title { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.AddingDefaultMetaData.Title"); } } - /// "The field name with another type is already used." - public static string PageType_AddPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataFieldNameAlreadyUsed { get { return T("PageType.AddPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataFieldNameAlreadyUsed"); } } - /// "Delete This Metadata Field?" - public static string PageType_DeletePageTypeMetaDataFieldWorkflow_Confirm_Layout_Label { get { return T("PageType.DeletePageTypeMetaDataFieldWorkflow.Confirm.Layout.Label"); } } - /// "Delete the Metadata field {0}? Warning: all its existing Metadata items will also be deleted" - public static string PageType_DeletePageTypeMetaDataFieldWorkflow_Confirm_Layout_Message(object parameter0) { return string.Format(T("PageType.DeletePageTypeMetaDataFieldWorkflow.Confirm.Layout.Message"), parameter0); } - /// "Edit Metadata Field" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_Layout_Label { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.Layout.Label"); } } - /// "Metadata field settings" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_FieldGroup_Label { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.FieldGroup.Label"); } } - /// "Label" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_LabelTextBox_Label { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.LabelTextBox.Label"); } } - /// "The label of the Metadata field. Used for UI" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_LabelTextBox_Help { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.LabelTextBox.Help"); } } - /// "Tab" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_MetaDataContainerKeySelector_Label { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.MetaDataContainerKeySelector.Label"); } } - /// "Select the tab to put the Metadata when editing a page" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_MetaDataContainerKeySelector_Help { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.MetaDataContainerKeySelector.Help"); } } - /// "Metatype" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_MetaTypeName_Label { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.MetaTypeName.Label"); } } - /// "The name of the metatype." - public static string PageType_EditPageTypeMetaDataFieldWorkflow_MetaTypeName_Help { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.MetaTypeName.Help"); } } - /// "The Metadata type is used another place with same name but different label" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataFieldNameAlreadyUsed { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataFieldNameAlreadyUsed"); } } - /// "There exists one or more definitions with the same name, container change is not allowed" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataContainerChangeNotAllowed { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataContainerChangeNotAllowed"); } } - /// "Metadata type has been deleted" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataTypeNotExisting_Title { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataTypeNotExisting.Title"); } } - /// "The Metadata type has been deleted from the system and can no longer be added to any page types" - public static string PageType_EditPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataTypeNotExisting_Message { get { return T("PageType.EditPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataTypeNotExisting.Message"); } } +///"Page Types" +public static string PageType_Tree_Root_Label=>T("PageType.Tree.Root.Label"); +///"Placeholder Content" +public static string PageType_Tree_DefaultContentElement_Label=>T("PageType.Tree.DefaultContentElement.Label"); +///"Metadata Fields" +public static string PageType_Tree_MetaDataFieldsElement_Label=>T("PageType.Tree.MetaDataFieldsElement.Label"); +///"Add Page Type" +public static string PageType_Tree_AddNewPageType_Label=>T("PageType.Tree.AddNewPageType.Label"); +///"Add new page type" +public static string PageType_Tree_AddNewPageType_ToolTip=>T("PageType.Tree.AddNewPageType.ToolTip"); +///"Edit Page Type" +public static string PageType_Tree_EditPageType_Label=>T("PageType.Tree.EditPageType.Label"); +///"Edit selected page type" +public static string PageType_Tree_EditPageType_ToolTip=>T("PageType.Tree.EditPageType.ToolTip"); +///"Delete Page Type" +public static string PageType_Tree_DeletePageType_Label=>T("PageType.Tree.DeletePageType.Label"); +///"Delete selected page type" +public static string PageType_Tree_DeletePageType_ToolTip=>T("PageType.Tree.DeletePageType.ToolTip"); +///"Add Default Content" +public static string PageType_Tree_AddDefaultPageContent_Label=>T("PageType.Tree.AddDefaultPageContent.Label"); +///"Add placeholder default content" +public static string PageType_Tree_AddDefaultPageContent_ToolTip=>T("PageType.Tree.AddDefaultPageContent.ToolTip"); +///"Edit Default Content" +public static string PageType_Tree_EditDefaultPageContent_Label=>T("PageType.Tree.EditDefaultPageContent.Label"); +///"Edit placeholder default content" +public static string PageType_Tree_EditDefaultPageContent_ToolTip=>T("PageType.Tree.EditDefaultPageContent.ToolTip"); +///"Delete Default Content" +public static string PageType_Tree_DeleteDefaultPageContent_Label=>T("PageType.Tree.DeleteDefaultPageContent.Label"); +///"Delete default content" +public static string PageType_Tree_DeleteDefaultPageContent_ToolTip=>T("PageType.Tree.DeleteDefaultPageContent.ToolTip"); +///"Add Metadata Field" +public static string PageType_Tree_AddMetaDataField_Label=>T("PageType.Tree.AddMetaDataField.Label"); +///"Add new Metadata field" +public static string PageType_Tree_AddMetaDataField_ToolTip=>T("PageType.Tree.AddMetaDataField.ToolTip"); +///"Edit Metadata Field" +public static string PageType_Tree_EditMetaDataField_Label=>T("PageType.Tree.EditMetaDataField.Label"); +///"Edit selected Metadata field" +public static string PageType_Tree_EditMetaDataField_ToolTip=>T("PageType.Tree.EditMetaDataField.ToolTip"); +///"Delete Metadata Field" +public static string PageType_Tree_DeleteMetaDataField_Label=>T("PageType.Tree.DeleteMetaDataField.Label"); +///"Delete selected Metadata field" +public static string PageType_Tree_DeleteMetaDataField_ToolTip=>T("PageType.Tree.DeleteMetaDataField.ToolTip"); +///"Add New Page Type" +public static string PageType_AddNewPageTypeWorkflow_Layout_Label=>T("PageType.AddNewPageTypeWorkflow.Layout.Label"); +///"New page type settings" +public static string PageType_AddNewPageTypeWorkflow_FieldGroup_Label=>T("PageType.AddNewPageTypeWorkflow.FieldGroup.Label"); +///"Name" +public static string PageType_AddNewPageTypeWorkflow_NameTextBox_Label=>T("PageType.AddNewPageTypeWorkflow.NameTextBox.Label"); +///"The name of the new page type" +public static string PageType_AddNewPageTypeWorkflow_NameTextBox_Help=>T("PageType.AddNewPageTypeWorkflow.NameTextBox.Help"); +///"Description" +public static string PageType_AddNewPageTypeWorkflow_DescriptionTextArea_Label=>T("PageType.AddNewPageTypeWorkflow.DescriptionTextArea.Label"); +///"The description of the new page type" +public static string PageType_AddNewPageTypeWorkflow_DescriptionTextArea_Help=>T("PageType.AddNewPageTypeWorkflow.DescriptionTextArea.Help"); +///"Settings" +public static string PageType_EditPageTypeWorkflow_SettingsPlaceHolder_Label=>T("PageType.EditPageTypeWorkflow.SettingsPlaceHolder.Label"); +///"Page type settings" +public static string PageType_EditPageTypeWorkflow_SettingsFieldGroup_Label=>T("PageType.EditPageTypeWorkflow.SettingsFieldGroup.Label"); +///"Name" +public static string PageType_EditPageTypeWorkflow_NameTextBox_Label=>T("PageType.EditPageTypeWorkflow.NameTextBox.Label"); +///"The name of the page type" +public static string PageType_EditPageTypeWorkflow_NameTextBox_Help=>T("PageType.EditPageTypeWorkflow.NameTextBox.Help"); +///"Description" +public static string PageType_EditPageTypeWorkflow_DescriptionTextArea_Label=>T("PageType.EditPageTypeWorkflow.DescriptionTextArea.Label"); +///"The description of the page type" +public static string PageType_EditPageTypeWorkflow_DescriptionTextArea_Help=>T("PageType.EditPageTypeWorkflow.DescriptionTextArea.Help"); +///"Available" +public static string PageType_EditPageTypeWorkflow_AvailableCheckBox_Label=>T("PageType.EditPageTypeWorkflow.AvailableCheckBox.Label"); +///"Unchecking this will make this page non-selectable on any page" +public static string PageType_EditPageTypeWorkflow_AvailableCheckBox_Help=>T("PageType.EditPageTypeWorkflow.AvailableCheckBox.Help"); +///"Preset menu title" +public static string PageType_EditPageTypeWorkflow_PresetMenuTitleCheckBox_Label=>T("PageType.EditPageTypeWorkflow.PresetMenuTitleCheckBox.Label"); +///"If this is checked a default value for the menu title on pages is preset" +public static string PageType_EditPageTypeWorkflow_PresetMenuTitleCheckBox_Help=>T("PageType.EditPageTypeWorkflow.PresetMenuTitleCheckBox.Help"); +///"Default child page type" +public static string PageType_EditPageTypeWorkflow_DefaultChildPageTypeKeySelector_Label=>T("PageType.EditPageTypeWorkflow.DefaultChildPageTypeKeySelector.Label"); +///"Select a page type to be the default page type for child pages created with this page type" +public static string PageType_EditPageTypeWorkflow_DefaultChildPageTypeKeySelector_Help=>T("PageType.EditPageTypeWorkflow.DefaultChildPageTypeKeySelector.Help"); +///"[None]" +public static string PageType_EditPageTypeWorkflow_DefaultChildPageTypeKeySelector_NoneSelectedLabel=>T("PageType.EditPageTypeWorkflow.DefaultChildPageTypeKeySelector.NoneSelectedLabel"); +///"Layout" +public static string PageType_EditPageTypeWorkflow_PageTemplatePlaceHolder_Label=>T("PageType.EditPageTypeWorkflow.PageTemplatePlaceHolder.Label"); +///"Layout" +public static string PageType_EditPageTypeWorkflow_PageTemplateRestrictionFieldGroup_Label=>T("PageType.EditPageTypeWorkflow.PageTemplateRestrictionFieldGroup.Label"); +///"Layout restrictions" +public static string PageType_EditPageTypeWorkflow_PageTemplateRestrictionMultiKeySelector_Label=>T("PageType.EditPageTypeWorkflow.PageTemplateRestrictionMultiKeySelector.Label"); +///"Select layouts to be only available when editing pages of this page type. If none is selected (default), all will be available." +public static string PageType_EditPageTypeWorkflow_PageTemplateRestrictionMultiKeySelector_Help=>T("PageType.EditPageTypeWorkflow.PageTemplateRestrictionMultiKeySelector.Help"); +///"Default layout" +public static string PageType_EditPageTypeWorkflow_DefaultPageTemplateKeySelector_Label=>T("PageType.EditPageTypeWorkflow.DefaultPageTemplateKeySelector.Label"); +///"Select a layout to be the default layout for pages created with this page type" +public static string PageType_EditPageTypeWorkflow_DefaultPageTemplateKeySelector_Help=>T("PageType.EditPageTypeWorkflow.DefaultPageTemplateKeySelector.Help"); +///"[None]" +public static string PageType_EditPageTypeWorkflow_DefaultPageTemplateKeySelector_NoneSelectedLabel=>T("PageType.EditPageTypeWorkflow.DefaultPageTemplateKeySelector.NoneSelectedLabel"); +///"Availability" +public static string PageType_EditPageTypeWorkflow_AvailabilityPlaceHolder_Label=>T("PageType.EditPageTypeWorkflow.AvailabilityPlaceHolder.Label"); +///"Availability" +public static string PageType_EditPageTypeWorkflow_AvailabilityFieldGroup_Label=>T("PageType.EditPageTypeWorkflow.AvailabilityFieldGroup.Label"); +///"Homepage relation" +public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_Label=>T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.Label"); +///"Homepage relation" +public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_Help=>T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.Help"); +///"No restrictions" +public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_NoRestrictionLabel=>T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.NoRestrictionLabel"); +///"Only sub pages" +public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_OnlySubPagesLabel=>T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.OnlySubPagesLabel"); +///"Only home pages" +public static string PageType_EditPageTypeWorkflow_HomepageRelationKeySelector_OnlyHomePagesLabel=>T("PageType.EditPageTypeWorkflow.HomepageRelationKeySelector.OnlyHomePagesLabel"); +///"Page type parent restriction" +public static string PageType_EditPageTypeWorkflow_PageTypeChildRestrictionMultiKeySelector_Label=>T("PageType.EditPageTypeWorkflow.PageTypeChildRestrictionMultiKeySelector.Label"); +///"Only allow this page type as for child pages with the selected page types" +public static string PageType_EditPageTypeWorkflow_PageTypeChildRestrictionMultiKeySelector_Help=>T("PageType.EditPageTypeWorkflow.PageTypeChildRestrictionMultiKeySelector.Help"); +///"DataFolders / Applications" +public static string PageType_EditPageTypeWorkflow_DataFolderApplicationPlaceHolder_Label=>T("PageType.EditPageTypeWorkflow.DataFolderApplicationPlaceHolder.Label"); +///"Data folders" +public static string PageType_EditPageTypeWorkflow_DataFolderFieldGroup_Label=>T("PageType.EditPageTypeWorkflow.DataFolderFieldGroup.Label"); +///"Data folders" +public static string PageType_EditPageTypeWorkflow_DataFolderMultiKeySelector_Label=>T("PageType.EditPageTypeWorkflow.DataFolderMultiKeySelector.Label"); +///"Select the data folders that should automatically be added to pages using this page type" +public static string PageType_EditPageTypeWorkflow_DataFolderMultiKeySelector_Help=>T("PageType.EditPageTypeWorkflow.DataFolderMultiKeySelector.Help"); +///"Applications" +public static string PageType_EditPageTypeWorkflow_ApplicationFieldGroup_Label=>T("PageType.EditPageTypeWorkflow.ApplicationFieldGroup.Label"); +///"Applications" +public static string PageType_EditPageTypeWorkflow_ApplicationMultiKeySelector_Label=>T("PageType.EditPageTypeWorkflow.ApplicationMultiKeySelector.Label"); +///"Select the applications that should automatically be added to pages using this page type" +public static string PageType_EditPageTypeWorkflow_ApplicationMultiKeySelector_Help=>T("PageType.EditPageTypeWorkflow.ApplicationMultiKeySelector.Help"); +///"The default layout is not one of the selected restricted layouts" +public static string PageType_EditPageTypeWorkflow_ValidationError_DefaultTemplateNotInRestrictions=>T("PageType.EditPageTypeWorkflow.ValidationError.DefaultTemplateNotInRestrictions"); +///"Page type parent restrictions are not allowed with home pages only" +public static string PageType_EditPageTypeWorkflow_ValidationError_HomepageRelationConflictsWithParentRestrictions=>T("PageType.EditPageTypeWorkflow.ValidationError.HomepageRelationConflictsWithParentRestrictions"); +///"Delete This Page Type?" +public static string PageType_DeletePageTypeWorkflow_Confirm_Layout_Label=>T("PageType.DeletePageTypeWorkflow.Confirm.Layout.Label"); +///"Delete the page type {0}?" +public static string PageType_DeletePageTypeWorkflow_Confirm_Layout_Messeage(object parameter0)=>string.Format(T("PageType.DeletePageTypeWorkflow.Confirm.Layout.Messeage"), parameter0); +///"Page Type in Use" +public static string PageType_DeletePageTypeWorkflow_PagesRefering_Layout_Label=>T("PageType.DeletePageTypeWorkflow.PagesRefering.Layout.Label"); +///"The page type {0} is in use and it is not possible to delete it" +public static string PageType_DeletePageTypeWorkflow_PagesRefering_Layout_Message(object parameter0)=>string.Format(T("PageType.DeletePageTypeWorkflow.PagesRefering.Layout.Message"), parameter0); +///"Add Default Content" +public static string PageType_AddPageTypeDefaultPageContentWorkflow_Layout_Label=>T("PageType.AddPageTypeDefaultPageContentWorkflow.Layout.Label"); +///"Placeholder ID" +public static string PageType_AddPageTypeDefaultPageContentWorkflow_PlaceHolderIdTextBox_Label=>T("PageType.AddPageTypeDefaultPageContentWorkflow.PlaceHolderIdTextBox.Label"); +///"The ID of the placeholder. You can write a non-existing ID and create the placeholder afterwards (by editing Page Template markup)." +public static string PageType_AddPageTypeDefaultPageContentWorkflow_PlaceHolderIdTextBox_Help=>T("PageType.AddPageTypeDefaultPageContentWorkflow.PlaceHolderIdTextBox.Help"); +///"No templates with {0}" +public static string PageType_AddPageTypeDefaultPageContentWorkflow_NonExistingPlaceholderId_Title(object parameter0)=>string.Format(T("PageType.AddPageTypeDefaultPageContentWorkflow.NonExistingPlaceholderId.Title"), parameter0); +///"Please note that the Placeholder ID you specified '{0}', is currently not in any Layout Template." +public static string PageType_AddPageTypeDefaultPageContentWorkflow_NonExistingPlaceholderId_Message(object parameter0)=>string.Format(T("PageType.AddPageTypeDefaultPageContentWorkflow.NonExistingPlaceholderId.Message"), parameter0); +///"Edit default content" +public static string PageType_EditPageTypeDefaultPageContentWorkflow_Layout_Label=>T("PageType.EditPageTypeDefaultPageContentWorkflow.Layout.Label"); +///"Settings" +public static string PageType_EditPageTypeDefaultPageContentWorkflow_SettingsPlaceHolder_Label=>T("PageType.EditPageTypeDefaultPageContentWorkflow.SettingsPlaceHolder.Label"); +///"Placeholder Info" +public static string PageType_EditPageTypeDefaultPageContentWorkflow_SettingsFieldGroup_Label=>T("PageType.EditPageTypeDefaultPageContentWorkflow.SettingsFieldGroup.Label"); +///"Placeholder ID" +public static string PageType_EditPageTypeDefaultPageContentWorkflow_PlaceHolderIdTextBox_Label=>T("PageType.EditPageTypeDefaultPageContentWorkflow.PlaceHolderIdTextBox.Label"); +///"The ID of the placeholder. You can write a non-existing ID and create the placeholder afterwards (edit Page Template markup)." +public static string PageType_EditPageTypeDefaultPageContentWorkflow_PlaceHolderIdTextBox_Help=>T("PageType.EditPageTypeDefaultPageContentWorkflow.PlaceHolderIdTextBox.Help"); +///"Content" +public static string PageType_EditPageTypeDefaultPageContentWorkflow_ContentXhtmlEditor_Label=>T("PageType.EditPageTypeDefaultPageContentWorkflow.ContentXhtmlEditor.Label"); +///"Add Metadata Field" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_Layout_Label=>T("PageType.AddPageTypeMetaDataFieldWorkflow.Layout.Label"); +///"" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_FieldGroup_Label=>T("PageType.AddPageTypeMetaDataFieldWorkflow.FieldGroup.Label"); +///"Programmatic name" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_NameTextBox_Label=>T("PageType.AddPageTypeMetaDataFieldWorkflow.NameTextBox.Label"); +///"The unique name of the Metadata field. This can not be changed later!" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_NameTextBox_Help=>T("PageType.AddPageTypeMetaDataFieldWorkflow.NameTextBox.Help"); +///"Show with label" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_LabelTextBox_Label=>T("PageType.AddPageTypeMetaDataFieldWorkflow.LabelTextBox.Label"); +///"The label of the Metadata field. Used for UI." +public static string PageType_AddPageTypeMetaDataFieldWorkflow_LabelTextBox_Help=>T("PageType.AddPageTypeMetaDataFieldWorkflow.LabelTextBox.Help"); +///"Metadata type" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_MetaDataTypeKeySelector_Label=>T("PageType.AddPageTypeMetaDataFieldWorkflow.MetaDataTypeKeySelector.Label"); +///"The Metadata type" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_MetaDataTypeKeySelector_Help=>T("PageType.AddPageTypeMetaDataFieldWorkflow.MetaDataTypeKeySelector.Help"); +///"Display on tab" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_MetaDataContainerKeySelector_Label=>T("PageType.AddPageTypeMetaDataFieldWorkflow.MetaDataContainerKeySelector.Label"); +///"Select the tab to display the Metadata when editing a page." +public static string PageType_AddPageTypeMetaDataFieldWorkflow_MetaDataContainerKeySelector_Help=>T("PageType.AddPageTypeMetaDataFieldWorkflow.MetaDataContainerKeySelector.Help"); +///"Add Metadata default values" +public static string PageType_AddPageTypeMetaDataFieldWorkflow_AddingDefaultMetaData_Title=>T("PageType.AddPageTypeMetaDataFieldWorkflow.AddingDefaultMetaData.Title"); +///"The field name with another type is already used." +public static string PageType_AddPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataFieldNameAlreadyUsed=>T("PageType.AddPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataFieldNameAlreadyUsed"); +///"Delete This Metadata Field?" +public static string PageType_DeletePageTypeMetaDataFieldWorkflow_Confirm_Layout_Label=>T("PageType.DeletePageTypeMetaDataFieldWorkflow.Confirm.Layout.Label"); +///"Delete the Metadata field {0}? Warning: all its existing Metadata items will also be deleted" +public static string PageType_DeletePageTypeMetaDataFieldWorkflow_Confirm_Layout_Message(object parameter0)=>string.Format(T("PageType.DeletePageTypeMetaDataFieldWorkflow.Confirm.Layout.Message"), parameter0); +///"Edit Metadata Field" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_Layout_Label=>T("PageType.EditPageTypeMetaDataFieldWorkflow.Layout.Label"); +///"Metadata field settings" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_FieldGroup_Label=>T("PageType.EditPageTypeMetaDataFieldWorkflow.FieldGroup.Label"); +///"Label" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_LabelTextBox_Label=>T("PageType.EditPageTypeMetaDataFieldWorkflow.LabelTextBox.Label"); +///"The label of the Metadata field. Used for UI" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_LabelTextBox_Help=>T("PageType.EditPageTypeMetaDataFieldWorkflow.LabelTextBox.Help"); +///"Tab" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_MetaDataContainerKeySelector_Label=>T("PageType.EditPageTypeMetaDataFieldWorkflow.MetaDataContainerKeySelector.Label"); +///"Select the tab to put the Metadata when editing a page" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_MetaDataContainerKeySelector_Help=>T("PageType.EditPageTypeMetaDataFieldWorkflow.MetaDataContainerKeySelector.Help"); +///"Metatype" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_MetaTypeName_Label=>T("PageType.EditPageTypeMetaDataFieldWorkflow.MetaTypeName.Label"); +///"The name of the metatype." +public static string PageType_EditPageTypeMetaDataFieldWorkflow_MetaTypeName_Help=>T("PageType.EditPageTypeMetaDataFieldWorkflow.MetaTypeName.Help"); +///"The Metadata type is used another place with same name but different label" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataFieldNameAlreadyUsed=>T("PageType.EditPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataFieldNameAlreadyUsed"); +///"There exists one or more definitions with the same name, container change is not allowed" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataContainerChangeNotAllowed=>T("PageType.EditPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataContainerChangeNotAllowed"); +///"Metadata type has been deleted" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataTypeNotExisting_Title=>T("PageType.EditPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataTypeNotExisting.Title"); +///"The Metadata type has been deleted from the system and can no longer be added to any page types" +public static string PageType_EditPageTypeMetaDataFieldWorkflow_ValidationError_MetaDataTypeNotExisting_Message=>T("PageType.EditPageTypeMetaDataFieldWorkflow.ValidationError.MetaDataTypeNotExisting.Message"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.PageTypeElementProvider", key); @@ -4003,58 +4057,58 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_RazorFunction { - /// "Razor Functions" - public static string RootElement_Label { get { return T("RootElement.Label"); } } - /// "Razor functions" - public static string RootElement_ToolTip { get { return T("RootElement.ToolTip"); } } - /// "Add Razor Function" - public static string AddNewRazorFunction_Label { get { return T("AddNewRazorFunction.Label"); } } - /// "Add a new Razor function" - public static string AddNewRazorFunction_ToolTip { get { return T("AddNewRazorFunction.ToolTip"); } } - /// "Edit" - public static string EditRazorFunction_Label { get { return T("EditRazorFunction.Label"); } } - /// "Edit Razor Function" - public static string EditRazorFunction_ToolTip { get { return T("EditRazorFunction.ToolTip"); } } - /// "Delete" - public static string DeleteRazorFunction_Label { get { return T("DeleteRazorFunction.Label"); } } - /// "Delete this Razor function" - public static string DeleteRazorFunction_ToolTip { get { return T("DeleteRazorFunction.ToolTip"); } } - /// "Add Razor Function" - public static string AddNewRazorFunction_LabelDialog { get { return T("AddNewRazorFunction.LabelDialog"); } } - /// "Name" - public static string AddNewRazorFunction_LabelName { get { return T("AddNewRazorFunction.LabelName"); } } - /// "" - public static string AddNewRazorFunction_HelpName { get { return T("AddNewRazorFunction.HelpName"); } } - /// "Namespace" - public static string AddNewRazorFunction_LabelNamespace { get { return T("AddNewRazorFunction.LabelNamespace"); } } - /// "" - public static string AddNewRazorFunction_HelpNamespace { get { return T("AddNewRazorFunction.HelpNamespace"); } } - /// "Copy from" - public static string AddNewRazorFunction_LabelCopyFrom { get { return T("AddNewRazorFunction.LabelCopyFrom"); } } - /// "You can copy the code from another Razor function by selecting it in this list." - public static string AddNewRazorFunction_LabelCopyFromHelp { get { return T("AddNewRazorFunction.LabelCopyFromHelp"); } } - /// "(New Razor function)" - public static string AddNewRazorFunction_LabelCopyFromEmptyOption { get { return T("AddNewRazorFunction.LabelCopyFromEmptyOption"); } } - /// "A C1 function with the same name already exists." - public static string AddNewRazorFunctionWorkflow_DuplicateName { get { return T("AddNewRazorFunctionWorkflow.DuplicateName"); } } - /// "The function name is empty" - public static string AddNewRazorFunctionWorkflow_EmptyName { get { return T("AddNewRazorFunctionWorkflow.EmptyName"); } } - /// "The function namespace is empty" - public static string AddNewRazorFunctionWorkflow_NamespaceEmpty { get { return T("AddNewRazorFunctionWorkflow.NamespaceEmpty"); } } - /// "The namespace must be like A.B.C - not starting or ending with a period (.)" - public static string AddNewRazorFunctionWorkflow_InvalidNamespace { get { return T("AddNewRazorFunctionWorkflow.InvalidNamespace"); } } - /// "The total length of the name and the namespace is too long (used to name the .cshtml file)." - public static string AddNewRazorFunctionWorkflow_TotalNameTooLang { get { return T("AddNewRazorFunctionWorkflow.TotalNameTooLang"); } } - /// "Validation Error" - public static string EditRazorFunctionWorkflow_Validation_DialogTitle { get { return T("EditRazorFunctionWorkflow.Validation.DialogTitle"); } } - /// "Compilation failed: {0}" - public static string EditRazorFunctionWorkflow_Validation_CompilationFailed(object parameter0) { return string.Format(T("EditRazorFunctionWorkflow.Validation.CompilationFailed"), parameter0); } - /// "Razor function should inherit '{0}'" - public static string EditRazorFunctionWorkflow_Validation_IncorrectBaseClass(object parameter0) { return string.Format(T("EditRazorFunctionWorkflow.Validation.IncorrectBaseClass"), parameter0); } - /// "Delete Razor Function?" - public static string DeleteRazorFunctionWorkflow_ConfirmDeleteTitle { get { return T("DeleteRazorFunctionWorkflow.ConfirmDeleteTitle"); } } - /// "Delete the selected Razor function?" - public static string DeleteRazorFunctionWorkflow_ConfirmDeleteMessage { get { return T("DeleteRazorFunctionWorkflow.ConfirmDeleteMessage"); } } +///"Razor Functions" +public static string RootElement_Label=>T("RootElement.Label"); +///"Razor functions" +public static string RootElement_ToolTip=>T("RootElement.ToolTip"); +///"Add Razor Function" +public static string AddNewRazorFunction_Label=>T("AddNewRazorFunction.Label"); +///"Add a new Razor function" +public static string AddNewRazorFunction_ToolTip=>T("AddNewRazorFunction.ToolTip"); +///"Edit" +public static string EditRazorFunction_Label=>T("EditRazorFunction.Label"); +///"Edit Razor Function" +public static string EditRazorFunction_ToolTip=>T("EditRazorFunction.ToolTip"); +///"Delete" +public static string DeleteRazorFunction_Label=>T("DeleteRazorFunction.Label"); +///"Delete this Razor function" +public static string DeleteRazorFunction_ToolTip=>T("DeleteRazorFunction.ToolTip"); +///"Add Razor Function" +public static string AddNewRazorFunction_LabelDialog=>T("AddNewRazorFunction.LabelDialog"); +///"Name" +public static string AddNewRazorFunction_LabelName=>T("AddNewRazorFunction.LabelName"); +///"" +public static string AddNewRazorFunction_HelpName=>T("AddNewRazorFunction.HelpName"); +///"Namespace" +public static string AddNewRazorFunction_LabelNamespace=>T("AddNewRazorFunction.LabelNamespace"); +///"" +public static string AddNewRazorFunction_HelpNamespace=>T("AddNewRazorFunction.HelpNamespace"); +///"Copy from" +public static string AddNewRazorFunction_LabelCopyFrom=>T("AddNewRazorFunction.LabelCopyFrom"); +///"You can copy the code from another Razor function by selecting it in this list." +public static string AddNewRazorFunction_LabelCopyFromHelp=>T("AddNewRazorFunction.LabelCopyFromHelp"); +///"(New Razor function)" +public static string AddNewRazorFunction_LabelCopyFromEmptyOption=>T("AddNewRazorFunction.LabelCopyFromEmptyOption"); +///"A C1 function with the same name already exists." +public static string AddNewRazorFunctionWorkflow_DuplicateName=>T("AddNewRazorFunctionWorkflow.DuplicateName"); +///"The function name is empty" +public static string AddNewRazorFunctionWorkflow_EmptyName=>T("AddNewRazorFunctionWorkflow.EmptyName"); +///"The function namespace is empty" +public static string AddNewRazorFunctionWorkflow_NamespaceEmpty=>T("AddNewRazorFunctionWorkflow.NamespaceEmpty"); +///"The namespace must be like A.B.C - not starting or ending with a period (.)" +public static string AddNewRazorFunctionWorkflow_InvalidNamespace=>T("AddNewRazorFunctionWorkflow.InvalidNamespace"); +///"The total length of the name and the namespace is too long (used to name the .cshtml file)." +public static string AddNewRazorFunctionWorkflow_TotalNameTooLang=>T("AddNewRazorFunctionWorkflow.TotalNameTooLang"); +///"Validation Error" +public static string EditRazorFunctionWorkflow_Validation_DialogTitle=>T("EditRazorFunctionWorkflow.Validation.DialogTitle"); +///"Compilation failed: {0}" +public static string EditRazorFunctionWorkflow_Validation_CompilationFailed(object parameter0)=>string.Format(T("EditRazorFunctionWorkflow.Validation.CompilationFailed"), parameter0); +///"Razor function should inherit '{0}'" +public static string EditRazorFunctionWorkflow_Validation_IncorrectBaseClass(object parameter0)=>string.Format(T("EditRazorFunctionWorkflow.Validation.IncorrectBaseClass"), parameter0); +///"Delete Razor Function?" +public static string DeleteRazorFunctionWorkflow_ConfirmDeleteTitle=>T("DeleteRazorFunctionWorkflow.ConfirmDeleteTitle"); +///"Delete the selected Razor function?" +public static string DeleteRazorFunctionWorkflow_ConfirmDeleteMessage=>T("DeleteRazorFunctionWorkflow.ConfirmDeleteMessage"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.RazorFunction", key); @@ -4064,44 +4118,44 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_RazorPageTemplate { - /// "Edit Razor File" - public static string EditRazorFileAction_Label { get { return T("EditRazorFileAction.Label"); } } - /// "Edit the cshtml file" - public static string EditRazorFileAction_ToolTip { get { return T("EditRazorFileAction.ToolTip"); } } - /// "Edit Razor Template" - public static string EditRazorTemplateAction_Label { get { return T("EditRazorTemplateAction.Label"); } } - /// "Edit the cshtml file behind the template" - public static string EditRazorTemplateAction_ToolTip { get { return T("EditRazorTemplateAction.ToolTip"); } } - /// "Delete" - public static string DeleteRazorPageTemplateAction_Label { get { return T("DeleteRazorPageTemplateAction.Label"); } } - /// "Delete page template" - public static string DeleteRazorPageTemplateAction_ToolTip { get { return T("DeleteRazorPageTemplateAction.ToolTip"); } } - /// "Add New Razor Template" - public static string AddNewRazorPageTemplate_LabelDialog { get { return T("AddNewRazorPageTemplate.LabelDialog"); } } - /// "Template Title" - public static string AddNewRazorPageTemplate_LabelTemplateTitle { get { return T("AddNewRazorPageTemplate.LabelTemplateTitle"); } } - /// "The title identifies this template in lists. Consider selecting a short but meaningful name." - public static string AddNewRazorPageTemplate_LabelTemplateTitleHelp { get { return T("AddNewRazorPageTemplate.LabelTemplateTitleHelp"); } } - /// "Copy from" - public static string AddNewRazorPageTemplate_LabelCopyFrom { get { return T("AddNewRazorPageTemplate.LabelCopyFrom"); } } - /// "You can copy the markup from another Layout Template by selecting it in this list." - public static string AddNewRazorPageTemplate_LabelCopyFromHelp { get { return T("AddNewRazorPageTemplate.LabelCopyFromHelp"); } } - /// "(New template)" - public static string AddNewRazorPageTemplate_LabelCopyFromEmptyOption { get { return T("AddNewRazorPageTemplate.LabelCopyFromEmptyOption"); } } - /// "Title already used" - public static string AddNewRazorPageTemplateWorkflow_TitleInUseTitle { get { return T("AddNewRazorPageTemplateWorkflow.TitleInUseTitle"); } } - /// "The title is too long (used as part of the .cshtml filename)." - public static string AddNewRazorPageTemplateWorkflow_TitleTooLong { get { return T("AddNewRazorPageTemplateWorkflow.TitleTooLong"); } } - /// "Validation error" - public static string EditTemplate_Validation_DialogTitle { get { return T("EditTemplate.Validation.DialogTitle"); } } - /// "Compilation failed: {0}" - public static string EditTemplate_Validation_CompilationFailed(object parameter0) { return string.Format(T("EditTemplate.Validation.CompilationFailed"), parameter0); } - /// "Page template class does not inherit '{0}'" - public static string EditTemplate_Validation_IncorrectBaseClass(object parameter0) { return string.Format(T("EditTemplate.Validation.IncorrectBaseClass"), parameter0); } - /// "Failed to evaluate page template property '{0}'. Excepton: {1}" - public static string EditTemplate_Validation_PropertyError(object parameter0,object parameter1) { return string.Format(T("EditTemplate.Validation.PropertyError"), parameter0,parameter1); } - /// "It is not allowed to change template id through current workflow. Original template id is '{0}'" - public static string EditTemplate_Validation_TemplateIdChanged(object parameter0) { return string.Format(T("EditTemplate.Validation.TemplateIdChanged"), parameter0); } +///"Edit Razor File" +public static string EditRazorFileAction_Label=>T("EditRazorFileAction.Label"); +///"Edit the cshtml file" +public static string EditRazorFileAction_ToolTip=>T("EditRazorFileAction.ToolTip"); +///"Edit Razor Template" +public static string EditRazorTemplateAction_Label=>T("EditRazorTemplateAction.Label"); +///"Edit the cshtml file behind the template" +public static string EditRazorTemplateAction_ToolTip=>T("EditRazorTemplateAction.ToolTip"); +///"Delete" +public static string DeleteRazorPageTemplateAction_Label=>T("DeleteRazorPageTemplateAction.Label"); +///"Delete page template" +public static string DeleteRazorPageTemplateAction_ToolTip=>T("DeleteRazorPageTemplateAction.ToolTip"); +///"Add New Razor Template" +public static string AddNewRazorPageTemplate_LabelDialog=>T("AddNewRazorPageTemplate.LabelDialog"); +///"Template Title" +public static string AddNewRazorPageTemplate_LabelTemplateTitle=>T("AddNewRazorPageTemplate.LabelTemplateTitle"); +///"The title identifies this template in lists. Consider selecting a short but meaningful name." +public static string AddNewRazorPageTemplate_LabelTemplateTitleHelp=>T("AddNewRazorPageTemplate.LabelTemplateTitleHelp"); +///"Copy from" +public static string AddNewRazorPageTemplate_LabelCopyFrom=>T("AddNewRazorPageTemplate.LabelCopyFrom"); +///"You can copy the markup from another Layout Template by selecting it in this list." +public static string AddNewRazorPageTemplate_LabelCopyFromHelp=>T("AddNewRazorPageTemplate.LabelCopyFromHelp"); +///"(New template)" +public static string AddNewRazorPageTemplate_LabelCopyFromEmptyOption=>T("AddNewRazorPageTemplate.LabelCopyFromEmptyOption"); +///"Title already used" +public static string AddNewRazorPageTemplateWorkflow_TitleInUseTitle=>T("AddNewRazorPageTemplateWorkflow.TitleInUseTitle"); +///"The title is too long (used as part of the .cshtml filename)." +public static string AddNewRazorPageTemplateWorkflow_TitleTooLong=>T("AddNewRazorPageTemplateWorkflow.TitleTooLong"); +///"Validation error" +public static string EditTemplate_Validation_DialogTitle=>T("EditTemplate.Validation.DialogTitle"); +///"Compilation failed: {0}" +public static string EditTemplate_Validation_CompilationFailed(object parameter0)=>string.Format(T("EditTemplate.Validation.CompilationFailed"), parameter0); +///"Page template class does not inherit '{0}'" +public static string EditTemplate_Validation_IncorrectBaseClass(object parameter0)=>string.Format(T("EditTemplate.Validation.IncorrectBaseClass"), parameter0); +///"Failed to evaluate page template property '{0}'. Excepton: {1}" +public static string EditTemplate_Validation_PropertyError(object parameter0,object parameter1)=>string.Format(T("EditTemplate.Validation.PropertyError"), parameter0,parameter1); +///"It is not allowed to change template id through current workflow. Original template id is '{0}'" +public static string EditTemplate_Validation_TemplateIdChanged(object parameter0)=>string.Format(T("EditTemplate.Validation.TemplateIdChanged"), parameter0); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.RazorPageTemplate", key); @@ -4111,124 +4165,126 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_SqlFunction { - /// "SQL Functions" - public static string SqlFunctionElementProvider_RootLabel { get { return T("SqlFunctionElementProvider.RootLabel"); } } - /// "Add Connections and then queries to connections" - public static string SqlFunctionElementProvider_RootLabelToolTip { get { return T("SqlFunctionElementProvider.RootLabelToolTip"); } } - /// "Add SQL Connection" - public static string SqlFunctionElementProvider_AddConnection { get { return T("SqlFunctionElementProvider.AddConnection"); } } - /// "Add new SQL connection" - public static string SqlFunctionElementProvider_AddConnectionToolTip { get { return T("SqlFunctionElementProvider.AddConnectionToolTip"); } } - /// "Edit" - public static string SqlFunctionElementProvider_EditConnection { get { return T("SqlFunctionElementProvider.EditConnection"); } } - /// "Edit SQL connection" - public static string SqlFunctionElementProvider_EditConnectionToolTip { get { return T("SqlFunctionElementProvider.EditConnectionToolTip"); } } - /// "Delete" - public static string SqlFunctionElementProvider_DeleteConnection { get { return T("SqlFunctionElementProvider.DeleteConnection"); } } - /// "Delete SQL connection" - public static string SqlFunctionElementProvider_DeleteConnectionToolTip { get { return T("SqlFunctionElementProvider.DeleteConnectionToolTip"); } } - /// "Add New SQL Query" - public static string SqlFunctionElementProvider_AddQuery { get { return T("SqlFunctionElementProvider.AddQuery"); } } - /// "Add a new SQL XML Provider" - public static string SqlFunctionElementProvider_AddQueryToolTip { get { return T("SqlFunctionElementProvider.AddQueryToolTip"); } } - /// "Edit" - public static string SqlFunctionElementProvider_EditQuery { get { return T("SqlFunctionElementProvider.EditQuery"); } } - /// "Edit SQL Query" - public static string SqlFunctionElementProvider_EditQueryToolTip { get { return T("SqlFunctionElementProvider.EditQueryToolTip"); } } - /// "Delete" - public static string SqlFunctionElementProvider_DeleteQuery { get { return T("SqlFunctionElementProvider.DeleteQuery"); } } - /// "Delete SQL Query" - public static string SqlFunctionElementProvider_DeleteQueryToolTip { get { return T("SqlFunctionElementProvider.DeleteQueryToolTip"); } } - /// "Add New SQL Query" - public static string AddNewSqlFunction_LabelDialog { get { return T("AddNewSqlFunction.LabelDialog"); } } - /// "Function naming" - public static string AddNewSqlFunction_LabelNamingPanel { get { return T("AddNewSqlFunction.LabelNamingPanel"); } } - /// "Name" - public static string AddNewSqlFunction_LabelName { get { return T("AddNewSqlFunction.LabelName"); } } - /// "" - public static string AddNewSqlFunction_HelpName { get { return T("AddNewSqlFunction.HelpName"); } } - /// "Namespace" - public static string AddNewSqlFunction_LabelNamespace { get { return T("AddNewSqlFunction.LabelNamespace"); } } - /// "" - public static string AddNewSqlFunction_HelpNamespace { get { return T("AddNewSqlFunction.HelpNamespace"); } } - /// "SQL command text" - public static string AddNewSqlFunction_LabelQueryCOmmand { get { return T("AddNewSqlFunction.LabelQueryCOmmand"); } } - /// "" - public static string AddNewSqlFunction_HelpQueryCOmmand { get { return T("AddNewSqlFunction.HelpQueryCOmmand"); } } - /// "Is a Stored Procedure" - public static string AddEditSqlFunction_LabelIsStoredProcedure { get { return T("AddEditSqlFunction.LabelIsStoredProcedure"); } } - /// "Yes, the command is a procedure" - public static string AddEditSqlFunction_LabelIsStoredProcedureCheckBox { get { return T("AddEditSqlFunction.LabelIsStoredProcedureCheckBox"); } } - /// "Returns result as XML" - public static string AddEditSqlFunction_LabelReturnsXml { get { return T("AddEditSqlFunction.LabelReturnsXml"); } } - /// "Yes, the command returns XML" - public static string AddEditSqlFunction_LabelReturnsXmlCheckBox { get { return T("AddEditSqlFunction.LabelReturnsXmlCheckBox"); } } - /// "Is a query" - public static string AddEditSqlFunction_LabelIsQuery { get { return T("AddEditSqlFunction.LabelIsQuery"); } } - /// "Yes, the command returns data" - public static string AddEditSqlFunction_LabelIsQueryCheckBox { get { return T("AddEditSqlFunction.LabelIsQueryCheckBox"); } } - /// "SQL Command behaviour" - public static string AddEditSqlFunction_LabelCommandBehaviour { get { return T("AddEditSqlFunction.LabelCommandBehaviour"); } } - /// "SQL Command" - public static string AddEditSqlFunction_LabelSqlEditor { get { return T("AddEditSqlFunction.LabelSqlEditor"); } } - /// "Add New SQL Connection" - public static string AddNewSqlFunctionConnection_LabelDialog { get { return T("AddNewSqlFunctionConnection.LabelDialog"); } } - /// "Name" - public static string AddNewSqlFunctionConnection_LabelName { get { return T("AddNewSqlFunctionConnection.LabelName"); } } - /// "" - public static string AddNewSqlFunctionConnection_HelpName { get { return T("AddNewSqlFunctionConnection.HelpName"); } } - /// "Connection String" - public static string AddNewSqlFunctionConnection_LabelConnectionString { get { return T("AddNewSqlFunctionConnection.LabelConnectionString"); } } - /// "" - public static string AddNewSqlFunctionConnection_HelpConnectionString { get { return T("AddNewSqlFunctionConnection.HelpConnectionString"); } } - /// "MS SQL Server" - public static string AddNewSqlFunctionConnection_LabelIsMSSQL { get { return T("AddNewSqlFunctionConnection.LabelIsMSSQL"); } } - /// "Database is a MS SQL Server" - public static string AddNewSqlFunctionConnection_LabelIsMSSQLCheckBox { get { return T("AddNewSqlFunctionConnection.LabelIsMSSQLCheckBox"); } } - /// "Input Parameters" - public static string EditSqlFunction_LabelInputParameters { get { return T("EditSqlFunction.LabelInputParameters"); } } - /// "Settings" - public static string EditSqlFunction_LabelSettings { get { return T("EditSqlFunction.LabelSettings"); } } - /// "Function name and description" - public static string EditSqlFunction_LabelNamingAndDescription { get { return T("EditSqlFunction.LabelNamingAndDescription"); } } - /// "Name" - public static string EditSqlFunction_LabelName { get { return T("EditSqlFunction.LabelName"); } } - /// "" - public static string EditSqlFunction_HelpName { get { return T("EditSqlFunction.HelpName"); } } - /// "Namespace" - public static string EditSqlFunction_LabelNamespace { get { return T("EditSqlFunction.LabelNamespace"); } } - /// "" - public static string EditSqlFunction_HelpNamespace { get { return T("EditSqlFunction.HelpNamespace"); } } - /// "Description" - public static string EditSqlFunction_LabelDescription { get { return T("EditSqlFunction.LabelDescription"); } } - /// "" - public static string EditSqlFunction_HelpDescription { get { return T("EditSqlFunction.HelpDescription"); } } - /// "Preview" - public static string EditSqlFunction_LabelPreview { get { return T("EditSqlFunction.LabelPreview"); } } - /// "Name" - public static string EditSqlFunctionConnection_LabelName { get { return T("EditSqlFunctionConnection.LabelName"); } } - /// "" - public static string EditSqlFunctionConnection_HelpName { get { return T("EditSqlFunctionConnection.HelpName"); } } - /// "Connection String" - public static string EditSqlFunctionConnection_LabelConnectionString { get { return T("EditSqlFunctionConnection.LabelConnectionString"); } } - /// "" - public static string EditSqlFunctionConnection_HelpConnectionString { get { return T("EditSqlFunctionConnection.HelpConnectionString"); } } - /// "MS SQL Server" - public static string EditSqlFunctionConnection_LabelIsMSSQL { get { return T("EditSqlFunctionConnection.LabelIsMSSQL"); } } - /// "Database is a MS SQL Server" - public static string EditSqlFunctionConnection_LabelIsMSSQLCheckBox { get { return T("EditSqlFunctionConnection.LabelIsMSSQLCheckBox"); } } - /// "Delete This SQL Connection?" - public static string DeleteSqlConnection_LabelFieldGroup { get { return T("DeleteSqlConnection.LabelFieldGroup"); } } - /// "Delete this SQL connection?" - public static string DeleteSqlConnection_Text { get { return T("DeleteSqlConnection.Text"); } } - /// "Delete This SQL Function?" - public static string DeleteSqlFunction_LabelFieldGroup { get { return T("DeleteSqlFunction.LabelFieldGroup"); } } - /// "Delete this SQL function?" - public static string DeleteSqlFunction_Text { get { return T("DeleteSqlFunction.Text"); } } - /// "Cascade Delete Error" - public static string CascadeDeleteErrorTitle { get { return T("CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string CascadeDeleteErrorMessage { get { return T("CascadeDeleteErrorMessage"); } } +///"SQL Functions" +public static string SqlFunctionElementProvider_RootLabel=>T("SqlFunctionElementProvider.RootLabel"); +///"Add Connections and then queries to connections" +public static string SqlFunctionElementProvider_RootLabelToolTip=>T("SqlFunctionElementProvider.RootLabelToolTip"); +///"Add SQL Connection" +public static string SqlFunctionElementProvider_AddConnection=>T("SqlFunctionElementProvider.AddConnection"); +///"Add new SQL connection" +public static string SqlFunctionElementProvider_AddConnectionToolTip=>T("SqlFunctionElementProvider.AddConnectionToolTip"); +///"Edit" +public static string SqlFunctionElementProvider_EditConnection=>T("SqlFunctionElementProvider.EditConnection"); +///"Edit SQL connection" +public static string SqlFunctionElementProvider_EditConnectionToolTip=>T("SqlFunctionElementProvider.EditConnectionToolTip"); +///"Delete" +public static string SqlFunctionElementProvider_DeleteConnection=>T("SqlFunctionElementProvider.DeleteConnection"); +///"Delete SQL connection" +public static string SqlFunctionElementProvider_DeleteConnectionToolTip=>T("SqlFunctionElementProvider.DeleteConnectionToolTip"); +///"Add New SQL Query" +public static string SqlFunctionElementProvider_AddQuery=>T("SqlFunctionElementProvider.AddQuery"); +///"Add a new SQL XML Provider" +public static string SqlFunctionElementProvider_AddQueryToolTip=>T("SqlFunctionElementProvider.AddQueryToolTip"); +///"Edit" +public static string SqlFunctionElementProvider_EditQuery=>T("SqlFunctionElementProvider.EditQuery"); +///"Edit SQL Query" +public static string SqlFunctionElementProvider_EditQueryToolTip=>T("SqlFunctionElementProvider.EditQueryToolTip"); +///"Delete" +public static string SqlFunctionElementProvider_DeleteQuery=>T("SqlFunctionElementProvider.DeleteQuery"); +///"Delete SQL Query" +public static string SqlFunctionElementProvider_DeleteQueryToolTip=>T("SqlFunctionElementProvider.DeleteQueryToolTip"); +///"Add New SQL Query" +public static string AddNewSqlFunction_LabelDialog=>T("AddNewSqlFunction.LabelDialog"); +///"Function naming" +public static string AddNewSqlFunction_LabelNamingPanel=>T("AddNewSqlFunction.LabelNamingPanel"); +///"Name" +public static string AddNewSqlFunction_LabelName=>T("AddNewSqlFunction.LabelName"); +///"" +public static string AddNewSqlFunction_HelpName=>T("AddNewSqlFunction.HelpName"); +///"Namespace" +public static string AddNewSqlFunction_LabelNamespace=>T("AddNewSqlFunction.LabelNamespace"); +///"" +public static string AddNewSqlFunction_HelpNamespace=>T("AddNewSqlFunction.HelpNamespace"); +///"SQL command text" +public static string AddNewSqlFunction_LabelQueryCOmmand=>T("AddNewSqlFunction.LabelQueryCOmmand"); +///"" +public static string AddNewSqlFunction_HelpQueryCOmmand=>T("AddNewSqlFunction.HelpQueryCOmmand"); +///"Is a Stored Procedure" +public static string AddEditSqlFunction_LabelIsStoredProcedure=>T("AddEditSqlFunction.LabelIsStoredProcedure"); +///"Yes, the command is a procedure" +public static string AddEditSqlFunction_LabelIsStoredProcedureCheckBox=>T("AddEditSqlFunction.LabelIsStoredProcedureCheckBox"); +///"Returns result as XML" +public static string AddEditSqlFunction_LabelReturnsXml=>T("AddEditSqlFunction.LabelReturnsXml"); +///"Yes, the command returns XML" +public static string AddEditSqlFunction_LabelReturnsXmlCheckBox=>T("AddEditSqlFunction.LabelReturnsXmlCheckBox"); +///"Is a query" +public static string AddEditSqlFunction_LabelIsQuery=>T("AddEditSqlFunction.LabelIsQuery"); +///"Yes, the command returns data" +public static string AddEditSqlFunction_LabelIsQueryCheckBox=>T("AddEditSqlFunction.LabelIsQueryCheckBox"); +///"SQL Command behaviour" +public static string AddEditSqlFunction_LabelCommandBehaviour=>T("AddEditSqlFunction.LabelCommandBehaviour"); +///"SQL Command" +public static string AddEditSqlFunction_LabelSqlEditor=>T("AddEditSqlFunction.LabelSqlEditor"); +///"Add New SQL Connection" +public static string AddNewSqlFunctionConnection_LabelDialog=>T("AddNewSqlFunctionConnection.LabelDialog"); +///"Name" +public static string AddNewSqlFunctionConnection_LabelName=>T("AddNewSqlFunctionConnection.LabelName"); +///"" +public static string AddNewSqlFunctionConnection_HelpName=>T("AddNewSqlFunctionConnection.HelpName"); +///"Connection String" +public static string AddNewSqlFunctionConnection_LabelConnectionString=>T("AddNewSqlFunctionConnection.LabelConnectionString"); +///"" +public static string AddNewSqlFunctionConnection_HelpConnectionString=>T("AddNewSqlFunctionConnection.HelpConnectionString"); +///"MS SQL Server" +public static string AddNewSqlFunctionConnection_LabelIsMSSQL=>T("AddNewSqlFunctionConnection.LabelIsMSSQL"); +///"Database is a MS SQL Server" +public static string AddNewSqlFunctionConnection_LabelIsMSSQLCheckBox=>T("AddNewSqlFunctionConnection.LabelIsMSSQLCheckBox"); +///"SQL Connection settings" +public static string EditSqlFunctionConnection_LabelFieldGroup=>T("EditSqlFunctionConnection.LabelFieldGroup"); +///"Input Parameters" +public static string EditSqlFunction_LabelInputParameters=>T("EditSqlFunction.LabelInputParameters"); +///"Settings" +public static string EditSqlFunction_LabelSettings=>T("EditSqlFunction.LabelSettings"); +///"Function name and description" +public static string EditSqlFunction_LabelNamingAndDescription=>T("EditSqlFunction.LabelNamingAndDescription"); +///"Name" +public static string EditSqlFunction_LabelName=>T("EditSqlFunction.LabelName"); +///"" +public static string EditSqlFunction_HelpName=>T("EditSqlFunction.HelpName"); +///"Namespace" +public static string EditSqlFunction_LabelNamespace=>T("EditSqlFunction.LabelNamespace"); +///"" +public static string EditSqlFunction_HelpNamespace=>T("EditSqlFunction.HelpNamespace"); +///"Description" +public static string EditSqlFunction_LabelDescription=>T("EditSqlFunction.LabelDescription"); +///"" +public static string EditSqlFunction_HelpDescription=>T("EditSqlFunction.HelpDescription"); +///"Preview" +public static string EditSqlFunction_LabelPreview=>T("EditSqlFunction.LabelPreview"); +///"Name" +public static string EditSqlFunctionConnection_LabelName=>T("EditSqlFunctionConnection.LabelName"); +///"" +public static string EditSqlFunctionConnection_HelpName=>T("EditSqlFunctionConnection.HelpName"); +///"Connection String" +public static string EditSqlFunctionConnection_LabelConnectionString=>T("EditSqlFunctionConnection.LabelConnectionString"); +///"" +public static string EditSqlFunctionConnection_HelpConnectionString=>T("EditSqlFunctionConnection.HelpConnectionString"); +///"MS SQL Server" +public static string EditSqlFunctionConnection_LabelIsMSSQL=>T("EditSqlFunctionConnection.LabelIsMSSQL"); +///"Database is a MS SQL Server" +public static string EditSqlFunctionConnection_LabelIsMSSQLCheckBox=>T("EditSqlFunctionConnection.LabelIsMSSQLCheckBox"); +///"Delete This SQL Connection?" +public static string DeleteSqlConnection_LabelFieldGroup=>T("DeleteSqlConnection.LabelFieldGroup"); +///"Delete this SQL connection?" +public static string DeleteSqlConnection_Text=>T("DeleteSqlConnection.Text"); +///"Delete This SQL Function?" +public static string DeleteSqlFunction_LabelFieldGroup=>T("DeleteSqlFunction.LabelFieldGroup"); +///"Delete this SQL function?" +public static string DeleteSqlFunction_Text=>T("DeleteSqlFunction.Text"); +///"Cascade Delete Error" +public static string CascadeDeleteErrorTitle=>T("CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string CascadeDeleteErrorMessage=>T("CascadeDeleteErrorMessage"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.SqlFunction", key); @@ -4238,969 +4294,1505 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_StandardFunctions { - /// "Loads an ASP.NET User Control" - public static string Composite_AspNet_LoadUserControl_description { get { return T("Composite.AspNet.LoadUserControl.description"); } } - /// "The path to the User Controls .ascx file, like “~/Controls/MyControl.ascx”" - public static string Composite_AspNet_LoadUserControl_param_Path_help { get { return T("Composite.AspNet.LoadUserControl.param.Path.help"); } } - /// "Path" - public static string Composite_AspNet_LoadUserControl_param_Path_label { get { return T("Composite.AspNet.LoadUserControl.param.Path.label"); } } - /// "Lets you specify constant boolean value" - public static string Composite_Constant_Boolean_description { get { return T("Composite.Constant.Boolean.description"); } } - /// "" - public static string Composite_Constant_Boolean_param_Constant_help { get { return T("Composite.Constant.Boolean.param.Constant.help"); } } - /// "Value" - public static string Composite_Constant_Boolean_param_Constant_label { get { return T("Composite.Constant.Boolean.param.Constant.label"); } } - /// "Lets you specify constant date and time value" - public static string Composite_Constant_DateTime_description { get { return T("Composite.Constant.DateTime.description"); } } - /// "" - public static string Composite_Constant_DateTime_param_Constant_help { get { return T("Composite.Constant.DateTime.param.Constant.help"); } } - /// "Value" - public static string Composite_Constant_DateTime_param_Constant_label { get { return T("Composite.Constant.DateTime.param.Constant.label"); } } - /// "Lets you specify constant decimal value" - public static string Composite_Constant_Decimal_description { get { return T("Composite.Constant.Decimal.description"); } } - /// "" - public static string Composite_Constant_Decimal_param_Constant_help { get { return T("Composite.Constant.Decimal.param.Constant.help"); } } - /// "Value" - public static string Composite_Constant_Decimal_param_Constant_label { get { return T("Composite.Constant.Decimal.param.Constant.label"); } } - /// "Lets you specify constant Guid value" - public static string Composite_Constant_Guid_description { get { return T("Composite.Constant.Guid.description"); } } - /// "" - public static string Composite_Constant_Guid_param_Constant_help { get { return T("Composite.Constant.Guid.param.Constant.help"); } } - /// "Value" - public static string Composite_Constant_Guid_param_Constant_label { get { return T("Composite.Constant.Guid.param.Constant.label"); } } - /// "Lets you specify constant integer value" - public static string Composite_Constant_Integer_description { get { return T("Composite.Constant.Integer.description"); } } - /// "" - public static string Composite_Constant_Integer_param_Constant_help { get { return T("Composite.Constant.Integer.param.Constant.help"); } } - /// "Value" - public static string Composite_Constant_Integer_param_Constant_label { get { return T("Composite.Constant.Integer.param.Constant.label"); } } - /// "Lets you specify constant string value" - public static string Composite_Constant_String_description { get { return T("Composite.Constant.String.description"); } } - /// "" - public static string Composite_Constant_String_param_Constant_help { get { return T("Composite.Constant.String.param.Constant.help"); } } - /// "Value" - public static string Composite_Constant_String_param_Constant_label { get { return T("Composite.Constant.String.param.Constant.label"); } } - /// "Lets you visually specify a Xhtml document constant" - public static string Composite_Constant_XhtmlDocument_description { get { return T("Composite.Constant.XhtmlDocument.description"); } } - /// "" - public static string Composite_Constant_XhtmlDocument_param_Constant_help { get { return T("Composite.Constant.XhtmlDocument.param.Constant.help"); } } - /// "Value" - public static string Composite_Constant_XhtmlDocument_param_Constant_label { get { return T("Composite.Constant.XhtmlDocument.param.Constant.label"); } } - /// "Adds a new instance of the given type." - public static string Composite_IDataGenerated_AddDataInstance_description { get { return T("Composite.IDataGenerated.AddDataInstance.description"); } } - /// "Updates instance(s) with the given values." - public static string Composite_IDataGenerated_UpdateDataInstance_description { get { return T("Composite.IDataGenerated.UpdateDataInstance.description"); } } - /// "" - public static string Composite_IDataGenerated_UpdateDataInstance_param_Filter_help { get { return T("Composite.IDataGenerated.UpdateDataInstance.param.Filter.help"); } } - /// "Filter" - public static string Composite_IDataGenerated_UpdateDataInstance_param_Filter_label { get { return T("Composite.IDataGenerated.UpdateDataInstance.param.Filter.label"); } } - /// "Deletes instance(s) with the given filter." - public static string Composite_IDataGenerated_DeleteDataInstance_description { get { return T("Composite.IDataGenerated.DeleteDataInstance.description"); } } - /// "" - public static string Composite_IDataGenerated_DeleteDataInstance_param_Filter_help { get { return T("Composite.IDataGenerated.DeleteDataInstance.param.Filter.help"); } } - /// "Filter" - public static string Composite_IDataGenerated_DeleteDataInstance_param_Filter_label { get { return T("Composite.IDataGenerated.DeleteDataInstance.param.Filter.label"); } } - /// "Creates a DataReference based on a key value." - public static string Composite_IDataGenerated_GetDataReference_description { get { return T("Composite.IDataGenerated.GetDataReference.description"); } } - /// "The key value of the data to reference." - public static string Composite_IDataGenerated_GetDataReference_param_KeyValue_help { get { return T("Composite.IDataGenerated.GetDataReference.param.KeyValue.help"); } } - /// "Key value" - public static string Composite_IDataGenerated_GetDataReference_param_KeyValue_label { get { return T("Composite.IDataGenerated.GetDataReference.param.KeyValue.label"); } } - /// "Creates a NullableDataReference based on a key value. The default value is 'null', no reference." - public static string Composite_IDataGenerated_GetNullableDataReference_description { get { return T("Composite.IDataGenerated.GetNullableDataReference.description"); } } - /// "The key value of the data to reference." - public static string Composite_IDataGenerated_GetNullableDataReference_param_KeyValue_help { get { return T("Composite.IDataGenerated.GetNullableDataReference.param.KeyValue.help"); } } - /// "Key value" - public static string Composite_IDataGenerated_GetNullableDataReference_param_KeyValue_label { get { return T("Composite.IDataGenerated.GetNullableDataReference.param.KeyValue.label"); } } - /// "Converts a DataReference into a single element filter. This filter will select a maximum of one item." - public static string Composite_IDataGenerated_Filter_DataReferenceFilter_description { get { return T("Composite.IDataGenerated.Filter.DataReferenceFilter.description"); } } - /// "The Data Reference to use when selecting data." - public static string Composite_IDataGenerated_Filter_DataReferenceFilter_param_DataReference_help { get { return T("Composite.IDataGenerated.Filter.DataReferenceFilter.param.DataReference.help"); } } - /// "Data Reference" - public static string Composite_IDataGenerated_Filter_DataReferenceFilter_param_DataReference_label { get { return T("Composite.IDataGenerated.Filter.DataReferenceFilter.param.DataReference.label"); } } - /// "Lets you select data based on its reference to the currently rendered page." - public static string Composite_IDataGenerated_Filter_ActivePageReferenceFilter_description { get { return T("Composite.IDataGenerated.Filter.ActivePageReferenceFilter.description"); } } - /// "Select what relation the current page must have with the data you wish to retrieve." - public static string Composite_IDataGenerated_Filter_ActivePageReferenceFilter_param_SitemapScope_help { get { return T("Composite.IDataGenerated.Filter.ActivePageReferenceFilter.param.SitemapScope.help"); } } - /// "Page scope" - public static string Composite_IDataGenerated_Filter_ActivePageReferenceFilter_param_SitemapScope_label { get { return T("Composite.IDataGenerated.Filter.ActivePageReferenceFilter.param.SitemapScope.label"); } } - /// "Defines an “and” or “or” query, combining two other filters." - public static string Composite_IDataGenerated_Filter_CompoundFilter_description { get { return T("Composite.IDataGenerated.Filter.CompoundFilter.description"); } } - /// "And / or filter" - public static string Composite_IDataGenerated_Filter_CompoundFilter_param_IsAndQuery_label { get { return T("Composite.IDataGenerated.Filter.CompoundFilter.param.IsAndQuery.label"); } } - /// "If you select “And” both filters are applied to the data. Selecting “Or” will give you the data that matches just one of the filters." - public static string Composite_IDataGenerated_Filter_CompoundFilter_param_IsAndQuery_help { get { return T("Composite.IDataGenerated.Filter.CompoundFilter.param.IsAndQuery.help"); } } - /// "One of the two filters (the one to evaluate first)" - public static string Composite_IDataGenerated_Filter_CompoundFilter_param_Left_help { get { return T("Composite.IDataGenerated.Filter.CompoundFilter.param.Left.help"); } } - /// "Left filter" - public static string Composite_IDataGenerated_Filter_CompoundFilter_param_Left_label { get { return T("Composite.IDataGenerated.Filter.CompoundFilter.param.Left.label"); } } - /// "One of the two filters (the one to evaluate last)" - public static string Composite_IDataGenerated_Filter_CompoundFilter_param_Right_help { get { return T("Composite.IDataGenerated.Filter.CompoundFilter.param.Right.help"); } } - /// "Right filter" - public static string Composite_IDataGenerated_Filter_CompoundFilter_param_Right_label { get { return T("Composite.IDataGenerated.Filter.CompoundFilter.param.Right.label"); } } - /// "Lets you specify a filter on data by specifying requirements for the individual fields. If you set requirements on multiple fields, they are all enforced (and query)." - public static string Composite_IDataGenerated_Filter_FieldPredicatesFilter_description { get { return T("Composite.IDataGenerated.Filter.FieldPredicatesFilter.description"); } } - /// "Retrieves an XML representation of the data. " - public static string Composite_IDataGenerated_GetXml_description { get { return T("Composite.IDataGenerated.GetXml.description"); } } - /// "Element name" - public static string Composite_IDataGenerated_GetXml_param_ElementName_label { get { return T("Composite.IDataGenerated.GetXml.param.ElementName.label"); } } - /// "Element namespace" - public static string Composite_IDataGenerated_GetXml_param_ElementNamespace_label { get { return T("Composite.IDataGenerated.GetXml.param.ElementNamespace.label"); } } - /// "" - public static string Composite_IDataGenerated_GetXml_param_Filter_help { get { return T("Composite.IDataGenerated.GetXml.param.Filter.help"); } } - /// "Filter" - public static string Composite_IDataGenerated_GetXml_param_Filter_label { get { return T("Composite.IDataGenerated.GetXml.param.Filter.label"); } } - /// "When selected the data XML will be preceded by a <PagingInfo /> element detailing number of pages, items and more." - public static string Composite_IDataGenerated_GetXml_param_IncludePagingInfo_help { get { return T("Composite.IDataGenerated.GetXml.param.IncludePagingInfo.help"); } } - /// "Include paging info" - public static string Composite_IDataGenerated_GetXml_param_IncludePagingInfo_label { get { return T("Composite.IDataGenerated.GetXml.param.IncludePagingInfo.label"); } } - /// "The field to order data by" - public static string Composite_IDataGenerated_GetXml_param_OrderByField_help { get { return T("Composite.IDataGenerated.GetXml.param.OrderByField.help"); } } - /// "Order by" - public static string Composite_IDataGenerated_GetXml_param_OrderByField_label { get { return T("Composite.IDataGenerated.GetXml.param.OrderByField.label"); } } - /// "When set to true results are delivered in ascending order, otherwise descending order is used. Default is ascending order." - public static string Composite_IDataGenerated_GetXml_param_OrderAscending_help { get { return T("Composite.IDataGenerated.GetXml.param.OrderAscending.help"); } } - /// "Order ascending" - public static string Composite_IDataGenerated_GetXml_param_OrderAscending_label { get { return T("Composite.IDataGenerated.GetXml.param.OrderAscending.label"); } } - /// "If the number of data elements exceed the page size you can use paging to move to the other pages. See the Page size parameter." - public static string Composite_IDataGenerated_GetXml_param_PageNumber_help { get { return T("Composite.IDataGenerated.GetXml.param.PageNumber.help"); } } - /// "Page number" - public static string Composite_IDataGenerated_GetXml_param_PageNumber_label { get { return T("Composite.IDataGenerated.GetXml.param.PageNumber.label"); } } - /// "The number of items to display on one page – the maximum number of elements to return. " - public static string Composite_IDataGenerated_GetXml_param_PageSize_help { get { return T("Composite.IDataGenerated.GetXml.param.PageSize.help"); } } - /// "Page size" - public static string Composite_IDataGenerated_GetXml_param_PageSize_label { get { return T("Composite.IDataGenerated.GetXml.param.PageSize.label"); } } - /// "The data fields to output in the XML. Fewer fields can yield faster renderings." - public static string Composite_IDataGenerated_GetXml_param_PropertyNames_help { get { return T("Composite.IDataGenerated.GetXml.param.PropertyNames.help"); } } - /// "Selected fields" - public static string Composite_IDataGenerated_GetXml_param_PropertyNames_label { get { return T("Composite.IDataGenerated.GetXml.param.PropertyNames.label"); } } - /// "If you include reference data in the 'Selected properties' setting, you can use this option to control how the referenced data is included. 'Inline' is easy to use, but may bloat the size of the XML document." - public static string Composite_IDataGenerated_GetXml_param_ShowReferencesInline_help { get { return T("Composite.IDataGenerated.GetXml.param.ShowReferencesInline.help"); } } - /// "Show reference data inline" - public static string Composite_IDataGenerated_GetXml_param_ShowReferencesInline_label { get { return T("Composite.IDataGenerated.GetXml.param.ShowReferencesInline.label"); } } - /// "When true data can be ordered randomly. Specify the number of random results you require by setting the 'Page size'. If a filter is specified, this is applied before the random selection. If you specify an 'Order by' value, you should specify a low 'Page size' or the randomization will become void." - public static string Composite_IDataGenerated_GetXml_param_Randomized_help { get { return T("Composite.IDataGenerated.GetXml.param.Randomized.help"); } } - /// "Randomized" - public static string Composite_IDataGenerated_GetXml_param_Randomized_label { get { return T("Composite.IDataGenerated.GetXml.param.Randomized.label"); } } - /// "Determines if result XML has to be cached, and what priority those cache records should have" - public static string Composite_IDataGenerated_GetXml_param_CachePriority_help { get { return T("Composite.IDataGenerated.GetXml.param.CachePriority.help"); } } - /// "Cache Priority" - public static string Composite_IDataGenerated_GetXml_param_CachePriority_label { get { return T("Composite.IDataGenerated.GetXml.param.CachePriority.label"); } } - /// "Fetches the ID of the current page or a page relative to the current page." - public static string Composite_Pages_GetPageId_description { get { return T("Composite.Pages.GetPageId.description"); } } - /// "What page to get id from. The default is from the current page." - public static string Composite_Pages_GetPageId_param_SitemapScope_help { get { return T("Composite.Pages.GetPageId.param.SitemapScope.help"); } } - /// "Page association" - public static string Composite_Pages_GetPageId_param_SitemapScope_label { get { return T("Composite.Pages.GetPageId.param.SitemapScope.label"); } } - /// "Quick and raw sitemap xhtml." - public static string Composite_Pages_QuickSitemap_description { get { return T("Composite.Pages.QuickSitemap.description"); } } - /// "Returns a hierarchical XML structure of pages. When executed as part of a page rendering XML elements representing the current and ancestor pages will be appended the attributes isopen=”true” and iscurrent=”true”" - public static string Composite_Pages_SitemapXml_description { get { return T("Composite.Pages.SitemapXml.description"); } } - /// "Source page" - public static string Composite_Pages_SitemapXml_param_SourcePage_label { get { return T("Composite.Pages.SitemapXml.param.SourcePage.label"); } } - /// "By default the source page is the page currently being rendered. Specify a value if you want to get sitemap information relative to another page. The source page controls how page elements are annotated with 'isopen' and 'iscurrent' and is the starting point when calculating the page scope." - public static string Composite_Pages_SitemapXml_param_SourcePage_help { get { return T("Composite.Pages.SitemapXml.param.SourcePage.help"); } } - /// "Page scope" - public static string Composite_Pages_SitemapXml_param_SitemapScope_label { get { return T("Composite.Pages.SitemapXml.param.SitemapScope.label"); } } - /// "The scope of pages to extract from the sitemap. The default is 'all pages'. You can use this parameter to extract the structure you need to complete your task." - public static string Composite_Pages_SitemapXml_param_SitemapScope_help { get { return T("Composite.Pages.SitemapXml.param.SitemapScope.help"); } } - /// "Gets information about current page in all the languages." - public static string Composite_Pages_GetForeignPageInfo_description { get { return T("Composite.Pages.GetForeignPageInfo.description"); } } - /// "Defines a 'cache zone' around a function call or markup (typically containing function calls). This function can be used to enhance page rendering performance by caching sections of a web page. The 'Object Cache Id' value should be unique to the content being cached." - public static string Composite_Utils_Caching_PageObjectCache_description { get { return T("Composite.Utils.Caching.PageObjectCache.description"); } } - /// "Object to cache" - public static string Composite_Utils_Caching_PageObjectCache_param_ObjectToCache_label { get { return T("Composite.Utils.Caching.PageObjectCache.param.ObjectToCache.label"); } } - /// "What you want to cache - this can be a single function call or a section of markup containing one or more function calls." - public static string Composite_Utils_Caching_PageObjectCache_param_ObjectToCache_help { get { return T("Composite.Utils.Caching.PageObjectCache.param.ObjectToCache.help"); } } - /// "Unique cache id" - public static string Composite_Utils_Caching_PageObjectCache_param_ObjectCacheId_label { get { return T("Composite.Utils.Caching.PageObjectCache.param.ObjectCacheId.label"); } } - /// "Specify an ID unique to the content being cached. This value is used - in conjunction with the Page scope - to define a unique cache key." - public static string Composite_Utils_Caching_PageObjectCache_param_ObjectCacheId_help { get { return T("Composite.Utils.Caching.PageObjectCache.param.ObjectCacheId.help"); } } - /// "Page scope" - public static string Composite_Utils_Caching_PageObjectCache_param_SitemapScope_label { get { return T("Composite.Utils.Caching.PageObjectCache.param.SitemapScope.label"); } } - /// "The page scope the cached data should be shared on. By default the page scope is 'this website', but you can change it to page specific caching and more." - public static string Composite_Utils_Caching_PageObjectCache_param_SitemapScope_help { get { return T("Composite.Utils.Caching.PageObjectCache.param.SitemapScope.help"); } } - /// "Cache duration (seconds)" - public static string Composite_Utils_Caching_PageObjectCache_param_SecondsToCache_label { get { return T("Composite.Utils.Caching.PageObjectCache.param.SecondsToCache.label"); } } - /// "The number of seconds the cached object should be reused. Default is 1 minute (60 seconds)." - public static string Composite_Utils_Caching_PageObjectCache_param_SecondsToCache_help { get { return T("Composite.Utils.Caching.PageObjectCache.param.SecondsToCache.help"); } } - /// "Language specific" - public static string Composite_Utils_Caching_PageObjectCache_param_LanguageSpecific_label { get { return T("Composite.Utils.Caching.PageObjectCache.param.LanguageSpecific.label"); } } - /// "Choose if the cached object should be uniquely cached per website language or commonly shared among languages." - public static string Composite_Utils_Caching_PageObjectCache_param_LanguageSpecific_help { get { return T("Composite.Utils.Caching.PageObjectCache.param.LanguageSpecific.help"); } } - /// "AreEqual" - public static string Composite_Utils_Compare_AreEqual_description { get { return T("Composite.Utils.Compare.AreEqual.description"); } } - /// "Compares two objects for equality. Returns true if the two objects are equal." - public static string Composite_Utils_Compare_AreEqual_param_ValueA_help { get { return T("Composite.Utils.Compare.AreEqual.param.ValueA.help"); } } - /// "Value A to compare." - public static string Composite_Utils_Compare_AreEqual_param_ValueA_label { get { return T("Composite.Utils.Compare.AreEqual.param.ValueA.label"); } } - /// "" - public static string Composite_Utils_Compare_AreEqual_param_ValueB_help { get { return T("Composite.Utils.Compare.AreEqual.param.ValueB.help"); } } - /// "Value B to compare." - public static string Composite_Utils_Compare_AreEqual_param_ValueB_label { get { return T("Composite.Utils.Compare.AreEqual.param.ValueB.label"); } } - /// "" - public static string Composite_Utils_Compare_IsLessThan_description { get { return T("Composite.Utils.Compare.IsLessThan.description"); } } - /// "" - public static string Composite_Utils_Compare_IsLessThan_param_ValueA_help { get { return T("Composite.Utils.Compare.IsLessThan.param.ValueA.help"); } } - /// "Value A to compare." - public static string Composite_Utils_Compare_IsLessThan_param_ValueA_label { get { return T("Composite.Utils.Compare.IsLessThan.param.ValueA.label"); } } - /// "" - public static string Composite_Utils_Compare_IsLessThan_param_ValueB_help { get { return T("Composite.Utils.Compare.IsLessThan.param.ValueB.help"); } } - /// "Value B to compare." - public static string Composite_Utils_Compare_IsLessThan_param_ValueB_label { get { return T("Composite.Utils.Compare.IsLessThan.param.ValueB.label"); } } - /// "Reads a string from the application configuration file (web.config or app.config)" - public static string Composite_Utils_Configuration_AppSettingsValue_description { get { return T("Composite.Utils.Configuration.AppSettingsValue.description"); } } - /// "" - public static string Composite_Utils_Configuration_AppSettingsValue_param_KeyName_help { get { return T("Composite.Utils.Configuration.AppSettingsValue.param.KeyName.help"); } } - /// "Key Name" - public static string Composite_Utils_Configuration_AppSettingsValue_param_KeyName_label { get { return T("Composite.Utils.Configuration.AppSettingsValue.param.KeyName.label"); } } - /// "Add a number of days to the current date and get the resulting date." - public static string Composite_Utils_Date_AddDays_description { get { return T("Composite.Utils.Date.AddDays.description"); } } - /// "Specify a negative or positive number of days to add to the current date." - public static string Composite_Utils_Date_AddDays_param_DaysToAdd_help { get { return T("Composite.Utils.Date.AddDays.param.DaysToAdd.help"); } } - /// "Days to add" - public static string Composite_Utils_Date_AddDays_param_DaysToAdd_label { get { return T("Composite.Utils.Date.AddDays.param.DaysToAdd.label"); } } - /// "The current date and time" - public static string Composite_Utils_Date_Now_description { get { return T("Composite.Utils.Date.Now.description"); } } - /// "Returns an input parameter from executing function context. Use this in developing to copy an input value to a new function call." - public static string Composite_Utils_GetInputParameter_description { get { return T("Composite.Utils.GetInputParameter.description"); } } - /// "Specify the name of the input parameter which value you wish to use here." - public static string Composite_Utils_GetInputParameter_param_InputParameterName_help { get { return T("Composite.Utils.GetInputParameter.param.InputParameterName.help"); } } - /// "Parameter name" - public static string Composite_Utils_GetInputParameter_param_InputParameterName_label { get { return T("Composite.Utils.GetInputParameter.param.InputParameterName.label"); } } - /// "Parses a string into an object. The type of object depends on the receiver. Using this function to deliver a value to a DateTime parameter, will make the system parse the string as a DateTime etc." - public static string Composite_Utils_ParseStringToObject_description { get { return T("Composite.Utils.ParseStringToObject.description"); } } - /// "Specify the string to parse. Note that the string must be formatted in a way that can be converted into the type of object that is expected." - public static string Composite_Utils_ParseStringToObject_param_StringToParse_help { get { return T("Composite.Utils.ParseStringToObject.param.StringToParse.help"); } } - /// "String to parse" - public static string Composite_Utils_ParseStringToObject_param_StringToParse_label { get { return T("Composite.Utils.ParseStringToObject.param.StringToParse.label"); } } - /// "Returns a new random Guid." - public static string Composite_Utils_Guid_NewGuid_description { get { return T("Composite.Utils.Guid.NewGuid.description"); } } - /// "A list of all cultures" - public static string Composite_Utils_Globalization_AllCultures_description { get { return T("Composite.Utils.Globalization.AllCultures.description"); } } - /// "The culture for the current user / request." - public static string Composite_Utils_Globalization_CurrentCulture_description { get { return T("Composite.Utils.Globalization.CurrentCulture.description"); } } - /// "Returns the sum from a list of integers" - public static string Composite_Utils_Integer_Sum_description { get { return T("Composite.Utils.Integer.Sum.description"); } } - /// "" - public static string Composite_Utils_Integer_Sum_param_Ints_help { get { return T("Composite.Utils.Integer.Sum.param.Ints.help"); } } - /// "Integer list" - public static string Composite_Utils_Integer_Sum_param_Ints_label { get { return T("Composite.Utils.Integer.Sum.param.Ints.label"); } } - /// "Check if a boolean is true or false. " - public static string Composite_Utils_Predicates_BoolEquals_description { get { return T("Composite.Utils.Predicates.BoolEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_BoolEquals_param_Value_help { get { return T("Composite.Utils.Predicates.BoolEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_BoolEquals_param_Value_label { get { return T("Composite.Utils.Predicates.BoolEquals.param.Value.label"); } } - /// "Check if a date equals a certain value" - public static string Composite_Utils_Predicates_DateTimeEquals_description { get { return T("Composite.Utils.Predicates.DateTimeEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_DateTimeEquals_param_Value_help { get { return T("Composite.Utils.Predicates.DateTimeEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_DateTimeEquals_param_Value_label { get { return T("Composite.Utils.Predicates.DateTimeEquals.param.Value.label"); } } - /// "Check if a date is greater than a certain value" - public static string Composite_Utils_Predicates_DateTimeGreaterThan_description { get { return T("Composite.Utils.Predicates.DateTimeGreaterThan.description"); } } - /// "" - public static string Composite_Utils_Predicates_DateTimeGreaterThan_param_Value_help { get { return T("Composite.Utils.Predicates.DateTimeGreaterThan.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_DateTimeGreaterThan_param_Value_label { get { return T("Composite.Utils.Predicates.DateTimeGreaterThan.param.Value.label"); } } - /// "Check if a date is less than a certain value" - public static string Composite_Utils_Predicates_DateTimeLessThan_description { get { return T("Composite.Utils.Predicates.DateTimeLessThan.description"); } } - /// "" - public static string Composite_Utils_Predicates_DateTimeLessThan_param_Value_help { get { return T("Composite.Utils.Predicates.DateTimeLessThan.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_DateTimeLessThan_param_Value_label { get { return T("Composite.Utils.Predicates.DateTimeLessThan.param.Value.label"); } } - /// "Check is a decimal has a certain value" - public static string Composite_Utils_Predicates_DecimalEquals_description { get { return T("Composite.Utils.Predicates.DecimalEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_DecimalEquals_param_Value_help { get { return T("Composite.Utils.Predicates.DecimalEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_DecimalEquals_param_Value_label { get { return T("Composite.Utils.Predicates.DecimalEquals.param.Value.label"); } } - /// "Check if a decimal is greater than a certain value" - public static string Composite_Utils_Predicates_DecimalGreaterThan_description { get { return T("Composite.Utils.Predicates.DecimalGreaterThan.description"); } } - /// "" - public static string Composite_Utils_Predicates_DecimalGreaterThan_param_Value_help { get { return T("Composite.Utils.Predicates.DecimalGreaterThan.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_DecimalGreaterThan_param_Value_label { get { return T("Composite.Utils.Predicates.DecimalGreaterThan.param.Value.label"); } } - /// "Check if a decimal is less than a certain value" - public static string Composite_Utils_Predicates_DecimalLessThan_description { get { return T("Composite.Utils.Predicates.DecimalLessThan.description"); } } - /// "" - public static string Composite_Utils_Predicates_DecimalLessThan_param_Value_help { get { return T("Composite.Utils.Predicates.DecimalLessThan.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_DecimalLessThan_param_Value_label { get { return T("Composite.Utils.Predicates.DecimalLessThan.param.Value.label"); } } - /// "Check if a Guid equals a certain value" - public static string Composite_Utils_Predicates_GuidEquals_description { get { return T("Composite.Utils.Predicates.GuidEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_GuidEquals_param_Value_help { get { return T("Composite.Utils.Predicates.GuidEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_GuidEquals_param_Value_label { get { return T("Composite.Utils.Predicates.GuidEquals.param.Value.label"); } } - /// "Check if a Guid exists in a comma separated string list" - public static string Composite_Utils_Predicates_GuidInCommaSeparatedList_description { get { return T("Composite.Utils.Predicates.GuidInCommaSeparatedList.description"); } } - /// "List of Guid" - public static string Composite_Utils_Predicates_GuidInCommaSeparatedList_param_CommaSeparatedGuids_label { get { return T("Composite.Utils.Predicates.GuidInCommaSeparatedList.param.CommaSeparatedGuids.label"); } } - /// "A string containing zero or more Guids separated by commas" - public static string Composite_Utils_Predicates_GuidInCommaSeparatedList_param_CommaSeparatedGuids_help { get { return T("Composite.Utils.Predicates.GuidInCommaSeparatedList.param.CommaSeparatedGuids.help"); } } - /// "Check if a string field matches one of the terms in a comma separated string list" - public static string Composite_Utils_Predicates_StringInCommaSeparatedList_description { get { return T("Composite.Utils.Predicates.StringInCommaSeparatedList.description"); } } - /// "Search terms" - public static string Composite_Utils_Predicates_StringInCommaSeparatedList_param_CommaSeparatedSearchTerms_label { get { return T("Composite.Utils.Predicates.StringInCommaSeparatedList.param.CommaSeparatedSearchTerms.label"); } } - /// "A string containing search terms separated by commas, like 'c1,cms,linq'" - public static string Composite_Utils_Predicates_StringInCommaSeparatedList_param_CommaSeparatedSearchTerms_help { get { return T("Composite.Utils.Predicates.StringInCommaSeparatedList.param.CommaSeparatedSearchTerms.help"); } } - /// "Ignore case" - public static string Composite_Utils_Predicates_StringInCommaSeparatedList_param_IgnoreCase_label { get { return T("Composite.Utils.Predicates.StringInCommaSeparatedList.param.IgnoreCase.label"); } } - /// "When 'false', casing of the words must match exactly. Default is 'true', case insensitive search" - public static string Composite_Utils_Predicates_StringInCommaSeparatedList_param_IgnoreCase_help { get { return T("Composite.Utils.Predicates.StringInCommaSeparatedList.param.IgnoreCase.help"); } } - /// "Check if a string field matches one of the strings in the supplied list" - public static string Composite_Utils_Predicates_StringInList_description { get { return T("Composite.Utils.Predicates.StringInList.description"); } } - /// "Search terms" - public static string Composite_Utils_Predicates_StringInList_param_SearchTerms_label { get { return T("Composite.Utils.Predicates.StringInList.param.SearchTerms.label"); } } - /// "A list of strings to match up against the searched string field." - public static string Composite_Utils_Predicates_StringInList_param_SearchTerms_help { get { return T("Composite.Utils.Predicates.StringInList.param.SearchTerms.help"); } } - /// "Ignore case" - public static string Composite_Utils_Predicates_StringInList_param_IgnoreCase_label { get { return T("Composite.Utils.Predicates.StringInList.param.IgnoreCase.label"); } } - /// "When 'false', casing of the words must match exactly. Default is 'true', case insensitive search" - public static string Composite_Utils_Predicates_StringInList_param_IgnoreCase_help { get { return T("Composite.Utils.Predicates.StringInList.param.IgnoreCase.help"); } } - /// "Check if an integer equals a certain value" - public static string Composite_Utils_Predicates_IntegerEquals_description { get { return T("Composite.Utils.Predicates.IntegerEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_IntegerEquals_param_Value_help { get { return T("Composite.Utils.Predicates.IntegerEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_IntegerEquals_param_Value_label { get { return T("Composite.Utils.Predicates.IntegerEquals.param.Value.label"); } } - /// "Check if an integer is greater than a certain value" - public static string Composite_Utils_Predicates_IntegerGreaterThan_description { get { return T("Composite.Utils.Predicates.IntegerGreaterThan.description"); } } - /// "" - public static string Composite_Utils_Predicates_IntegerGreaterThan_param_Value_help { get { return T("Composite.Utils.Predicates.IntegerGreaterThan.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_IntegerGreaterThan_param_Value_label { get { return T("Composite.Utils.Predicates.IntegerGreaterThan.param.Value.label"); } } - /// "Check if an integer is less than a certain value" - public static string Composite_Utils_Predicates_IntegerLessThan_description { get { return T("Composite.Utils.Predicates.IntegerLessThan.description"); } } - /// "" - public static string Composite_Utils_Predicates_IntegerLessThan_param_Value_help { get { return T("Composite.Utils.Predicates.IntegerLessThan.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_IntegerLessThan_param_Value_label { get { return T("Composite.Utils.Predicates.IntegerLessThan.param.Value.label"); } } - /// "Check if a string contains a certain value" - public static string Composite_Utils_Predicates_StringContains_description { get { return T("Composite.Utils.Predicates.StringContains.description"); } } - /// "" - public static string Composite_Utils_Predicates_StringContains_param_Value_help { get { return T("Composite.Utils.Predicates.StringContains.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_StringContains_param_Value_label { get { return T("Composite.Utils.Predicates.StringContains.param.Value.label"); } } - /// "Check if a string ends with a certain value" - public static string Composite_Utils_Predicates_StringEndsWith_description { get { return T("Composite.Utils.Predicates.StringEndsWith.description"); } } - /// "" - public static string Composite_Utils_Predicates_StringEndsWith_param_Value_help { get { return T("Composite.Utils.Predicates.StringEndsWith.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_StringEndsWith_param_Value_label { get { return T("Composite.Utils.Predicates.StringEndsWith.param.Value.label"); } } - /// "Check if a string equals a certain value" - public static string Composite_Utils_Predicates_StringEquals_description { get { return T("Composite.Utils.Predicates.StringEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_StringEquals_param_Value_help { get { return T("Composite.Utils.Predicates.StringEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_StringEquals_param_Value_label { get { return T("Composite.Utils.Predicates.StringEquals.param.Value.label"); } } - /// "Check if a string starts with a certain value" - public static string Composite_Utils_Predicates_StringStartsWith_description { get { return T("Composite.Utils.Predicates.StringStartsWith.description"); } } - /// "" - public static string Composite_Utils_Predicates_StringStartsWith_param_Value_help { get { return T("Composite.Utils.Predicates.StringStartsWith.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_StringStartsWith_param_Value_label { get { return T("Composite.Utils.Predicates.StringStartsWith.param.Value.label"); } } - /// "Check if a Guid equals a certain value" - public static string Composite_Utils_Predicates_NullableGuidEquals_description { get { return T("Composite.Utils.Predicates.NullableGuidEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_NullableGuidEquals_param_Value_help { get { return T("Composite.Utils.Predicates.NullableGuidEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_NullableGuidEquals_param_Value_label { get { return T("Composite.Utils.Predicates.NullableGuidEquals.param.Value.label"); } } - /// "Check if a nullable Guid has no value" - public static string Composite_Utils_Predicates_NullableGuidNoValue_description { get { return T("Composite.Utils.Predicates.NullableGuidNoValue.description"); } } - /// "Check if an integer equals a certain value" - public static string Composite_Utils_Predicates_NullableIntegerEquals_description { get { return T("Composite.Utils.Predicates.NullableIntegerEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_NullableIntegerEquals_param_Value_help { get { return T("Composite.Utils.Predicates.NullableIntegerEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_NullableIntegerEquals_param_Value_label { get { return T("Composite.Utils.Predicates.NullableIntegerEquals.param.Value.label"); } } - /// "Check if an nullable integer has no value" - public static string Composite_Utils_Predicates_NullableIntegerNoValue_description { get { return T("Composite.Utils.Predicates.NullableIntegerNoValue.description"); } } - /// "Check if a string has no value" - public static string Composite_Utils_Predicates_StringNoValue_description { get { return T("Composite.Utils.Predicates.StringNoValue.description"); } } - /// "Check if a boolean is true or false. " - public static string Composite_Utils_Predicates_NullableBoolEquals_description { get { return T("Composite.Utils.Predicates.NullableBoolEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_NullableBoolEquals_param_Value_help { get { return T("Composite.Utils.Predicates.NullableBoolEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_NullableBoolEquals_param_Value_label { get { return T("Composite.Utils.Predicates.NullableBoolEquals.param.Value.label"); } } - /// "Check if a nullable boolean has no value" - public static string Composite_Utils_Predicates_NullableBoolNoValue_description { get { return T("Composite.Utils.Predicates.NullableBoolNoValue.description"); } } - /// "Check if a date equals a certain value" - public static string Composite_Utils_Predicates_NullableDateTimeEquals_description { get { return T("Composite.Utils.Predicates.NullableDateTimeEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_NullableDateTimeEquals_param_Value_help { get { return T("Composite.Utils.Predicates.NullableDateTimeEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_NullableDateTimeEquals_param_Value_label { get { return T("Composite.Utils.Predicates.NullableDateTimeEquals.param.Value.label"); } } - /// "Check if a date is greater than a certain value" - public static string Composite_Utils_Predicates_NullableDateTimeGreaterThan_description { get { return T("Composite.Utils.Predicates.NullableDateTimeGreaterThan.description"); } } - /// "" - public static string Composite_Utils_Predicates_NullableDateTimeGreaterThan_param_Value_help { get { return T("Composite.Utils.Predicates.NullableDateTimeGreaterThan.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_NullableDateTimeGreaterThan_param_Value_label { get { return T("Composite.Utils.Predicates.NullableDateTimeGreaterThan.param.Value.label"); } } - /// "Check if a date is less than a certain value" - public static string Composite_Utils_Predicates_NullableDateTimeLessThan_description { get { return T("Composite.Utils.Predicates.NullableDateTimeLessThan.description"); } } - /// "" - public static string Composite_Utils_Predicates_NullableDateTimeLessThan_param_Value_help { get { return T("Composite.Utils.Predicates.NullableDateTimeLessThan.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_NullableDateTimeLessThan_param_Value_label { get { return T("Composite.Utils.Predicates.NullableDateTimeLessThan.param.Value.label"); } } - /// "Check if a nullable date has no value" - public static string Composite_Utils_Predicates_NullableDateTimeNoValue_description { get { return T("Composite.Utils.Predicates.NullableDateTimeNoValue.description"); } } - /// "Check is a decimal has a certain value" - public static string Composite_Utils_Predicates_NullableDecimalEquals_description { get { return T("Composite.Utils.Predicates.NullableDecimalEquals.description"); } } - /// "" - public static string Composite_Utils_Predicates_NullableDecimalEquals_param_Value_help { get { return T("Composite.Utils.Predicates.NullableDecimalEquals.param.Value.help"); } } - /// "The value to compare with" - public static string Composite_Utils_Predicates_NullableDecimalEquals_param_Value_label { get { return T("Composite.Utils.Predicates.NullableDecimalEquals.param.Value.label"); } } - /// "Check is a nullable decimal has no value" - public static string Composite_Utils_Predicates_NullableDecimalNoValue_description { get { return T("Composite.Utils.Predicates.NullableDecimalNoValue.description"); } } - /// "Joins a list of strings to a single string" - public static string Composite_Utils_String_Join_description { get { return T("Composite.Utils.String.Join.description"); } } - /// "The separator to insert between strings." - public static string Composite_Utils_String_Join_param_Separator_help { get { return T("Composite.Utils.String.Join.param.Separator.help"); } } - /// "Separator" - public static string Composite_Utils_String_Join_param_Separator_label { get { return T("Composite.Utils.String.Join.param.Separator.label"); } } - /// "The list of strings to join" - public static string Composite_Utils_String_Join_param_Strings_help { get { return T("Composite.Utils.String.Join.param.Strings.help"); } } - /// "Strings to join" - public static string Composite_Utils_String_Join_param_Strings_label { get { return T("Composite.Utils.String.Join.param.Strings.label"); } } - /// "Joins two strings to a simple string" - public static string Composite_Utils_String_JoinTwo_description { get { return T("Composite.Utils.String.JoinTwo.description"); } } - /// "The string to put first" - public static string Composite_Utils_String_JoinTwo_param_StringA_help { get { return T("Composite.Utils.String.JoinTwo.param.StringA.help"); } } - /// "String A" - public static string Composite_Utils_String_JoinTwo_param_StringA_label { get { return T("Composite.Utils.String.JoinTwo.param.StringA.label"); } } - /// "The string to put last" - public static string Composite_Utils_String_JoinTwo_param_StringB_help { get { return T("Composite.Utils.String.JoinTwo.param.StringB.help"); } } - /// "String B" - public static string Composite_Utils_String_JoinTwo_param_StringB_label { get { return T("Composite.Utils.String.JoinTwo.param.StringB.label"); } } - /// "A string to insert in between String A and String B. Default is no separator" - public static string Composite_Utils_String_JoinTwo_param_Separator_help { get { return T("Composite.Utils.String.JoinTwo.param.Separator.help"); } } - /// "Separator" - public static string Composite_Utils_String_JoinTwo_param_Separator_label { get { return T("Composite.Utils.String.JoinTwo.param.Separator.label"); } } - /// "Splits a string into a list of string." - public static string Composite_Utils_String_Split_description { get { return T("Composite.Utils.String.Split.description"); } } - /// "The separator to use when splitting the string. Default is comma (",")" - public static string Composite_Utils_String_Split_param_Separator_help { get { return T("Composite.Utils.String.Split.param.Separator.help"); } } - /// "Separator" - public static string Composite_Utils_String_Split_param_Separator_label { get { return T("Composite.Utils.String.Split.param.Separator.label"); } } - /// "The string you wish to split into a list." - public static string Composite_Utils_String_Split_param_String_help { get { return T("Composite.Utils.String.Split.param.String.help"); } } - /// "String to split" - public static string Composite_Utils_String_Split_param_String_label { get { return T("Composite.Utils.String.Split.param.String.label"); } } - /// "" - public static string Composite_Utils_Validation_DateTimeNotNullValidation_description { get { return T("Composite.Utils.Validation.DateTimeNotNullValidation.description"); } } - /// "" - public static string Composite_Utils_Validation_DecimalNotNullValidation_description { get { return T("Composite.Utils.Validation.DecimalNotNullValidation.description"); } } - /// "Validates the precision of digits (the number of decimals the user has specified)" - public static string Composite_Utils_Validation_DecimalPrecisionValidation_description { get { return T("Composite.Utils.Validation.DecimalPrecisionValidation.description"); } } - /// "The maximum number of digits to allow on the decimal" - public static string Composite_Utils_Validation_DecimalPrecisionValidation_param_MaxDigits_help { get { return T("Composite.Utils.Validation.DecimalPrecisionValidation.param.MaxDigits.help"); } } - /// "Max number of decimal digits" - public static string Composite_Utils_Validation_DecimalPrecisionValidation_param_MaxDigits_label { get { return T("Composite.Utils.Validation.DecimalPrecisionValidation.param.MaxDigits.label"); } } - /// "" - public static string Composite_Utils_Validation_GuidNotNullValidation_description { get { return T("Composite.Utils.Validation.GuidNotNullValidation.description"); } } - /// "" - public static string Composite_Utils_Validation_Int32NotNullValidation_description { get { return T("Composite.Utils.Validation.Int32NotNullValidation.description"); } } - /// "Validates than an integer is within a certain range." - public static string Composite_Utils_Validation_IntegerRangeValidation_description { get { return T("Composite.Utils.Validation.IntegerRangeValidation.description"); } } - /// "The maximum number allowed in this field." - public static string Composite_Utils_Validation_IntegerRangeValidation_param_max_help { get { return T("Composite.Utils.Validation.IntegerRangeValidation.param.max.help"); } } - /// "Maximum number" - public static string Composite_Utils_Validation_IntegerRangeValidation_param_max_label { get { return T("Composite.Utils.Validation.IntegerRangeValidation.param.max.label"); } } - /// "The minimum number allowed in this field." - public static string Composite_Utils_Validation_IntegerRangeValidation_param_min_help { get { return T("Composite.Utils.Validation.IntegerRangeValidation.param.min.help"); } } - /// "Minimum number" - public static string Composite_Utils_Validation_IntegerRangeValidation_param_min_label { get { return T("Composite.Utils.Validation.IntegerRangeValidation.param.min.label"); } } - /// "Validates that a string conforms to the specified regular expression" - public static string Composite_Utils_Validation_RegularExpressionValidation_description { get { return T("Composite.Utils.Validation.RegularExpressionValidation.description"); } } - /// "The regular expression pattern to use" - public static string Composite_Utils_Validation_RegularExpressionValidation_param_pattern_help { get { return T("Composite.Utils.Validation.RegularExpressionValidation.param.pattern.help"); } } - /// "RegEx pattern" - public static string Composite_Utils_Validation_RegularExpressionValidation_param_pattern_label { get { return T("Composite.Utils.Validation.RegularExpressionValidation.param.pattern.label"); } } - /// "Validates that the length of a string is within the specified range" - public static string Composite_Utils_Validation_StringLengthValidation_description { get { return T("Composite.Utils.Validation.StringLengthValidation.description"); } } - /// "" - public static string Composite_Utils_Validation_StringLengthValidation_param_max_help { get { return T("Composite.Utils.Validation.StringLengthValidation.param.max.help"); } } - /// "Maximum length" - public static string Composite_Utils_Validation_StringLengthValidation_param_max_label { get { return T("Composite.Utils.Validation.StringLengthValidation.param.max.label"); } } - /// "" - public static string Composite_Utils_Validation_StringLengthValidation_param_min_help { get { return T("Composite.Utils.Validation.StringLengthValidation.param.min.help"); } } - /// "Minimum length" - public static string Composite_Utils_Validation_StringLengthValidation_param_min_label { get { return T("Composite.Utils.Validation.StringLengthValidation.param.min.label"); } } - /// "" - public static string Composite_Utils_Validation_StringNotNullValidation_description { get { return T("Composite.Utils.Validation.StringNotNullValidation.description"); } } - /// "" - public static string Composite_Web_Client_BrowserPlatform_description { get { return T("Composite.Web.Client.BrowserPlatform.description"); } } - /// "" - public static string Composite_Web_Client_BrowserString_description { get { return T("Composite.Web.Client.BrowserString.description"); } } - /// "" - public static string Composite_Web_Client_BrowserType_description { get { return T("Composite.Web.Client.BrowserType.description"); } } - /// "" - public static string Composite_Web_Client_BrowserVersion_description { get { return T("Composite.Web.Client.BrowserVersion.description"); } } - /// "" - public static string Composite_Web_Client_EcmaScriptVersion_description { get { return T("Composite.Web.Client.EcmaScriptVersion.description"); } } - /// "True if the current request is identified as coming from a crawler (search engine)." - public static string Composite_Web_Client_IsCrawler_description { get { return T("Composite.Web.Client.IsCrawler.description"); } } - /// "True if the current request is identified as coming from a mobile device." - public static string Composite_Web_Client_IsMobileDevice_description { get { return T("Composite.Web.Client.IsMobileDevice.description"); } } - /// "Common HTML meta tags you probably want in your html head" - public static string Composite_Web_Html_Template_CommonMetaTags_description { get { return T("Composite.Web.Html.Template.CommonMetaTags.description"); } } - /// "Content-Type" - public static string Composite_Web_Html_Template_CommonMetaTags_param_ContentType_label { get { return T("Composite.Web.Html.Template.CommonMetaTags.param.ContentType.label"); } } - /// "By default this is 'text/html; charset=utf-8'. If you serve something else you should overwrite this." - public static string Composite_Web_Html_Template_CommonMetaTags_param_ContentType_help { get { return T("Composite.Web.Html.Template.CommonMetaTags.param.ContentType.help"); } } - /// "Designer" - public static string Composite_Web_Html_Template_CommonMetaTags_param_Designer_label { get { return T("Composite.Web.Html.Template.CommonMetaTags.param.Designer.label"); } } - /// "Who designed this website? Show it in the 'Designer' meta tag. Default is not to emit the meta tag." - public static string Composite_Web_Html_Template_CommonMetaTags_param_Designer_help { get { return T("Composite.Web.Html.Template.CommonMetaTags.param.Designer.help"); } } - /// "Show generator" - public static string Composite_Web_Html_Template_CommonMetaTags_param_ShowGenerator_label { get { return T("Composite.Web.Html.Template.CommonMetaTags.param.ShowGenerator.label"); } } - /// "Show the world you support Composite C1 - free open source!" - public static string Composite_Web_Html_Template_CommonMetaTags_param_ShowGenerator_help { get { return T("Composite.Web.Html.Template.CommonMetaTags.param.ShowGenerator.help"); } } - /// "Appends a lang='(language code)' attribute the the parent element, reflecting the language of the current page. You can put this just below the <html /> tag." - public static string Composite_Web_Html_Template_LangAttribute_description { get { return T("Composite.Web.Html.Template.LangAttribute.description"); } } - /// "Includes a named Page Template Feature at this location. Page Template Features can contain HTML and functional snippets and are managed on the Layout perspective." - public static string Composite_Web_Html_Template_PageTemplateFeature_description { get { return T("Composite.Web.Html.Template.PageTemplateFeature.description"); } } - /// "Feature name" - public static string Composite_Web_Html_Template_PageTemplateFeature_param_FeatureName_label { get { return T("Composite.Web.Html.Template.PageTemplateFeature.param.FeatureName.label"); } } - /// "The name of the Page Template Feature you wish to include." - public static string Composite_Web_Html_Template_PageTemplateFeature_param_FeatureName_help { get { return T("Composite.Web.Html.Template.PageTemplateFeature.param.FeatureName.help"); } } - /// "Emits the 'definitive title' of the current page; the same value that ends up in the page title tag. This title may originate from the page being rendered or from a C1 Function/ASP.NET control which changed the title to match specific data being featured on the page." - public static string Composite_Web_Html_Template_HtmlTitleValue_description { get { return T("Composite.Web.Html.Template.HtmlTitleValue.description"); } } - /// "Prefix to be removed" - public static string Composite_Web_Html_Template_HtmlTitleValue_param_PrefixToRemove_label { get { return T("Composite.Web.Html.Template.HtmlTitleValue.param.PrefixToRemove.label"); } } - /// "If the HTML title has a prefix value you wish to get rid of, specify the prefix here. If the prefix is not found in the title, this value is ignored." - public static string Composite_Web_Html_Template_HtmlTitleValue_param_PrefixToRemove_help { get { return T("Composite.Web.Html.Template.HtmlTitleValue.param.PrefixToRemove.help"); } } - /// "Postfix to be removed" - public static string Composite_Web_Html_Template_HtmlTitleValue_param_PostfixToRemove_label { get { return T("Composite.Web.Html.Template.HtmlTitleValue.param.PostfixToRemove.label"); } } - /// "If the HTML title has a postfix value you wish to get rid of, specify the postfix here. If the postfix is not found in the title, this value is ignored." - public static string Composite_Web_Html_Template_HtmlTitleValue_param_PostfixToRemove_help { get { return T("Composite.Web.Html.Template.HtmlTitleValue.param.PostfixToRemove.help"); } } - /// "Emits the 'definitive description' of the current page; the same value that ends up in the page meta description tag. This value may originate from the page being rendered or from a C1 Function/ASP.NET control which changed the description to match specific data being featured on the page." - public static string Composite_Web_Html_Template_MetaDescriptionValue_description { get { return T("Composite.Web.Html.Template.MetaDescriptionValue.description"); } } - /// "Element to wrap description" - public static string Composite_Web_Html_Template_MetaDescriptionValue_param_Element_label { get { return T("Composite.Web.Html.Template.MetaDescriptionValue.param.Element.label"); } } - /// "To have the description wrapped in an element (like <p class="description" />) specify it here. The element with only be emitted when a description text exist." - public static string Composite_Web_Html_Template_MetaDescriptionValue_param_Element_help { get { return T("Composite.Web.Html.Template.MetaDescriptionValue.param.Element.help"); } } - /// "Gets a value from the current users cookie collection." - public static string Composite_Web_Request_CookieValue_description { get { return T("Composite.Web.Request.CookieValue.description"); } } - /// "" - public static string Composite_Web_Request_CookieValue_param_CookieName_help { get { return T("Composite.Web.Request.CookieValue.param.CookieName.help"); } } - /// "Cookie name" - public static string Composite_Web_Request_CookieValue_param_CookieName_label { get { return T("Composite.Web.Request.CookieValue.param.CookieName.label"); } } - /// "If the user does not have this cookie, use this field to specify what value to default to." - public static string Composite_Web_Request_CookieValue_param_FallbackValue_help { get { return T("Composite.Web.Request.CookieValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_CookieValue_param_FallbackValue_label { get { return T("Composite.Web.Request.CookieValue.param.FallbackValue.label"); } } - /// "Gets a boolean value from a form post (HTTP POST)" - public static string Composite_Web_Request_FormPostBoolValue_description { get { return T("Composite.Web.Request.FormPostBoolValue.description"); } } - /// "" - public static string Composite_Web_Request_FormPostBoolValue_param_FallbackValue_help { get { return T("Composite.Web.Request.FormPostBoolValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_FormPostBoolValue_param_FallbackValue_label { get { return T("Composite.Web.Request.FormPostBoolValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_FormPostBoolValue_param_ParameterName_help { get { return T("Composite.Web.Request.FormPostBoolValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_FormPostBoolValue_param_ParameterName_label { get { return T("Composite.Web.Request.FormPostBoolValue.param.ParameterName.label"); } } - /// "Gets a decimal value from a form post (HTTP POST)" - public static string Composite_Web_Request_FormPostDecimalValue_description { get { return T("Composite.Web.Request.FormPostDecimalValue.description"); } } - /// "" - public static string Composite_Web_Request_FormPostDecimalValue_param_FallbackValue_help { get { return T("Composite.Web.Request.FormPostDecimalValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_FormPostDecimalValue_param_FallbackValue_label { get { return T("Composite.Web.Request.FormPostDecimalValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_FormPostDecimalValue_param_ParameterName_help { get { return T("Composite.Web.Request.FormPostDecimalValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_FormPostDecimalValue_param_ParameterName_label { get { return T("Composite.Web.Request.FormPostDecimalValue.param.ParameterName.label"); } } - /// "Gets a Guid value from a form post (HTTP POST)" - public static string Composite_Web_Request_FormPostGuidValue_description { get { return T("Composite.Web.Request.FormPostGuidValue.description"); } } - /// "" - public static string Composite_Web_Request_FormPostGuidValue_param_FallbackValue_help { get { return T("Composite.Web.Request.FormPostGuidValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_FormPostGuidValue_param_FallbackValue_label { get { return T("Composite.Web.Request.FormPostGuidValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_FormPostGuidValue_param_ParameterName_help { get { return T("Composite.Web.Request.FormPostGuidValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_FormPostGuidValue_param_ParameterName_label { get { return T("Composite.Web.Request.FormPostGuidValue.param.ParameterName.label"); } } - /// "Gets an integer value from a form post (HTTP POST)" - public static string Composite_Web_Request_FormPostIntegerValue_description { get { return T("Composite.Web.Request.FormPostIntegerValue.description"); } } - /// "" - public static string Composite_Web_Request_FormPostIntegerValue_param_FallbackValue_help { get { return T("Composite.Web.Request.FormPostIntegerValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_FormPostIntegerValue_param_FallbackValue_label { get { return T("Composite.Web.Request.FormPostIntegerValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_FormPostIntegerValue_param_ParameterName_help { get { return T("Composite.Web.Request.FormPostIntegerValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_FormPostIntegerValue_param_ParameterName_label { get { return T("Composite.Web.Request.FormPostIntegerValue.param.ParameterName.label"); } } - /// "Gets a string value from a form post (HTTP POST)" - public static string Composite_Web_Request_FormPostValue_description { get { return T("Composite.Web.Request.FormPostValue.description"); } } - /// "" - public static string Composite_Web_Request_FormPostValue_param_FallbackValue_help { get { return T("Composite.Web.Request.FormPostValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_FormPostValue_param_FallbackValue_label { get { return T("Composite.Web.Request.FormPostValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_FormPostValue_param_ParameterName_help { get { return T("Composite.Web.Request.FormPostValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_FormPostValue_param_ParameterName_label { get { return T("Composite.Web.Request.FormPostValue.param.ParameterName.label"); } } - /// "Gets a date and time value from a form post (HTTP POST). The incoming date string is expected to be XML formatted (like “2003-09-26T13:30:00”)" - public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_description { get { return T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.description"); } } - /// "The value to use if the post did not contain the specified parameter name." - public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_param_FallbackValue_help { get { return T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_param_FallbackValue_label { get { return T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_param_ParameterName_help { get { return T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_param_ParameterName_label { get { return T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.param.ParameterName.label"); } } - /// "Gets a boolean value from a Url parameter (HTTP GET)" - public static string Composite_Web_Request_QueryStringBoolValue_description { get { return T("Composite.Web.Request.QueryStringBoolValue.description"); } } - /// "" - public static string Composite_Web_Request_QueryStringBoolValue_param_FallbackValue_help { get { return T("Composite.Web.Request.QueryStringBoolValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_QueryStringBoolValue_param_FallbackValue_label { get { return T("Composite.Web.Request.QueryStringBoolValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_QueryStringBoolValue_param_ParameterName_help { get { return T("Composite.Web.Request.QueryStringBoolValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_QueryStringBoolValue_param_ParameterName_label { get { return T("Composite.Web.Request.QueryStringBoolValue.param.ParameterName.label"); } } - /// "Gets a decimal value from a Url parameter (HTTP GET)" - public static string Composite_Web_Request_QueryStringDecimalValue_description { get { return T("Composite.Web.Request.QueryStringDecimalValue.description"); } } - /// "" - public static string Composite_Web_Request_QueryStringDecimalValue_param_FallbackValue_help { get { return T("Composite.Web.Request.QueryStringDecimalValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_QueryStringDecimalValue_param_FallbackValue_label { get { return T("Composite.Web.Request.QueryStringDecimalValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_QueryStringDecimalValue_param_ParameterName_help { get { return T("Composite.Web.Request.QueryStringDecimalValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_QueryStringDecimalValue_param_ParameterName_label { get { return T("Composite.Web.Request.QueryStringDecimalValue.param.ParameterName.label"); } } - /// "Gets a Guid value from a Url parameter (HTTP GET)" - public static string Composite_Web_Request_QueryStringGuidValue_description { get { return T("Composite.Web.Request.QueryStringGuidValue.description"); } } - /// "" - public static string Composite_Web_Request_QueryStringGuidValue_param_FallbackValue_help { get { return T("Composite.Web.Request.QueryStringGuidValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_QueryStringGuidValue_param_FallbackValue_label { get { return T("Composite.Web.Request.QueryStringGuidValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_QueryStringGuidValue_param_ParameterName_help { get { return T("Composite.Web.Request.QueryStringGuidValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_QueryStringGuidValue_param_ParameterName_label { get { return T("Composite.Web.Request.QueryStringGuidValue.param.ParameterName.label"); } } - /// "Gets an integer value from a Url parameter (HTTP GET)" - public static string Composite_Web_Request_QueryStringIntegerValue_description { get { return T("Composite.Web.Request.QueryStringIntegerValue.description"); } } - /// "" - public static string Composite_Web_Request_QueryStringIntegerValue_param_FallbackValue_help { get { return T("Composite.Web.Request.QueryStringIntegerValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_QueryStringIntegerValue_param_FallbackValue_label { get { return T("Composite.Web.Request.QueryStringIntegerValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_QueryStringIntegerValue_param_ParameterName_help { get { return T("Composite.Web.Request.QueryStringIntegerValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_QueryStringIntegerValue_param_ParameterName_label { get { return T("Composite.Web.Request.QueryStringIntegerValue.param.ParameterName.label"); } } - /// "Gets a string value from a Url parameter (HTTP GET)" - public static string Composite_Web_Request_QueryStringValue_description { get { return T("Composite.Web.Request.QueryStringValue.description"); } } - /// "" - public static string Composite_Web_Request_QueryStringValue_param_FallbackValue_help { get { return T("Composite.Web.Request.QueryStringValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_QueryStringValue_param_FallbackValue_label { get { return T("Composite.Web.Request.QueryStringValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_QueryStringValue_param_ParameterName_help { get { return T("Composite.Web.Request.QueryStringValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_QueryStringValue_param_ParameterName_label { get { return T("Composite.Web.Request.QueryStringValue.param.ParameterName.label"); } } - /// "Gets a date and time value from a Url parameter (HTTP GET). The incoming date string is expected to be XML formatted (like “2003-09-26T13:30:00”)" - public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_description { get { return T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.description"); } } - /// "The value to use if the Url did not contain the specified parameter name." - public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_param_FallbackValue_help { get { return T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_param_FallbackValue_label { get { return T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_param_ParameterName_help { get { return T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.param.ParameterName.help"); } } - /// "Parameter name" - public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_param_ParameterName_label { get { return T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.param.ParameterName.label"); } } - /// "Returns additional information passed in a URL along with the page link." - public static string Composite_Web_Request_PathInfo_description { get { return T("Composite.Web.Request.PathInfo.description"); } } - /// "The segment of the path info to retrieve, using the format '/(0)/(1)/(2)/...'. Specify -1 to get the entire string." - public static string Composite_Web_Request_PathInfo_param_Segment_help { get { return T("Composite.Web.Request.PathInfo.param.Segment.help"); } } - /// "Segment" - public static string Composite_Web_Request_PathInfo_param_Segment_label { get { return T("Composite.Web.Request.PathInfo.param.Segment.label"); } } - /// "When true, any path info string will be accepted. Default is true." - public static string Composite_Web_Request_PathInfo_param_AutoApprove_help { get { return T("Composite.Web.Request.PathInfo.param.AutoApprove.help"); } } - /// "AutoApprove" - public static string Composite_Web_Request_PathInfo_param_AutoApprove_label { get { return T("Composite.Web.Request.PathInfo.param.AutoApprove.label"); } } - /// "" - public static string Composite_Web_Request_PathInfo_param_FallbackValue_help { get { return T("Composite.Web.Request.PathInfo.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_PathInfo_param_FallbackValue_label { get { return T("Composite.Web.Request.PathInfo.param.FallbackValue.label"); } } - /// "Extracts an integer value from a PathInfo segment." - public static string Composite_Web_Request_PathInfoInt_description { get { return T("Composite.Web.Request.PathInfoInt.description"); } } - /// "The segment of the path info to retrieve, using the format '/(0)/(1)/(2)/...'." - public static string Composite_Web_Request_PathInfoInt_param_Segment_help { get { return T("Composite.Web.Request.PathInfoInt.param.Segment.help"); } } - /// "Segment" - public static string Composite_Web_Request_PathInfoInt_param_Segment_label { get { return T("Composite.Web.Request.PathInfoInt.param.Segment.label"); } } - /// "When true, any path info string will be accepted. Default is true." - public static string Composite_Web_Request_PathInfoInt_param_AutoApprove_help { get { return T("Composite.Web.Request.PathInfoInt.param.AutoApprove.help"); } } - /// "AutoApprove" - public static string Composite_Web_Request_PathInfoInt_param_AutoApprove_label { get { return T("Composite.Web.Request.PathInfoInt.param.AutoApprove.label"); } } - /// "" - public static string Composite_Web_Request_PathInfoInt_param_FallbackValue_help { get { return T("Composite.Web.Request.PathInfoInt.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_PathInfoInt_param_FallbackValue_label { get { return T("Composite.Web.Request.PathInfoInt.param.FallbackValue.label"); } } - /// "Extracts a GUID from a PathInfo segment." - public static string Composite_Web_Request_PathInfoGuid_description { get { return T("Composite.Web.Request.PathInfoGuid.description"); } } - /// "The segment of the path info to retrieve, using the format '/(0)/(1)/(2)/...'. " - public static string Composite_Web_Request_PathInfoGuid_param_Segment_help { get { return T("Composite.Web.Request.PathInfoGuid.param.Segment.help"); } } - /// "Segment" - public static string Composite_Web_Request_PathInfoGuid_param_Segment_label { get { return T("Composite.Web.Request.PathInfoGuid.param.Segment.label"); } } - /// "When true, accept any path info string will be accepted. Default is true." - public static string Composite_Web_Request_PathInfoGuid_param_AutoApprove_help { get { return T("Composite.Web.Request.PathInfoGuid.param.AutoApprove.help"); } } - /// "AutoApprove" - public static string Composite_Web_Request_PathInfoGuid_param_AutoApprove_label { get { return T("Composite.Web.Request.PathInfoGuid.param.AutoApprove.label"); } } - /// "" - public static string Composite_Web_Request_PathInfoGuid_param_FallbackValue_help { get { return T("Composite.Web.Request.PathInfoGuid.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_PathInfoGuid_param_FallbackValue_label { get { return T("Composite.Web.Request.PathInfoGuid.param.FallbackValue.label"); } } - /// "Notifies the system of PathInfo being used, so that the request is not redirected to the 'Page not found' page." - public static string Composite_Web_Request_RegisterPathInfoUsage_description { get { return T("Composite.Web.Request.RegisterPathInfoUsage.description"); } } - /// "Retrieves a variable from the current users session as a string." - public static string Composite_Web_Request_SessionVariable_description { get { return T("Composite.Web.Request.SessionVariable.description"); } } - /// "The value to use if the session variable was not found" - public static string Composite_Web_Request_SessionVariable_param_FallbackValue_help { get { return T("Composite.Web.Request.SessionVariable.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Request_SessionVariable_param_FallbackValue_label { get { return T("Composite.Web.Request.SessionVariable.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Request_SessionVariable_param_VariableName_help { get { return T("Composite.Web.Request.SessionVariable.param.VariableName.help"); } } - /// "Variable name" - public static string Composite_Web_Request_SessionVariable_param_VariableName_label { get { return T("Composite.Web.Request.SessionVariable.param.VariableName.label"); } } - /// "Redirects the website visitor to another URL. URL redirects are suppressed when this function executes inside the C1 console." - public static string Composite_Web_Response_Redirect_description { get { return T("Composite.Web.Response.Redirect.description"); } } - /// "The URL the user should be redirected to, either absolute (http://contoso.com/default.aspx) or relative (/Login.aspx))." - public static string Composite_Web_Response_Redirect_param_Url_help { get { return T("Composite.Web.Response.Redirect.param.Url.help"); } } - /// "URL" - public static string Composite_Web_Response_Redirect_param_Url_label { get { return T("Composite.Web.Response.Redirect.param.Url.label"); } } - /// "Sets a cookie value for the current user" - public static string Composite_Web_Response_SetCookieValue_description { get { return T("Composite.Web.Response.SetCookieValue.description"); } } - /// "The name of the cookie to set / overwrite" - public static string Composite_Web_Response_SetCookieValue_param_CookieName_help { get { return T("Composite.Web.Response.SetCookieValue.param.CookieName.help"); } } - /// "Cookie name" - public static string Composite_Web_Response_SetCookieValue_param_CookieName_label { get { return T("Composite.Web.Response.SetCookieValue.param.CookieName.label"); } } - /// "The value to store in the cookie" - public static string Composite_Web_Response_SetCookieValue_param_Value_help { get { return T("Composite.Web.Response.SetCookieValue.param.Value.help"); } } - /// "Cookie value" - public static string Composite_Web_Response_SetCookieValue_param_Value_label { get { return T("Composite.Web.Response.SetCookieValue.param.Value.label"); } } - /// "When the cookie should expire (stop to exist). The default value is 'session', when the user closes the browser." - public static string Composite_Web_Response_SetCookieValue_param_Expires_help { get { return T("Composite.Web.Response.SetCookieValue.param.Expires.help"); } } - /// "Expiration" - public static string Composite_Web_Response_SetCookieValue_param_Expires_label { get { return T("Composite.Web.Response.SetCookieValue.param.Expires.label"); } } - /// "Sets the maximum number of seconds the current page should be publicly cached on the server. To ensure that the page response is not cached set the "Maximum seconds" to "0". If multiple sources set the server cache duration, the smallest number is used. Note that the file "~/Renderers/Page.aspx" contains a default value for cache duration – you can edit this file to change the default." - public static string Composite_Web_Response_SetServerPageCacheDuration_description { get { return T("Composite.Web.Response.SetServerPageCacheDuration.description"); } } - /// "The maximum number of seconds the page currently being rendered should be publicly cached. A high value yield good performance, a low value make changes show up faster. A value of '0' ensure that all visitors get a unique response." - public static string Composite_Web_Response_SetServerPageCacheDuration_param_MaxSeconds_help { get { return T("Composite.Web.Response.SetServerPageCacheDuration.param.MaxSeconds.help"); } } - /// "Maximum seconds" - public static string Composite_Web_Response_SetServerPageCacheDuration_param_MaxSeconds_label { get { return T("Composite.Web.Response.SetServerPageCacheDuration.param.MaxSeconds.label"); } } - /// "Sets a session variable for the current user" - public static string Composite_Web_Response_SetSessionVariable_description { get { return T("Composite.Web.Response.SetSessionVariable.description"); } } - /// "" - public static string Composite_Web_Response_SetSessionVariable_param_Value_help { get { return T("Composite.Web.Response.SetSessionVariable.param.Value.help"); } } - /// "Value" - public static string Composite_Web_Response_SetSessionVariable_param_Value_label { get { return T("Composite.Web.Response.SetSessionVariable.param.Value.label"); } } - /// "The name of the session variable to set." - public static string Composite_Web_Response_SetSessionVariable_param_VariableName_help { get { return T("Composite.Web.Response.SetSessionVariable.param.VariableName.help"); } } - /// "Variable name" - public static string Composite_Web_Response_SetSessionVariable_param_VariableName_label { get { return T("Composite.Web.Response.SetSessionVariable.param.VariableName.label"); } } - /// "Gets the web application virtual path. Typically this is '' - the empty string, when running in the website root, but if {applicationname} is running in a sub folder this can be '/MySubfolder'. You can use this value to prefix URL's so they will work no matter is {applicationname} is running is a subfolder or not. Sample XSLT usage: <img src="{/in:inputs/in:result[@name='ApplicationPath']}/images/myImage.png" />" - public static string Composite_Web_Server_ApplicationPath_description { get { return T("Composite.Web.Server.ApplicationPath.description"); } } - /// "Gets an IIS application variable" - public static string Composite_Web_Server_ApplicationVariable_description { get { return T("Composite.Web.Server.ApplicationVariable.description"); } } - /// "Value to use if the application variable was not located" - public static string Composite_Web_Server_ApplicationVariable_param_FallbackValue_help { get { return T("Composite.Web.Server.ApplicationVariable.param.FallbackValue.help"); } } - /// "Fallback value" - public static string Composite_Web_Server_ApplicationVariable_param_FallbackValue_label { get { return T("Composite.Web.Server.ApplicationVariable.param.FallbackValue.label"); } } - /// "" - public static string Composite_Web_Server_ApplicationVariable_param_VariableName_help { get { return T("Composite.Web.Server.ApplicationVariable.param.VariableName.help"); } } - /// "Variable name" - public static string Composite_Web_Server_ApplicationVariable_param_VariableName_label { get { return T("Composite.Web.Server.ApplicationVariable.param.VariableName.label"); } } - /// "Gets the value of an IIS Server variable" - public static string Composite_Web_Server_ServerVariable_description { get { return T("Composite.Web.Server.ServerVariable.description"); } } - /// "The IIS Server variable to get." - public static string Composite_Web_Server_ServerVariable_param_VariableName_help { get { return T("Composite.Web.Server.ServerVariable.param.VariableName.help"); } } - /// "Variable name" - public static string Composite_Web_Server_ServerVariable_param_VariableName_label { get { return T("Composite.Web.Server.ServerVariable.param.VariableName.label"); } } - /// "Loads a local XML file given a relative path" - public static string Composite_Xml_LoadFile_description { get { return T("Composite.Xml.LoadFile.description"); } } - /// "The relative path of the XML file to load" - public static string Composite_Xml_LoadFile_param_RelativePath_help { get { return T("Composite.Xml.LoadFile.param.RelativePath.help"); } } - /// "Relative path" - public static string Composite_Xml_LoadFile_param_RelativePath_label { get { return T("Composite.Xml.LoadFile.param.RelativePath.label"); } } - /// "Loads a local XHTML file given a relative path" - public static string Composite_Xml_LoadXhtmlFile_description { get { return T("Composite.Xml.LoadXhtmlFile.description"); } } - /// "The relative path of the XHTML file to load" - public static string Composite_Xml_LoadXhtmlFile_param_RelativePath_help { get { return T("Composite.Xml.LoadXhtmlFile.param.RelativePath.help"); } } - /// "Relative path" - public static string Composite_Xml_LoadXhtmlFile_param_RelativePath_label { get { return T("Composite.Xml.LoadXhtmlFile.param.RelativePath.label"); } } - /// "Loads a remote XML file given a Url" - public static string Composite_Xml_LoadUrl_description { get { return T("Composite.Xml.LoadUrl.description"); } } - /// "" - public static string Composite_Xml_LoadUrl_param_Url_help { get { return T("Composite.Xml.LoadUrl.param.Url.help"); } } - /// "Url" - public static string Composite_Xml_LoadUrl_param_Url_label { get { return T("Composite.Xml.LoadUrl.param.Url.label"); } } - /// "Time period in seconds for which the result should is cached. Default is 0 (no caching)." - public static string Composite_Xml_LoadUrl_param_CacheTime_help { get { return T("Composite.Xml.LoadUrl.param.CacheTime.help"); } } - /// "Seconds to cache" - public static string Composite_Xml_LoadUrl_param_CacheTime_label { get { return T("Composite.Xml.LoadUrl.param.CacheTime.label"); } } - /// "Provides localized date formatting functions for XSLT use. " - public static string Composite_Xslt_Extensions_DateFormatting_description { get { return T("Composite.Xslt.Extensions.DateFormatting.description"); } } - /// "Provides globalization functions for XSLT use." - public static string Composite_Xslt_Extensions_Globalization_description { get { return T("Composite.Xslt.Extensions.Globalization.description"); } } - /// "Provides functions that parse encoded XML documents or XHTML fragments into nodes. Use this extension when you have XML or XHTML as a string and need to copy it to the output or do transformations on it." - public static string Composite_Xslt_Extensions_MarkupParser_description { get { return T("Composite.Xslt.Extensions.MarkupParser.description"); } } - /// "Sends an e-mail. Remember to configure SMTP server connection in the web.config file." - public static string Composite_Mail_SendMail_description { get { return T("Composite.Mail.SendMail.description"); } } - /// "From" - public static string Composite_Mail_SendMail_param_From_label { get { return T("Composite.Mail.SendMail.param.From.label"); } } - /// "Sender's address." - public static string Composite_Mail_SendMail_param_From_help { get { return T("Composite.Mail.SendMail.param.From.help"); } } - /// "To" - public static string Composite_Mail_SendMail_param_To_label { get { return T("Composite.Mail.SendMail.param.To.label"); } } - /// "Recipient. A list of comma separated email addresses." - public static string Composite_Mail_SendMail_param_To_help { get { return T("Composite.Mail.SendMail.param.To.help"); } } - /// "Subject" - public static string Composite_Mail_SendMail_param_Subject_label { get { return T("Composite.Mail.SendMail.param.Subject.label"); } } - /// "Email subject." - public static string Composite_Mail_SendMail_param_Subject_help { get { return T("Composite.Mail.SendMail.param.Subject.help"); } } - /// "Body" - public static string Composite_Mail_SendMail_param_Body_label { get { return T("Composite.Mail.SendMail.param.Body.label"); } } - /// "Email body." - public static string Composite_Mail_SendMail_param_Body_help { get { return T("Composite.Mail.SendMail.param.Body.help"); } } - /// "IsHtml" - public static string Composite_Mail_SendMail_param_IsHtml_label { get { return T("Composite.Mail.SendMail.param.IsHtml.label"); } } - /// "Defines whether email to be sent is an HTML email or a text email." - public static string Composite_Mail_SendMail_param_IsHtml_help { get { return T("Composite.Mail.SendMail.param.IsHtml.help"); } } - /// "CC" - public static string Composite_Mail_SendMail_param_CC_label { get { return T("Composite.Mail.SendMail.param.CC.label"); } } - /// "Carbon Copy. A list of comma separated email addresses that are secondary recipients of a message." - public static string Composite_Mail_SendMail_param_CC_help { get { return T("Composite.Mail.SendMail.param.CC.help"); } } - /// "ReplyTo" - public static string Composite_Mail_SendMail_param_ReplyTo_label { get { return T("Composite.Mail.SendMail.param.ReplyTo.label"); } } - /// "Address that should be used to reply to the message." - public static string Composite_Mail_SendMail_param_ReplyTo_help { get { return T("Composite.Mail.SendMail.param.ReplyTo.help"); } } - /// "BCC" - public static string Composite_Mail_SendMail_param_BCC_label { get { return T("Composite.Mail.SendMail.param.BCC.label"); } } - /// "Blind Carbon Copy. A list of recipients which will receive a mail but their individual email addresses will be concealed from the complete list of recipients." - public static string Composite_Mail_SendMail_param_BCC_help { get { return T("Composite.Mail.SendMail.param.BCC.help"); } } - /// "Attachment" - public static string Composite_Mail_SendMail_param_Attachment_label { get { return T("Composite.Mail.SendMail.param.Attachment.label"); } } - /// "List of attached files. \n Format it the following [{name}=]{filepath}[,{mime-type] [ | .... ]. \n File path can be either relative or absolute path f.e. "C:\someimage.jpg" or "/coolpicture.jpg" \n If file path starts with "Composite/", it will be recognized as a path to Composite media, f.e. 'Composite/MediaArchive:someImage.gif' \n \n Examples: \n /attachment.jpg \n image.jpg=/attachment.jpg \n image.jpg=/attachment.jpg,image/jpg \n image1.jpg=/attachment1.jpg,image/jpg|image2.jpg=/attachment2.jpg,image/jpg" - public static string Composite_Mail_SendMail_param_Attachment_help { get { return T("Composite.Mail.SendMail.param.Attachment.help"); } } - /// "AttachmentFromMedia" - public static string Composite_Mail_SendMail_param_AttachmentFromMedia_label { get { return T("Composite.Mail.SendMail.param.AttachmentFromMedia.label"); } } - /// "A file from media library to be attached." - public static string Composite_Mail_SendMail_param_AttachmentFromMedia_help { get { return T("Composite.Mail.SendMail.param.AttachmentFromMedia.help"); } } - /// "Filters images by it's folder path" - public static string Composite_Data_Types_IImageFile_MediaFolderFilter_description { get { return T("Composite.Data.Types.IImageFile.MediaFolderFilter.description"); } } - /// "Media Folder" - public static string Composite_Data_Types_IImageFile_MediaFolderFilter_param_MediaFolder_label { get { return T("Composite.Data.Types.IImageFile.MediaFolderFilter.param.MediaFolder.label"); } } - /// "A reference to a media folder" - public static string Composite_Data_Types_IImageFile_MediaFolderFilter_param_MediaFolder_help { get { return T("Composite.Data.Types.IImageFile.MediaFolderFilter.param.MediaFolder.help"); } } - /// "Include Subfolders" - public static string Composite_Data_Types_IImageFile_MediaFolderFilter_param_IncludeSubfolders_label { get { return T("Composite.Data.Types.IImageFile.MediaFolderFilter.param.IncludeSubfolders.label"); } } - /// "Determines whether images from subfolders should be included." - public static string Composite_Data_Types_IImageFile_MediaFolderFilter_param_IncludeSubfolders_help { get { return T("Composite.Data.Types.IImageFile.MediaFolderFilter.param.IncludeSubfolders.help"); } } - /// "Filters images by it's folder path" - public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_description { get { return T("Composite.Data.Types.IMediaFile.MediaFolderFilter.description"); } } - /// "Media Folder" - public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_param_MediaFolder_label { get { return T("Composite.Data.Types.IMediaFile.MediaFolderFilter.param.MediaFolder.label"); } } - /// "A reference to a media folder" - public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_param_MediaFolder_help { get { return T("Composite.Data.Types.IMediaFile.MediaFolderFilter.param.MediaFolder.help"); } } - /// "Include Subfolders" - public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_param_IncludeSubfolders_label { get { return T("Composite.Data.Types.IMediaFile.MediaFolderFilter.param.IncludeSubfolders.label"); } } - /// "Determines whether media files from subfolders should be included." - public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_param_IncludeSubfolders_help { get { return T("Composite.Data.Types.IMediaFile.MediaFolderFilter.param.IncludeSubfolders.help"); } } - /// "Converts an enumerable of XElements to a Dictionary using named attributes for keys and values." - public static string Composite_Utils_Dictionary_XElementsToDictionary_description { get { return T("Composite.Utils.Dictionary.XElementsToDictionary.description"); } } - /// "XElements" - public static string Composite_Utils_Dictionary_XElementsToDictionary_param_XElements_label { get { return T("Composite.Utils.Dictionary.XElementsToDictionary.param.XElements.label"); } } - /// "An enumerable of XElements that will be used to create a dictionary from." - public static string Composite_Utils_Dictionary_XElementsToDictionary_param_XElements_help { get { return T("Composite.Utils.Dictionary.XElementsToDictionary.param.XElements.help"); } } - /// "Key Attribute Name" - public static string Composite_Utils_Dictionary_XElementsToDictionary_param_KeyAttributeName_label { get { return T("Composite.Utils.Dictionary.XElementsToDictionary.param.KeyAttributeName.label"); } } - /// "The name of the attribute on each XElement which value will be used for keys in the dictionary." - public static string Composite_Utils_Dictionary_XElementsToDictionary_param_KeyAttributeName_help { get { return T("Composite.Utils.Dictionary.XElementsToDictionary.param.KeyAttributeName.help"); } } - /// "Value Attribute Name" - public static string Composite_Utils_Dictionary_XElementsToDictionary_param_ValueAttributeName_label { get { return T("Composite.Utils.Dictionary.XElementsToDictionary.param.ValueAttributeName.label"); } } - /// "The name of the attribute on each XElement which value will be used for values in the dictionary." - public static string Composite_Utils_Dictionary_XElementsToDictionary_param_ValueAttributeName_help { get { return T("Composite.Utils.Dictionary.XElementsToDictionary.param.ValueAttributeName.help"); } } - /// "Converts an enumerable of objects to a Dictionary using named property names for keys and values." - public static string Composite_Utils_Dictionary_EnumerableToDictionary_description { get { return T("Composite.Utils.Dictionary.EnumerableToDictionary.description"); } } - /// "Objects" - public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_Elements_label { get { return T("Composite.Utils.Dictionary.EnumerableToDictionary.param.Elements.label"); } } - /// "An enumerable of objects that will be used to create a dictionary from." - public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_Elements_help { get { return T("Composite.Utils.Dictionary.EnumerableToDictionary.param.Elements.help"); } } - /// "Key Property Name" - public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_KeyPropertyName_label { get { return T("Composite.Utils.Dictionary.EnumerableToDictionary.param.KeyPropertyName.label"); } } - /// "The name of the property on each object which value will be used for keys in the dictionary." - public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_KeyPropertyName_help { get { return T("Composite.Utils.Dictionary.EnumerableToDictionary.param.KeyPropertyName.help"); } } - /// "Value Property Name" - public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_ValuePropertyName_label { get { return T("Composite.Utils.Dictionary.EnumerableToDictionary.param.ValuePropertyName.label"); } } - /// "The name of the property on each object which value will be used for values in the dictionary." - public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_ValuePropertyName_help { get { return T("Composite.Utils.Dictionary.EnumerableToDictionary.param.ValuePropertyName.help"); } } +///"Loads an ASP.NET User Control" +public static string Composite_AspNet_LoadUserControl_description=>T("Composite.AspNet.LoadUserControl.description"); +///"The path to the User Controls .ascx file, like “~/Controls/MyControl.ascx”" +public static string Composite_AspNet_LoadUserControl_param_Path_help=>T("Composite.AspNet.LoadUserControl.param.Path.help"); +///"Path" +public static string Composite_AspNet_LoadUserControl_param_Path_label=>T("Composite.AspNet.LoadUserControl.param.Path.label"); +///"Lets you specify constant boolean value" +public static string Composite_Constant_Boolean_description=>T("Composite.Constant.Boolean.description"); +///"" +public static string Composite_Constant_Boolean_param_Constant_help=>T("Composite.Constant.Boolean.param.Constant.help"); +///"Value" +public static string Composite_Constant_Boolean_param_Constant_label=>T("Composite.Constant.Boolean.param.Constant.label"); +///"Lets you specify constant date and time value" +public static string Composite_Constant_DateTime_description=>T("Composite.Constant.DateTime.description"); +///"" +public static string Composite_Constant_DateTime_param_Constant_help=>T("Composite.Constant.DateTime.param.Constant.help"); +///"Value" +public static string Composite_Constant_DateTime_param_Constant_label=>T("Composite.Constant.DateTime.param.Constant.label"); +///"Lets you specify constant decimal value" +public static string Composite_Constant_Decimal_description=>T("Composite.Constant.Decimal.description"); +///"" +public static string Composite_Constant_Decimal_param_Constant_help=>T("Composite.Constant.Decimal.param.Constant.help"); +///"Value" +public static string Composite_Constant_Decimal_param_Constant_label=>T("Composite.Constant.Decimal.param.Constant.label"); +///"Lets you specify constant Guid value" +public static string Composite_Constant_Guid_description=>T("Composite.Constant.Guid.description"); +///"" +public static string Composite_Constant_Guid_param_Constant_help=>T("Composite.Constant.Guid.param.Constant.help"); +///"Value" +public static string Composite_Constant_Guid_param_Constant_label=>T("Composite.Constant.Guid.param.Constant.label"); +///"Lets you specify constant integer value" +public static string Composite_Constant_Integer_description=>T("Composite.Constant.Integer.description"); +///"" +public static string Composite_Constant_Integer_param_Constant_help=>T("Composite.Constant.Integer.param.Constant.help"); +///"Value" +public static string Composite_Constant_Integer_param_Constant_label=>T("Composite.Constant.Integer.param.Constant.label"); +///"Lets you specify constant string value" +public static string Composite_Constant_String_description=>T("Composite.Constant.String.description"); +///"" +public static string Composite_Constant_String_param_Constant_help=>T("Composite.Constant.String.param.Constant.help"); +///"Value" +public static string Composite_Constant_String_param_Constant_label=>T("Composite.Constant.String.param.Constant.label"); +///"Lets you visually specify a Xhtml document constant" +public static string Composite_Constant_XhtmlDocument_description=>T("Composite.Constant.XhtmlDocument.description"); +///"" +public static string Composite_Constant_XhtmlDocument_param_Constant_help=>T("Composite.Constant.XhtmlDocument.param.Constant.help"); +///"Value" +public static string Composite_Constant_XhtmlDocument_param_Constant_label=>T("Composite.Constant.XhtmlDocument.param.Constant.label"); +///"Adds a new instance of the given type." +public static string Composite_IDataGenerated_AddDataInstance_description=>T("Composite.IDataGenerated.AddDataInstance.description"); +///"Updates instance(s) with the given values." +public static string Composite_IDataGenerated_UpdateDataInstance_description=>T("Composite.IDataGenerated.UpdateDataInstance.description"); +///"" +public static string Composite_IDataGenerated_UpdateDataInstance_param_Filter_help=>T("Composite.IDataGenerated.UpdateDataInstance.param.Filter.help"); +///"Filter" +public static string Composite_IDataGenerated_UpdateDataInstance_param_Filter_label=>T("Composite.IDataGenerated.UpdateDataInstance.param.Filter.label"); +///"Deletes instance(s) with the given filter." +public static string Composite_IDataGenerated_DeleteDataInstance_description=>T("Composite.IDataGenerated.DeleteDataInstance.description"); +///"" +public static string Composite_IDataGenerated_DeleteDataInstance_param_Filter_help=>T("Composite.IDataGenerated.DeleteDataInstance.param.Filter.help"); +///"Filter" +public static string Composite_IDataGenerated_DeleteDataInstance_param_Filter_label=>T("Composite.IDataGenerated.DeleteDataInstance.param.Filter.label"); +///"Creates a DataReference based on a key value." +public static string Composite_IDataGenerated_GetDataReference_description=>T("Composite.IDataGenerated.GetDataReference.description"); +///"The key value of the data to reference." +public static string Composite_IDataGenerated_GetDataReference_param_KeyValue_help=>T("Composite.IDataGenerated.GetDataReference.param.KeyValue.help"); +///"Key value" +public static string Composite_IDataGenerated_GetDataReference_param_KeyValue_label=>T("Composite.IDataGenerated.GetDataReference.param.KeyValue.label"); +///"Creates a NullableDataReference based on a key value. The default value is 'null', no reference." +public static string Composite_IDataGenerated_GetNullableDataReference_description=>T("Composite.IDataGenerated.GetNullableDataReference.description"); +///"The key value of the data to reference." +public static string Composite_IDataGenerated_GetNullableDataReference_param_KeyValue_help=>T("Composite.IDataGenerated.GetNullableDataReference.param.KeyValue.help"); +///"Key value" +public static string Composite_IDataGenerated_GetNullableDataReference_param_KeyValue_label=>T("Composite.IDataGenerated.GetNullableDataReference.param.KeyValue.label"); +///"Converts a DataReference into a single element filter. This filter will select a maximum of one item." +public static string Composite_IDataGenerated_Filter_DataReferenceFilter_description=>T("Composite.IDataGenerated.Filter.DataReferenceFilter.description"); +///"The Data Reference to use when selecting data." +public static string Composite_IDataGenerated_Filter_DataReferenceFilter_param_DataReference_help=>T("Composite.IDataGenerated.Filter.DataReferenceFilter.param.DataReference.help"); +///"Data Reference" +public static string Composite_IDataGenerated_Filter_DataReferenceFilter_param_DataReference_label=>T("Composite.IDataGenerated.Filter.DataReferenceFilter.param.DataReference.label"); +///"Lets you select data based on its reference to the currently rendered page." +public static string Composite_IDataGenerated_Filter_ActivePageReferenceFilter_description=>T("Composite.IDataGenerated.Filter.ActivePageReferenceFilter.description"); +///"Select what relation the current page must have with the data you wish to retrieve." +public static string Composite_IDataGenerated_Filter_ActivePageReferenceFilter_param_SitemapScope_help=>T("Composite.IDataGenerated.Filter.ActivePageReferenceFilter.param.SitemapScope.help"); +///"Page scope" +public static string Composite_IDataGenerated_Filter_ActivePageReferenceFilter_param_SitemapScope_label=>T("Composite.IDataGenerated.Filter.ActivePageReferenceFilter.param.SitemapScope.label"); +///"Defines an “and” or “or” query, combining two other filters." +public static string Composite_IDataGenerated_Filter_CompoundFilter_description=>T("Composite.IDataGenerated.Filter.CompoundFilter.description"); +///"And / or filter" +public static string Composite_IDataGenerated_Filter_CompoundFilter_param_IsAndQuery_label=>T("Composite.IDataGenerated.Filter.CompoundFilter.param.IsAndQuery.label"); +///"If you select “And” both filters are applied to the data. Selecting “Or” will give you the data that matches just one of the filters." +public static string Composite_IDataGenerated_Filter_CompoundFilter_param_IsAndQuery_help=>T("Composite.IDataGenerated.Filter.CompoundFilter.param.IsAndQuery.help"); +///"One of the two filters (the one to evaluate first)" +public static string Composite_IDataGenerated_Filter_CompoundFilter_param_Left_help=>T("Composite.IDataGenerated.Filter.CompoundFilter.param.Left.help"); +///"Left filter" +public static string Composite_IDataGenerated_Filter_CompoundFilter_param_Left_label=>T("Composite.IDataGenerated.Filter.CompoundFilter.param.Left.label"); +///"One of the two filters (the one to evaluate last)" +public static string Composite_IDataGenerated_Filter_CompoundFilter_param_Right_help=>T("Composite.IDataGenerated.Filter.CompoundFilter.param.Right.help"); +///"Right filter" +public static string Composite_IDataGenerated_Filter_CompoundFilter_param_Right_label=>T("Composite.IDataGenerated.Filter.CompoundFilter.param.Right.label"); +///"Lets you specify a filter on data by specifying requirements for the individual fields. If you set requirements on multiple fields, they are all enforced (and query)." +public static string Composite_IDataGenerated_Filter_FieldPredicatesFilter_description=>T("Composite.IDataGenerated.Filter.FieldPredicatesFilter.description"); +///"Retrieves an XML representation of the data. " +public static string Composite_IDataGenerated_GetXml_description=>T("Composite.IDataGenerated.GetXml.description"); +///"Element name" +public static string Composite_IDataGenerated_GetXml_param_ElementName_label=>T("Composite.IDataGenerated.GetXml.param.ElementName.label"); +///"Element namespace" +public static string Composite_IDataGenerated_GetXml_param_ElementNamespace_label=>T("Composite.IDataGenerated.GetXml.param.ElementNamespace.label"); +///"" +public static string Composite_IDataGenerated_GetXml_param_Filter_help=>T("Composite.IDataGenerated.GetXml.param.Filter.help"); +///"Filter" +public static string Composite_IDataGenerated_GetXml_param_Filter_label=>T("Composite.IDataGenerated.GetXml.param.Filter.label"); +///"When selected the data XML will be preceded by a <PagingInfo /> element detailing number of pages, items and more." +public static string Composite_IDataGenerated_GetXml_param_IncludePagingInfo_help=>T("Composite.IDataGenerated.GetXml.param.IncludePagingInfo.help"); +///"Include paging info" +public static string Composite_IDataGenerated_GetXml_param_IncludePagingInfo_label=>T("Composite.IDataGenerated.GetXml.param.IncludePagingInfo.label"); +///"The field to order data by" +public static string Composite_IDataGenerated_GetXml_param_OrderByField_help=>T("Composite.IDataGenerated.GetXml.param.OrderByField.help"); +///"Order by" +public static string Composite_IDataGenerated_GetXml_param_OrderByField_label=>T("Composite.IDataGenerated.GetXml.param.OrderByField.label"); +///"When set to true results are delivered in ascending order, otherwise descending order is used. Default is ascending order." +public static string Composite_IDataGenerated_GetXml_param_OrderAscending_help=>T("Composite.IDataGenerated.GetXml.param.OrderAscending.help"); +///"Order ascending" +public static string Composite_IDataGenerated_GetXml_param_OrderAscending_label=>T("Composite.IDataGenerated.GetXml.param.OrderAscending.label"); +///"If the number of data elements exceed the page size you can use paging to move to the other pages. See the Page size parameter." +public static string Composite_IDataGenerated_GetXml_param_PageNumber_help=>T("Composite.IDataGenerated.GetXml.param.PageNumber.help"); +///"Page number" +public static string Composite_IDataGenerated_GetXml_param_PageNumber_label=>T("Composite.IDataGenerated.GetXml.param.PageNumber.label"); +///"The number of items to display on one page – the maximum number of elements to return. " +public static string Composite_IDataGenerated_GetXml_param_PageSize_help=>T("Composite.IDataGenerated.GetXml.param.PageSize.help"); +///"Page size" +public static string Composite_IDataGenerated_GetXml_param_PageSize_label=>T("Composite.IDataGenerated.GetXml.param.PageSize.label"); +///"The data fields to output in the XML. Fewer fields can yield faster renderings." +public static string Composite_IDataGenerated_GetXml_param_PropertyNames_help=>T("Composite.IDataGenerated.GetXml.param.PropertyNames.help"); +///"Selected fields" +public static string Composite_IDataGenerated_GetXml_param_PropertyNames_label=>T("Composite.IDataGenerated.GetXml.param.PropertyNames.label"); +///"If you include reference data in the 'Selected properties' setting, you can use this option to control how the referenced data is included. 'Inline' is easy to use, but may bloat the size of the XML document." +public static string Composite_IDataGenerated_GetXml_param_ShowReferencesInline_help=>T("Composite.IDataGenerated.GetXml.param.ShowReferencesInline.help"); +///"Show reference data inline" +public static string Composite_IDataGenerated_GetXml_param_ShowReferencesInline_label=>T("Composite.IDataGenerated.GetXml.param.ShowReferencesInline.label"); +///"When true data can be ordered randomly. Specify the number of random results you require by setting the 'Page size'. If a filter is specified, this is applied before the random selection. If you specify an 'Order by' value, you should specify a low 'Page size' or the randomization will become void." +public static string Composite_IDataGenerated_GetXml_param_Randomized_help=>T("Composite.IDataGenerated.GetXml.param.Randomized.help"); +///"Randomized" +public static string Composite_IDataGenerated_GetXml_param_Randomized_label=>T("Composite.IDataGenerated.GetXml.param.Randomized.label"); +///"Determines if result XML has to be cached, and what priority those cache records should have" +public static string Composite_IDataGenerated_GetXml_param_CachePriority_help=>T("Composite.IDataGenerated.GetXml.param.CachePriority.help"); +///"Cache Priority" +public static string Composite_IDataGenerated_GetXml_param_CachePriority_label=>T("Composite.IDataGenerated.GetXml.param.CachePriority.label"); +///"Fetches the ID of the current page or a page relative to the current page." +public static string Composite_Pages_GetPageId_description=>T("Composite.Pages.GetPageId.description"); +///"What page to get id from. The default is from the current page." +public static string Composite_Pages_GetPageId_param_SitemapScope_help=>T("Composite.Pages.GetPageId.param.SitemapScope.help"); +///"Page association" +public static string Composite_Pages_GetPageId_param_SitemapScope_label=>T("Composite.Pages.GetPageId.param.SitemapScope.label"); +///"Quick and raw sitemap xhtml." +public static string Composite_Pages_QuickSitemap_description=>T("Composite.Pages.QuickSitemap.description"); +///"Returns a hierarchical XML structure of pages. When executed as part of a page rendering XML elements representing the current and ancestor pages will be appended the attributes isopen=”true” and iscurrent=”true”" +public static string Composite_Pages_SitemapXml_description=>T("Composite.Pages.SitemapXml.description"); +///"Source page" +public static string Composite_Pages_SitemapXml_param_SourcePage_label=>T("Composite.Pages.SitemapXml.param.SourcePage.label"); +///"By default the source page is the page currently being rendered. Specify a value if you want to get sitemap information relative to another page. The source page controls how page elements are annotated with 'isopen' and 'iscurrent' and is the starting point when calculating the page scope." +public static string Composite_Pages_SitemapXml_param_SourcePage_help=>T("Composite.Pages.SitemapXml.param.SourcePage.help"); +///"Page scope" +public static string Composite_Pages_SitemapXml_param_SitemapScope_label=>T("Composite.Pages.SitemapXml.param.SitemapScope.label"); +///"The scope of pages to extract from the sitemap. The default is 'all pages'. You can use this parameter to extract the structure you need to complete your task." +public static string Composite_Pages_SitemapXml_param_SitemapScope_help=>T("Composite.Pages.SitemapXml.param.SitemapScope.help"); +///"Gets information about current page in all the languages." +public static string Composite_Pages_GetForeignPageInfo_description=>T("Composite.Pages.GetForeignPageInfo.description"); +///"Defines a 'cache zone' around a function call or markup (typically containing function calls). This function can be used to enhance page rendering performance by caching sections of a web page. The 'Object Cache Id' value should be unique to the content being cached." +public static string Composite_Utils_Caching_PageObjectCache_description=>T("Composite.Utils.Caching.PageObjectCache.description"); +///"Object to cache" +public static string Composite_Utils_Caching_PageObjectCache_param_ObjectToCache_label=>T("Composite.Utils.Caching.PageObjectCache.param.ObjectToCache.label"); +///"What you want to cache - this can be a single function call or a section of markup containing one or more function calls." +public static string Composite_Utils_Caching_PageObjectCache_param_ObjectToCache_help=>T("Composite.Utils.Caching.PageObjectCache.param.ObjectToCache.help"); +///"Unique cache id" +public static string Composite_Utils_Caching_PageObjectCache_param_ObjectCacheId_label=>T("Composite.Utils.Caching.PageObjectCache.param.ObjectCacheId.label"); +///"Specify an ID unique to the content being cached. This value is used - in conjunction with the Page scope - to define a unique cache key." +public static string Composite_Utils_Caching_PageObjectCache_param_ObjectCacheId_help=>T("Composite.Utils.Caching.PageObjectCache.param.ObjectCacheId.help"); +///"Page scope" +public static string Composite_Utils_Caching_PageObjectCache_param_SitemapScope_label=>T("Composite.Utils.Caching.PageObjectCache.param.SitemapScope.label"); +///"The page scope the cached data should be shared on. By default the page scope is 'this website', but you can change it to page specific caching and more." +public static string Composite_Utils_Caching_PageObjectCache_param_SitemapScope_help=>T("Composite.Utils.Caching.PageObjectCache.param.SitemapScope.help"); +///"Cache duration (seconds)" +public static string Composite_Utils_Caching_PageObjectCache_param_SecondsToCache_label=>T("Composite.Utils.Caching.PageObjectCache.param.SecondsToCache.label"); +///"The number of seconds the cached object should be reused. Default is 1 minute (60 seconds)." +public static string Composite_Utils_Caching_PageObjectCache_param_SecondsToCache_help=>T("Composite.Utils.Caching.PageObjectCache.param.SecondsToCache.help"); +///"Language specific" +public static string Composite_Utils_Caching_PageObjectCache_param_LanguageSpecific_label=>T("Composite.Utils.Caching.PageObjectCache.param.LanguageSpecific.label"); +///"Choose if the cached object should be uniquely cached per website language or commonly shared among languages." +public static string Composite_Utils_Caching_PageObjectCache_param_LanguageSpecific_help=>T("Composite.Utils.Caching.PageObjectCache.param.LanguageSpecific.help"); +///"AreEqual" +public static string Composite_Utils_Compare_AreEqual_description=>T("Composite.Utils.Compare.AreEqual.description"); +///"Compares two objects for equality. Returns true if the two objects are equal." +public static string Composite_Utils_Compare_AreEqual_param_ValueA_help=>T("Composite.Utils.Compare.AreEqual.param.ValueA.help"); +///"Value A to compare." +public static string Composite_Utils_Compare_AreEqual_param_ValueA_label=>T("Composite.Utils.Compare.AreEqual.param.ValueA.label"); +///"" +public static string Composite_Utils_Compare_AreEqual_param_ValueB_help=>T("Composite.Utils.Compare.AreEqual.param.ValueB.help"); +///"Value B to compare." +public static string Composite_Utils_Compare_AreEqual_param_ValueB_label=>T("Composite.Utils.Compare.AreEqual.param.ValueB.label"); +///"" +public static string Composite_Utils_Compare_IsLessThan_description=>T("Composite.Utils.Compare.IsLessThan.description"); +///"" +public static string Composite_Utils_Compare_IsLessThan_param_ValueA_help=>T("Composite.Utils.Compare.IsLessThan.param.ValueA.help"); +///"Value A to compare." +public static string Composite_Utils_Compare_IsLessThan_param_ValueA_label=>T("Composite.Utils.Compare.IsLessThan.param.ValueA.label"); +///"" +public static string Composite_Utils_Compare_IsLessThan_param_ValueB_help=>T("Composite.Utils.Compare.IsLessThan.param.ValueB.help"); +///"Value B to compare." +public static string Composite_Utils_Compare_IsLessThan_param_ValueB_label=>T("Composite.Utils.Compare.IsLessThan.param.ValueB.label"); +///"Reads a string from the application configuration file (web.config or app.config)" +public static string Composite_Utils_Configuration_AppSettingsValue_description=>T("Composite.Utils.Configuration.AppSettingsValue.description"); +///"" +public static string Composite_Utils_Configuration_AppSettingsValue_param_KeyName_help=>T("Composite.Utils.Configuration.AppSettingsValue.param.KeyName.help"); +///"Key Name" +public static string Composite_Utils_Configuration_AppSettingsValue_param_KeyName_label=>T("Composite.Utils.Configuration.AppSettingsValue.param.KeyName.label"); +///"Add a number of days to the current date and get the resulting date." +public static string Composite_Utils_Date_AddDays_description=>T("Composite.Utils.Date.AddDays.description"); +///"Specify a negative or positive number of days to add to the current date." +public static string Composite_Utils_Date_AddDays_param_DaysToAdd_help=>T("Composite.Utils.Date.AddDays.param.DaysToAdd.help"); +///"Days to add" +public static string Composite_Utils_Date_AddDays_param_DaysToAdd_label=>T("Composite.Utils.Date.AddDays.param.DaysToAdd.label"); +///"The current date and time" +public static string Composite_Utils_Date_Now_description=>T("Composite.Utils.Date.Now.description"); +///"Returns an input parameter from executing function context. Use this in developing to copy an input value to a new function call." +public static string Composite_Utils_GetInputParameter_description=>T("Composite.Utils.GetInputParameter.description"); +///"Specify the name of the input parameter which value you wish to use here." +public static string Composite_Utils_GetInputParameter_param_InputParameterName_help=>T("Composite.Utils.GetInputParameter.param.InputParameterName.help"); +///"Parameter name" +public static string Composite_Utils_GetInputParameter_param_InputParameterName_label=>T("Composite.Utils.GetInputParameter.param.InputParameterName.label"); +///"Parses a string into an object. The type of object depends on the receiver. Using this function to deliver a value to a DateTime parameter, will make the system parse the string as a DateTime etc." +public static string Composite_Utils_ParseStringToObject_description=>T("Composite.Utils.ParseStringToObject.description"); +///"Specify the string to parse. Note that the string must be formatted in a way that can be converted into the type of object that is expected." +public static string Composite_Utils_ParseStringToObject_param_StringToParse_help=>T("Composite.Utils.ParseStringToObject.param.StringToParse.help"); +///"String to parse" +public static string Composite_Utils_ParseStringToObject_param_StringToParse_label=>T("Composite.Utils.ParseStringToObject.param.StringToParse.label"); +///"Returns a new random Guid." +public static string Composite_Utils_Guid_NewGuid_description=>T("Composite.Utils.Guid.NewGuid.description"); +///"A list of all cultures" +public static string Composite_Utils_Globalization_AllCultures_description=>T("Composite.Utils.Globalization.AllCultures.description"); +///"The culture for the current user / request." +public static string Composite_Utils_Globalization_CurrentCulture_description=>T("Composite.Utils.Globalization.CurrentCulture.description"); +///"Returns the sum from a list of integers" +public static string Composite_Utils_Integer_Sum_description=>T("Composite.Utils.Integer.Sum.description"); +///"" +public static string Composite_Utils_Integer_Sum_param_Ints_help=>T("Composite.Utils.Integer.Sum.param.Ints.help"); +///"Integer list" +public static string Composite_Utils_Integer_Sum_param_Ints_label=>T("Composite.Utils.Integer.Sum.param.Ints.label"); +///"Check if a boolean is true or false. " +public static string Composite_Utils_Predicates_BoolEquals_description=>T("Composite.Utils.Predicates.BoolEquals.description"); +///"" +public static string Composite_Utils_Predicates_BoolEquals_param_Value_help=>T("Composite.Utils.Predicates.BoolEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_BoolEquals_param_Value_label=>T("Composite.Utils.Predicates.BoolEquals.param.Value.label"); +///"Check if a date equals a certain value" +public static string Composite_Utils_Predicates_DateTimeEquals_description=>T("Composite.Utils.Predicates.DateTimeEquals.description"); +///"" +public static string Composite_Utils_Predicates_DateTimeEquals_param_Value_help=>T("Composite.Utils.Predicates.DateTimeEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_DateTimeEquals_param_Value_label=>T("Composite.Utils.Predicates.DateTimeEquals.param.Value.label"); +///"Check if a date is greater than a certain value" +public static string Composite_Utils_Predicates_DateTimeGreaterThan_description=>T("Composite.Utils.Predicates.DateTimeGreaterThan.description"); +///"" +public static string Composite_Utils_Predicates_DateTimeGreaterThan_param_Value_help=>T("Composite.Utils.Predicates.DateTimeGreaterThan.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_DateTimeGreaterThan_param_Value_label=>T("Composite.Utils.Predicates.DateTimeGreaterThan.param.Value.label"); +///"Check if a date is less than a certain value" +public static string Composite_Utils_Predicates_DateTimeLessThan_description=>T("Composite.Utils.Predicates.DateTimeLessThan.description"); +///"" +public static string Composite_Utils_Predicates_DateTimeLessThan_param_Value_help=>T("Composite.Utils.Predicates.DateTimeLessThan.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_DateTimeLessThan_param_Value_label=>T("Composite.Utils.Predicates.DateTimeLessThan.param.Value.label"); +///"Check is a decimal has a certain value" +public static string Composite_Utils_Predicates_DecimalEquals_description=>T("Composite.Utils.Predicates.DecimalEquals.description"); +///"" +public static string Composite_Utils_Predicates_DecimalEquals_param_Value_help=>T("Composite.Utils.Predicates.DecimalEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_DecimalEquals_param_Value_label=>T("Composite.Utils.Predicates.DecimalEquals.param.Value.label"); +///"Check if a decimal is greater than a certain value" +public static string Composite_Utils_Predicates_DecimalGreaterThan_description=>T("Composite.Utils.Predicates.DecimalGreaterThan.description"); +///"" +public static string Composite_Utils_Predicates_DecimalGreaterThan_param_Value_help=>T("Composite.Utils.Predicates.DecimalGreaterThan.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_DecimalGreaterThan_param_Value_label=>T("Composite.Utils.Predicates.DecimalGreaterThan.param.Value.label"); +///"Check if a decimal is less than a certain value" +public static string Composite_Utils_Predicates_DecimalLessThan_description=>T("Composite.Utils.Predicates.DecimalLessThan.description"); +///"" +public static string Composite_Utils_Predicates_DecimalLessThan_param_Value_help=>T("Composite.Utils.Predicates.DecimalLessThan.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_DecimalLessThan_param_Value_label=>T("Composite.Utils.Predicates.DecimalLessThan.param.Value.label"); +///"Check if a Guid equals a certain value" +public static string Composite_Utils_Predicates_GuidEquals_description=>T("Composite.Utils.Predicates.GuidEquals.description"); +///"" +public static string Composite_Utils_Predicates_GuidEquals_param_Value_help=>T("Composite.Utils.Predicates.GuidEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_GuidEquals_param_Value_label=>T("Composite.Utils.Predicates.GuidEquals.param.Value.label"); +///"Check if a Guid exists in a comma separated string list" +public static string Composite_Utils_Predicates_GuidInCommaSeparatedList_description=>T("Composite.Utils.Predicates.GuidInCommaSeparatedList.description"); +///"List of Guid" +public static string Composite_Utils_Predicates_GuidInCommaSeparatedList_param_CommaSeparatedGuids_label=>T("Composite.Utils.Predicates.GuidInCommaSeparatedList.param.CommaSeparatedGuids.label"); +///"A string containing zero or more Guids separated by commas" +public static string Composite_Utils_Predicates_GuidInCommaSeparatedList_param_CommaSeparatedGuids_help=>T("Composite.Utils.Predicates.GuidInCommaSeparatedList.param.CommaSeparatedGuids.help"); +///"Check if a string field matches one of the terms in a comma separated string list" +public static string Composite_Utils_Predicates_StringInCommaSeparatedList_description=>T("Composite.Utils.Predicates.StringInCommaSeparatedList.description"); +///"Search terms" +public static string Composite_Utils_Predicates_StringInCommaSeparatedList_param_CommaSeparatedSearchTerms_label=>T("Composite.Utils.Predicates.StringInCommaSeparatedList.param.CommaSeparatedSearchTerms.label"); +///"A string containing search terms separated by commas, like 'c1,cms,linq'" +public static string Composite_Utils_Predicates_StringInCommaSeparatedList_param_CommaSeparatedSearchTerms_help=>T("Composite.Utils.Predicates.StringInCommaSeparatedList.param.CommaSeparatedSearchTerms.help"); +///"Ignore case" +public static string Composite_Utils_Predicates_StringInCommaSeparatedList_param_IgnoreCase_label=>T("Composite.Utils.Predicates.StringInCommaSeparatedList.param.IgnoreCase.label"); +///"When 'false', casing of the words must match exactly. Default is 'true', case insensitive search" +public static string Composite_Utils_Predicates_StringInCommaSeparatedList_param_IgnoreCase_help=>T("Composite.Utils.Predicates.StringInCommaSeparatedList.param.IgnoreCase.help"); +///"Check if a string field matches one of the strings in the supplied list" +public static string Composite_Utils_Predicates_StringInList_description=>T("Composite.Utils.Predicates.StringInList.description"); +///"Search terms" +public static string Composite_Utils_Predicates_StringInList_param_SearchTerms_label=>T("Composite.Utils.Predicates.StringInList.param.SearchTerms.label"); +///"A list of strings to match up against the searched string field." +public static string Composite_Utils_Predicates_StringInList_param_SearchTerms_help=>T("Composite.Utils.Predicates.StringInList.param.SearchTerms.help"); +///"Ignore case" +public static string Composite_Utils_Predicates_StringInList_param_IgnoreCase_label=>T("Composite.Utils.Predicates.StringInList.param.IgnoreCase.label"); +///"When 'false', casing of the words must match exactly. Default is 'true', case insensitive search" +public static string Composite_Utils_Predicates_StringInList_param_IgnoreCase_help=>T("Composite.Utils.Predicates.StringInList.param.IgnoreCase.help"); +///"Check if an integer equals a certain value" +public static string Composite_Utils_Predicates_IntegerEquals_description=>T("Composite.Utils.Predicates.IntegerEquals.description"); +///"" +public static string Composite_Utils_Predicates_IntegerEquals_param_Value_help=>T("Composite.Utils.Predicates.IntegerEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_IntegerEquals_param_Value_label=>T("Composite.Utils.Predicates.IntegerEquals.param.Value.label"); +///"Check if an integer is greater than a certain value" +public static string Composite_Utils_Predicates_IntegerGreaterThan_description=>T("Composite.Utils.Predicates.IntegerGreaterThan.description"); +///"" +public static string Composite_Utils_Predicates_IntegerGreaterThan_param_Value_help=>T("Composite.Utils.Predicates.IntegerGreaterThan.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_IntegerGreaterThan_param_Value_label=>T("Composite.Utils.Predicates.IntegerGreaterThan.param.Value.label"); +///"Check if an integer is less than a certain value" +public static string Composite_Utils_Predicates_IntegerLessThan_description=>T("Composite.Utils.Predicates.IntegerLessThan.description"); +///"" +public static string Composite_Utils_Predicates_IntegerLessThan_param_Value_help=>T("Composite.Utils.Predicates.IntegerLessThan.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_IntegerLessThan_param_Value_label=>T("Composite.Utils.Predicates.IntegerLessThan.param.Value.label"); +///"Check if a string contains a certain value" +public static string Composite_Utils_Predicates_StringContains_description=>T("Composite.Utils.Predicates.StringContains.description"); +///"" +public static string Composite_Utils_Predicates_StringContains_param_Value_help=>T("Composite.Utils.Predicates.StringContains.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_StringContains_param_Value_label=>T("Composite.Utils.Predicates.StringContains.param.Value.label"); +///"Check if a string ends with a certain value" +public static string Composite_Utils_Predicates_StringEndsWith_description=>T("Composite.Utils.Predicates.StringEndsWith.description"); +///"" +public static string Composite_Utils_Predicates_StringEndsWith_param_Value_help=>T("Composite.Utils.Predicates.StringEndsWith.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_StringEndsWith_param_Value_label=>T("Composite.Utils.Predicates.StringEndsWith.param.Value.label"); +///"Check if a string equals a certain value" +public static string Composite_Utils_Predicates_StringEquals_description=>T("Composite.Utils.Predicates.StringEquals.description"); +///"" +public static string Composite_Utils_Predicates_StringEquals_param_Value_help=>T("Composite.Utils.Predicates.StringEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_StringEquals_param_Value_label=>T("Composite.Utils.Predicates.StringEquals.param.Value.label"); +///"Check if a string starts with a certain value" +public static string Composite_Utils_Predicates_StringStartsWith_description=>T("Composite.Utils.Predicates.StringStartsWith.description"); +///"" +public static string Composite_Utils_Predicates_StringStartsWith_param_Value_help=>T("Composite.Utils.Predicates.StringStartsWith.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_StringStartsWith_param_Value_label=>T("Composite.Utils.Predicates.StringStartsWith.param.Value.label"); +///"Check if a Guid equals a certain value" +public static string Composite_Utils_Predicates_NullableGuidEquals_description=>T("Composite.Utils.Predicates.NullableGuidEquals.description"); +///"" +public static string Composite_Utils_Predicates_NullableGuidEquals_param_Value_help=>T("Composite.Utils.Predicates.NullableGuidEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_NullableGuidEquals_param_Value_label=>T("Composite.Utils.Predicates.NullableGuidEquals.param.Value.label"); +///"Check if a nullable Guid has no value" +public static string Composite_Utils_Predicates_NullableGuidNoValue_description=>T("Composite.Utils.Predicates.NullableGuidNoValue.description"); +///"Check if an integer equals a certain value" +public static string Composite_Utils_Predicates_NullableIntegerEquals_description=>T("Composite.Utils.Predicates.NullableIntegerEquals.description"); +///"" +public static string Composite_Utils_Predicates_NullableIntegerEquals_param_Value_help=>T("Composite.Utils.Predicates.NullableIntegerEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_NullableIntegerEquals_param_Value_label=>T("Composite.Utils.Predicates.NullableIntegerEquals.param.Value.label"); +///"Check if an nullable integer has no value" +public static string Composite_Utils_Predicates_NullableIntegerNoValue_description=>T("Composite.Utils.Predicates.NullableIntegerNoValue.description"); +///"Check if a string has no value" +public static string Composite_Utils_Predicates_StringNoValue_description=>T("Composite.Utils.Predicates.StringNoValue.description"); +///"Check if a boolean is true or false. " +public static string Composite_Utils_Predicates_NullableBoolEquals_description=>T("Composite.Utils.Predicates.NullableBoolEquals.description"); +///"" +public static string Composite_Utils_Predicates_NullableBoolEquals_param_Value_help=>T("Composite.Utils.Predicates.NullableBoolEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_NullableBoolEquals_param_Value_label=>T("Composite.Utils.Predicates.NullableBoolEquals.param.Value.label"); +///"Check if a nullable boolean has no value" +public static string Composite_Utils_Predicates_NullableBoolNoValue_description=>T("Composite.Utils.Predicates.NullableBoolNoValue.description"); +///"Check if a date equals a certain value" +public static string Composite_Utils_Predicates_NullableDateTimeEquals_description=>T("Composite.Utils.Predicates.NullableDateTimeEquals.description"); +///"" +public static string Composite_Utils_Predicates_NullableDateTimeEquals_param_Value_help=>T("Composite.Utils.Predicates.NullableDateTimeEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_NullableDateTimeEquals_param_Value_label=>T("Composite.Utils.Predicates.NullableDateTimeEquals.param.Value.label"); +///"Check if a date is greater than a certain value" +public static string Composite_Utils_Predicates_NullableDateTimeGreaterThan_description=>T("Composite.Utils.Predicates.NullableDateTimeGreaterThan.description"); +///"" +public static string Composite_Utils_Predicates_NullableDateTimeGreaterThan_param_Value_help=>T("Composite.Utils.Predicates.NullableDateTimeGreaterThan.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_NullableDateTimeGreaterThan_param_Value_label=>T("Composite.Utils.Predicates.NullableDateTimeGreaterThan.param.Value.label"); +///"Check if a date is less than a certain value" +public static string Composite_Utils_Predicates_NullableDateTimeLessThan_description=>T("Composite.Utils.Predicates.NullableDateTimeLessThan.description"); +///"" +public static string Composite_Utils_Predicates_NullableDateTimeLessThan_param_Value_help=>T("Composite.Utils.Predicates.NullableDateTimeLessThan.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_NullableDateTimeLessThan_param_Value_label=>T("Composite.Utils.Predicates.NullableDateTimeLessThan.param.Value.label"); +///"Check if a nullable date has no value" +public static string Composite_Utils_Predicates_NullableDateTimeNoValue_description=>T("Composite.Utils.Predicates.NullableDateTimeNoValue.description"); +///"Check is a decimal has a certain value" +public static string Composite_Utils_Predicates_NullableDecimalEquals_description=>T("Composite.Utils.Predicates.NullableDecimalEquals.description"); +///"" +public static string Composite_Utils_Predicates_NullableDecimalEquals_param_Value_help=>T("Composite.Utils.Predicates.NullableDecimalEquals.param.Value.help"); +///"The value to compare with" +public static string Composite_Utils_Predicates_NullableDecimalEquals_param_Value_label=>T("Composite.Utils.Predicates.NullableDecimalEquals.param.Value.label"); +///"Check is a nullable decimal has no value" +public static string Composite_Utils_Predicates_NullableDecimalNoValue_description=>T("Composite.Utils.Predicates.NullableDecimalNoValue.description"); +///"Joins a list of strings to a single string" +public static string Composite_Utils_String_Join_description=>T("Composite.Utils.String.Join.description"); +///"The separator to insert between strings." +public static string Composite_Utils_String_Join_param_Separator_help=>T("Composite.Utils.String.Join.param.Separator.help"); +///"Separator" +public static string Composite_Utils_String_Join_param_Separator_label=>T("Composite.Utils.String.Join.param.Separator.label"); +///"The list of strings to join" +public static string Composite_Utils_String_Join_param_Strings_help=>T("Composite.Utils.String.Join.param.Strings.help"); +///"Strings to join" +public static string Composite_Utils_String_Join_param_Strings_label=>T("Composite.Utils.String.Join.param.Strings.label"); +///"Joins two strings to a simple string" +public static string Composite_Utils_String_JoinTwo_description=>T("Composite.Utils.String.JoinTwo.description"); +///"The string to put first" +public static string Composite_Utils_String_JoinTwo_param_StringA_help=>T("Composite.Utils.String.JoinTwo.param.StringA.help"); +///"String A" +public static string Composite_Utils_String_JoinTwo_param_StringA_label=>T("Composite.Utils.String.JoinTwo.param.StringA.label"); +///"The string to put last" +public static string Composite_Utils_String_JoinTwo_param_StringB_help=>T("Composite.Utils.String.JoinTwo.param.StringB.help"); +///"String B" +public static string Composite_Utils_String_JoinTwo_param_StringB_label=>T("Composite.Utils.String.JoinTwo.param.StringB.label"); +///"A string to insert in between String A and String B. Default is no separator" +public static string Composite_Utils_String_JoinTwo_param_Separator_help=>T("Composite.Utils.String.JoinTwo.param.Separator.help"); +///"Separator" +public static string Composite_Utils_String_JoinTwo_param_Separator_label=>T("Composite.Utils.String.JoinTwo.param.Separator.label"); +///"Splits a string into a list of string." +public static string Composite_Utils_String_Split_description=>T("Composite.Utils.String.Split.description"); +///"The separator to use when splitting the string. Default is comma (",")" +public static string Composite_Utils_String_Split_param_Separator_help=>T("Composite.Utils.String.Split.param.Separator.help"); +///"Separator" +public static string Composite_Utils_String_Split_param_Separator_label=>T("Composite.Utils.String.Split.param.Separator.label"); +///"The string you wish to split into a list." +public static string Composite_Utils_String_Split_param_String_help=>T("Composite.Utils.String.Split.param.String.help"); +///"String to split" +public static string Composite_Utils_String_Split_param_String_label=>T("Composite.Utils.String.Split.param.String.label"); +///"" +public static string Composite_Utils_Validation_DateTimeNotNullValidation_description=>T("Composite.Utils.Validation.DateTimeNotNullValidation.description"); +///"" +public static string Composite_Utils_Validation_DecimalNotNullValidation_description=>T("Composite.Utils.Validation.DecimalNotNullValidation.description"); +///"Validates the precision of digits (the number of decimals the user has specified)" +public static string Composite_Utils_Validation_DecimalPrecisionValidation_description=>T("Composite.Utils.Validation.DecimalPrecisionValidation.description"); +///"The maximum number of digits to allow on the decimal" +public static string Composite_Utils_Validation_DecimalPrecisionValidation_param_MaxDigits_help=>T("Composite.Utils.Validation.DecimalPrecisionValidation.param.MaxDigits.help"); +///"Max number of decimal digits" +public static string Composite_Utils_Validation_DecimalPrecisionValidation_param_MaxDigits_label=>T("Composite.Utils.Validation.DecimalPrecisionValidation.param.MaxDigits.label"); +///"" +public static string Composite_Utils_Validation_GuidNotNullValidation_description=>T("Composite.Utils.Validation.GuidNotNullValidation.description"); +///"" +public static string Composite_Utils_Validation_Int32NotNullValidation_description=>T("Composite.Utils.Validation.Int32NotNullValidation.description"); +///"Validates than an integer is within a certain range." +public static string Composite_Utils_Validation_IntegerRangeValidation_description=>T("Composite.Utils.Validation.IntegerRangeValidation.description"); +///"The maximum number allowed in this field." +public static string Composite_Utils_Validation_IntegerRangeValidation_param_max_help=>T("Composite.Utils.Validation.IntegerRangeValidation.param.max.help"); +///"Maximum number" +public static string Composite_Utils_Validation_IntegerRangeValidation_param_max_label=>T("Composite.Utils.Validation.IntegerRangeValidation.param.max.label"); +///"The minimum number allowed in this field." +public static string Composite_Utils_Validation_IntegerRangeValidation_param_min_help=>T("Composite.Utils.Validation.IntegerRangeValidation.param.min.help"); +///"Minimum number" +public static string Composite_Utils_Validation_IntegerRangeValidation_param_min_label=>T("Composite.Utils.Validation.IntegerRangeValidation.param.min.label"); +///"Validates that a string conforms to the specified regular expression" +public static string Composite_Utils_Validation_RegularExpressionValidation_description=>T("Composite.Utils.Validation.RegularExpressionValidation.description"); +///"The regular expression pattern to use" +public static string Composite_Utils_Validation_RegularExpressionValidation_param_pattern_help=>T("Composite.Utils.Validation.RegularExpressionValidation.param.pattern.help"); +///"RegEx pattern" +public static string Composite_Utils_Validation_RegularExpressionValidation_param_pattern_label=>T("Composite.Utils.Validation.RegularExpressionValidation.param.pattern.label"); +///"Validates that the length of a string is within the specified range" +public static string Composite_Utils_Validation_StringLengthValidation_description=>T("Composite.Utils.Validation.StringLengthValidation.description"); +///"" +public static string Composite_Utils_Validation_StringLengthValidation_param_max_help=>T("Composite.Utils.Validation.StringLengthValidation.param.max.help"); +///"Maximum length" +public static string Composite_Utils_Validation_StringLengthValidation_param_max_label=>T("Composite.Utils.Validation.StringLengthValidation.param.max.label"); +///"" +public static string Composite_Utils_Validation_StringLengthValidation_param_min_help=>T("Composite.Utils.Validation.StringLengthValidation.param.min.help"); +///"Minimum length" +public static string Composite_Utils_Validation_StringLengthValidation_param_min_label=>T("Composite.Utils.Validation.StringLengthValidation.param.min.label"); +///"" +public static string Composite_Utils_Validation_StringNotNullValidation_description=>T("Composite.Utils.Validation.StringNotNullValidation.description"); +///"" +public static string Composite_Web_Client_BrowserPlatform_description=>T("Composite.Web.Client.BrowserPlatform.description"); +///"" +public static string Composite_Web_Client_BrowserString_description=>T("Composite.Web.Client.BrowserString.description"); +///"" +public static string Composite_Web_Client_BrowserType_description=>T("Composite.Web.Client.BrowserType.description"); +///"" +public static string Composite_Web_Client_BrowserVersion_description=>T("Composite.Web.Client.BrowserVersion.description"); +///"" +public static string Composite_Web_Client_EcmaScriptVersion_description=>T("Composite.Web.Client.EcmaScriptVersion.description"); +///"True if the current request is identified as coming from a crawler (search engine)." +public static string Composite_Web_Client_IsCrawler_description=>T("Composite.Web.Client.IsCrawler.description"); +///"True if the current request is identified as coming from a mobile device." +public static string Composite_Web_Client_IsMobileDevice_description=>T("Composite.Web.Client.IsMobileDevice.description"); +///"Common HTML meta tags you probably want in your html head" +public static string Composite_Web_Html_Template_CommonMetaTags_description=>T("Composite.Web.Html.Template.CommonMetaTags.description"); +///"Content-Type" +public static string Composite_Web_Html_Template_CommonMetaTags_param_ContentType_label=>T("Composite.Web.Html.Template.CommonMetaTags.param.ContentType.label"); +///"By default this is 'text/html; charset=utf-8'. If you serve something else you should overwrite this." +public static string Composite_Web_Html_Template_CommonMetaTags_param_ContentType_help=>T("Composite.Web.Html.Template.CommonMetaTags.param.ContentType.help"); +///"Designer" +public static string Composite_Web_Html_Template_CommonMetaTags_param_Designer_label=>T("Composite.Web.Html.Template.CommonMetaTags.param.Designer.label"); +///"Who designed this website? Show it in the 'Designer' meta tag. Default is not to emit the meta tag." +public static string Composite_Web_Html_Template_CommonMetaTags_param_Designer_help=>T("Composite.Web.Html.Template.CommonMetaTags.param.Designer.help"); +///"Show generator" +public static string Composite_Web_Html_Template_CommonMetaTags_param_ShowGenerator_label=>T("Composite.Web.Html.Template.CommonMetaTags.param.ShowGenerator.label"); +///"Show the world you support Composite C1 - free open source!" +public static string Composite_Web_Html_Template_CommonMetaTags_param_ShowGenerator_help=>T("Composite.Web.Html.Template.CommonMetaTags.param.ShowGenerator.help"); +///"Appends a lang='(language code)' attribute the the parent element, reflecting the language of the current page. You can put this just below the <html /> tag." +public static string Composite_Web_Html_Template_LangAttribute_description=>T("Composite.Web.Html.Template.LangAttribute.description"); +///"Includes a named Page Template Feature at this location. Page Template Features can contain HTML and functional snippets and are managed on the Layout perspective." +public static string Composite_Web_Html_Template_PageTemplateFeature_description=>T("Composite.Web.Html.Template.PageTemplateFeature.description"); +///"Feature name" +public static string Composite_Web_Html_Template_PageTemplateFeature_param_FeatureName_label=>T("Composite.Web.Html.Template.PageTemplateFeature.param.FeatureName.label"); +///"The name of the Page Template Feature you wish to include." +public static string Composite_Web_Html_Template_PageTemplateFeature_param_FeatureName_help=>T("Composite.Web.Html.Template.PageTemplateFeature.param.FeatureName.help"); +///"Emits the 'definitive title' of the current page; the same value that ends up in the page title tag. This title may originate from the page being rendered or from a C1 Function/ASP.NET control which changed the title to match specific data being featured on the page." +public static string Composite_Web_Html_Template_HtmlTitleValue_description=>T("Composite.Web.Html.Template.HtmlTitleValue.description"); +///"Prefix to be removed" +public static string Composite_Web_Html_Template_HtmlTitleValue_param_PrefixToRemove_label=>T("Composite.Web.Html.Template.HtmlTitleValue.param.PrefixToRemove.label"); +///"If the HTML title has a prefix value you wish to get rid of, specify the prefix here. If the prefix is not found in the title, this value is ignored." +public static string Composite_Web_Html_Template_HtmlTitleValue_param_PrefixToRemove_help=>T("Composite.Web.Html.Template.HtmlTitleValue.param.PrefixToRemove.help"); +///"Postfix to be removed" +public static string Composite_Web_Html_Template_HtmlTitleValue_param_PostfixToRemove_label=>T("Composite.Web.Html.Template.HtmlTitleValue.param.PostfixToRemove.label"); +///"If the HTML title has a postfix value you wish to get rid of, specify the postfix here. If the postfix is not found in the title, this value is ignored." +public static string Composite_Web_Html_Template_HtmlTitleValue_param_PostfixToRemove_help=>T("Composite.Web.Html.Template.HtmlTitleValue.param.PostfixToRemove.help"); +///"Emits the 'definitive description' of the current page; the same value that ends up in the page meta description tag. This value may originate from the page being rendered or from a C1 Function/ASP.NET control which changed the description to match specific data being featured on the page." +public static string Composite_Web_Html_Template_MetaDescriptionValue_description=>T("Composite.Web.Html.Template.MetaDescriptionValue.description"); +///"Element to wrap description" +public static string Composite_Web_Html_Template_MetaDescriptionValue_param_Element_label=>T("Composite.Web.Html.Template.MetaDescriptionValue.param.Element.label"); +///"To have the description wrapped in an element (like <p class="description" />) specify it here. The element with only be emitted when a description text exist." +public static string Composite_Web_Html_Template_MetaDescriptionValue_param_Element_help=>T("Composite.Web.Html.Template.MetaDescriptionValue.param.Element.help"); +///"Gets a value from the current users cookie collection." +public static string Composite_Web_Request_CookieValue_description=>T("Composite.Web.Request.CookieValue.description"); +///"" +public static string Composite_Web_Request_CookieValue_param_CookieName_help=>T("Composite.Web.Request.CookieValue.param.CookieName.help"); +///"Cookie name" +public static string Composite_Web_Request_CookieValue_param_CookieName_label=>T("Composite.Web.Request.CookieValue.param.CookieName.label"); +///"If the user does not have this cookie, use this field to specify what value to default to." +public static string Composite_Web_Request_CookieValue_param_FallbackValue_help=>T("Composite.Web.Request.CookieValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_CookieValue_param_FallbackValue_label=>T("Composite.Web.Request.CookieValue.param.FallbackValue.label"); +///"Gets a boolean value from a form post (HTTP POST)" +public static string Composite_Web_Request_FormPostBoolValue_description=>T("Composite.Web.Request.FormPostBoolValue.description"); +///"" +public static string Composite_Web_Request_FormPostBoolValue_param_FallbackValue_help=>T("Composite.Web.Request.FormPostBoolValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_FormPostBoolValue_param_FallbackValue_label=>T("Composite.Web.Request.FormPostBoolValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_FormPostBoolValue_param_ParameterName_help=>T("Composite.Web.Request.FormPostBoolValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_FormPostBoolValue_param_ParameterName_label=>T("Composite.Web.Request.FormPostBoolValue.param.ParameterName.label"); +///"Gets a decimal value from a form post (HTTP POST)" +public static string Composite_Web_Request_FormPostDecimalValue_description=>T("Composite.Web.Request.FormPostDecimalValue.description"); +///"" +public static string Composite_Web_Request_FormPostDecimalValue_param_FallbackValue_help=>T("Composite.Web.Request.FormPostDecimalValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_FormPostDecimalValue_param_FallbackValue_label=>T("Composite.Web.Request.FormPostDecimalValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_FormPostDecimalValue_param_ParameterName_help=>T("Composite.Web.Request.FormPostDecimalValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_FormPostDecimalValue_param_ParameterName_label=>T("Composite.Web.Request.FormPostDecimalValue.param.ParameterName.label"); +///"Gets a Guid value from a form post (HTTP POST)" +public static string Composite_Web_Request_FormPostGuidValue_description=>T("Composite.Web.Request.FormPostGuidValue.description"); +///"" +public static string Composite_Web_Request_FormPostGuidValue_param_FallbackValue_help=>T("Composite.Web.Request.FormPostGuidValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_FormPostGuidValue_param_FallbackValue_label=>T("Composite.Web.Request.FormPostGuidValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_FormPostGuidValue_param_ParameterName_help=>T("Composite.Web.Request.FormPostGuidValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_FormPostGuidValue_param_ParameterName_label=>T("Composite.Web.Request.FormPostGuidValue.param.ParameterName.label"); +///"Gets an integer value from a form post (HTTP POST)" +public static string Composite_Web_Request_FormPostIntegerValue_description=>T("Composite.Web.Request.FormPostIntegerValue.description"); +///"" +public static string Composite_Web_Request_FormPostIntegerValue_param_FallbackValue_help=>T("Composite.Web.Request.FormPostIntegerValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_FormPostIntegerValue_param_FallbackValue_label=>T("Composite.Web.Request.FormPostIntegerValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_FormPostIntegerValue_param_ParameterName_help=>T("Composite.Web.Request.FormPostIntegerValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_FormPostIntegerValue_param_ParameterName_label=>T("Composite.Web.Request.FormPostIntegerValue.param.ParameterName.label"); +///"Gets a string value from a form post (HTTP POST)" +public static string Composite_Web_Request_FormPostValue_description=>T("Composite.Web.Request.FormPostValue.description"); +///"" +public static string Composite_Web_Request_FormPostValue_param_FallbackValue_help=>T("Composite.Web.Request.FormPostValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_FormPostValue_param_FallbackValue_label=>T("Composite.Web.Request.FormPostValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_FormPostValue_param_ParameterName_help=>T("Composite.Web.Request.FormPostValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_FormPostValue_param_ParameterName_label=>T("Composite.Web.Request.FormPostValue.param.ParameterName.label"); +///"Gets a date and time value from a form post (HTTP POST). The incoming date string is expected to be XML formatted (like “2003-09-26T13:30:00”)" +public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_description=>T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.description"); +///"The value to use if the post did not contain the specified parameter name." +public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_param_FallbackValue_help=>T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_param_FallbackValue_label=>T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_param_ParameterName_help=>T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_FormPostXmlFormattedDateTimeValue_param_ParameterName_label=>T("Composite.Web.Request.FormPostXmlFormattedDateTimeValue.param.ParameterName.label"); +///"Gets a boolean value from a Url parameter (HTTP GET)" +public static string Composite_Web_Request_QueryStringBoolValue_description=>T("Composite.Web.Request.QueryStringBoolValue.description"); +///"" +public static string Composite_Web_Request_QueryStringBoolValue_param_FallbackValue_help=>T("Composite.Web.Request.QueryStringBoolValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_QueryStringBoolValue_param_FallbackValue_label=>T("Composite.Web.Request.QueryStringBoolValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_QueryStringBoolValue_param_ParameterName_help=>T("Composite.Web.Request.QueryStringBoolValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_QueryStringBoolValue_param_ParameterName_label=>T("Composite.Web.Request.QueryStringBoolValue.param.ParameterName.label"); +///"Gets a decimal value from a Url parameter (HTTP GET)" +public static string Composite_Web_Request_QueryStringDecimalValue_description=>T("Composite.Web.Request.QueryStringDecimalValue.description"); +///"" +public static string Composite_Web_Request_QueryStringDecimalValue_param_FallbackValue_help=>T("Composite.Web.Request.QueryStringDecimalValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_QueryStringDecimalValue_param_FallbackValue_label=>T("Composite.Web.Request.QueryStringDecimalValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_QueryStringDecimalValue_param_ParameterName_help=>T("Composite.Web.Request.QueryStringDecimalValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_QueryStringDecimalValue_param_ParameterName_label=>T("Composite.Web.Request.QueryStringDecimalValue.param.ParameterName.label"); +///"Gets a Guid value from a Url parameter (HTTP GET)" +public static string Composite_Web_Request_QueryStringGuidValue_description=>T("Composite.Web.Request.QueryStringGuidValue.description"); +///"" +public static string Composite_Web_Request_QueryStringGuidValue_param_FallbackValue_help=>T("Composite.Web.Request.QueryStringGuidValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_QueryStringGuidValue_param_FallbackValue_label=>T("Composite.Web.Request.QueryStringGuidValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_QueryStringGuidValue_param_ParameterName_help=>T("Composite.Web.Request.QueryStringGuidValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_QueryStringGuidValue_param_ParameterName_label=>T("Composite.Web.Request.QueryStringGuidValue.param.ParameterName.label"); +///"Gets an integer value from a Url parameter (HTTP GET)" +public static string Composite_Web_Request_QueryStringIntegerValue_description=>T("Composite.Web.Request.QueryStringIntegerValue.description"); +///"" +public static string Composite_Web_Request_QueryStringIntegerValue_param_FallbackValue_help=>T("Composite.Web.Request.QueryStringIntegerValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_QueryStringIntegerValue_param_FallbackValue_label=>T("Composite.Web.Request.QueryStringIntegerValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_QueryStringIntegerValue_param_ParameterName_help=>T("Composite.Web.Request.QueryStringIntegerValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_QueryStringIntegerValue_param_ParameterName_label=>T("Composite.Web.Request.QueryStringIntegerValue.param.ParameterName.label"); +///"Gets a string value from a Url parameter (HTTP GET)" +public static string Composite_Web_Request_QueryStringValue_description=>T("Composite.Web.Request.QueryStringValue.description"); +///"" +public static string Composite_Web_Request_QueryStringValue_param_FallbackValue_help=>T("Composite.Web.Request.QueryStringValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_QueryStringValue_param_FallbackValue_label=>T("Composite.Web.Request.QueryStringValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_QueryStringValue_param_ParameterName_help=>T("Composite.Web.Request.QueryStringValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_QueryStringValue_param_ParameterName_label=>T("Composite.Web.Request.QueryStringValue.param.ParameterName.label"); +///"Gets a date and time value from a Url parameter (HTTP GET). The incoming date string is expected to be XML formatted (like “2003-09-26T13:30:00”)" +public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_description=>T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.description"); +///"The value to use if the Url did not contain the specified parameter name." +public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_param_FallbackValue_help=>T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_param_FallbackValue_label=>T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_param_ParameterName_help=>T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.param.ParameterName.help"); +///"Parameter name" +public static string Composite_Web_Request_QueryStringXmlFormattedDateTimeValue_param_ParameterName_label=>T("Composite.Web.Request.QueryStringXmlFormattedDateTimeValue.param.ParameterName.label"); +///"Returns additional information passed in a URL along with the page link." +public static string Composite_Web_Request_PathInfo_description=>T("Composite.Web.Request.PathInfo.description"); +///"The segment of the path info to retrieve, using the format '/(0)/(1)/(2)/...'. Specify -1 to get the entire string." +public static string Composite_Web_Request_PathInfo_param_Segment_help=>T("Composite.Web.Request.PathInfo.param.Segment.help"); +///"Segment" +public static string Composite_Web_Request_PathInfo_param_Segment_label=>T("Composite.Web.Request.PathInfo.param.Segment.label"); +///"When true, any path info string will be accepted. Default is true." +public static string Composite_Web_Request_PathInfo_param_AutoApprove_help=>T("Composite.Web.Request.PathInfo.param.AutoApprove.help"); +///"AutoApprove" +public static string Composite_Web_Request_PathInfo_param_AutoApprove_label=>T("Composite.Web.Request.PathInfo.param.AutoApprove.label"); +///"" +public static string Composite_Web_Request_PathInfo_param_FallbackValue_help=>T("Composite.Web.Request.PathInfo.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_PathInfo_param_FallbackValue_label=>T("Composite.Web.Request.PathInfo.param.FallbackValue.label"); +///"Extracts an integer value from a PathInfo segment." +public static string Composite_Web_Request_PathInfoInt_description=>T("Composite.Web.Request.PathInfoInt.description"); +///"The segment of the path info to retrieve, using the format '/(0)/(1)/(2)/...'." +public static string Composite_Web_Request_PathInfoInt_param_Segment_help=>T("Composite.Web.Request.PathInfoInt.param.Segment.help"); +///"Segment" +public static string Composite_Web_Request_PathInfoInt_param_Segment_label=>T("Composite.Web.Request.PathInfoInt.param.Segment.label"); +///"When true, any path info string will be accepted. Default is true." +public static string Composite_Web_Request_PathInfoInt_param_AutoApprove_help=>T("Composite.Web.Request.PathInfoInt.param.AutoApprove.help"); +///"AutoApprove" +public static string Composite_Web_Request_PathInfoInt_param_AutoApprove_label=>T("Composite.Web.Request.PathInfoInt.param.AutoApprove.label"); +///"" +public static string Composite_Web_Request_PathInfoInt_param_FallbackValue_help=>T("Composite.Web.Request.PathInfoInt.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_PathInfoInt_param_FallbackValue_label=>T("Composite.Web.Request.PathInfoInt.param.FallbackValue.label"); +///"Extracts a GUID from a PathInfo segment." +public static string Composite_Web_Request_PathInfoGuid_description=>T("Composite.Web.Request.PathInfoGuid.description"); +///"The segment of the path info to retrieve, using the format '/(0)/(1)/(2)/...'. " +public static string Composite_Web_Request_PathInfoGuid_param_Segment_help=>T("Composite.Web.Request.PathInfoGuid.param.Segment.help"); +///"Segment" +public static string Composite_Web_Request_PathInfoGuid_param_Segment_label=>T("Composite.Web.Request.PathInfoGuid.param.Segment.label"); +///"When true, accept any path info string will be accepted. Default is true." +public static string Composite_Web_Request_PathInfoGuid_param_AutoApprove_help=>T("Composite.Web.Request.PathInfoGuid.param.AutoApprove.help"); +///"AutoApprove" +public static string Composite_Web_Request_PathInfoGuid_param_AutoApprove_label=>T("Composite.Web.Request.PathInfoGuid.param.AutoApprove.label"); +///"" +public static string Composite_Web_Request_PathInfoGuid_param_FallbackValue_help=>T("Composite.Web.Request.PathInfoGuid.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_PathInfoGuid_param_FallbackValue_label=>T("Composite.Web.Request.PathInfoGuid.param.FallbackValue.label"); +///"Notifies the system of PathInfo being used, so that the request is not redirected to the 'Page not found' page." +public static string Composite_Web_Request_RegisterPathInfoUsage_description=>T("Composite.Web.Request.RegisterPathInfoUsage.description"); +///"Retrieves a variable from the current users session as a string." +public static string Composite_Web_Request_SessionVariable_description=>T("Composite.Web.Request.SessionVariable.description"); +///"The value to use if the session variable was not found" +public static string Composite_Web_Request_SessionVariable_param_FallbackValue_help=>T("Composite.Web.Request.SessionVariable.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Request_SessionVariable_param_FallbackValue_label=>T("Composite.Web.Request.SessionVariable.param.FallbackValue.label"); +///"" +public static string Composite_Web_Request_SessionVariable_param_VariableName_help=>T("Composite.Web.Request.SessionVariable.param.VariableName.help"); +///"Variable name" +public static string Composite_Web_Request_SessionVariable_param_VariableName_label=>T("Composite.Web.Request.SessionVariable.param.VariableName.label"); +///"Redirects the website visitor to another URL. URL redirects are suppressed when this function executes inside the C1 console." +public static string Composite_Web_Response_Redirect_description=>T("Composite.Web.Response.Redirect.description"); +///"The URL the user should be redirected to, either absolute (http://contoso.com/default.aspx) or relative (/Login.aspx))." +public static string Composite_Web_Response_Redirect_param_Url_help=>T("Composite.Web.Response.Redirect.param.Url.help"); +///"URL" +public static string Composite_Web_Response_Redirect_param_Url_label=>T("Composite.Web.Response.Redirect.param.Url.label"); +///"Sets a cookie value for the current user" +public static string Composite_Web_Response_SetCookieValue_description=>T("Composite.Web.Response.SetCookieValue.description"); +///"The name of the cookie to set / overwrite" +public static string Composite_Web_Response_SetCookieValue_param_CookieName_help=>T("Composite.Web.Response.SetCookieValue.param.CookieName.help"); +///"Cookie name" +public static string Composite_Web_Response_SetCookieValue_param_CookieName_label=>T("Composite.Web.Response.SetCookieValue.param.CookieName.label"); +///"The value to store in the cookie" +public static string Composite_Web_Response_SetCookieValue_param_Value_help=>T("Composite.Web.Response.SetCookieValue.param.Value.help"); +///"Cookie value" +public static string Composite_Web_Response_SetCookieValue_param_Value_label=>T("Composite.Web.Response.SetCookieValue.param.Value.label"); +///"When the cookie should expire (stop to exist). The default value is 'session', when the user closes the browser." +public static string Composite_Web_Response_SetCookieValue_param_Expires_help=>T("Composite.Web.Response.SetCookieValue.param.Expires.help"); +///"Expiration" +public static string Composite_Web_Response_SetCookieValue_param_Expires_label=>T("Composite.Web.Response.SetCookieValue.param.Expires.label"); +///"Sets the maximum number of seconds the current page should be publicly cached on the server. To ensure that the page response is not cached set the "Maximum seconds" to "0". If multiple sources set the server cache duration, the smallest number is used. Note that the file "~/Renderers/Page.aspx" contains a default value for cache duration – you can edit this file to change the default." +public static string Composite_Web_Response_SetServerPageCacheDuration_description=>T("Composite.Web.Response.SetServerPageCacheDuration.description"); +///"The maximum number of seconds the page currently being rendered should be publicly cached. A high value yield good performance, a low value make changes show up faster. A value of '0' ensure that all visitors get a unique response." +public static string Composite_Web_Response_SetServerPageCacheDuration_param_MaxSeconds_help=>T("Composite.Web.Response.SetServerPageCacheDuration.param.MaxSeconds.help"); +///"Maximum seconds" +public static string Composite_Web_Response_SetServerPageCacheDuration_param_MaxSeconds_label=>T("Composite.Web.Response.SetServerPageCacheDuration.param.MaxSeconds.label"); +///"Sets a session variable for the current user" +public static string Composite_Web_Response_SetSessionVariable_description=>T("Composite.Web.Response.SetSessionVariable.description"); +///"" +public static string Composite_Web_Response_SetSessionVariable_param_Value_help=>T("Composite.Web.Response.SetSessionVariable.param.Value.help"); +///"Value" +public static string Composite_Web_Response_SetSessionVariable_param_Value_label=>T("Composite.Web.Response.SetSessionVariable.param.Value.label"); +///"The name of the session variable to set." +public static string Composite_Web_Response_SetSessionVariable_param_VariableName_help=>T("Composite.Web.Response.SetSessionVariable.param.VariableName.help"); +///"Variable name" +public static string Composite_Web_Response_SetSessionVariable_param_VariableName_label=>T("Composite.Web.Response.SetSessionVariable.param.VariableName.label"); +///"Gets the web application virtual path. Typically this is '' - the empty string, when running in the website root, but if {applicationname} is running in a sub folder this can be '/MySubfolder'. You can use this value to prefix URL's so they will work no matter is {applicationname} is running is a subfolder or not. Sample XSLT usage: <img src="{/in:inputs/in:result[@name='ApplicationPath']}/images/myImage.png" />" +public static string Composite_Web_Server_ApplicationPath_description=>T("Composite.Web.Server.ApplicationPath.description"); +///"Gets an IIS application variable" +public static string Composite_Web_Server_ApplicationVariable_description=>T("Composite.Web.Server.ApplicationVariable.description"); +///"Value to use if the application variable was not located" +public static string Composite_Web_Server_ApplicationVariable_param_FallbackValue_help=>T("Composite.Web.Server.ApplicationVariable.param.FallbackValue.help"); +///"Fallback value" +public static string Composite_Web_Server_ApplicationVariable_param_FallbackValue_label=>T("Composite.Web.Server.ApplicationVariable.param.FallbackValue.label"); +///"" +public static string Composite_Web_Server_ApplicationVariable_param_VariableName_help=>T("Composite.Web.Server.ApplicationVariable.param.VariableName.help"); +///"Variable name" +public static string Composite_Web_Server_ApplicationVariable_param_VariableName_label=>T("Composite.Web.Server.ApplicationVariable.param.VariableName.label"); +///"Gets the value of an IIS Server variable" +public static string Composite_Web_Server_ServerVariable_description=>T("Composite.Web.Server.ServerVariable.description"); +///"The IIS Server variable to get." +public static string Composite_Web_Server_ServerVariable_param_VariableName_help=>T("Composite.Web.Server.ServerVariable.param.VariableName.help"); +///"Variable name" +public static string Composite_Web_Server_ServerVariable_param_VariableName_label=>T("Composite.Web.Server.ServerVariable.param.VariableName.label"); +///"Loads a local XML file given a relative path" +public static string Composite_Xml_LoadFile_description=>T("Composite.Xml.LoadFile.description"); +///"The relative path of the XML file to load" +public static string Composite_Xml_LoadFile_param_RelativePath_help=>T("Composite.Xml.LoadFile.param.RelativePath.help"); +///"Relative path" +public static string Composite_Xml_LoadFile_param_RelativePath_label=>T("Composite.Xml.LoadFile.param.RelativePath.label"); +///"Loads a local XHTML file given a relative path" +public static string Composite_Xml_LoadXhtmlFile_description=>T("Composite.Xml.LoadXhtmlFile.description"); +///"The relative path of the XHTML file to load" +public static string Composite_Xml_LoadXhtmlFile_param_RelativePath_help=>T("Composite.Xml.LoadXhtmlFile.param.RelativePath.help"); +///"Relative path" +public static string Composite_Xml_LoadXhtmlFile_param_RelativePath_label=>T("Composite.Xml.LoadXhtmlFile.param.RelativePath.label"); +///"Loads a remote XML file given a Url" +public static string Composite_Xml_LoadUrl_description=>T("Composite.Xml.LoadUrl.description"); +///"" +public static string Composite_Xml_LoadUrl_param_Url_help=>T("Composite.Xml.LoadUrl.param.Url.help"); +///"Url" +public static string Composite_Xml_LoadUrl_param_Url_label=>T("Composite.Xml.LoadUrl.param.Url.label"); +///"Time period in seconds for which the result should is cached. Default is 0 (no caching)." +public static string Composite_Xml_LoadUrl_param_CacheTime_help=>T("Composite.Xml.LoadUrl.param.CacheTime.help"); +///"Seconds to cache" +public static string Composite_Xml_LoadUrl_param_CacheTime_label=>T("Composite.Xml.LoadUrl.param.CacheTime.label"); +///"Provides localized date formatting functions for XSLT use. " +public static string Composite_Xslt_Extensions_DateFormatting_description=>T("Composite.Xslt.Extensions.DateFormatting.description"); +///"Provides globalization functions for XSLT use." +public static string Composite_Xslt_Extensions_Globalization_description=>T("Composite.Xslt.Extensions.Globalization.description"); +///"Provides functions that parse encoded XML documents or XHTML fragments into nodes. Use this extension when you have XML or XHTML as a string and need to copy it to the output or do transformations on it." +public static string Composite_Xslt_Extensions_MarkupParser_description=>T("Composite.Xslt.Extensions.MarkupParser.description"); +///"Sends an e-mail. Remember to configure SMTP server connection in the web.config file." +public static string Composite_Mail_SendMail_description=>T("Composite.Mail.SendMail.description"); +///"From" +public static string Composite_Mail_SendMail_param_From_label=>T("Composite.Mail.SendMail.param.From.label"); +///"Sender's address." +public static string Composite_Mail_SendMail_param_From_help=>T("Composite.Mail.SendMail.param.From.help"); +///"To" +public static string Composite_Mail_SendMail_param_To_label=>T("Composite.Mail.SendMail.param.To.label"); +///"Recipient. A list of comma separated email addresses." +public static string Composite_Mail_SendMail_param_To_help=>T("Composite.Mail.SendMail.param.To.help"); +///"Subject" +public static string Composite_Mail_SendMail_param_Subject_label=>T("Composite.Mail.SendMail.param.Subject.label"); +///"Email subject." +public static string Composite_Mail_SendMail_param_Subject_help=>T("Composite.Mail.SendMail.param.Subject.help"); +///"Body" +public static string Composite_Mail_SendMail_param_Body_label=>T("Composite.Mail.SendMail.param.Body.label"); +///"Email body." +public static string Composite_Mail_SendMail_param_Body_help=>T("Composite.Mail.SendMail.param.Body.help"); +///"IsHtml" +public static string Composite_Mail_SendMail_param_IsHtml_label=>T("Composite.Mail.SendMail.param.IsHtml.label"); +///"Defines whether email to be sent is an HTML email or a text email." +public static string Composite_Mail_SendMail_param_IsHtml_help=>T("Composite.Mail.SendMail.param.IsHtml.help"); +///"CC" +public static string Composite_Mail_SendMail_param_CC_label=>T("Composite.Mail.SendMail.param.CC.label"); +///"Carbon Copy. A list of comma separated email addresses that are secondary recipients of a message." +public static string Composite_Mail_SendMail_param_CC_help=>T("Composite.Mail.SendMail.param.CC.help"); +///"ReplyTo" +public static string Composite_Mail_SendMail_param_ReplyTo_label=>T("Composite.Mail.SendMail.param.ReplyTo.label"); +///"Address that should be used to reply to the message." +public static string Composite_Mail_SendMail_param_ReplyTo_help=>T("Composite.Mail.SendMail.param.ReplyTo.help"); +///"BCC" +public static string Composite_Mail_SendMail_param_BCC_label=>T("Composite.Mail.SendMail.param.BCC.label"); +///"Blind Carbon Copy. A list of recipients which will receive a mail but their individual email addresses will be concealed from the complete list of recipients." +public static string Composite_Mail_SendMail_param_BCC_help=>T("Composite.Mail.SendMail.param.BCC.help"); +///"Attachment" +public static string Composite_Mail_SendMail_param_Attachment_label=>T("Composite.Mail.SendMail.param.Attachment.label"); +///"List of attached files. \n Format it the following [{name}=]{filepath}[,{mime-type] [ | .... ]. \n File path can be either relative or absolute path f.e. "C:\someimage.jpg" or "/coolpicture.jpg" \n If file path starts with "Composite/", it will be recognized as a path to Composite media, f.e. 'Composite/MediaArchive:someImage.gif' \n \n Examples: \n /attachment.jpg \n image.jpg=/attachment.jpg \n image.jpg=/attachment.jpg,image/jpg \n image1.jpg=/attachment1.jpg,image/jpg|image2.jpg=/attachment2.jpg,image/jpg" +public static string Composite_Mail_SendMail_param_Attachment_help=>T("Composite.Mail.SendMail.param.Attachment.help"); +///"AttachmentFromMedia" +public static string Composite_Mail_SendMail_param_AttachmentFromMedia_label=>T("Composite.Mail.SendMail.param.AttachmentFromMedia.label"); +///"A file from media library to be attached." +public static string Composite_Mail_SendMail_param_AttachmentFromMedia_help=>T("Composite.Mail.SendMail.param.AttachmentFromMedia.help"); +///"Filters images by it's folder path" +public static string Composite_Data_Types_IImageFile_MediaFolderFilter_description=>T("Composite.Data.Types.IImageFile.MediaFolderFilter.description"); +///"Media Folder" +public static string Composite_Data_Types_IImageFile_MediaFolderFilter_param_MediaFolder_label=>T("Composite.Data.Types.IImageFile.MediaFolderFilter.param.MediaFolder.label"); +///"A reference to a media folder" +public static string Composite_Data_Types_IImageFile_MediaFolderFilter_param_MediaFolder_help=>T("Composite.Data.Types.IImageFile.MediaFolderFilter.param.MediaFolder.help"); +///"Include Subfolders" +public static string Composite_Data_Types_IImageFile_MediaFolderFilter_param_IncludeSubfolders_label=>T("Composite.Data.Types.IImageFile.MediaFolderFilter.param.IncludeSubfolders.label"); +///"Determines whether images from subfolders should be included." +public static string Composite_Data_Types_IImageFile_MediaFolderFilter_param_IncludeSubfolders_help=>T("Composite.Data.Types.IImageFile.MediaFolderFilter.param.IncludeSubfolders.help"); +///"Filters images by it's folder path" +public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_description=>T("Composite.Data.Types.IMediaFile.MediaFolderFilter.description"); +///"Media Folder" +public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_param_MediaFolder_label=>T("Composite.Data.Types.IMediaFile.MediaFolderFilter.param.MediaFolder.label"); +///"A reference to a media folder" +public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_param_MediaFolder_help=>T("Composite.Data.Types.IMediaFile.MediaFolderFilter.param.MediaFolder.help"); +///"Include Subfolders" +public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_param_IncludeSubfolders_label=>T("Composite.Data.Types.IMediaFile.MediaFolderFilter.param.IncludeSubfolders.label"); +///"Determines whether media files from subfolders should be included." +public static string Composite_Data_Types_IMediaFile_MediaFolderFilter_param_IncludeSubfolders_help=>T("Composite.Data.Types.IMediaFile.MediaFolderFilter.param.IncludeSubfolders.help"); +///"Converts an enumerable of XElements to a Dictionary using named attributes for keys and values." +public static string Composite_Utils_Dictionary_XElementsToDictionary_description=>T("Composite.Utils.Dictionary.XElementsToDictionary.description"); +///"XElements" +public static string Composite_Utils_Dictionary_XElementsToDictionary_param_XElements_label=>T("Composite.Utils.Dictionary.XElementsToDictionary.param.XElements.label"); +///"An enumerable of XElements that will be used to create a dictionary from." +public static string Composite_Utils_Dictionary_XElementsToDictionary_param_XElements_help=>T("Composite.Utils.Dictionary.XElementsToDictionary.param.XElements.help"); +///"Key Attribute Name" +public static string Composite_Utils_Dictionary_XElementsToDictionary_param_KeyAttributeName_label=>T("Composite.Utils.Dictionary.XElementsToDictionary.param.KeyAttributeName.label"); +///"The name of the attribute on each XElement which value will be used for keys in the dictionary." +public static string Composite_Utils_Dictionary_XElementsToDictionary_param_KeyAttributeName_help=>T("Composite.Utils.Dictionary.XElementsToDictionary.param.KeyAttributeName.help"); +///"Value Attribute Name" +public static string Composite_Utils_Dictionary_XElementsToDictionary_param_ValueAttributeName_label=>T("Composite.Utils.Dictionary.XElementsToDictionary.param.ValueAttributeName.label"); +///"The name of the attribute on each XElement which value will be used for values in the dictionary." +public static string Composite_Utils_Dictionary_XElementsToDictionary_param_ValueAttributeName_help=>T("Composite.Utils.Dictionary.XElementsToDictionary.param.ValueAttributeName.help"); +///"Converts an enumerable of objects to a Dictionary using named property names for keys and values." +public static string Composite_Utils_Dictionary_EnumerableToDictionary_description=>T("Composite.Utils.Dictionary.EnumerableToDictionary.description"); +///"Objects" +public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_Elements_label=>T("Composite.Utils.Dictionary.EnumerableToDictionary.param.Elements.label"); +///"An enumerable of objects that will be used to create a dictionary from." +public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_Elements_help=>T("Composite.Utils.Dictionary.EnumerableToDictionary.param.Elements.help"); +///"Key Property Name" +public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_KeyPropertyName_label=>T("Composite.Utils.Dictionary.EnumerableToDictionary.param.KeyPropertyName.label"); +///"The name of the property on each object which value will be used for keys in the dictionary." +public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_KeyPropertyName_help=>T("Composite.Utils.Dictionary.EnumerableToDictionary.param.KeyPropertyName.help"); +///"Value Property Name" +public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_ValuePropertyName_label=>T("Composite.Utils.Dictionary.EnumerableToDictionary.param.ValuePropertyName.label"); +///"The name of the property on each object which value will be used for values in the dictionary." +public static string Composite_Utils_Dictionary_EnumerableToDictionary_param_ValuePropertyName_help=>T("Composite.Utils.Dictionary.EnumerableToDictionary.param.ValuePropertyName.help"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.StandardFunctions", key); } } + /// + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] + public static class Composite_Plugins_TimezoneAbbriviations { +///"Etc/GMT+12" +public static string TimezoneAbbriviations_Dateline_Standard_Time=>T("TimezoneAbbriviations.Dateline Standard Time"); +///"Etc/GMT+11" +public static string TimezoneAbbriviations_UTC_11=>T("TimezoneAbbriviations.UTC-11"); +///"UTC-10" +public static string TimezoneAbbriviations_Aleutian_Standard_Time=>T("TimezoneAbbriviations.Aleutian Standard Time"); +///"HST" +public static string TimezoneAbbriviations_Hawaiian_Standard_Time=>T("TimezoneAbbriviations.Hawaiian Standard Time"); +///"MART" +public static string TimezoneAbbriviations_Marquesas_Standard_Time=>T("TimezoneAbbriviations.Marquesas Standard Time"); +///"AKST" +public static string TimezoneAbbriviations_Alaskan_Standard_Time=>T("TimezoneAbbriviations.Alaskan Standard Time"); +///"UTC-09" +public static string TimezoneAbbriviations_UTC_09=>T("TimezoneAbbriviations.UTC-09"); +///"PST" +public static string TimezoneAbbriviations_Pacific_Standard_Time_Mexico=>T("TimezoneAbbriviations.Pacific Standard Time (Mexico)"); +///"UTC-08" +public static string TimezoneAbbriviations_UTC_08=>T("TimezoneAbbriviations.UTC-08"); +///"PST" +public static string TimezoneAbbriviations_Pacific_Standard_Time=>T("TimezoneAbbriviations.Pacific Standard Time"); +///"MST" +public static string TimezoneAbbriviations_US_Mountain_Standard_Time=>T("TimezoneAbbriviations.US Mountain Standard Time"); +///"MST" +public static string TimezoneAbbriviations_Mountain_Standard_Time_Mexico=>T("TimezoneAbbriviations.Mountain Standard Time (Mexico)"); +///"MST" +public static string TimezoneAbbriviations_Mountain_Standard_Time=>T("TimezoneAbbriviations.Mountain Standard Time"); +///"CST" +public static string TimezoneAbbriviations_Central_America_Standard_Time=>T("TimezoneAbbriviations.Central America Standard Time"); +///"CST" +public static string TimezoneAbbriviations_Central_Standard_Time=>T("TimezoneAbbriviations.Central Standard Time"); +///"EASST" +public static string TimezoneAbbriviations_Easter_Island_Standard_Time=>T("TimezoneAbbriviations.Easter Island Standard Time"); +///"CST" +public static string TimezoneAbbriviations_Central_Standard_Time_Mexico=>T("TimezoneAbbriviations.Central Standard Time (Mexico)"); +///"CST" +public static string TimezoneAbbriviations_Canada_Central_Standard_Time=>T("TimezoneAbbriviations.Canada Central Standard Time"); +///"SAPST" +public static string TimezoneAbbriviations_SA_Pacific_Standard_Time=>T("TimezoneAbbriviations.SA Pacific Standard Time"); +///"EST" +public static string TimezoneAbbriviations_Eastern_Standard_Time_Mexico=>T("TimezoneAbbriviations.Eastern Standard Time (Mexico)"); +///"EST" +public static string TimezoneAbbriviations_Eastern_Standard_Time=>T("TimezoneAbbriviations.Eastern Standard Time"); +///"EST" +public static string TimezoneAbbriviations_Haiti_Standard_Time=>T("TimezoneAbbriviations.Haiti Standard Time"); +///"UTC-05" +public static string TimezoneAbbriviations_Cuba_Standard_Time=>T("TimezoneAbbriviations.Cuba Standard Time"); +///"EST" +public static string TimezoneAbbriviations_US_Eastern_Standard_Time=>T("TimezoneAbbriviations.US Eastern Standard Time"); +///"VET" +public static string TimezoneAbbriviations_Venezuela_Standard_Time=>T("TimezoneAbbriviations.Venezuela Standard Time"); +///"PYST" +public static string TimezoneAbbriviations_Paraguay_Standard_Time=>T("TimezoneAbbriviations.Paraguay Standard Time"); +///"AST" +public static string TimezoneAbbriviations_Atlantic_Standard_Time=>T("TimezoneAbbriviations.Atlantic Standard Time"); +///"AMST" +public static string TimezoneAbbriviations_Central_Brazilian_Standard_Time=>T("TimezoneAbbriviations.Central Brazilian Standard Time"); +///"SAWST" +public static string TimezoneAbbriviations_SA_Western_Standard_Time=>T("TimezoneAbbriviations.SA Western Standard Time"); +///"CLST" +public static string TimezoneAbbriviations_Pacific_SA_Standard_Time=>T("TimezoneAbbriviations.Pacific SA Standard Time"); +///"UTC-04" +public static string TimezoneAbbriviations_Turks_And_Caicos_Standard_Time=>T("TimezoneAbbriviations.Turks And Caicos Standard Time"); +///"NST" +public static string TimezoneAbbriviations_Newfoundland_Standard_Time=>T("TimezoneAbbriviations.Newfoundland Standard Time"); +///"UTC-03" +public static string TimezoneAbbriviations_Tocantins_Standard_Time=>T("TimezoneAbbriviations.Tocantins Standard Time"); +///"BRST" +public static string TimezoneAbbriviations_E__South_America_Standard_Time=>T("TimezoneAbbriviations.E. South America Standard Time"); +///"GFT" +public static string TimezoneAbbriviations_SA_Eastern_Standard_Time=>T("TimezoneAbbriviations.SA Eastern Standard Time"); +///"ART" +public static string TimezoneAbbriviations_Argentina_Standard_Time=>T("TimezoneAbbriviations.Argentina Standard Time"); +///"WGT" +public static string TimezoneAbbriviations_Greenland_Standard_Time=>T("TimezoneAbbriviations.Greenland Standard Time"); +///"UYT" +public static string TimezoneAbbriviations_Montevideo_Standard_Time=>T("TimezoneAbbriviations.Montevideo Standard Time"); +///"UTC-03" +public static string TimezoneAbbriviations_Saint_Pierre_Standard_Time=>T("TimezoneAbbriviations.Saint Pierre Standard Time"); +///"BRT" +public static string TimezoneAbbriviations_Bahia_Standard_Time=>T("TimezoneAbbriviations.Bahia Standard Time"); +///"Etc/GMT+2" +public static string TimezoneAbbriviations_UTC_02=>T("TimezoneAbbriviations.UTC-02"); +///"AST" +public static string TimezoneAbbriviations_Mid_Atlantic_Standard_Time=>T("TimezoneAbbriviations.Mid-Atlantic Standard Time"); +///"AZOT" +public static string TimezoneAbbriviations_Azores_Standard_Time=>T("TimezoneAbbriviations.Azores Standard Time"); +///"CVT" +public static string TimezoneAbbriviations_Cape_Verde_Standard_Time=>T("TimezoneAbbriviations.Cape Verde Standard Time"); +///"WET" +public static string TimezoneAbbriviations_Morocco_Standard_Time=>T("TimezoneAbbriviations.Morocco Standard Time"); +///"Etc/GMT" +public static string TimezoneAbbriviations_UTC=>T("TimezoneAbbriviations.UTC"); +///"GMT" +public static string TimezoneAbbriviations_GMT_Standard_Time=>T("TimezoneAbbriviations.GMT Standard Time"); +///"GMT" +public static string TimezoneAbbriviations_Greenwich_Standard_Time=>T("TimezoneAbbriviations.Greenwich Standard Time"); +///"CET" +public static string TimezoneAbbriviations_W__Europe_Standard_Time=>T("TimezoneAbbriviations.W. Europe Standard Time"); +///"CET" +public static string TimezoneAbbriviations_Central_Europe_Standard_Time=>T("TimezoneAbbriviations.Central Europe Standard Time"); +///"CET" +public static string TimezoneAbbriviations_Romance_Standard_Time=>T("TimezoneAbbriviations.Romance Standard Time"); +///"CET" +public static string TimezoneAbbriviations_Central_European_Standard_Time=>T("TimezoneAbbriviations.Central European Standard Time"); +///"WAT" +public static string TimezoneAbbriviations_W__Central_Africa_Standard_Time=>T("TimezoneAbbriviations.W. Central Africa Standard Time"); +///"WAST" +public static string TimezoneAbbriviations_Namibia_Standard_Time=>T("TimezoneAbbriviations.Namibia Standard Time"); +///"EET" +public static string TimezoneAbbriviations_Jordan_Standard_Time=>T("TimezoneAbbriviations.Jordan Standard Time"); +///"EET" +public static string TimezoneAbbriviations_GTB_Standard_Time=>T("TimezoneAbbriviations.GTB Standard Time"); +///"EET" +public static string TimezoneAbbriviations_Middle_East_Standard_Time=>T("TimezoneAbbriviations.Middle East Standard Time"); +///"EET" +public static string TimezoneAbbriviations_Egypt_Standard_Time=>T("TimezoneAbbriviations.Egypt Standard Time"); +///"EET" +public static string TimezoneAbbriviations_Syria_Standard_Time=>T("TimezoneAbbriviations.Syria Standard Time"); +///"EET" +public static string TimezoneAbbriviations_E__Europe_Standard_Time=>T("TimezoneAbbriviations.E. Europe Standard Time"); +///"UTC+02" +public static string TimezoneAbbriviations_West_Bank_Standard_Time=>T("TimezoneAbbriviations.West Bank Standard Time"); +///"SAST" +public static string TimezoneAbbriviations_South_Africa_Standard_Time=>T("TimezoneAbbriviations.South Africa Standard Time"); +///"EET" +public static string TimezoneAbbriviations_FLE_Standard_Time=>T("TimezoneAbbriviations.FLE Standard Time"); +///"EET" +public static string TimezoneAbbriviations_Turkey_Standard_Time=>T("TimezoneAbbriviations.Turkey Standard Time"); +///"IST" +public static string TimezoneAbbriviations_Israel_Standard_Time=>T("TimezoneAbbriviations.Israel Standard Time"); +///"EET" +public static string TimezoneAbbriviations_Kaliningrad_Standard_Time=>T("TimezoneAbbriviations.Kaliningrad Standard Time"); +///"EET" +public static string TimezoneAbbriviations_Libya_Standard_Time=>T("TimezoneAbbriviations.Libya Standard Time"); +///"AST" +public static string TimezoneAbbriviations_Arabic_Standard_Time=>T("TimezoneAbbriviations.Arabic Standard Time"); +///"AST" +public static string TimezoneAbbriviations_Arab_Standard_Time=>T("TimezoneAbbriviations.Arab Standard Time"); +///"MSK" +public static string TimezoneAbbriviations_Belarus_Standard_Time=>T("TimezoneAbbriviations.Belarus Standard Time"); +///"MSK" +public static string TimezoneAbbriviations_Russian_Standard_Time=>T("TimezoneAbbriviations.Russian Standard Time"); +///"EAT" +public static string TimezoneAbbriviations_E__Africa_Standard_Time=>T("TimezoneAbbriviations.E. Africa Standard Time"); +///"MSK" +public static string TimezoneAbbriviations_Astrakhan_Standard_Time=>T("TimezoneAbbriviations.Astrakhan Standard Time"); +///"IRST" +public static string TimezoneAbbriviations_Iran_Standard_Time=>T("TimezoneAbbriviations.Iran Standard Time"); +///"GST" +public static string TimezoneAbbriviations_Arabian_Standard_Time=>T("TimezoneAbbriviations.Arabian Standard Time"); +///"AZT" +public static string TimezoneAbbriviations_Azerbaijan_Standard_Time=>T("TimezoneAbbriviations.Azerbaijan Standard Time"); +///"SAMT" +public static string TimezoneAbbriviations_Russia_Time_Zone_3=>T("TimezoneAbbriviations.Russia Time Zone 3"); +///"MUT" +public static string TimezoneAbbriviations_Mauritius_Standard_Time=>T("TimezoneAbbriviations.Mauritius Standard Time"); +///"GET" +public static string TimezoneAbbriviations_Georgian_Standard_Time=>T("TimezoneAbbriviations.Georgian Standard Time"); +///"AMT" +public static string TimezoneAbbriviations_Caucasus_Standard_Time=>T("TimezoneAbbriviations.Caucasus Standard Time"); +///"AFT" +public static string TimezoneAbbriviations_Afghanistan_Standard_Time=>T("TimezoneAbbriviations.Afghanistan Standard Time"); +///"UZT" +public static string TimezoneAbbriviations_West_Asia_Standard_Time=>T("TimezoneAbbriviations.West Asia Standard Time"); +///"YEKT" +public static string TimezoneAbbriviations_Ekaterinburg_Standard_Time=>T("TimezoneAbbriviations.Ekaterinburg Standard Time"); +///"PKT" +public static string TimezoneAbbriviations_Pakistan_Standard_Time=>T("TimezoneAbbriviations.Pakistan Standard Time"); +///"IST" +public static string TimezoneAbbriviations_India_Standard_Time=>T("TimezoneAbbriviations.India Standard Time"); +///"IST" +public static string TimezoneAbbriviations_Sri_Lanka_Standard_Time=>T("TimezoneAbbriviations.Sri Lanka Standard Time"); +///"NPT" +public static string TimezoneAbbriviations_Nepal_Standard_Time=>T("TimezoneAbbriviations.Nepal Standard Time"); +///"ALMT" +public static string TimezoneAbbriviations_Central_Asia_Standard_Time=>T("TimezoneAbbriviations.Central Asia Standard Time"); +///"BDT" +public static string TimezoneAbbriviations_Bangladesh_Standard_Time=>T("TimezoneAbbriviations.Bangladesh Standard Time"); +///"NOVT" +public static string TimezoneAbbriviations_N__Central_Asia_Standard_Time=>T("TimezoneAbbriviations.N. Central Asia Standard Time"); +///"MSK+3" +public static string TimezoneAbbriviations_Altai_Standard_Time=>T("TimezoneAbbriviations.Altai Standard Time"); +///"MMT" +public static string TimezoneAbbriviations_Myanmar_Standard_Time=>T("TimezoneAbbriviations.Myanmar Standard Time"); +///"ICT" +public static string TimezoneAbbriviations_SE_Asia_Standard_Time=>T("TimezoneAbbriviations.SE Asia Standard Time"); +///"UTC+07" +public static string TimezoneAbbriviations_W__Mongolia_Standard_Time=>T("TimezoneAbbriviations.W. Mongolia Standard Time"); +///"KRAT" +public static string TimezoneAbbriviations_North_Asia_Standard_Time=>T("TimezoneAbbriviations.North Asia Standard Time"); +///"UTC+07" +public static string TimezoneAbbriviations_Tomsk_Standard_Time=>T("TimezoneAbbriviations.Tomsk Standard Time"); +///"CST" +public static string TimezoneAbbriviations_China_Standard_Time=>T("TimezoneAbbriviations.China Standard Time"); +///"IRKT" +public static string TimezoneAbbriviations_North_Asia_East_Standard_Time=>T("TimezoneAbbriviations.North Asia East Standard Time"); +///"SGT" +public static string TimezoneAbbriviations_Singapore_Standard_Time=>T("TimezoneAbbriviations.Singapore Standard Time"); +///"AWST" +public static string TimezoneAbbriviations_W__Australia_Standard_Time=>T("TimezoneAbbriviations.W. Australia Standard Time"); +///"CST" +public static string TimezoneAbbriviations_Taipei_Standard_Time=>T("TimezoneAbbriviations.Taipei Standard Time"); +///"ULAT" +public static string TimezoneAbbriviations_Ulaanbaatar_Standard_Time=>T("TimezoneAbbriviations.Ulaanbaatar Standard Time"); +///"KST" +public static string TimezoneAbbriviations_North_Korea_Standard_Time=>T("TimezoneAbbriviations.North Korea Standard Time"); +///"UTC+09" +public static string TimezoneAbbriviations_Transbaikal_Standard_Time=>T("TimezoneAbbriviations.Transbaikal Standard Time"); +///"JST" +public static string TimezoneAbbriviations_Tokyo_Standard_Time=>T("TimezoneAbbriviations.Tokyo Standard Time"); +///"KST" +public static string TimezoneAbbriviations_Korea_Standard_Time=>T("TimezoneAbbriviations.Korea Standard Time"); +///"YAKT" +public static string TimezoneAbbriviations_Yakutsk_Standard_Time=>T("TimezoneAbbriviations.Yakutsk Standard Time"); +///"ACDT" +public static string TimezoneAbbriviations_Cen__Australia_Standard_Time=>T("TimezoneAbbriviations.Cen. Australia Standard Time"); +///"ACST" +public static string TimezoneAbbriviations_AUS_Central_Standard_Time=>T("TimezoneAbbriviations.AUS Central Standard Time"); +///"AEST" +public static string TimezoneAbbriviations_E__Australia_Standard_Time=>T("TimezoneAbbriviations.E. Australia Standard Time"); +///"AEDT" +public static string TimezoneAbbriviations_AUS_Eastern_Standard_Time=>T("TimezoneAbbriviations.AUS Eastern Standard Time"); +///"PGT" +public static string TimezoneAbbriviations_West_Pacific_Standard_Time=>T("TimezoneAbbriviations.West Pacific Standard Time"); +///"AEDT" +public static string TimezoneAbbriviations_Tasmania_Standard_Time=>T("TimezoneAbbriviations.Tasmania Standard Time"); +///"MAGT" +public static string TimezoneAbbriviations_Magadan_Standard_Time=>T("TimezoneAbbriviations.Magadan Standard Time"); +///"VLAT" +public static string TimezoneAbbriviations_Vladivostok_Standard_Time=>T("TimezoneAbbriviations.Vladivostok Standard Time"); +///"SRET" +public static string TimezoneAbbriviations_Russia_Time_Zone_10=>T("TimezoneAbbriviations.Russia Time Zone 10"); +///"UTC+11" +public static string TimezoneAbbriviations_Norfolk_Standard_Time=>T("TimezoneAbbriviations.Norfolk Standard Time"); +///"UTC+11" +public static string TimezoneAbbriviations_Sakhalin_Standard_Time=>T("TimezoneAbbriviations.Sakhalin Standard Time"); +///"SBT" +public static string TimezoneAbbriviations_Central_Pacific_Standard_Time=>T("TimezoneAbbriviations.Central Pacific Standard Time"); +///"PETT" +public static string TimezoneAbbriviations_Russia_Time_Zone_11=>T("TimezoneAbbriviations.Russia Time Zone 11"); +///"NZDT" +public static string TimezoneAbbriviations_New_Zealand_Standard_Time=>T("TimezoneAbbriviations.New Zealand Standard Time"); +///"Etc/GMT-12" +public static string TimezoneAbbriviations_UTC12=>T("TimezoneAbbriviations.UTC+12"); +///"FJST" +public static string TimezoneAbbriviations_Fiji_Standard_Time=>T("TimezoneAbbriviations.Fiji Standard Time"); +///"PETT" +public static string TimezoneAbbriviations_Kamchatka_Standard_Time=>T("TimezoneAbbriviations.Kamchatka Standard Time"); +///"CHAST" +public static string TimezoneAbbriviations_Chatham_Islands_Standard_Time=>T("TimezoneAbbriviations.Chatham Islands Standard Time"); +///"TOT" +public static string TimezoneAbbriviations_Tonga_Standard_Time=>T("TimezoneAbbriviations.Tonga Standard Time"); +///"WSDT" +public static string TimezoneAbbriviations_Samoa_Standard_Time=>T("TimezoneAbbriviations.Samoa Standard Time"); +///"LINT" +public static string TimezoneAbbriviations_Line_Islands_Standard_Time=>T("TimezoneAbbriviations.Line Islands Standard Time"); + private static string T(string key) + { + return StringResourceSystemFacade.GetString("Composite.Plugins.TimezoneAbbriviations", key); + } +} + + /// + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] + public static class Composite_Plugins_TimezoneDisplayNames { +///"(UTC-12:00) International Date Line West" +public static string TimezoneDisplayName_Dateline_Standard_Time=>T("TimezoneDisplayName.Dateline Standard Time"); +///"(UTC-11:00) Coordinated Universal Time-11" +public static string TimezoneDisplayName_UTC_11=>T("TimezoneDisplayName.UTC-11"); +///"(UTC-10:00) Aleutian Islands" +public static string TimezoneDisplayName_Aleutian_Standard_Time=>T("TimezoneDisplayName.Aleutian Standard Time"); +///"(UTC-10:00) Hawaii" +public static string TimezoneDisplayName_Hawaiian_Standard_Time=>T("TimezoneDisplayName.Hawaiian Standard Time"); +///"(UTC-09:30) Marquesas Islands" +public static string TimezoneDisplayName_Marquesas_Standard_Time=>T("TimezoneDisplayName.Marquesas Standard Time"); +///"(UTC-09:00) Alaska" +public static string TimezoneDisplayName_Alaskan_Standard_Time=>T("TimezoneDisplayName.Alaskan Standard Time"); +///"(UTC-09:00) Coordinated Universal Time-09" +public static string TimezoneDisplayName_UTC_09=>T("TimezoneDisplayName.UTC-09"); +///"(UTC-08:00) Baja California" +public static string TimezoneDisplayName_Pacific_Standard_Time_Mexico=>T("TimezoneDisplayName.Pacific Standard Time (Mexico)"); +///"(UTC-08:00) Coordinated Universal Time-08" +public static string TimezoneDisplayName_UTC_08=>T("TimezoneDisplayName.UTC-08"); +///"(UTC-08:00) Pacific Time (US & Canada)" +public static string TimezoneDisplayName_Pacific_Standard_Time=>T("TimezoneDisplayName.Pacific Standard Time"); +///"(UTC-07:00) Arizona" +public static string TimezoneDisplayName_US_Mountain_Standard_Time=>T("TimezoneDisplayName.US Mountain Standard Time"); +///"(UTC-07:00) Chihuahua, La Paz, Mazatlan" +public static string TimezoneDisplayName_Mountain_Standard_Time_Mexico=>T("TimezoneDisplayName.Mountain Standard Time (Mexico)"); +///"(UTC-07:00) Mountain Time (US & Canada)" +public static string TimezoneDisplayName_Mountain_Standard_Time=>T("TimezoneDisplayName.Mountain Standard Time"); +///"(UTC-06:00) Central America" +public static string TimezoneDisplayName_Central_America_Standard_Time=>T("TimezoneDisplayName.Central America Standard Time"); +///"(UTC-06:00) Central Time (US & Canada)" +public static string TimezoneDisplayName_Central_Standard_Time=>T("TimezoneDisplayName.Central Standard Time"); +///"(UTC-06:00) Easter Island" +public static string TimezoneDisplayName_Easter_Island_Standard_Time=>T("TimezoneDisplayName.Easter Island Standard Time"); +///"(UTC-06:00) Guadalajara, Mexico City, Monterrey" +public static string TimezoneDisplayName_Central_Standard_Time_Mexico=>T("TimezoneDisplayName.Central Standard Time (Mexico)"); +///"(UTC-06:00) Saskatchewan" +public static string TimezoneDisplayName_Canada_Central_Standard_Time=>T("TimezoneDisplayName.Canada Central Standard Time"); +///"(UTC-05:00) Bogota, Lima, Quito, Rio Branco" +public static string TimezoneDisplayName_SA_Pacific_Standard_Time=>T("TimezoneDisplayName.SA Pacific Standard Time"); +///"(UTC-05:00) Chetumal" +public static string TimezoneDisplayName_Eastern_Standard_Time_Mexico=>T("TimezoneDisplayName.Eastern Standard Time (Mexico)"); +///"(UTC-05:00) Eastern Time (US & Canada)" +public static string TimezoneDisplayName_Eastern_Standard_Time=>T("TimezoneDisplayName.Eastern Standard Time"); +///"(UTC-05:00) Haiti" +public static string TimezoneDisplayName_Haiti_Standard_Time=>T("TimezoneDisplayName.Haiti Standard Time"); +///"(UTC-05:00) Havana" +public static string TimezoneDisplayName_Cuba_Standard_Time=>T("TimezoneDisplayName.Cuba Standard Time"); +///"(UTC-05:00) Indiana (East)" +public static string TimezoneDisplayName_US_Eastern_Standard_Time=>T("TimezoneDisplayName.US Eastern Standard Time"); +///"(UTC-04:00) Asuncion" +public static string TimezoneDisplayName_Paraguay_Standard_Time=>T("TimezoneDisplayName.Paraguay Standard Time"); +///"(UTC-04:00) Atlantic Time (Canada)" +public static string TimezoneDisplayName_Atlantic_Standard_Time=>T("TimezoneDisplayName.Atlantic Standard Time"); +///"(UTC-04:00) Caracas" +public static string TimezoneDisplayName_Venezuela_Standard_Time=>T("TimezoneDisplayName.Venezuela Standard Time"); +///"(UTC-04:00) Cuiaba" +public static string TimezoneDisplayName_Central_Brazilian_Standard_Time=>T("TimezoneDisplayName.Central Brazilian Standard Time"); +///"(UTC-04:00) Georgetown, La Paz, Manaus, San Juan" +public static string TimezoneDisplayName_SA_Western_Standard_Time=>T("TimezoneDisplayName.SA Western Standard Time"); +///"(UTC-04:00) Santiago" +public static string TimezoneDisplayName_Pacific_SA_Standard_Time=>T("TimezoneDisplayName.Pacific SA Standard Time"); +///"(UTC-04:00) Turks and Caicos" +public static string TimezoneDisplayName_Turks_And_Caicos_Standard_Time=>T("TimezoneDisplayName.Turks And Caicos Standard Time"); +///"(UTC-03:30) Newfoundland" +public static string TimezoneDisplayName_Newfoundland_Standard_Time=>T("TimezoneDisplayName.Newfoundland Standard Time"); +///"(UTC-03:00) Araguaina" +public static string TimezoneDisplayName_Tocantins_Standard_Time=>T("TimezoneDisplayName.Tocantins Standard Time"); +///"(UTC-03:00) Brasilia" +public static string TimezoneDisplayName_E__South_America_Standard_Time=>T("TimezoneDisplayName.E. South America Standard Time"); +///"(UTC-03:00) Cayenne, Fortaleza" +public static string TimezoneDisplayName_SA_Eastern_Standard_Time=>T("TimezoneDisplayName.SA Eastern Standard Time"); +///"(UTC-03:00) City of Buenos Aires" +public static string TimezoneDisplayName_Argentina_Standard_Time=>T("TimezoneDisplayName.Argentina Standard Time"); +///"(UTC-03:00) Greenland" +public static string TimezoneDisplayName_Greenland_Standard_Time=>T("TimezoneDisplayName.Greenland Standard Time"); +///"(UTC-03:00) Montevideo" +public static string TimezoneDisplayName_Montevideo_Standard_Time=>T("TimezoneDisplayName.Montevideo Standard Time"); +///"(UTC-03:00) Saint Pierre and Miquelon" +public static string TimezoneDisplayName_Saint_Pierre_Standard_Time=>T("TimezoneDisplayName.Saint Pierre Standard Time"); +///"(UTC-03:00) Salvador" +public static string TimezoneDisplayName_Bahia_Standard_Time=>T("TimezoneDisplayName.Bahia Standard Time"); +///"(UTC-02:00) Coordinated Universal Time-02" +public static string TimezoneDisplayName_UTC_02=>T("TimezoneDisplayName.UTC-02"); +///"(UTC-02:00) Mid-Atlantic - Old" +public static string TimezoneDisplayName_Mid_Atlantic_Standard_Time=>T("TimezoneDisplayName.Mid-Atlantic Standard Time"); +///"(UTC-01:00) Azores" +public static string TimezoneDisplayName_Azores_Standard_Time=>T("TimezoneDisplayName.Azores Standard Time"); +///"(UTC-01:00) Cabo Verde Is." +public static string TimezoneDisplayName_Cape_Verde_Standard_Time=>T("TimezoneDisplayName.Cape Verde Standard Time"); +///"(UTC) Coordinated Universal Time" +public static string TimezoneDisplayName_UTC=>T("TimezoneDisplayName.UTC"); +///"(UTC+00:00) Casablanca" +public static string TimezoneDisplayName_Morocco_Standard_Time=>T("TimezoneDisplayName.Morocco Standard Time"); +///"(UTC+00:00) Dublin, Edinburgh, Lisbon, London" +public static string TimezoneDisplayName_GMT_Standard_Time=>T("TimezoneDisplayName.GMT Standard Time"); +///"(UTC+00:00) Monrovia, Reykjavik" +public static string TimezoneDisplayName_Greenwich_Standard_Time=>T("TimezoneDisplayName.Greenwich Standard Time"); +///"(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna" +public static string TimezoneDisplayName_W__Europe_Standard_Time=>T("TimezoneDisplayName.W. Europe Standard Time"); +///"(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague" +public static string TimezoneDisplayName_Central_Europe_Standard_Time=>T("TimezoneDisplayName.Central Europe Standard Time"); +///"(UTC+01:00) Brussels, Copenhagen, Madrid, Paris" +public static string TimezoneDisplayName_Romance_Standard_Time=>T("TimezoneDisplayName.Romance Standard Time"); +///"(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb" +public static string TimezoneDisplayName_Central_European_Standard_Time=>T("TimezoneDisplayName.Central European Standard Time"); +///"(UTC+01:00) West Central Africa" +public static string TimezoneDisplayName_W__Central_Africa_Standard_Time=>T("TimezoneDisplayName.W. Central Africa Standard Time"); +///"(UTC+01:00) Windhoek" +public static string TimezoneDisplayName_Namibia_Standard_Time=>T("TimezoneDisplayName.Namibia Standard Time"); +///"(UTC+02:00) Amman" +public static string TimezoneDisplayName_Jordan_Standard_Time=>T("TimezoneDisplayName.Jordan Standard Time"); +///"(UTC+02:00) Athens, Bucharest" +public static string TimezoneDisplayName_GTB_Standard_Time=>T("TimezoneDisplayName.GTB Standard Time"); +///"(UTC+02:00) Beirut" +public static string TimezoneDisplayName_Middle_East_Standard_Time=>T("TimezoneDisplayName.Middle East Standard Time"); +///"(UTC+02:00) Cairo" +public static string TimezoneDisplayName_Egypt_Standard_Time=>T("TimezoneDisplayName.Egypt Standard Time"); +///"(UTC+02:00) Chisinau" +public static string TimezoneDisplayName_E__Europe_Standard_Time=>T("TimezoneDisplayName.E. Europe Standard Time"); +///"(UTC+02:00) Damascus" +public static string TimezoneDisplayName_Syria_Standard_Time=>T("TimezoneDisplayName.Syria Standard Time"); +///"(UTC+02:00) Gaza, Hebron" +public static string TimezoneDisplayName_West_Bank_Standard_Time=>T("TimezoneDisplayName.West Bank Standard Time"); +///"(UTC+02:00) Harare, Pretoria" +public static string TimezoneDisplayName_South_Africa_Standard_Time=>T("TimezoneDisplayName.South Africa Standard Time"); +///"(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius" +public static string TimezoneDisplayName_FLE_Standard_Time=>T("TimezoneDisplayName.FLE Standard Time"); +///"(UTC+02:00) Istanbul" +public static string TimezoneDisplayName_Turkey_Standard_Time=>T("TimezoneDisplayName.Turkey Standard Time"); +///"(UTC+02:00) Jerusalem" +public static string TimezoneDisplayName_Israel_Standard_Time=>T("TimezoneDisplayName.Israel Standard Time"); +///"(UTC+02:00) Kaliningrad" +public static string TimezoneDisplayName_Kaliningrad_Standard_Time=>T("TimezoneDisplayName.Kaliningrad Standard Time"); +///"(UTC+02:00) Tripoli" +public static string TimezoneDisplayName_Libya_Standard_Time=>T("TimezoneDisplayName.Libya Standard Time"); +///"(UTC+03:00) Baghdad" +public static string TimezoneDisplayName_Arabic_Standard_Time=>T("TimezoneDisplayName.Arabic Standard Time"); +///"(UTC+03:00) Kuwait, Riyadh" +public static string TimezoneDisplayName_Arab_Standard_Time=>T("TimezoneDisplayName.Arab Standard Time"); +///"(UTC+03:00) Minsk" +public static string TimezoneDisplayName_Belarus_Standard_Time=>T("TimezoneDisplayName.Belarus Standard Time"); +///"(UTC+03:00) Moscow, St. Petersburg, Volgograd" +public static string TimezoneDisplayName_Russian_Standard_Time=>T("TimezoneDisplayName.Russian Standard Time"); +///"(UTC+03:00) Nairobi" +public static string TimezoneDisplayName_E__Africa_Standard_Time=>T("TimezoneDisplayName.E. Africa Standard Time"); +///"(UTC+03:30) Tehran" +public static string TimezoneDisplayName_Iran_Standard_Time=>T("TimezoneDisplayName.Iran Standard Time"); +///"(UTC+04:00) Abu Dhabi, Muscat" +public static string TimezoneDisplayName_Arabian_Standard_Time=>T("TimezoneDisplayName.Arabian Standard Time"); +///"(UTC+04:00) Astrakhan, Ulyanovsk" +public static string TimezoneDisplayName_Astrakhan_Standard_Time=>T("TimezoneDisplayName.Astrakhan Standard Time"); +///"(UTC+04:00) Baku" +public static string TimezoneDisplayName_Azerbaijan_Standard_Time=>T("TimezoneDisplayName.Azerbaijan Standard Time"); +///"(UTC+04:00) Izhevsk, Samara" +public static string TimezoneDisplayName_Russia_Time_Zone_3=>T("TimezoneDisplayName.Russia Time Zone 3"); +///"(UTC+04:00) Port Louis" +public static string TimezoneDisplayName_Mauritius_Standard_Time=>T("TimezoneDisplayName.Mauritius Standard Time"); +///"(UTC+04:00) Tbilisi" +public static string TimezoneDisplayName_Georgian_Standard_Time=>T("TimezoneDisplayName.Georgian Standard Time"); +///"(UTC+04:00) Yerevan" +public static string TimezoneDisplayName_Caucasus_Standard_Time=>T("TimezoneDisplayName.Caucasus Standard Time"); +///"(UTC+04:30) Kabul" +public static string TimezoneDisplayName_Afghanistan_Standard_Time=>T("TimezoneDisplayName.Afghanistan Standard Time"); +///"(UTC+05:00) Ashgabat, Tashkent" +public static string TimezoneDisplayName_West_Asia_Standard_Time=>T("TimezoneDisplayName.West Asia Standard Time"); +///"(UTC+05:00) Ekaterinburg" +public static string TimezoneDisplayName_Ekaterinburg_Standard_Time=>T("TimezoneDisplayName.Ekaterinburg Standard Time"); +///"(UTC+05:00) Islamabad, Karachi" +public static string TimezoneDisplayName_Pakistan_Standard_Time=>T("TimezoneDisplayName.Pakistan Standard Time"); +///"(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi" +public static string TimezoneDisplayName_India_Standard_Time=>T("TimezoneDisplayName.India Standard Time"); +///"(UTC+05:30) Sri Jayawardenepura" +public static string TimezoneDisplayName_Sri_Lanka_Standard_Time=>T("TimezoneDisplayName.Sri Lanka Standard Time"); +///"(UTC+05:45) Kathmandu" +public static string TimezoneDisplayName_Nepal_Standard_Time=>T("TimezoneDisplayName.Nepal Standard Time"); +///"(UTC+06:00) Astana" +public static string TimezoneDisplayName_Central_Asia_Standard_Time=>T("TimezoneDisplayName.Central Asia Standard Time"); +///"(UTC+06:00) Dhaka" +public static string TimezoneDisplayName_Bangladesh_Standard_Time=>T("TimezoneDisplayName.Bangladesh Standard Time"); +///"(UTC+06:00) Novosibirsk" +public static string TimezoneDisplayName_N__Central_Asia_Standard_Time=>T("TimezoneDisplayName.N. Central Asia Standard Time"); +///"(UTC+06:30) Yangon (Rangoon)" +public static string TimezoneDisplayName_Myanmar_Standard_Time=>T("TimezoneDisplayName.Myanmar Standard Time"); +///"(UTC+07:00) Bangkok, Hanoi, Jakarta" +public static string TimezoneDisplayName_SE_Asia_Standard_Time=>T("TimezoneDisplayName.SE Asia Standard Time"); +///"(UTC+07:00) Barnaul, Gorno-Altaysk" +public static string TimezoneDisplayName_Altai_Standard_Time=>T("TimezoneDisplayName.Altai Standard Time"); +///"(UTC+07:00) Hovd" +public static string TimezoneDisplayName_W__Mongolia_Standard_Time=>T("TimezoneDisplayName.W. Mongolia Standard Time"); +///"(UTC+07:00) Krasnoyarsk" +public static string TimezoneDisplayName_North_Asia_Standard_Time=>T("TimezoneDisplayName.North Asia Standard Time"); +///"(UTC+07:00) Tomsk" +public static string TimezoneDisplayName_Tomsk_Standard_Time=>T("TimezoneDisplayName.Tomsk Standard Time"); +///"(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi" +public static string TimezoneDisplayName_China_Standard_Time=>T("TimezoneDisplayName.China Standard Time"); +///"(UTC+08:00) Irkutsk" +public static string TimezoneDisplayName_North_Asia_East_Standard_Time=>T("TimezoneDisplayName.North Asia East Standard Time"); +///"(UTC+08:00) Kuala Lumpur, Singapore" +public static string TimezoneDisplayName_Singapore_Standard_Time=>T("TimezoneDisplayName.Singapore Standard Time"); +///"(UTC+08:00) Perth" +public static string TimezoneDisplayName_W__Australia_Standard_Time=>T("TimezoneDisplayName.W. Australia Standard Time"); +///"(UTC+08:00) Taipei" +public static string TimezoneDisplayName_Taipei_Standard_Time=>T("TimezoneDisplayName.Taipei Standard Time"); +///"(UTC+08:00) Ulaanbaatar" +public static string TimezoneDisplayName_Ulaanbaatar_Standard_Time=>T("TimezoneDisplayName.Ulaanbaatar Standard Time"); +///"(UTC+08:30) Pyongyang" +public static string TimezoneDisplayName_North_Korea_Standard_Time=>T("TimezoneDisplayName.North Korea Standard Time"); +///"(UTC+08:45) Eucla" +public static string TimezoneDisplayName_Aus_Central_W__Standard_Time=>T("TimezoneDisplayName.Aus Central W. Standard Time"); +///"(UTC+09:00) Chita" +public static string TimezoneDisplayName_Transbaikal_Standard_Time=>T("TimezoneDisplayName.Transbaikal Standard Time"); +///"(UTC+09:00) Osaka, Sapporo, Tokyo" +public static string TimezoneDisplayName_Tokyo_Standard_Time=>T("TimezoneDisplayName.Tokyo Standard Time"); +///"(UTC+09:00) Seoul" +public static string TimezoneDisplayName_Korea_Standard_Time=>T("TimezoneDisplayName.Korea Standard Time"); +///"(UTC+09:00) Yakutsk" +public static string TimezoneDisplayName_Yakutsk_Standard_Time=>T("TimezoneDisplayName.Yakutsk Standard Time"); +///"(UTC+09:30) Adelaide" +public static string TimezoneDisplayName_Cen__Australia_Standard_Time=>T("TimezoneDisplayName.Cen. Australia Standard Time"); +///"(UTC+09:30) Darwin" +public static string TimezoneDisplayName_AUS_Central_Standard_Time=>T("TimezoneDisplayName.AUS Central Standard Time"); +///"(UTC+10:00) Brisbane" +public static string TimezoneDisplayName_E__Australia_Standard_Time=>T("TimezoneDisplayName.E. Australia Standard Time"); +///"(UTC+10:00) Canberra, Melbourne, Sydney" +public static string TimezoneDisplayName_AUS_Eastern_Standard_Time=>T("TimezoneDisplayName.AUS Eastern Standard Time"); +///"(UTC+10:00) Guam, Port Moresby" +public static string TimezoneDisplayName_West_Pacific_Standard_Time=>T("TimezoneDisplayName.West Pacific Standard Time"); +///"(UTC+10:00) Hobart" +public static string TimezoneDisplayName_Tasmania_Standard_Time=>T("TimezoneDisplayName.Tasmania Standard Time"); +///"(UTC+10:00) Vladivostok" +public static string TimezoneDisplayName_Vladivostok_Standard_Time=>T("TimezoneDisplayName.Vladivostok Standard Time"); +///"(UTC+10:30) Lord Howe Island" +public static string TimezoneDisplayName_Lord_Howe_Standard_Time=>T("TimezoneDisplayName.Lord Howe Standard Time"); +///"(UTC+11:00) Bougainville Island" +public static string TimezoneDisplayName_Bougainville_Standard_Time=>T("TimezoneDisplayName.Bougainville Standard Time"); +///"(UTC+11:00) Chokurdakh" +public static string TimezoneDisplayName_Russia_Time_Zone_10=>T("TimezoneDisplayName.Russia Time Zone 10"); +///"(UTC+11:00) Magadan" +public static string TimezoneDisplayName_Magadan_Standard_Time=>T("TimezoneDisplayName.Magadan Standard Time"); +///"(UTC+11:00) Norfolk Island" +public static string TimezoneDisplayName_Norfolk_Standard_Time=>T("TimezoneDisplayName.Norfolk Standard Time"); +///"(UTC+11:00) Sakhalin" +public static string TimezoneDisplayName_Sakhalin_Standard_Time=>T("TimezoneDisplayName.Sakhalin Standard Time"); +///"(UTC+11:00) Solomon Is., New Caledonia" +public static string TimezoneDisplayName_Central_Pacific_Standard_Time=>T("TimezoneDisplayName.Central Pacific Standard Time"); +///"(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky" +public static string TimezoneDisplayName_Russia_Time_Zone_11=>T("TimezoneDisplayName.Russia Time Zone 11"); +///"(UTC+12:00) Auckland, Wellington" +public static string TimezoneDisplayName_New_Zealand_Standard_Time=>T("TimezoneDisplayName.New Zealand Standard Time"); +///"(UTC+12:00) Coordinated Universal Time+12" +public static string TimezoneDisplayName_UTC12=>T("TimezoneDisplayName.UTC+12"); +///"(UTC+12:00) Fiji" +public static string TimezoneDisplayName_Fiji_Standard_Time=>T("TimezoneDisplayName.Fiji Standard Time"); +///"(UTC+12:00) Petropavlovsk-Kamchatsky - Old" +public static string TimezoneDisplayName_Kamchatka_Standard_Time=>T("TimezoneDisplayName.Kamchatka Standard Time"); +///"(UTC+12:45) Chatham Islands" +public static string TimezoneDisplayName_Chatham_Islands_Standard_Time=>T("TimezoneDisplayName.Chatham Islands Standard Time"); +///"(UTC+13:00) Nuku'alofa" +public static string TimezoneDisplayName_Tonga_Standard_Time=>T("TimezoneDisplayName.Tonga Standard Time"); +///"(UTC+13:00) Samoa" +public static string TimezoneDisplayName_Samoa_Standard_Time=>T("TimezoneDisplayName.Samoa Standard Time"); +///"(UTC+14:00) Kiritimati Island" +public static string TimezoneDisplayName_Line_Islands_Standard_Time=>T("TimezoneDisplayName.Line Islands Standard Time"); + private static string T(string key) + { + return StringResourceSystemFacade.GetString("Composite.Plugins.TimezoneDisplayNames", key); + } +} + /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_UserControlFunction { - /// "User Control Functions" - public static string RootElement_Label { get { return T("RootElement.Label"); } } - /// "Functions based on .ascx controls" - public static string RootElement_ToolTip { get { return T("RootElement.ToolTip"); } } - /// "Add User Control Function" - public static string AddNewUserControlFunction_Label { get { return T("AddNewUserControlFunction.Label"); } } - /// "Add a new User Control function" - public static string AddNewUserControlFunction_ToolTip { get { return T("AddNewUserControlFunction.ToolTip"); } } - /// "Edit" - public static string EditUserControlFunction_Label { get { return T("EditUserControlFunction.Label"); } } - /// "Edit the User Control Function" - public static string EditUserControlFunction_ToolTip { get { return T("EditUserControlFunction.ToolTip"); } } - /// "Delete" - public static string DeleteUserControlFunction_Label { get { return T("DeleteUserControlFunction.Label"); } } - /// "Delete the User Control function" - public static string DeleteUserControlFunction_ToolTip { get { return T("DeleteUserControlFunction.ToolTip"); } } - /// "Add User Control Function" - public static string AddNewUserControlFunction_LabelDialog { get { return T("AddNewUserControlFunction.LabelDialog"); } } - /// "Name" - public static string AddNewUserControlFunction_LabelName { get { return T("AddNewUserControlFunction.LabelName"); } } - /// "" - public static string AddNewUserControlFunction_HelpName { get { return T("AddNewUserControlFunction.HelpName"); } } - /// "Namespace" - public static string AddNewUserControlFunction_LabelNamespace { get { return T("AddNewUserControlFunction.LabelNamespace"); } } - /// "" - public static string AddNewUserControlFunction_HelpNamespace { get { return T("AddNewUserControlFunction.HelpNamespace"); } } - /// "Copy from" - public static string AddNewUserControlFunction_LabelCopyFrom { get { return T("AddNewUserControlFunction.LabelCopyFrom"); } } - /// "You can copy the code from another User Control function by selecting it in this list." - public static string AddNewUserControlFunction_LabelCopyFromHelp { get { return T("AddNewUserControlFunction.LabelCopyFromHelp"); } } - /// "(New User Control function)" - public static string AddNewUserControlFunction_LabelCopyFromEmptyOption { get { return T("AddNewUserControlFunction.LabelCopyFromEmptyOption"); } } - /// "A C1 function with the same name already exists." - public static string AddNewUserControlFunctionWorkflow_DuplicateName { get { return T("AddNewUserControlFunctionWorkflow.DuplicateName"); } } - /// "Function name is empty" - public static string AddNewUserControlFunctionWorkflow_EmptyName { get { return T("AddNewUserControlFunctionWorkflow.EmptyName"); } } - /// "Function namespace is empty" - public static string AddNewUserControlFunctionWorkflow_NamespaceEmpty { get { return T("AddNewUserControlFunctionWorkflow.NamespaceEmpty"); } } - /// "Namespace must be like A.B.C - not start and end with ." - public static string AddNewUserControlFunctionWorkflow_InvalidNamespace { get { return T("AddNewUserControlFunctionWorkflow.InvalidNamespace"); } } - /// "The total length of the name and the namespace is too long (used to name the ASCX file)." - public static string AddNewUserControlFunctionWorkflow_TotalNameTooLang { get { return T("AddNewUserControlFunctionWorkflow.TotalNameTooLang"); } } - /// "Validation Error" - public static string EditUserControlFunctionWorkflow_Validation_DialogTitle { get { return T("EditUserControlFunctionWorkflow.Validation.DialogTitle"); } } - /// "Compilation failed: {0}" - public static string EditUserControlFunctionWorkflow_Validation_CompilationFailed(object parameter0) { return string.Format(T("EditUserControlFunctionWorkflow.Validation.CompilationFailed"), parameter0); } - /// "The User Control function should inherit '{0}'" - public static string EditUserControlFunctionWorkflow_Validation_IncorrectBaseClass(object parameter0) { return string.Format(T("EditUserControlFunctionWorkflow.Validation.IncorrectBaseClass"), parameter0); } - /// "Delete User Control Function?" - public static string DeleteUserControlFunctionWorkflow_ConfirmDeleteTitle { get { return T("DeleteUserControlFunctionWorkflow.ConfirmDeleteTitle"); } } - /// "Delete the selected User Control?" - public static string DeleteUserControlFunctionWorkflow_ConfirmDeleteMessage { get { return T("DeleteUserControlFunctionWorkflow.ConfirmDeleteMessage"); } } +///"User Control Functions" +public static string RootElement_Label=>T("RootElement.Label"); +///"Functions based on .ascx controls" +public static string RootElement_ToolTip=>T("RootElement.ToolTip"); +///"Add User Control Function" +public static string AddNewUserControlFunction_Label=>T("AddNewUserControlFunction.Label"); +///"Add a new User Control function" +public static string AddNewUserControlFunction_ToolTip=>T("AddNewUserControlFunction.ToolTip"); +///"Edit" +public static string EditUserControlFunction_Label=>T("EditUserControlFunction.Label"); +///"Edit the User Control Function" +public static string EditUserControlFunction_ToolTip=>T("EditUserControlFunction.ToolTip"); +///"Delete" +public static string DeleteUserControlFunction_Label=>T("DeleteUserControlFunction.Label"); +///"Delete the User Control function" +public static string DeleteUserControlFunction_ToolTip=>T("DeleteUserControlFunction.ToolTip"); +///"Add User Control Function" +public static string AddNewUserControlFunction_LabelDialog=>T("AddNewUserControlFunction.LabelDialog"); +///"Name" +public static string AddNewUserControlFunction_LabelName=>T("AddNewUserControlFunction.LabelName"); +///"" +public static string AddNewUserControlFunction_HelpName=>T("AddNewUserControlFunction.HelpName"); +///"Namespace" +public static string AddNewUserControlFunction_LabelNamespace=>T("AddNewUserControlFunction.LabelNamespace"); +///"" +public static string AddNewUserControlFunction_HelpNamespace=>T("AddNewUserControlFunction.HelpNamespace"); +///"Copy from" +public static string AddNewUserControlFunction_LabelCopyFrom=>T("AddNewUserControlFunction.LabelCopyFrom"); +///"You can copy the code from another User Control function by selecting it in this list." +public static string AddNewUserControlFunction_LabelCopyFromHelp=>T("AddNewUserControlFunction.LabelCopyFromHelp"); +///"(New User Control function)" +public static string AddNewUserControlFunction_LabelCopyFromEmptyOption=>T("AddNewUserControlFunction.LabelCopyFromEmptyOption"); +///"A C1 function with the same name already exists." +public static string AddNewUserControlFunctionWorkflow_DuplicateName=>T("AddNewUserControlFunctionWorkflow.DuplicateName"); +///"Function name is empty" +public static string AddNewUserControlFunctionWorkflow_EmptyName=>T("AddNewUserControlFunctionWorkflow.EmptyName"); +///"Function namespace is empty" +public static string AddNewUserControlFunctionWorkflow_NamespaceEmpty=>T("AddNewUserControlFunctionWorkflow.NamespaceEmpty"); +///"Namespace must be like A.B.C - not start and end with ." +public static string AddNewUserControlFunctionWorkflow_InvalidNamespace=>T("AddNewUserControlFunctionWorkflow.InvalidNamespace"); +///"The total length of the name and the namespace is too long (used to name the ASCX file)." +public static string AddNewUserControlFunctionWorkflow_TotalNameTooLang=>T("AddNewUserControlFunctionWorkflow.TotalNameTooLang"); +///"Validation Error" +public static string EditUserControlFunctionWorkflow_Validation_DialogTitle=>T("EditUserControlFunctionWorkflow.Validation.DialogTitle"); +///"Compilation failed: {0}" +public static string EditUserControlFunctionWorkflow_Validation_CompilationFailed(object parameter0)=>string.Format(T("EditUserControlFunctionWorkflow.Validation.CompilationFailed"), parameter0); +///"The User Control function should inherit '{0}'" +public static string EditUserControlFunctionWorkflow_Validation_IncorrectBaseClass(object parameter0)=>string.Format(T("EditUserControlFunctionWorkflow.Validation.IncorrectBaseClass"), parameter0); +///"Delete User Control Function?" +public static string DeleteUserControlFunctionWorkflow_ConfirmDeleteTitle=>T("DeleteUserControlFunctionWorkflow.ConfirmDeleteTitle"); +///"Delete the selected User Control?" +public static string DeleteUserControlFunctionWorkflow_ConfirmDeleteMessage=>T("DeleteUserControlFunctionWorkflow.ConfirmDeleteMessage"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.UserControlFunction", key); @@ -5210,58 +5802,58 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_UserGroupElementProvider { - /// "User Groups" - public static string UserGroupElementProvider_RootLabel { get { return T("UserGroupElementProvider.RootLabel"); } } - /// "User Groups" - public static string UserGroupElementProvider_RootToolTip { get { return T("UserGroupElementProvider.RootToolTip"); } } - /// "Add User Group..." - public static string UserGroupElementProvider_AddNewUserGroupLabel { get { return T("UserGroupElementProvider.AddNewUserGroupLabel"); } } - /// "Add new User Group" - public static string UserGroupElementProvider_AddNewUserGroupToolTip { get { return T("UserGroupElementProvider.AddNewUserGroupToolTip"); } } - /// "Edit User Group" - public static string UserGroupElementProvider_EditUserGroupLabel { get { return T("UserGroupElementProvider.EditUserGroupLabel"); } } - /// "Edit User Group" - public static string UserGroupElementProvider_EditUserGroupToolTip { get { return T("UserGroupElementProvider.EditUserGroupToolTip"); } } - /// "Delete User Group" - public static string UserGroupElementProvider_DeleteUserGroupLabel { get { return T("UserGroupElementProvider.DeleteUserGroupLabel"); } } - /// "Delete User Group" - public static string UserGroupElementProvider_DeleteUserGroupToolTip { get { return T("UserGroupElementProvider.DeleteUserGroupToolTip"); } } - /// "Add User Group" - public static string AddNewUserGroup_AddNewUserGroupStep1_LabelFieldGroup { get { return T("AddNewUserGroup.AddNewUserGroupStep1.LabelFieldGroup"); } } - /// "User group name" - public static string AddNewUserGroup_AddNewUserGroupStep1_UserGroupNameLabel { get { return T("AddNewUserGroup.AddNewUserGroupStep1.UserGroupNameLabel"); } } - /// "The name of the new user group" - public static string AddNewUserGroup_AddNewUserGroupStep1_UserGroupNameHelp { get { return T("AddNewUserGroup.AddNewUserGroupStep1.UserGroupNameHelp"); } } - /// "A user group with the same name already exists" - public static string AddNewUserGroup_AddNewUserGroupStep1_UserGroupNameAlreadyExists { get { return T("AddNewUserGroup.AddNewUserGroupStep1.UserGroupNameAlreadyExists"); } } - /// "Edit User Group" - public static string EditUserGroup_EditUserGroupStep1_LabelFieldGroup { get { return T("EditUserGroup.EditUserGroupStep1.LabelFieldGroup"); } } - /// "User group name" - public static string EditUserGroup_EditUserGroupStep1_UserGroupNameLabel { get { return T("EditUserGroup.EditUserGroupStep1.UserGroupNameLabel"); } } - /// "The name of the user group" - public static string EditUserGroup_EditUserGroupStep1_UserGroupNameHelp { get { return T("EditUserGroup.EditUserGroupStep1.UserGroupNameHelp"); } } - /// "A user group with the same name already exists" - public static string EditUserGroup_EditUserGroupStep1_UserGroupNameAlreadyExists { get { return T("EditUserGroup.EditUserGroupStep1.UserGroupNameAlreadyExists"); } } - /// "Perspectives" - public static string EditUserGroup_EditUserGroupStep1_ActivePerspectiveFieldLabel { get { return T("EditUserGroup.EditUserGroupStep1.ActivePerspectiveFieldLabel"); } } - /// "Perspectives" - public static string EditUserGroup_EditUserGroupStep1_ActivePerspectiveMultiSelectLabel { get { return T("EditUserGroup.EditUserGroupStep1.ActivePerspectiveMultiSelectLabel"); } } - /// "Select which perspectives the user gets access to view" - public static string EditUserGroup_EditUserGroupStep1_ActivePerspectiveMultiSelectHelp { get { return T("EditUserGroup.EditUserGroupStep1.ActivePerspectiveMultiSelectHelp"); } } - /// "Global permissions" - public static string EditUserGroup_EditUserGroupStep1_GlobalPermissionsFieldLabel { get { return T("EditUserGroup.EditUserGroupStep1.GlobalPermissionsFieldLabel"); } } - /// "Global permissions" - public static string EditUserGroup_EditUserGroupStep1_GlobalPermissionsMultiSelectLabel { get { return T("EditUserGroup.EditUserGroupStep1.GlobalPermissionsMultiSelectLabel"); } } - /// "The Administrate permission grants the user group access to manage user group permissions and execute other administrative tasks. The Configure permission grants access to super user tasks." - public static string EditUserGroup_EditUserGroupStep1_GlobalPermissionsMultiSelectHelp { get { return T("EditUserGroup.EditUserGroupStep1.GlobalPermissionsMultiSelectHelp"); } } - /// "User Group Has Users" - public static string DeleteUserGroup_DeleteUserGroupInitialStep_UserGroupHasUsersTitle { get { return T("DeleteUserGroup.DeleteUserGroupInitialStep.UserGroupHasUsersTitle"); } } - /// "You cannot delete a user group that has users." - public static string DeleteUserGroup_DeleteUserGroupInitialStep_UserGroupHasUsersMessage { get { return T("DeleteUserGroup.DeleteUserGroupInitialStep.UserGroupHasUsersMessage"); } } - /// "Delete User Group" - public static string DeleteUserGroup_DeleteUserGroupStep1_LabelFieldGroup { get { return T("DeleteUserGroup.DeleteUserGroupStep1.LabelFieldGroup"); } } - /// "Delete the selected user group?" - public static string DeleteUserGroup_DeleteUserGroupStep1_Text { get { return T("DeleteUserGroup.DeleteUserGroupStep1.Text"); } } +///"User Groups" +public static string UserGroupElementProvider_RootLabel=>T("UserGroupElementProvider.RootLabel"); +///"User Groups" +public static string UserGroupElementProvider_RootToolTip=>T("UserGroupElementProvider.RootToolTip"); +///"Add User Group" +public static string UserGroupElementProvider_AddNewUserGroupLabel=>T("UserGroupElementProvider.AddNewUserGroupLabel"); +///"Add new User Group" +public static string UserGroupElementProvider_AddNewUserGroupToolTip=>T("UserGroupElementProvider.AddNewUserGroupToolTip"); +///"Edit User Group" +public static string UserGroupElementProvider_EditUserGroupLabel=>T("UserGroupElementProvider.EditUserGroupLabel"); +///"Edit User Group" +public static string UserGroupElementProvider_EditUserGroupToolTip=>T("UserGroupElementProvider.EditUserGroupToolTip"); +///"Delete User Group" +public static string UserGroupElementProvider_DeleteUserGroupLabel=>T("UserGroupElementProvider.DeleteUserGroupLabel"); +///"Delete User Group" +public static string UserGroupElementProvider_DeleteUserGroupToolTip=>T("UserGroupElementProvider.DeleteUserGroupToolTip"); +///"Add User Group" +public static string AddNewUserGroup_AddNewUserGroupStep1_LabelFieldGroup=>T("AddNewUserGroup.AddNewUserGroupStep1.LabelFieldGroup"); +///"User group name" +public static string AddNewUserGroup_AddNewUserGroupStep1_UserGroupNameLabel=>T("AddNewUserGroup.AddNewUserGroupStep1.UserGroupNameLabel"); +///"The name of the new user group" +public static string AddNewUserGroup_AddNewUserGroupStep1_UserGroupNameHelp=>T("AddNewUserGroup.AddNewUserGroupStep1.UserGroupNameHelp"); +///"A user group with the same name already exists" +public static string AddNewUserGroup_AddNewUserGroupStep1_UserGroupNameAlreadyExists=>T("AddNewUserGroup.AddNewUserGroupStep1.UserGroupNameAlreadyExists"); +///"Edit User Group" +public static string EditUserGroup_EditUserGroupStep1_LabelFieldGroup=>T("EditUserGroup.EditUserGroupStep1.LabelFieldGroup"); +///"User group name" +public static string EditUserGroup_EditUserGroupStep1_UserGroupNameLabel=>T("EditUserGroup.EditUserGroupStep1.UserGroupNameLabel"); +///"The name of the user group" +public static string EditUserGroup_EditUserGroupStep1_UserGroupNameHelp=>T("EditUserGroup.EditUserGroupStep1.UserGroupNameHelp"); +///"A user group with the same name already exists" +public static string EditUserGroup_EditUserGroupStep1_UserGroupNameAlreadyExists=>T("EditUserGroup.EditUserGroupStep1.UserGroupNameAlreadyExists"); +///"Perspectives" +public static string EditUserGroup_EditUserGroupStep1_ActivePerspectiveFieldLabel=>T("EditUserGroup.EditUserGroupStep1.ActivePerspectiveFieldLabel"); +///"Perspectives" +public static string EditUserGroup_EditUserGroupStep1_ActivePerspectiveMultiSelectLabel=>T("EditUserGroup.EditUserGroupStep1.ActivePerspectiveMultiSelectLabel"); +///"Select which perspectives the user gets access to view" +public static string EditUserGroup_EditUserGroupStep1_ActivePerspectiveMultiSelectHelp=>T("EditUserGroup.EditUserGroupStep1.ActivePerspectiveMultiSelectHelp"); +///"Global permissions" +public static string EditUserGroup_EditUserGroupStep1_GlobalPermissionsFieldLabel=>T("EditUserGroup.EditUserGroupStep1.GlobalPermissionsFieldLabel"); +///"Global permissions" +public static string EditUserGroup_EditUserGroupStep1_GlobalPermissionsMultiSelectLabel=>T("EditUserGroup.EditUserGroupStep1.GlobalPermissionsMultiSelectLabel"); +///"The Administrate permission grants the user group access to manage user group permissions and execute other administrative tasks. The Configure permission grants access to super user tasks." +public static string EditUserGroup_EditUserGroupStep1_GlobalPermissionsMultiSelectHelp=>T("EditUserGroup.EditUserGroupStep1.GlobalPermissionsMultiSelectHelp"); +///"User Group Has Users" +public static string DeleteUserGroup_DeleteUserGroupInitialStep_UserGroupHasUsersTitle=>T("DeleteUserGroup.DeleteUserGroupInitialStep.UserGroupHasUsersTitle"); +///"You cannot delete a user group that has users." +public static string DeleteUserGroup_DeleteUserGroupInitialStep_UserGroupHasUsersMessage=>T("DeleteUserGroup.DeleteUserGroupInitialStep.UserGroupHasUsersMessage"); +///"Delete User Group" +public static string DeleteUserGroup_DeleteUserGroupStep1_LabelFieldGroup=>T("DeleteUserGroup.DeleteUserGroupStep1.LabelFieldGroup"); +///"Delete the selected user group?" +public static string DeleteUserGroup_DeleteUserGroupStep1_Text=>T("DeleteUserGroup.DeleteUserGroupStep1.Text"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.UserGroupElementProvider", key); @@ -5271,130 +5863,130 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_VisualFunction { - /// "Delete Visual Function?" - public static string DeleteStep1_FieldGroupLabel { get { return T("DeleteStep1.FieldGroupLabel"); } } - /// "Are you sure you wish to delete the selected function?" - public static string DeleteStep1_Text { get { return T("DeleteStep1.Text"); } } - /// "Add Visual Function" - public static string AddNew_DialogLabel { get { return T("AddNew.DialogLabel"); } } - /// "No Datatypes to Visualize" - public static string AddNew_NoTypesExistsErrorTitle { get { return T("AddNew.NoTypesExistsErrorTitle"); } } - /// "No datatypes have been created yet. You must first create a datatype to visualize before you can create a visualization." - public static string AddNew_NoTypesExistsErrorMessage { get { return T("AddNew.NoTypesExistsErrorMessage"); } } - /// "No Data to Visualize and Preview" - public static string AddNew_NoDataExistsErrorTitle { get { return T("AddNew.NoDataExistsErrorTitle"); } } - /// "Data must exist before you can create a rendering. Add some data to this type and try again." - public static string AddNew_NoDataExistsErrorMessage { get { return T("AddNew.NoDataExistsErrorMessage"); } } - /// "No Templates" - public static string AddNew_NoPageTemplatesExistsErrorTitle { get { return T("AddNew.NoPageTemplatesExistsErrorTitle"); } } - /// "At least one template must exist before you can create a rendering. Create one template and try again." - public static string AddNew_NoPageTemplatesExistsErrorMessage { get { return T("AddNew.NoPageTemplatesExistsErrorMessage"); } } - /// "A Language Is Required" - public static string AddNew_MissingActiveLanguageTitle { get { return T("AddNew.MissingActiveLanguageTitle"); } } - /// "To create a visual function a language is required, but no languages have been added yet. You can add one under the System perspective." - public static string AddNew_MissingActiveLanguageMessage { get { return T("AddNew.MissingActiveLanguageMessage"); } } - /// "Datatype" - public static string AddNewStep1_TypeSelectorLabel { get { return T("AddNewStep1.TypeSelectorLabel"); } } - /// "" - public static string AddNewStep1_TypeSelectorHelp { get { return T("AddNewStep1.TypeSelectorHelp"); } } - /// "Function name" - public static string AddNewStep2_FuncitonNameLabel { get { return T("AddNewStep2.FuncitonNameLabel"); } } - /// "" - public static string AddNewStep2_FuncitonNameHelp { get { return T("AddNewStep2.FuncitonNameHelp"); } } - /// "Function namespace" - public static string AddNewStep2_FuncitonNamespaceLabel { get { return T("AddNewStep2.FuncitonNamespaceLabel"); } } - /// "" - public static string AddNewStep2_FuncitonNamespaceHelp { get { return T("AddNewStep2.FuncitonNamespaceHelp"); } } - /// "Visual Function Settings" - public static string Edit_PlaceHolderLabel { get { return T("Edit.PlaceHolderLabel"); } } - /// "Visual function" - public static string Edit_HeadingTitel { get { return T("Edit.HeadingTitel"); } } - /// "Visual function settings" - public static string Edit_FieldGroupLabel { get { return T("Edit.FieldGroupLabel"); } } - /// "Function name" - public static string Edit_FunctionNameLabel { get { return T("Edit.FunctionNameLabel"); } } - /// "The name of the function. Names must be unique with a namespace." - public static string Edit_FunctionNameHelp { get { return T("Edit.FunctionNameHelp"); } } - /// "Function namespace" - public static string Edit_FunctionNamespaceLabel { get { return T("Edit.FunctionNamespaceLabel"); } } - /// "The 'package' this function belongs to." - public static string Edit_FunctionNamespaceHelp { get { return T("Edit.FunctionNamespaceHelp"); } } - /// "Description" - public static string Edit_FunctionDescriptionLabel { get { return T("Edit.FunctionDescriptionLabel"); } } - /// "A description of the function that can help people understand what it does." - public static string Edit_FunctionDescriptionHelp { get { return T("Edit.FunctionDescriptionHelp"); } } - /// "Item list length" - public static string Edit_ItemListLenghtLabel { get { return T("Edit.ItemListLenghtLabel"); } } - /// "The maximum number of items to show." - public static string Edit_ItemListLenghtHelp { get { return T("Edit.ItemListLenghtHelp"); } } - /// "Item sorting" - public static string Edit_ItemSortingLabel { get { return T("Edit.ItemSortingLabel"); } } - /// "Select which field to use when sorting the list. Use '(random)' to pick randomly from the list." - public static string Edit_ItemSortingHelp { get { return T("Edit.ItemSortingHelp"); } } - /// "List sort order" - public static string Edit_ListSortingLabel { get { return T("Edit.ListSortingLabel"); } } - /// "Ascending" - public static string Edit_ListSortingTrueLabel { get { return T("Edit.ListSortingTrueLabel"); } } - /// "Descending" - public static string Edit_ListSortingFalseLabel { get { return T("Edit.ListSortingFalseLabel"); } } - /// "Select the sorted order. Ascending order is alphabetically, chronological. This field is ignored when '(random)' sorting is active." - public static string Edit_ListSortingHelp { get { return T("Edit.ListSortingHelp"); } } - /// "Preview template" - public static string Edit_PreviewTemplateLabel { get { return T("Edit.PreviewTemplateLabel"); } } - /// "This information is only used when previewing the function." - public static string Edit_PreviewTemplateHelp { get { return T("Edit.PreviewTemplateHelp"); } } - /// "Visual Layout" - public static string Edit_WYSIWYGLayoutLabel { get { return T("Edit.WYSIWYGLayoutLabel"); } } - /// "Preview" - public static string Edit_LabelPreview { get { return T("Edit.LabelPreview"); } } - /// "No templates" - public static string Edit_NoPageTemplatesExistsErrorTitle { get { return T("Edit.NoPageTemplatesExistsErrorTitle"); } } - /// "At least one template must exist before you can edit a rendering. Create one template and try again." - public static string Edit_NoPageTemplatesExistsErrorMessage { get { return T("Edit.NoPageTemplatesExistsErrorMessage"); } } - /// "A language is required" - public static string Edit_MissingActiveLanguageTitle { get { return T("Edit.MissingActiveLanguageTitle"); } } - /// "To edit a visual function a language is required, but no languages have been added yet. You can add one under the System perspective." - public static string Edit_MissingActiveLanguageMessage { get { return T("Edit.MissingActiveLanguageMessage"); } } - /// "Select a visual function" - public static string Select_FieldGroupLabel { get { return T("Select.FieldGroupLabel"); } } - /// "Select a function" - public static string Select_FunctionFunctionsLabel { get { return T("Select.FunctionFunctionsLabel"); } } - /// "Select a visual function to edit or delete" - public static string Select_FunctionFunctionsHelp { get { return T("Select.FunctionFunctionsHelp"); } } - /// "Another function with this name exists. Names must be unique." - public static string AddVisualFunctionWorkflow_FunctionNameValidatoinErrorMessage { get { return T("AddVisualFunctionWorkflow.FunctionNameValidatoinErrorMessage"); } } - /// "Another function with this name exists. Names must be unique." - public static string EditVisualFunctionWorkflow_FunctionNameValidatoinErrorMessage { get { return T("EditVisualFunctionWorkflow.FunctionNameValidatoinErrorMessage"); } } - /// "Visual Functions" - public static string VisualFunctionElementProvider_RootFolderLabel { get { return T("VisualFunctionElementProvider.RootFolderLabel"); } } - /// "Visual functions" - public static string VisualFunctionElementProvider_RootFolderToolTip { get { return T("VisualFunctionElementProvider.RootFolderToolTip"); } } - /// "Add Visual Function" - public static string VisualFunctionElementProvider_AddNewLabel { get { return T("VisualFunctionElementProvider.AddNewLabel"); } } - /// "Add new visual function" - public static string VisualFunctionElementProvider_AddNewToolTip { get { return T("VisualFunctionElementProvider.AddNewToolTip"); } } - /// "Edit Visual Function" - public static string VisualFunctionElementProvider_EditLabel { get { return T("VisualFunctionElementProvider.EditLabel"); } } - /// "Edit visual function" - public static string VisualFunctionElementProvider_EditToolTip { get { return T("VisualFunctionElementProvider.EditToolTip"); } } - /// "Delete Visual Function" - public static string VisualFunctionElementProvider_DeleteLabel { get { return T("VisualFunctionElementProvider.DeleteLabel"); } } - /// "Delete visual function" - public static string VisualFunctionElementProvider_DeleteToolTip { get { return T("VisualFunctionElementProvider.DeleteToolTip"); } } - /// "Another function with this name exists. Names must be unique." - public static string VisualFunctionElementProvider_FunctionNameNotUniqueError { get { return T("VisualFunctionElementProvider.FunctionNameNotUniqueError"); } } - /// "New visual function" - public static string VisualFunctionElementProviderHelper_AddNewLabel { get { return T("VisualFunctionElementProviderHelper.AddNewLabel"); } } - /// "New visual function" - public static string VisualFunctionElementProviderHelper_AddNewToolTip { get { return T("VisualFunctionElementProviderHelper.AddNewToolTip"); } } - /// "Edit visual function" - public static string VisualFunctionElementProviderHelper_EditLabel { get { return T("VisualFunctionElementProviderHelper.EditLabel"); } } - /// "Edit visual function" - public static string VisualFunctionElementProviderHelper_EditToolTip { get { return T("VisualFunctionElementProviderHelper.EditToolTip"); } } - /// "Delete visual function" - public static string VisualFunctionElementProviderHelper_DeleteLabel { get { return T("VisualFunctionElementProviderHelper.DeleteLabel"); } } - /// "Delete visual function" - public static string VisualFunctionElementProviderHelper_DeleteToolTip { get { return T("VisualFunctionElementProviderHelper.DeleteToolTip"); } } +///"Delete Visual Function?" +public static string DeleteStep1_FieldGroupLabel=>T("DeleteStep1.FieldGroupLabel"); +///"Are you sure you wish to delete the selected function?" +public static string DeleteStep1_Text=>T("DeleteStep1.Text"); +///"Add Visual Function" +public static string AddNew_DialogLabel=>T("AddNew.DialogLabel"); +///"No Datatypes to Visualize" +public static string AddNew_NoTypesExistsErrorTitle=>T("AddNew.NoTypesExistsErrorTitle"); +///"No datatypes have been created yet. You must first create a datatype to visualize before you can create a visualization." +public static string AddNew_NoTypesExistsErrorMessage=>T("AddNew.NoTypesExistsErrorMessage"); +///"No Data to Visualize and Preview" +public static string AddNew_NoDataExistsErrorTitle=>T("AddNew.NoDataExistsErrorTitle"); +///"Data must exist before you can create a rendering. Add some data to this type and try again." +public static string AddNew_NoDataExistsErrorMessage=>T("AddNew.NoDataExistsErrorMessage"); +///"No Templates" +public static string AddNew_NoPageTemplatesExistsErrorTitle=>T("AddNew.NoPageTemplatesExistsErrorTitle"); +///"At least one template must exist before you can create a rendering. Create one template and try again." +public static string AddNew_NoPageTemplatesExistsErrorMessage=>T("AddNew.NoPageTemplatesExistsErrorMessage"); +///"A Language Is Required" +public static string AddNew_MissingActiveLanguageTitle=>T("AddNew.MissingActiveLanguageTitle"); +///"To create a visual function a language is required, but no languages have been added yet. You can add one under the System perspective." +public static string AddNew_MissingActiveLanguageMessage=>T("AddNew.MissingActiveLanguageMessage"); +///"Datatype" +public static string AddNewStep1_TypeSelectorLabel=>T("AddNewStep1.TypeSelectorLabel"); +///"" +public static string AddNewStep1_TypeSelectorHelp=>T("AddNewStep1.TypeSelectorHelp"); +///"Function name" +public static string AddNewStep2_FuncitonNameLabel=>T("AddNewStep2.FuncitonNameLabel"); +///"" +public static string AddNewStep2_FuncitonNameHelp=>T("AddNewStep2.FuncitonNameHelp"); +///"Function namespace" +public static string AddNewStep2_FuncitonNamespaceLabel=>T("AddNewStep2.FuncitonNamespaceLabel"); +///"" +public static string AddNewStep2_FuncitonNamespaceHelp=>T("AddNewStep2.FuncitonNamespaceHelp"); +///"Visual Function Settings" +public static string Edit_PlaceHolderLabel=>T("Edit.PlaceHolderLabel"); +///"Visual function" +public static string Edit_HeadingTitel=>T("Edit.HeadingTitel"); +///"Visual function settings" +public static string Edit_FieldGroupLabel=>T("Edit.FieldGroupLabel"); +///"Function name" +public static string Edit_FunctionNameLabel=>T("Edit.FunctionNameLabel"); +///"The name of the function. Names must be unique with a namespace." +public static string Edit_FunctionNameHelp=>T("Edit.FunctionNameHelp"); +///"Function namespace" +public static string Edit_FunctionNamespaceLabel=>T("Edit.FunctionNamespaceLabel"); +///"The 'package' this function belongs to." +public static string Edit_FunctionNamespaceHelp=>T("Edit.FunctionNamespaceHelp"); +///"Description" +public static string Edit_FunctionDescriptionLabel=>T("Edit.FunctionDescriptionLabel"); +///"A description of the function that can help people understand what it does." +public static string Edit_FunctionDescriptionHelp=>T("Edit.FunctionDescriptionHelp"); +///"Item list length" +public static string Edit_ItemListLenghtLabel=>T("Edit.ItemListLenghtLabel"); +///"The maximum number of items to show." +public static string Edit_ItemListLenghtHelp=>T("Edit.ItemListLenghtHelp"); +///"Item sorting" +public static string Edit_ItemSortingLabel=>T("Edit.ItemSortingLabel"); +///"Select which field to use when sorting the list. Use '(random)' to pick randomly from the list." +public static string Edit_ItemSortingHelp=>T("Edit.ItemSortingHelp"); +///"List sort order" +public static string Edit_ListSortingLabel=>T("Edit.ListSortingLabel"); +///"Ascending" +public static string Edit_ListSortingTrueLabel=>T("Edit.ListSortingTrueLabel"); +///"Descending" +public static string Edit_ListSortingFalseLabel=>T("Edit.ListSortingFalseLabel"); +///"Select the sorted order. Ascending order is alphabetically, chronological. This field is ignored when '(random)' sorting is active." +public static string Edit_ListSortingHelp=>T("Edit.ListSortingHelp"); +///"Preview template" +public static string Edit_PreviewTemplateLabel=>T("Edit.PreviewTemplateLabel"); +///"This information is only used when previewing the function." +public static string Edit_PreviewTemplateHelp=>T("Edit.PreviewTemplateHelp"); +///"Visual Layout" +public static string Edit_WYSIWYGLayoutLabel=>T("Edit.WYSIWYGLayoutLabel"); +///"Preview" +public static string Edit_LabelPreview=>T("Edit.LabelPreview"); +///"No templates" +public static string Edit_NoPageTemplatesExistsErrorTitle=>T("Edit.NoPageTemplatesExistsErrorTitle"); +///"At least one template must exist before you can edit a rendering. Create one template and try again." +public static string Edit_NoPageTemplatesExistsErrorMessage=>T("Edit.NoPageTemplatesExistsErrorMessage"); +///"A language is required" +public static string Edit_MissingActiveLanguageTitle=>T("Edit.MissingActiveLanguageTitle"); +///"To edit a visual function a language is required, but no languages have been added yet. You can add one under the System perspective." +public static string Edit_MissingActiveLanguageMessage=>T("Edit.MissingActiveLanguageMessage"); +///"Select a visual function" +public static string Select_FieldGroupLabel=>T("Select.FieldGroupLabel"); +///"Select a function" +public static string Select_FunctionFunctionsLabel=>T("Select.FunctionFunctionsLabel"); +///"Select a visual function to edit or delete" +public static string Select_FunctionFunctionsHelp=>T("Select.FunctionFunctionsHelp"); +///"Another function with this name exists. Names must be unique." +public static string AddVisualFunctionWorkflow_FunctionNameValidatoinErrorMessage=>T("AddVisualFunctionWorkflow.FunctionNameValidatoinErrorMessage"); +///"Another function with this name exists. Names must be unique." +public static string EditVisualFunctionWorkflow_FunctionNameValidatoinErrorMessage=>T("EditVisualFunctionWorkflow.FunctionNameValidatoinErrorMessage"); +///"Visual Functions" +public static string VisualFunctionElementProvider_RootFolderLabel=>T("VisualFunctionElementProvider.RootFolderLabel"); +///"Visual functions" +public static string VisualFunctionElementProvider_RootFolderToolTip=>T("VisualFunctionElementProvider.RootFolderToolTip"); +///"Add Visual Function" +public static string VisualFunctionElementProvider_AddNewLabel=>T("VisualFunctionElementProvider.AddNewLabel"); +///"Add new visual function" +public static string VisualFunctionElementProvider_AddNewToolTip=>T("VisualFunctionElementProvider.AddNewToolTip"); +///"Edit Visual Function" +public static string VisualFunctionElementProvider_EditLabel=>T("VisualFunctionElementProvider.EditLabel"); +///"Edit visual function" +public static string VisualFunctionElementProvider_EditToolTip=>T("VisualFunctionElementProvider.EditToolTip"); +///"Delete Visual Function" +public static string VisualFunctionElementProvider_DeleteLabel=>T("VisualFunctionElementProvider.DeleteLabel"); +///"Delete visual function" +public static string VisualFunctionElementProvider_DeleteToolTip=>T("VisualFunctionElementProvider.DeleteToolTip"); +///"Another function with this name exists. Names must be unique." +public static string VisualFunctionElementProvider_FunctionNameNotUniqueError=>T("VisualFunctionElementProvider.FunctionNameNotUniqueError"); +///"New visual function" +public static string VisualFunctionElementProviderHelper_AddNewLabel=>T("VisualFunctionElementProviderHelper.AddNewLabel"); +///"New visual function" +public static string VisualFunctionElementProviderHelper_AddNewToolTip=>T("VisualFunctionElementProviderHelper.AddNewToolTip"); +///"Edit visual function" +public static string VisualFunctionElementProviderHelper_EditLabel=>T("VisualFunctionElementProviderHelper.EditLabel"); +///"Edit visual function" +public static string VisualFunctionElementProviderHelper_EditToolTip=>T("VisualFunctionElementProviderHelper.EditToolTip"); +///"Delete visual function" +public static string VisualFunctionElementProviderHelper_DeleteLabel=>T("VisualFunctionElementProviderHelper.DeleteLabel"); +///"Delete visual function" +public static string VisualFunctionElementProviderHelper_DeleteToolTip=>T("VisualFunctionElementProviderHelper.DeleteToolTip"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.VisualFunction", key); @@ -5404,94 +5996,94 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_WebsiteFileElementProvider { - /// "/" - public static string WebsiteFilesRootElement_Label { get { return T("WebsiteFilesRootElement.Label"); } } - /// "/" - public static string LayoutResourcesRootElement_Label { get { return T("LayoutResourcesRootElement.Label"); } } - /// "Layout" - public static string LayoutResourcesKeyNameLabel { get { return T("LayoutResourcesKeyNameLabel"); } } - /// "Delete File?" - public static string DeleteFile_LabelFieldGroup { get { return T("DeleteFile.LabelFieldGroup"); } } - /// "Delete file?" - public static string DeleteFile_Text { get { return T("DeleteFile.Text"); } } - /// "Delete Folder?" - public static string DeleteFolder_LabelFieldGroup { get { return T("DeleteFolder.LabelFieldGroup"); } } - /// "Delete folder?" - public static string DeleteFolder_Text { get { return T("DeleteFolder.Text"); } } - /// "Add New Folder" - public static string AddNewFolder_LabelFieldGroup { get { return T("AddNewFolder.LabelFieldGroup"); } } - /// "Folder name" - public static string AddNewFolder_Text { get { return T("AddNewFolder.Text"); } } - /// "Enter the name of the new folder" - public static string AddNewFolder_Help { get { return T("AddNewFolder.Help"); } } - /// "A folder with the same name already exists" - public static string AddNewFolder_Error_FolderExist { get { return T("AddNewFolder.Error.FolderExist"); } } - /// "Add New File" - public static string AddNewFile_LabelFieldGroup { get { return T("AddNewFile.LabelFieldGroup"); } } - /// "File name" - public static string AddNewFile_Text { get { return T("AddNewFile.Text"); } } - /// "Enter the name of the new file" - public static string AddNewFile_Help { get { return T("AddNewFile.Help"); } } - /// "A file with the same name already exists" - public static string AddNewFile_Error_FileExist { get { return T("AddNewFile.Error.FileExist"); } } - /// "Upload File" - public static string UploadNewWebsiteFile_LabelFieldGroup { get { return T("UploadNewWebsiteFile.LabelFieldGroup"); } } - /// "Select file" - public static string UploadNewWebsiteFile_LabelFile { get { return T("UploadNewWebsiteFile.LabelFile"); } } - /// "Select file to upload" - public static string UploadNewWebsiteFile_HelpFile { get { return T("UploadNewWebsiteFile.HelpFile"); } } - /// "Overwrite existing file" - public static string UploadNewWebsiteFile_ConfirmOverwriteTitle { get { return T("UploadNewWebsiteFile.ConfirmOverwriteTitle"); } } - /// "A file with the same name already exists, overwrite?" - public static string UploadNewWebsiteFile_ConfirmOverwriteDescription { get { return T("UploadNewWebsiteFile.ConfirmOverwriteDescription"); } } - /// "Wrong File Type" - public static string UploadFile_Error_WrongTypeTitle { get { return T("UploadFile.Error.WrongTypeTitle"); } } - /// "Wrong file type" - public static string UploadFile_Error_WrongTypeMessage { get { return T("UploadFile.Error.WrongTypeMessage"); } } - /// "New Folder" - public static string AddWebsiteFolderTitle { get { return T("AddWebsiteFolderTitle"); } } - /// "Add new folder" - public static string AddWebsiteFolderToolTip { get { return T("AddWebsiteFolderToolTip"); } } - /// "New File" - public static string AddWebsiteFileTitle { get { return T("AddWebsiteFileTitle"); } } - /// "Create new file" - public static string AddWebsiteFileToolTip { get { return T("AddWebsiteFileToolTip"); } } - /// "Delete File" - public static string DeleteWebsiteFileTitle { get { return T("DeleteWebsiteFileTitle"); } } - /// "Delete file" - public static string DeleteWebsiteFileToolTip { get { return T("DeleteWebsiteFileToolTip"); } } - /// "Download" - public static string DownloadFileTitle { get { return T("DownloadFileTitle"); } } - /// "Download file" - public static string DownloadFileToolTip { get { return T("DownloadFileToolTip"); } } - /// "Delete Folder" - public static string DeleteWebsiteFolderTitle { get { return T("DeleteWebsiteFolderTitle"); } } - /// "Delete folder" - public static string DeleteWebsiteFolderToolTip { get { return T("DeleteWebsiteFolderToolTip"); } } - /// "Edit File" - public static string EditWebsiteFileTitle { get { return T("EditWebsiteFileTitle"); } } - /// "Edit file" - public static string EditWebsiteFileToolTip { get { return T("EditWebsiteFileToolTip"); } } - /// "Upload File" - public static string UploadWebsiteFileTitle { get { return T("UploadWebsiteFileTitle"); } } - /// "Upload file" - public static string UploadWebsiteFileToolTip { get { return T("UploadWebsiteFileToolTip"); } } - /// "Show in "{0}"" - public static string AddFolderToWhiteListTitle(object parameter0) { return string.Format(T("AddFolderToWhiteListTitle"), parameter0); } - /// "Control if this folder should be visible in "{0}"" - public static string AddFolderToWhiteListToolTip(object parameter0) { return string.Format(T("AddFolderToWhiteListToolTip"), parameter0); } - /// "Show in "{0}"" - public static string RemoveFolderFromWhiteListTitle(object parameter0) { return string.Format(T("RemoveFolderFromWhiteListTitle"), parameter0); } - /// "Control if this folder should be visible in "{0}"" - public static string RemoveFolderFromWhiteListToolTip(object parameter0) { return string.Format(T("RemoveFolderFromWhiteListToolTip"), parameter0); } - /// "Error" - public static string DeleteWebsiteFileWorkflow_DeleteErrorTitle { get { return T("DeleteWebsiteFileWorkflow.DeleteErrorTitle"); } } - /// "Could not delete the file" - public static string DeleteWebsiteFileWorkflow_DeleteErrorMessage { get { return T("DeleteWebsiteFileWorkflow.DeleteErrorMessage"); } } - /// "Error" - public static string DeleteWebsiteFolderWorkflow_DeleteErrorTitle { get { return T("DeleteWebsiteFolderWorkflow.DeleteErrorTitle"); } } - /// "Could not delete the folder" - public static string DeleteWebsiteFolderWorkflow_DeleteErrorMessage { get { return T("DeleteWebsiteFolderWorkflow.DeleteErrorMessage"); } } +///"/" +public static string WebsiteFilesRootElement_Label=>T("WebsiteFilesRootElement.Label"); +///"/" +public static string LayoutResourcesRootElement_Label=>T("LayoutResourcesRootElement.Label"); +///"Layout" +public static string LayoutResourcesKeyNameLabel=>T("LayoutResourcesKeyNameLabel"); +///"Delete File?" +public static string DeleteFile_LabelFieldGroup=>T("DeleteFile.LabelFieldGroup"); +///"Delete file?" +public static string DeleteFile_Text=>T("DeleteFile.Text"); +///"Delete Folder?" +public static string DeleteFolder_LabelFieldGroup=>T("DeleteFolder.LabelFieldGroup"); +///"Delete folder?" +public static string DeleteFolder_Text=>T("DeleteFolder.Text"); +///"Add New Folder" +public static string AddNewFolder_LabelFieldGroup=>T("AddNewFolder.LabelFieldGroup"); +///"Folder name" +public static string AddNewFolder_Text=>T("AddNewFolder.Text"); +///"Enter the name of the new folder" +public static string AddNewFolder_Help=>T("AddNewFolder.Help"); +///"A folder with the same name already exists" +public static string AddNewFolder_Error_FolderExist=>T("AddNewFolder.Error.FolderExist"); +///"Add New File" +public static string AddNewFile_LabelFieldGroup=>T("AddNewFile.LabelFieldGroup"); +///"File name" +public static string AddNewFile_Text=>T("AddNewFile.Text"); +///"Enter the name of the new file" +public static string AddNewFile_Help=>T("AddNewFile.Help"); +///"A file with the same name already exists" +public static string AddNewFile_Error_FileExist=>T("AddNewFile.Error.FileExist"); +///"Upload File" +public static string UploadNewWebsiteFile_LabelFieldGroup=>T("UploadNewWebsiteFile.LabelFieldGroup"); +///"Select file" +public static string UploadNewWebsiteFile_LabelFile=>T("UploadNewWebsiteFile.LabelFile"); +///"Select file to upload" +public static string UploadNewWebsiteFile_HelpFile=>T("UploadNewWebsiteFile.HelpFile"); +///"Overwrite existing file" +public static string UploadNewWebsiteFile_ConfirmOverwriteTitle=>T("UploadNewWebsiteFile.ConfirmOverwriteTitle"); +///"A file with the same name already exists, overwrite?" +public static string UploadNewWebsiteFile_ConfirmOverwriteDescription=>T("UploadNewWebsiteFile.ConfirmOverwriteDescription"); +///"Wrong File Type" +public static string UploadFile_Error_WrongTypeTitle=>T("UploadFile.Error.WrongTypeTitle"); +///"Wrong file type" +public static string UploadFile_Error_WrongTypeMessage=>T("UploadFile.Error.WrongTypeMessage"); +///"New Folder" +public static string AddWebsiteFolderTitle=>T("AddWebsiteFolderTitle"); +///"Add new folder" +public static string AddWebsiteFolderToolTip=>T("AddWebsiteFolderToolTip"); +///"New File" +public static string AddWebsiteFileTitle=>T("AddWebsiteFileTitle"); +///"Create new file" +public static string AddWebsiteFileToolTip=>T("AddWebsiteFileToolTip"); +///"Delete File" +public static string DeleteWebsiteFileTitle=>T("DeleteWebsiteFileTitle"); +///"Delete file" +public static string DeleteWebsiteFileToolTip=>T("DeleteWebsiteFileToolTip"); +///"Download" +public static string DownloadFileTitle=>T("DownloadFileTitle"); +///"Download file" +public static string DownloadFileToolTip=>T("DownloadFileToolTip"); +///"Delete Folder" +public static string DeleteWebsiteFolderTitle=>T("DeleteWebsiteFolderTitle"); +///"Delete folder" +public static string DeleteWebsiteFolderToolTip=>T("DeleteWebsiteFolderToolTip"); +///"Edit File" +public static string EditWebsiteFileTitle=>T("EditWebsiteFileTitle"); +///"Edit file" +public static string EditWebsiteFileToolTip=>T("EditWebsiteFileToolTip"); +///"Upload File" +public static string UploadWebsiteFileTitle=>T("UploadWebsiteFileTitle"); +///"Upload file" +public static string UploadWebsiteFileToolTip=>T("UploadWebsiteFileToolTip"); +///"Show in "{0}"" +public static string AddFolderToWhiteListTitle(object parameter0)=>string.Format(T("AddFolderToWhiteListTitle"), parameter0); +///"Control if this folder should be visible in "{0}"" +public static string AddFolderToWhiteListToolTip(object parameter0)=>string.Format(T("AddFolderToWhiteListToolTip"), parameter0); +///"Show in "{0}"" +public static string RemoveFolderFromWhiteListTitle(object parameter0)=>string.Format(T("RemoveFolderFromWhiteListTitle"), parameter0); +///"Control if this folder should be visible in "{0}"" +public static string RemoveFolderFromWhiteListToolTip(object parameter0)=>string.Format(T("RemoveFolderFromWhiteListToolTip"), parameter0); +///"Error" +public static string DeleteWebsiteFileWorkflow_DeleteErrorTitle=>T("DeleteWebsiteFileWorkflow.DeleteErrorTitle"); +///"Could not delete the file" +public static string DeleteWebsiteFileWorkflow_DeleteErrorMessage=>T("DeleteWebsiteFileWorkflow.DeleteErrorMessage"); +///"Error" +public static string DeleteWebsiteFolderWorkflow_DeleteErrorTitle=>T("DeleteWebsiteFolderWorkflow.DeleteErrorTitle"); +///"Could not delete the folder" +public static string DeleteWebsiteFolderWorkflow_DeleteErrorMessage=>T("DeleteWebsiteFolderWorkflow.DeleteErrorMessage"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.WebsiteFileElementProvider", key); @@ -5501,134 +6093,134 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Plugins_XsltBasedFunction { - /// "XSLT Functions" - public static string Plugins_XsltBasedFunctionProviderElementProvider_RootFolderLabel { get { return T("Plugins.XsltBasedFunctionProviderElementProvider.RootFolderLabel"); } } - /// "XSLT functions" - public static string Plugins_XsltBasedFunctionProviderElementProvider_RootFolderToolTip { get { return T("Plugins.XsltBasedFunctionProviderElementProvider.RootFolderToolTip"); } } - /// "An XSLT function with the same name already exists." - public static string AddNewXsltFunctionWorkflow_DuplicateName { get { return T("AddNewXsltFunctionWorkflow.DuplicateName"); } } - /// "Method name must be non-empty" - public static string AddNewXsltFunctionWorkflow_MethodEmpty { get { return T("AddNewXsltFunctionWorkflow.MethodEmpty"); } } - /// "Namespace must be non-empty" - public static string AddNewXsltFunctionWorkflow_NamespaceEmpty { get { return T("AddNewXsltFunctionWorkflow.NamespaceEmpty"); } } - /// "Namespace must be like A.B.C - not start and end with ." - public static string AddNewXsltFunctionWorkflow_InvalidNamespace { get { return T("AddNewXsltFunctionWorkflow.InvalidNamespace"); } } - /// "A language is required" - public static string AddNewXsltFunctionWorkflow_MissingActiveLanguageTitle { get { return T("AddNewXsltFunctionWorkflow.MissingActiveLanguageTitle"); } } - /// "To create a XSLT function a language is required, but no languages have been added yet. You can add one under the System perspective." - public static string AddNewXsltFunctionWorkflow_MissingActiveLanguageMessage { get { return T("AddNewXsltFunctionWorkflow.MissingActiveLanguageMessage"); } } - /// "A page is required" - public static string AddNewXsltFunctionWorkflow_MissingPageTitle { get { return T("AddNewXsltFunctionWorkflow.MissingPageTitle"); } } - /// "To create a XSLT function at least one page has to be added." - public static string AddNewXsltFunctionWorkflow_MissingPageMessage { get { return T("AddNewXsltFunctionWorkflow.MissingPageMessage"); } } - /// "The total length of the name and the namespace is too long (used to name the XSL file)." - public static string AddNewXsltFunctionWorkflow_TotalNameTooLang { get { return T("AddNewXsltFunctionWorkflow.TotalNameTooLang"); } } - /// "Delete XSLT Function?" - public static string DeleteXsltFunctionWorkflow_ConfirmDeleteTitle { get { return T("DeleteXsltFunctionWorkflow.ConfirmDeleteTitle"); } } - /// "Delete the selected XSLT?" - public static string DeleteXsltFunctionWorkflow_ConfirmDeleteMessage { get { return T("DeleteXsltFunctionWorkflow.ConfirmDeleteMessage"); } } - /// "Cascade Delete Error" - public static string DeleteXsltFunctionWorkflow_CascadeDeleteErrorTitle { get { return T("DeleteXsltFunctionWorkflow.CascadeDeleteErrorTitle"); } } - /// "The type is referenced by another type that does not allow cascade deletes. This operation is halted" - public static string DeleteXsltFunctionWorkflow_CascadeDeleteErrorMessage { get { return T("DeleteXsltFunctionWorkflow.CascadeDeleteErrorMessage"); } } - /// "An XSLT function with the same name already exists." - public static string EditXsltFunctionWorkflow_DuplicateName { get { return T("EditXsltFunctionWorkflow.DuplicateName"); } } - /// "The method name must be non-empty" - public static string EditXsltFunctionWorkflow_EmptyMethodName { get { return T("EditXsltFunctionWorkflow.EmptyMethodName"); } } - /// "The namespace must be non-empty" - public static string EditXsltFunctionWorkflow_NamespaceEmpty { get { return T("EditXsltFunctionWorkflow.NamespaceEmpty"); } } - /// "The namespace must be like A.B.C - not start and end with '.' (period)" - public static string EditXsltFunctionWorkflow_InvalidNamespace { get { return T("EditXsltFunctionWorkflow.InvalidNamespace"); } } - /// "XslFilePath must start with \ or /" - public static string EditXsltFunctionWorkflow_InvalidFileName { get { return T("EditXsltFunctionWorkflow.InvalidFileName"); } } - /// "Invalid function name" - public static string EditXsltFunctionWorkflow_InvalidName { get { return T("EditXsltFunctionWorkflow.InvalidName"); } } - /// "Cannot rename the function, file '{0}' already exists." - public static string EditXsltFunctionWorkflow_CannotRenameFileExists(object parameter0) { return string.Format(T("EditXsltFunctionWorkflow.CannotRenameFileExists"), parameter0); } - /// "The total length of the name and the namespace is too long (used to name the XSL file)." - public static string EditXsltFunctionWorkflow_TotalNameTooLang { get { return T("EditXsltFunctionWorkflow.TotalNameTooLang"); } } - /// "Duplicate local function names" - public static string EditXsltFunctionWorkflow_SameLocalFunctionNameClashTitle { get { return T("EditXsltFunctionWorkflow.SameLocalFunctionNameClashTitle"); } } - /// "Two or more function calls has the same local name. Change the names so that all are different." - public static string EditXsltFunctionWorkflow_SameLocalFunctionNameClashMessage { get { return T("EditXsltFunctionWorkflow.SameLocalFunctionNameClashMessage"); } } - /// "Add XSLT Function" - public static string XsltBasedFunctionProviderElementProvider_Add { get { return T("XsltBasedFunctionProviderElementProvider.Add"); } } - /// "Add new XSLT function" - public static string XsltBasedFunctionProviderElementProvider_AddToolTip { get { return T("XsltBasedFunctionProviderElementProvider.AddToolTip"); } } - /// "Edit" - public static string XsltBasedFunctionProviderElementProvider_Edit { get { return T("XsltBasedFunctionProviderElementProvider.Edit"); } } - /// "Edit XSLT function" - public static string XsltBasedFunctionProviderElementProvider_EditToolTip { get { return T("XsltBasedFunctionProviderElementProvider.EditToolTip"); } } - /// "Delete" - public static string XsltBasedFunctionProviderElementProvider_Delete { get { return T("XsltBasedFunctionProviderElementProvider.Delete"); } } - /// "Delete XSLT function" - public static string XsltBasedFunctionProviderElementProvider_DeleteToolTip { get { return T("XsltBasedFunctionProviderElementProvider.DeleteToolTip"); } } - /// "Add New XSLT Function" - public static string AddNewXsltFunctionStep1_LabelDialog { get { return T("AddNewXsltFunctionStep1.LabelDialog"); } } - /// "Name" - public static string AddNewXsltFunctionStep1_LabelName { get { return T("AddNewXsltFunctionStep1.LabelName"); } } - /// "" - public static string AddNewXsltFunctionStep1_HelpName { get { return T("AddNewXsltFunctionStep1.HelpName"); } } - /// "Namespace" - public static string AddNewXsltFunctionStep1_LabelNamespace { get { return T("AddNewXsltFunctionStep1.LabelNamespace"); } } - /// "" - public static string AddNewXsltFunctionStep1_HelpNamespace { get { return T("AddNewXsltFunctionStep1.HelpNamespace"); } } - /// "Output type" - public static string AddNewXsltFunctionStep1_LabelOutputType { get { return T("AddNewXsltFunctionStep1.LabelOutputType"); } } - /// "Copy from" - public static string AddNewXsltFunctionStep1_LabelCopyFrom { get { return T("AddNewXsltFunctionStep1.LabelCopyFrom"); } } - /// "(New XSLT function)" - public static string AddNewXsltFunctionStep1_LabelCopyFromEmptyOption { get { return T("AddNewXsltFunctionStep1.LabelCopyFromEmptyOption"); } } - /// "Settings" - public static string EditXsltFunction_LabelSettings { get { return T("EditXsltFunction.LabelSettings"); } } - /// "Name" - public static string EditXsltFunction_LabelName { get { return T("EditXsltFunction.LabelName"); } } - /// "" - public static string EditXsltFunction_HelpName { get { return T("EditXsltFunction.HelpName"); } } - /// "Namespace" - public static string EditXsltFunction_LabelNamespace { get { return T("EditXsltFunction.LabelNamespace"); } } - /// "" - public static string EditXsltFunction_HelpNamespace { get { return T("EditXsltFunction.HelpNamespace"); } } - /// "Description" - public static string EditXsltFunction_LabelDescription { get { return T("EditXsltFunction.LabelDescription"); } } - /// "" - public static string EditXsltFunction_HelpDescription { get { return T("EditXsltFunction.HelpDescription"); } } - /// "Debug" - public static string EditXsltFunction_LabelDebug { get { return T("EditXsltFunction.LabelDebug"); } } - /// "Page" - public static string EditXsltFunction_LabelPage { get { return T("EditXsltFunction.LabelPage"); } } - /// "When debugging, this page is used as context for the rendering." - public static string EditXsltFunction_HelpPage { get { return T("EditXsltFunction.HelpPage"); } } - /// "Administrative" - public static string EditXsltFunction_LabelAdminitrativeScope { get { return T("EditXsltFunction.LabelAdminitrativeScope"); } } - /// "Public" - public static string EditXsltFunction_LabelPublicScope { get { return T("EditXsltFunction.LabelPublicScope"); } } - /// "Data scope" - public static string EditXsltFunction_LabelPageDataScope { get { return T("EditXsltFunction.LabelPageDataScope"); } } - /// "Choose public or development version as context for the rendering." - public static string EditXsltFunction_HelpPageDataScope { get { return T("EditXsltFunction.HelpPageDataScope"); } } - /// "Language" - public static string EditXsltFunction_LabelActiveLocales { get { return T("EditXsltFunction.LabelActiveLocales"); } } - /// "Select language to be used while debugging the function." - public static string EditXsltFunction_HelpActiveLocales { get { return T("EditXsltFunction.HelpActiveLocales"); } } - /// "Output type" - public static string EditXsltFunction_OutputType { get { return T("EditXsltFunction.OutputType"); } } - /// "Input Parameters" - public static string EditXsltFunction_LabelInputParameters { get { return T("EditXsltFunction.LabelInputParameters"); } } - /// "Function Calls" - public static string EditXsltFunction_LabelFunctionCalls { get { return T("EditXsltFunction.LabelFunctionCalls"); } } - /// "Template" - public static string EditXsltFunction_LabelTemplate { get { return T("EditXsltFunction.LabelTemplate"); } } - /// "Preview" - public static string EditXsltFunction_LabelPreview { get { return T("EditXsltFunction.LabelPreview"); } } - /// "A Language Is Required" - public static string EditXsltFunctionWorkflow_MissingActiveLanguageTitle { get { return T("EditXsltFunctionWorkflow.MissingActiveLanguageTitle"); } } - /// "To edit a XSLT function a language is required, but no languages have been added yet. You can add one under the System perspective." - public static string EditXsltFunctionWorkflow_MissingActiveLanguageMessage { get { return T("EditXsltFunctionWorkflow.MissingActiveLanguageMessage"); } } - /// "A Page Is Required" - public static string EditXsltFunctionWorkflow_MissingPageTitle { get { return T("EditXsltFunctionWorkflow.MissingPageTitle"); } } - /// "To edit a XSLT function at least one page has to be added." - public static string EditXsltFunctionWorkflow_MissingPageMessage { get { return T("EditXsltFunctionWorkflow.MissingPageMessage"); } } +///"XSLT Functions" +public static string Plugins_XsltBasedFunctionProviderElementProvider_RootFolderLabel=>T("Plugins.XsltBasedFunctionProviderElementProvider.RootFolderLabel"); +///"XSLT functions" +public static string Plugins_XsltBasedFunctionProviderElementProvider_RootFolderToolTip=>T("Plugins.XsltBasedFunctionProviderElementProvider.RootFolderToolTip"); +///"An XSLT function with the same name already exists." +public static string AddNewXsltFunctionWorkflow_DuplicateName=>T("AddNewXsltFunctionWorkflow.DuplicateName"); +///"Method name must be non-empty" +public static string AddNewXsltFunctionWorkflow_MethodEmpty=>T("AddNewXsltFunctionWorkflow.MethodEmpty"); +///"Namespace must be non-empty" +public static string AddNewXsltFunctionWorkflow_NamespaceEmpty=>T("AddNewXsltFunctionWorkflow.NamespaceEmpty"); +///"Namespace must be like A.B.C - not start and end with ." +public static string AddNewXsltFunctionWorkflow_InvalidNamespace=>T("AddNewXsltFunctionWorkflow.InvalidNamespace"); +///"A language is required" +public static string AddNewXsltFunctionWorkflow_MissingActiveLanguageTitle=>T("AddNewXsltFunctionWorkflow.MissingActiveLanguageTitle"); +///"To create a XSLT function a language is required, but no languages have been added yet. You can add one under the System perspective." +public static string AddNewXsltFunctionWorkflow_MissingActiveLanguageMessage=>T("AddNewXsltFunctionWorkflow.MissingActiveLanguageMessage"); +///"A page is required" +public static string AddNewXsltFunctionWorkflow_MissingPageTitle=>T("AddNewXsltFunctionWorkflow.MissingPageTitle"); +///"To create a XSLT function at least one page has to be added." +public static string AddNewXsltFunctionWorkflow_MissingPageMessage=>T("AddNewXsltFunctionWorkflow.MissingPageMessage"); +///"The total length of the name and the namespace is too long (used to name the XSL file)." +public static string AddNewXsltFunctionWorkflow_TotalNameTooLang=>T("AddNewXsltFunctionWorkflow.TotalNameTooLang"); +///"Delete XSLT Function?" +public static string DeleteXsltFunctionWorkflow_ConfirmDeleteTitle=>T("DeleteXsltFunctionWorkflow.ConfirmDeleteTitle"); +///"Delete the selected XSLT?" +public static string DeleteXsltFunctionWorkflow_ConfirmDeleteMessage=>T("DeleteXsltFunctionWorkflow.ConfirmDeleteMessage"); +///"Cascade Delete Error" +public static string DeleteXsltFunctionWorkflow_CascadeDeleteErrorTitle=>T("DeleteXsltFunctionWorkflow.CascadeDeleteErrorTitle"); +///"The type is referenced by another type that does not allow cascade deletes. This operation is halted" +public static string DeleteXsltFunctionWorkflow_CascadeDeleteErrorMessage=>T("DeleteXsltFunctionWorkflow.CascadeDeleteErrorMessage"); +///"An XSLT function with the same name already exists." +public static string EditXsltFunctionWorkflow_DuplicateName=>T("EditXsltFunctionWorkflow.DuplicateName"); +///"The method name must be non-empty" +public static string EditXsltFunctionWorkflow_EmptyMethodName=>T("EditXsltFunctionWorkflow.EmptyMethodName"); +///"The namespace must be non-empty" +public static string EditXsltFunctionWorkflow_NamespaceEmpty=>T("EditXsltFunctionWorkflow.NamespaceEmpty"); +///"The namespace must be like A.B.C - not start and end with '.' (period)" +public static string EditXsltFunctionWorkflow_InvalidNamespace=>T("EditXsltFunctionWorkflow.InvalidNamespace"); +///"XslFilePath must start with \ or /" +public static string EditXsltFunctionWorkflow_InvalidFileName=>T("EditXsltFunctionWorkflow.InvalidFileName"); +///"Invalid function name" +public static string EditXsltFunctionWorkflow_InvalidName=>T("EditXsltFunctionWorkflow.InvalidName"); +///"Cannot rename the function, file '{0}' already exists." +public static string EditXsltFunctionWorkflow_CannotRenameFileExists(object parameter0)=>string.Format(T("EditXsltFunctionWorkflow.CannotRenameFileExists"), parameter0); +///"The total length of the name and the namespace is too long (used to name the XSL file)." +public static string EditXsltFunctionWorkflow_TotalNameTooLang=>T("EditXsltFunctionWorkflow.TotalNameTooLang"); +///"Duplicate local function names" +public static string EditXsltFunctionWorkflow_SameLocalFunctionNameClashTitle=>T("EditXsltFunctionWorkflow.SameLocalFunctionNameClashTitle"); +///"Two or more function calls has the same local name. Change the names so that all are different." +public static string EditXsltFunctionWorkflow_SameLocalFunctionNameClashMessage=>T("EditXsltFunctionWorkflow.SameLocalFunctionNameClashMessage"); +///"Add XSLT Function" +public static string XsltBasedFunctionProviderElementProvider_Add=>T("XsltBasedFunctionProviderElementProvider.Add"); +///"Add new XSLT function" +public static string XsltBasedFunctionProviderElementProvider_AddToolTip=>T("XsltBasedFunctionProviderElementProvider.AddToolTip"); +///"Edit" +public static string XsltBasedFunctionProviderElementProvider_Edit=>T("XsltBasedFunctionProviderElementProvider.Edit"); +///"Edit XSLT function" +public static string XsltBasedFunctionProviderElementProvider_EditToolTip=>T("XsltBasedFunctionProviderElementProvider.EditToolTip"); +///"Delete" +public static string XsltBasedFunctionProviderElementProvider_Delete=>T("XsltBasedFunctionProviderElementProvider.Delete"); +///"Delete XSLT function" +public static string XsltBasedFunctionProviderElementProvider_DeleteToolTip=>T("XsltBasedFunctionProviderElementProvider.DeleteToolTip"); +///"Add New XSLT Function" +public static string AddNewXsltFunctionStep1_LabelDialog=>T("AddNewXsltFunctionStep1.LabelDialog"); +///"Name" +public static string AddNewXsltFunctionStep1_LabelName=>T("AddNewXsltFunctionStep1.LabelName"); +///"" +public static string AddNewXsltFunctionStep1_HelpName=>T("AddNewXsltFunctionStep1.HelpName"); +///"Namespace" +public static string AddNewXsltFunctionStep1_LabelNamespace=>T("AddNewXsltFunctionStep1.LabelNamespace"); +///"" +public static string AddNewXsltFunctionStep1_HelpNamespace=>T("AddNewXsltFunctionStep1.HelpNamespace"); +///"Output type" +public static string AddNewXsltFunctionStep1_LabelOutputType=>T("AddNewXsltFunctionStep1.LabelOutputType"); +///"Copy from" +public static string AddNewXsltFunctionStep1_LabelCopyFrom=>T("AddNewXsltFunctionStep1.LabelCopyFrom"); +///"(New XSLT function)" +public static string AddNewXsltFunctionStep1_LabelCopyFromEmptyOption=>T("AddNewXsltFunctionStep1.LabelCopyFromEmptyOption"); +///"Settings" +public static string EditXsltFunction_LabelSettings=>T("EditXsltFunction.LabelSettings"); +///"Name" +public static string EditXsltFunction_LabelName=>T("EditXsltFunction.LabelName"); +///"" +public static string EditXsltFunction_HelpName=>T("EditXsltFunction.HelpName"); +///"Namespace" +public static string EditXsltFunction_LabelNamespace=>T("EditXsltFunction.LabelNamespace"); +///"" +public static string EditXsltFunction_HelpNamespace=>T("EditXsltFunction.HelpNamespace"); +///"Description" +public static string EditXsltFunction_LabelDescription=>T("EditXsltFunction.LabelDescription"); +///"" +public static string EditXsltFunction_HelpDescription=>T("EditXsltFunction.HelpDescription"); +///"Debug" +public static string EditXsltFunction_LabelDebug=>T("EditXsltFunction.LabelDebug"); +///"Page" +public static string EditXsltFunction_LabelPage=>T("EditXsltFunction.LabelPage"); +///"When debugging, this page is used as context for the rendering." +public static string EditXsltFunction_HelpPage=>T("EditXsltFunction.HelpPage"); +///"Administrative" +public static string EditXsltFunction_LabelAdminitrativeScope=>T("EditXsltFunction.LabelAdminitrativeScope"); +///"Public" +public static string EditXsltFunction_LabelPublicScope=>T("EditXsltFunction.LabelPublicScope"); +///"Data scope" +public static string EditXsltFunction_LabelPageDataScope=>T("EditXsltFunction.LabelPageDataScope"); +///"Choose public or development version as context for the rendering." +public static string EditXsltFunction_HelpPageDataScope=>T("EditXsltFunction.HelpPageDataScope"); +///"Language" +public static string EditXsltFunction_LabelActiveLocales=>T("EditXsltFunction.LabelActiveLocales"); +///"Select language to be used while debugging the function." +public static string EditXsltFunction_HelpActiveLocales=>T("EditXsltFunction.HelpActiveLocales"); +///"Output type" +public static string EditXsltFunction_OutputType=>T("EditXsltFunction.OutputType"); +///"Input Parameters" +public static string EditXsltFunction_LabelInputParameters=>T("EditXsltFunction.LabelInputParameters"); +///"Function Calls" +public static string EditXsltFunction_LabelFunctionCalls=>T("EditXsltFunction.LabelFunctionCalls"); +///"Template" +public static string EditXsltFunction_LabelTemplate=>T("EditXsltFunction.LabelTemplate"); +///"Preview" +public static string EditXsltFunction_LabelPreview=>T("EditXsltFunction.LabelPreview"); +///"A Language Is Required" +public static string EditXsltFunctionWorkflow_MissingActiveLanguageTitle=>T("EditXsltFunctionWorkflow.MissingActiveLanguageTitle"); +///"To edit a XSLT function a language is required, but no languages have been added yet. You can add one under the System perspective." +public static string EditXsltFunctionWorkflow_MissingActiveLanguageMessage=>T("EditXsltFunctionWorkflow.MissingActiveLanguageMessage"); +///"A Page Is Required" +public static string EditXsltFunctionWorkflow_MissingPageTitle=>T("EditXsltFunctionWorkflow.MissingPageTitle"); +///"To edit a XSLT function at least one page has to be added." +public static string EditXsltFunctionWorkflow_MissingPageMessage=>T("EditXsltFunctionWorkflow.MissingPageMessage"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Plugins.XsltBasedFunction", key); @@ -5638,54 +6230,54 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Web_FormControl_FunctionCallsDesigner { - /// "Function Properties" - public static string DialogTitle { get { return T("DialogTitle"); } } - /// "Function result local name" - public static string FunctionLocalNameGroupLabel { get { return T("FunctionLocalNameGroupLabel"); } } - /// "Local name" - public static string FunctionLocalNameLabel { get { return T("FunctionLocalNameLabel"); } } - /// "If you include a function multiple times this field can help you distinguish the individual results by their local name. " - public static string FunctionLocalNameHelp { get { return T("FunctionLocalNameHelp"); } } - /// "Parameter Value" - public static string ParameterValueLabel { get { return T("ParameterValueLabel"); } } - /// "Select Function" - public static string AddNewFunctionDialogLabel { get { return T("AddNewFunctionDialogLabel"); } } - /// "Select Function" - public static string SetNewFunctionDialogLabel { get { return T("SetNewFunctionDialogLabel"); } } - /// "Value for parameter '{0}'" - public static string ComplexFunctionCallDialogLabel(object parameter0) { return string.Format(T("ComplexFunctionCallDialogLabel"), parameter0); } - /// "Parameter Type" - public static string ParameterTypeLabel { get { return T("ParameterTypeLabel"); } } - /// "Parameter Name" - public static string ParameterNameLabel { get { return T("ParameterNameLabel"); } } - /// "Return type" - public static string ReturnTypeLabel { get { return T("ReturnTypeLabel"); } } - /// "Validation failed" - public static string ValidationFailedAlertTitle { get { return T("ValidationFailedAlertTitle"); } } - /// "Function '{0}' does not exist." - public static string FunctionNotFound(object parameter0) { return string.Format(T("FunctionNotFound"), parameter0); } - /// "Required parameter '{0}' has not been defined." - public static string RequiredParameterNotDefined(object parameter0) { return string.Format(T("RequiredParameterNotDefined"), parameter0); } - /// "Incorrect type cast. Parameter name: '{0}', function name: '{1}'." - public static string IncorrectTypeCast(object parameter0,object parameter1) { return string.Format(T("IncorrectTypeCast"), parameter0,parameter1); } - /// "Default" - public static string ParameterTypeDefaultLabel { get { return T("ParameterTypeDefaultLabel"); } } - /// "Constant" - public static string ParameterTypeConstantLabel { get { return T("ParameterTypeConstantLabel"); } } - /// "Input Parameter" - public static string ParameterTypeInputParameterLabel { get { return T("ParameterTypeInputParameterLabel"); } } - /// "Function" - public static string ParameterTypeFunctionLabel { get { return T("ParameterTypeFunctionLabel"); } } - /// "Add New" - public static string AddNewButtonLabel { get { return T("AddNewButtonLabel"); } } - /// "Delete" - public static string DeleteButtonLabel { get { return T("DeleteButtonLabel"); } } - /// "Set New" - public static string SetNewButtonLabel { get { return T("SetNewButtonLabel"); } } - /// "Source" - public static string ToolBar_LabelSource { get { return T("ToolBar.LabelSource"); } } - /// "Design" - public static string ToolBar_LabelDesign { get { return T("ToolBar.LabelDesign"); } } +///"Function Properties" +public static string DialogTitle=>T("DialogTitle"); +///"Function result local name" +public static string FunctionLocalNameGroupLabel=>T("FunctionLocalNameGroupLabel"); +///"Local name" +public static string FunctionLocalNameLabel=>T("FunctionLocalNameLabel"); +///"If you include a function multiple times this field can help you distinguish the individual results by their local name. " +public static string FunctionLocalNameHelp=>T("FunctionLocalNameHelp"); +///"Parameter Value" +public static string ParameterValueLabel=>T("ParameterValueLabel"); +///"Select Function" +public static string AddNewFunctionDialogLabel=>T("AddNewFunctionDialogLabel"); +///"Select Function" +public static string SetNewFunctionDialogLabel=>T("SetNewFunctionDialogLabel"); +///"Value for parameter '{0}'" +public static string ComplexFunctionCallDialogLabel(object parameter0)=>string.Format(T("ComplexFunctionCallDialogLabel"), parameter0); +///"Parameter Type" +public static string ParameterTypeLabel=>T("ParameterTypeLabel"); +///"Parameter Name" +public static string ParameterNameLabel=>T("ParameterNameLabel"); +///"Return type" +public static string ReturnTypeLabel=>T("ReturnTypeLabel"); +///"Validation failed" +public static string ValidationFailedAlertTitle=>T("ValidationFailedAlertTitle"); +///"Function '{0}' does not exist." +public static string FunctionNotFound(object parameter0)=>string.Format(T("FunctionNotFound"), parameter0); +///"Required parameter '{0}' has not been defined." +public static string RequiredParameterNotDefined(object parameter0)=>string.Format(T("RequiredParameterNotDefined"), parameter0); +///"Incorrect type cast. Parameter name: '{0}', function name: '{1}'." +public static string IncorrectTypeCast(object parameter0,object parameter1)=>string.Format(T("IncorrectTypeCast"), parameter0,parameter1); +///"Default" +public static string ParameterTypeDefaultLabel=>T("ParameterTypeDefaultLabel"); +///"Constant" +public static string ParameterTypeConstantLabel=>T("ParameterTypeConstantLabel"); +///"Input Parameter" +public static string ParameterTypeInputParameterLabel=>T("ParameterTypeInputParameterLabel"); +///"Function" +public static string ParameterTypeFunctionLabel=>T("ParameterTypeFunctionLabel"); +///"Add New" +public static string AddNewButtonLabel=>T("AddNewButtonLabel"); +///"Delete" +public static string DeleteButtonLabel=>T("DeleteButtonLabel"); +///"Set New" +public static string SetNewButtonLabel=>T("SetNewButtonLabel"); +///"Source" +public static string ToolBar_LabelSource=>T("ToolBar.LabelSource"); +///"Design" +public static string ToolBar_LabelDesign=>T("ToolBar.LabelDesign"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Web.FormControl.FunctionCallsDesigner", key); @@ -5695,80 +6287,80 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Web_FormControl_FunctionParameterDesigner { - /// "Add New" - public static string AddNewButtonLabel { get { return T("AddNewButtonLabel"); } } - /// "Delete" - public static string DeleteButtonLabel { get { return T("DeleteButtonLabel"); } } - /// "List of input parameters" - public static string TreeRootNodeLabel { get { return T("TreeRootNodeLabel"); } } - /// "Parameter naming and help" - public static string ParameterNamingGroupLabel { get { return T("ParameterNamingGroupLabel"); } } - /// "Parameter name" - public static string Name { get { return T("Name"); } } - /// "The name of the parameter. The name is used by the system to identify this parameter. Names must be unique and may not contain spaces and other special characters. Use names like 'Title', 'StartDate', 'LargeImage' etc." - public static string NameHelp { get { return T("NameHelp"); } } - /// "Label" - public static string Label { get { return T("Label"); } } - /// "The text that users should see when specifying a value for this parameter. This is the 'human name' for the parameter." - public static string LabelHelp { get { return T("LabelHelp"); } } - /// "Help" - public static string Help { get { return T("Help"); } } - /// "Write a short text that tells the user what to do with the parameter." - public static string HelpHelp { get { return T("HelpHelp"); } } - /// "Parameter type and values" - public static string ParameterTypeValueGroupLabel { get { return T("ParameterTypeValueGroupLabel"); } } - /// "Parameter type" - public static string Type { get { return T("Type"); } } - /// "The type of this parameter." - public static string TypeHelp { get { return T("TypeHelp"); } } - /// "Default value" - public static string DefaultValue { get { return T("DefaultValue"); } } - /// "You can specify a default value for this parameter. If a parameter has a default value, users are not required to specify it when calling the function." - public static string DefaultValueHelp { get { return T("DefaultValueHelp"); } } - /// "Specify default value" - public static string DefaultValueSpecify { get { return T("DefaultValueSpecify"); } } - /// "Edit default value" - public static string DefaultValueEdit { get { return T("DefaultValueEdit"); } } - /// "Parameter Default Value" - public static string DefaultValueDialogLabel { get { return T("DefaultValueDialogLabel"); } } - /// "Test value" - public static string TestValue { get { return T("TestValue"); } } - /// "When previewing you can test with different input parameter values using this field. If this is left blank, the default value will be used for previews." - public static string TestValueHelp { get { return T("TestValueHelp"); } } - /// "Specify test value" - public static string TestValueSpecify { get { return T("TestValueSpecify"); } } - /// "Edit test value" - public static string TestValueEdit { get { return T("TestValueEdit"); } } - /// "Parameter Test Value" - public static string TestValueDialogLabel { get { return T("TestValueDialogLabel"); } } - /// "Parameter presentation" - public static string ParameterPresentationGroupLabel { get { return T("ParameterPresentationGroupLabel"); } } - /// "Widget" - public static string Widget { get { return T("Widget"); } } - /// "You can select which type of input widget (like a textbox) to use when specifying a value for this parameter. Widgets are only available for simple types." - public static string WidgetHelp { get { return T("WidgetHelp"); } } - /// "(no widget specified)" - public static string NoWidgetSpecifiedLabel { get { return T("NoWidgetSpecifiedLabel"); } } - /// "Parameter Widget" - public static string WidgetDialogLabel { get { return T("WidgetDialogLabel"); } } - /// "Position" - public static string Position { get { return T("Position"); } } - /// "Last" - public static string PositionLast { get { return T("PositionLast"); } } - /// "The position of the parameter. This controls the order of the parameters." - public static string PositionHelp { get { return T("PositionHelp"); } } - /// "Remember to specify a widget..." - public static string SpecifyWidgetTip { get { return T("SpecifyWidgetTip"); } } - /// "The specified name is not valid." - public static string FieldNameSyntaxInvalid { get { return T("FieldNameSyntaxInvalid"); } } - /// "Can not save... Another parameter has the same name. Please change the name." - public static string CannotSave { get { return T("CannotSave"); } } - /// "Invalid name. Parameter names can not contain spaces. You can write a readable name in the Label field below." - public static string SpaceInNameError { get { return T("SpaceInNameError"); } } - /// "Parameter names can not be empty. Please specify a name." - public static string NameEmptyError { get { return T("NameEmptyError"); } } - /// "Another parameter uses this name. Parameter names must be unique." - public static string NameAlreadyInUseError { get { return T("NameAlreadyInUseError"); } } +///"Add New" +public static string AddNewButtonLabel=>T("AddNewButtonLabel"); +///"Delete" +public static string DeleteButtonLabel=>T("DeleteButtonLabel"); +///"List of input parameters" +public static string TreeRootNodeLabel=>T("TreeRootNodeLabel"); +///"Parameter naming and help" +public static string ParameterNamingGroupLabel=>T("ParameterNamingGroupLabel"); +///"Parameter name" +public static string Name=>T("Name"); +///"The name of the parameter. The name is used by the system to identify this parameter. Names must be unique and may not contain spaces and other special characters. Use names like 'Title', 'StartDate', 'LargeImage' etc." +public static string NameHelp=>T("NameHelp"); +///"Label" +public static string Label=>T("Label"); +///"The text that users should see when specifying a value for this parameter. This is the 'human name' for the parameter." +public static string LabelHelp=>T("LabelHelp"); +///"Help" +public static string Help=>T("Help"); +///"Write a short text that tells the user what to do with the parameter." +public static string HelpHelp=>T("HelpHelp"); +///"Parameter type and values" +public static string ParameterTypeValueGroupLabel=>T("ParameterTypeValueGroupLabel"); +///"Parameter type" +public static string Type=>T("Type"); +///"The type of this parameter." +public static string TypeHelp=>T("TypeHelp"); +///"Default value" +public static string DefaultValue=>T("DefaultValue"); +///"You can specify a default value for this parameter. If a parameter has a default value, users are not required to specify it when calling the function." +public static string DefaultValueHelp=>T("DefaultValueHelp"); +///"Specify default value" +public static string DefaultValueSpecify=>T("DefaultValueSpecify"); +///"Edit default value" +public static string DefaultValueEdit=>T("DefaultValueEdit"); +///"Parameter Default Value" +public static string DefaultValueDialogLabel=>T("DefaultValueDialogLabel"); +///"Test value" +public static string TestValue=>T("TestValue"); +///"When previewing you can test with different input parameter values using this field. If this is left blank, the default value will be used for previews." +public static string TestValueHelp=>T("TestValueHelp"); +///"Specify test value" +public static string TestValueSpecify=>T("TestValueSpecify"); +///"Edit test value" +public static string TestValueEdit=>T("TestValueEdit"); +///"Parameter Test Value" +public static string TestValueDialogLabel=>T("TestValueDialogLabel"); +///"Parameter presentation" +public static string ParameterPresentationGroupLabel=>T("ParameterPresentationGroupLabel"); +///"Widget" +public static string Widget=>T("Widget"); +///"You can select which type of input widget (like a textbox) to use when specifying a value for this parameter. Widgets are only available for simple types." +public static string WidgetHelp=>T("WidgetHelp"); +///"(no widget specified)" +public static string NoWidgetSpecifiedLabel=>T("NoWidgetSpecifiedLabel"); +///"Parameter Widget" +public static string WidgetDialogLabel=>T("WidgetDialogLabel"); +///"Position" +public static string Position=>T("Position"); +///"Last" +public static string PositionLast=>T("PositionLast"); +///"The position of the parameter. This controls the order of the parameters." +public static string PositionHelp=>T("PositionHelp"); +///"Remember to specify a widget..." +public static string SpecifyWidgetTip=>T("SpecifyWidgetTip"); +///"The specified name is not valid." +public static string FieldNameSyntaxInvalid=>T("FieldNameSyntaxInvalid"); +///"Can not save... Another parameter has the same name. Please change the name." +public static string CannotSave=>T("CannotSave"); +///"Invalid name. Parameter names can not contain spaces. You can write a readable name in the Label field below." +public static string SpaceInNameError=>T("SpaceInNameError"); +///"Parameter names can not be empty. Please specify a name." +public static string NameEmptyError=>T("NameEmptyError"); +///"Another parameter uses this name. Parameter names must be unique." +public static string NameAlreadyInUseError=>T("NameAlreadyInUseError"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Web.FormControl.FunctionParameterDesigner", key); @@ -5778,196 +6370,196 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Web_FormControl_TypeFieldDesigner { - /// "Basic" - public static string BasicTabLabel { get { return T("BasicTabLabel"); } } - /// "Advanced" - public static string AdvancedTabLabel { get { return T("AdvancedTabLabel"); } } - /// "Add New" - public static string AddNewButtonLabel { get { return T("AddNewButtonLabel"); } } - /// "Delete" - public static string DeleteButtonLabel { get { return T("DeleteButtonLabel"); } } - /// "Datatype Fields" - public static string LabelDataTypeFields { get { return T("LabelDataTypeFields"); } } - /// "Key field properties" - public static string KeyFieldDetailsGroupLabel { get { return T("KeyFieldDetailsGroupLabel"); } } - /// "Key field type" - public static string KeyFieldType { get { return T("KeyFieldType"); } } - /// "The data type of the key field. Guid fields feature optimal performance, string key fields are usefull when the id values have to be exposed in urls." - public static string KeyFieldTypeHelp { get { return T("KeyFieldTypeHelp"); } } - /// "Field properties" - public static string FieldDetailsGroupLabel { get { return T("FieldDetailsGroupLabel"); } } - /// "Name" - public static string Name { get { return T("Name"); } } - /// "The name of the field is used by the system to identify this field. Names must be unique and can not contain spaces and other special characters. Use names like 'Title', 'StartDate', 'LargeImage' etc." - public static string NameHelp { get { return T("NameHelp"); } } - /// "Label" - public static string Label { get { return T("Label"); } } - /// "Label text are showed to users when adding a new item based on the datatype." - public static string LabelHelp { get { return T("LabelHelp"); } } - /// "Help" - public static string Help { get { return T("Help"); } } - /// "Use this entry for a short help text to the user." - public static string HelpHelp { get { return T("HelpHelp"); } } - /// "Field type and requirements" - public static string FieldTypeGroupLabel { get { return T("FieldTypeGroupLabel"); } } - /// "Field type" - public static string FieldType { get { return T("FieldType"); } } - /// "Select a data type for the field. The type determine which kind of data the field can hold." - public static string FieldTypeHelp { get { return T("FieldTypeHelp"); } } - /// "String" - public static string System_String { get { return T("System.String"); } } - /// "Integer" - public static string System_Int32 { get { return T("System.Int32"); } } - /// "Decimal number" - public static string System_Decimal { get { return T("System.Decimal"); } } - /// "Date" - public static string System_DateTime { get { return T("System.DateTime"); } } - /// "Boolean" - public static string System_Boolean { get { return T("System.Boolean"); } } - /// "Unique Identifier (GUID)" - public static string System_Guid { get { return T("System.Guid"); } } - /// "Data reference" - public static string Reference { get { return T("Reference"); } } - /// "Use this field to further configure your selected type." - public static string TypeDetailsHelp { get { return T("TypeDetailsHelp"); } } - /// "Optional" - public static string Optional { get { return T("Optional"); } } - /// "Optional fields may be left blank." - public static string OptionalHelp { get { return T("OptionalHelp"); } } - /// "No" - public static string OptionalFalseLabel { get { return T("OptionalFalseLabel"); } } - /// "Yes" - public static string OptionalTrueLabel { get { return T("OptionalTrueLabel"); } } - /// "Validation rules" - public static string ValidationRules { get { return T("ValidationRules"); } } - /// "You can specify strict rules on the data that is entered in this field, i.e. "must be at least 5 characters long", "must be a valid e-mail address", "must be a date in the past" etc." - public static string ValidationRulesHelp { get { return T("ValidationRulesHelp"); } } - /// "Add validation rules..." - public static string ValidationRulesAdd { get { return T("ValidationRulesAdd"); } } - /// "Edit validation rules" - public static string ValidationRulesEdit { get { return T("ValidationRulesEdit"); } } - /// "Field Validation Rules Configuration" - public static string ValidationRulesDialogLabel { get { return T("ValidationRulesDialogLabel"); } } - /// "Field validation" - public static string FieldValidationGroupLabel { get { return T("FieldValidationGroupLabel"); } } - /// "Form field presentation" - public static string FieldPresentationGroupLabel { get { return T("FieldPresentationGroupLabel"); } } - /// "Structural presentation" - public static string FieldStructureGroupLabel { get { return T("FieldStructureGroupLabel"); } } - /// "Widget type" - public static string Widget { get { return T("Widget"); } } - /// "You can select which type of input widget (like a textbox) to use when editing this field." - public static string WidgetHelp { get { return T("WidgetHelp"); } } - /// "Field Widget Configuration" - public static string WidgetDialogLabel { get { return T("WidgetDialogLabel"); } } - /// "Position" - public static string Position { get { return T("Position"); } } - /// "Last" - public static string PositionLast { get { return T("PositionLast"); } } - /// "The position of the field. This controls the order of the fields." - public static string PositionHelp { get { return T("PositionHelp"); } } - /// "Tree grouping" - public static string GroupByPriority { get { return T("GroupByPriority"); } } - /// "(no grouping)..." - public static string GroupByPriorityNone { get { return T("GroupByPriorityNone"); } } - /// "Group by this field" - public static string GroupByPriorityFirst { get { return T("GroupByPriorityFirst"); } } - /// "Group as {0}. priority" - public static string GroupByPriorityN(object parameter0) { return string.Format(T("GroupByPriorityN"), parameter0); } - /// "You can specify that a field should be used to group data - this can improve readability when viewing long lists. Use priority when multiple fields are used for grouping." - public static string GroupByPriorityHelp { get { return T("GroupByPriorityHelp"); } } - /// "Tree ordering" - public static string TreeOrdering { get { return T("TreeOrdering"); } } - /// "(no ordering)..." - public static string TreeOrderingNone { get { return T("TreeOrderingNone"); } } - /// "Order ascending (A-Z)" - public static string TreeOrderingFirstAscending { get { return T("TreeOrderingFirstAscending"); } } - /// "Order descending (Z-A)" - public static string TreeOrderingFirstDescending { get { return T("TreeOrderingFirstDescending"); } } - /// "Order {0}. ascending" - public static string TreeOrderingNAscending(object parameter0) { return string.Format(T("TreeOrderingNAscending"), parameter0); } - /// "Order {0}. descending" - public static string TreeOrderingNDescending(object parameter0) { return string.Format(T("TreeOrderingNDescending"), parameter0); } - /// "You can specify that a field should be used to order data in the tree view - this can improve readability when a field is used to position elements on the website." - public static string TreeOrderingHelp { get { return T("TreeOrderingHelp"); } } - /// "Is title field" - public static string IsTitleField { get { return T("IsTitleField"); } } - /// "Check this if you wish this field to be used as the title field. Title fields are used when listing data, like in the tree to the left." - public static string IsTitleFieldHelp { get { return T("IsTitleFieldHelp"); } } - /// "Use this as title field in lists" - public static string IsTitleFieldLabel { get { return T("IsTitleFieldLabel"); } } - /// "Field default value" - public static string DefaultValueGroupLabel { get { return T("DefaultValueGroupLabel"); } } - /// "Default value" - public static string DefaultValue { get { return T("DefaultValue"); } } - /// "You can define a default value for this field." - public static string DefaultValueHelp { get { return T("DefaultValueHelp"); } } - /// "Field default value configuration" - public static string DefaultValueDialogLabel { get { return T("DefaultValueDialogLabel"); } } - /// "Data url" - public static string DataUrlGroupLabel { get { return T("DataUrlGroupLabel"); } } - /// "Field appears in data url" - public static string AppearsInUrlLabel { get { return T("AppearsInUrlLabel"); } } - /// "Use in data urls" - public static string AppearsInUrlItemLabel { get { return T("AppearsInUrlItemLabel"); } } - /// "When checked the field will appear in data urls" - public static string AppearsInUrlHelp { get { return T("AppearsInUrlHelp"); } } - /// "Order" - public static string DataUrlOrderLabel { get { return T("DataUrlOrderLabel"); } } - /// "Order in which the field appear in data url route" - public static string DataUrlOrderHelp { get { return T("DataUrlOrderHelp"); } } - /// "Format" - public static string DataUrlDateFormatLabel { get { return T("DataUrlDateFormatLabel"); } } - /// "Chose in what format the date field will appear in url" - public static string DataUrlDateFormatHelp { get { return T("DataUrlDateFormatHelp"); } } - /// "Year" - public static string DataUrlDateFormat_Year { get { return T("DataUrlDateFormat_Year"); } } - /// "Month" - public static string DataUrlDateFormat_Month { get { return T("DataUrlDateFormat_Month"); } } - /// "Day" - public static string DataUrlDateFormat_Day { get { return T("DataUrlDateFormat_Day"); } } - /// "String maximum length" - public static string StringMaximumLength { get { return T("StringMaximumLength"); } } - /// "16 character maximum" - public static string _16CharMax { get { return T("16CharMax"); } } - /// "32 character maximum" - public static string _32CharMax { get { return T("32CharMax"); } } - /// "64 character maximum" - public static string _64CharMax { get { return T("64CharMax"); } } - /// "128 character maximum" - public static string _128CharMax { get { return T("128CharMax"); } } - /// "256 character maximum" - public static string _256CharMax { get { return T("256CharMax"); } } - /// "512 character maximum" - public static string _512CharMax { get { return T("512CharMax"); } } - /// "1024 character maximum" - public static string _1024CharMax { get { return T("1024CharMax"); } } - /// "Unlimited length" - public static string Unlimited { get { return T("Unlimited"); } } - /// "Decimal number format" - public static string DecimalNumberFormat { get { return T("DecimalNumberFormat"); } } - /// "1 decimal place" - public static string _1DecimalPlace { get { return T("1DecimalPlace"); } } - /// "{0} decimal places" - public static string nDecimalPlaces(object parameter0) { return string.Format(T("nDecimalPlaces"), parameter0); } - /// "Reference Type" - public static string ReferenceType { get { return T("ReferenceType"); } } - /// "The specified name is not valid." - public static string FieldNameSyntaxInvalid { get { return T("FieldNameSyntaxInvalid"); } } - /// "Can not save... Another Field has the same name. Please change the name." - public static string CannotSave { get { return T("CannotSave"); } } - /// "Invalid name. Data field names can not contain spaces. You can write a readable name in the Label field below." - public static string SpaceInNameError { get { return T("SpaceInNameError"); } } - /// "Data field names can not be empty. Please specify a name." - public static string NameEmptyError { get { return T("NameEmptyError"); } } - /// "Another field uses this name. Data field names must be unique." - public static string NameAlreadyInUseError { get { return T("NameAlreadyInUseError"); } } - /// "The selected type can not be optional." - public static string NotAnOptionalTypeError { get { return T("NotAnOptionalTypeError"); } } - /// "Remember to specify a widget..." - public static string NoWidgetSelected { get { return T("NoWidgetSelected"); } } - /// "(no widget specified)" - public static string NoWidgetSelectedLabel { get { return T("NoWidgetSelectedLabel"); } } +///"Basic" +public static string BasicTabLabel=>T("BasicTabLabel"); +///"Advanced" +public static string AdvancedTabLabel=>T("AdvancedTabLabel"); +///"Add New" +public static string AddNewButtonLabel=>T("AddNewButtonLabel"); +///"Delete" +public static string DeleteButtonLabel=>T("DeleteButtonLabel"); +///"Datatype Fields" +public static string LabelDataTypeFields=>T("LabelDataTypeFields"); +///"Key field properties" +public static string KeyFieldDetailsGroupLabel=>T("KeyFieldDetailsGroupLabel"); +///"Key field type" +public static string KeyFieldType=>T("KeyFieldType"); +///"The data type of the key field. Guid fields feature optimal performance, string key fields are usefull when the id values have to be exposed in urls." +public static string KeyFieldTypeHelp=>T("KeyFieldTypeHelp"); +///"Field properties" +public static string FieldDetailsGroupLabel=>T("FieldDetailsGroupLabel"); +///"Name" +public static string Name=>T("Name"); +///"The name of the field is used by the system to identify this field. Names must be unique and can not contain spaces and other special characters. Use names like 'Title', 'StartDate', 'LargeImage' etc." +public static string NameHelp=>T("NameHelp"); +///"Label" +public static string Label=>T("Label"); +///"Label text are showed to users when adding a new item based on the datatype." +public static string LabelHelp=>T("LabelHelp"); +///"Help" +public static string Help=>T("Help"); +///"Use this entry for a short help text to the user." +public static string HelpHelp=>T("HelpHelp"); +///"Field type and requirements" +public static string FieldTypeGroupLabel=>T("FieldTypeGroupLabel"); +///"Field type" +public static string FieldType=>T("FieldType"); +///"Select a data type for the field. The type determine which kind of data the field can hold." +public static string FieldTypeHelp=>T("FieldTypeHelp"); +///"String" +public static string System_String=>T("System.String"); +///"Integer" +public static string System_Int32=>T("System.Int32"); +///"Decimal number" +public static string System_Decimal=>T("System.Decimal"); +///"Date" +public static string System_DateTime=>T("System.DateTime"); +///"Boolean" +public static string System_Boolean=>T("System.Boolean"); +///"Unique Identifier (GUID)" +public static string System_Guid=>T("System.Guid"); +///"Data reference" +public static string Reference=>T("Reference"); +///"Use this field to further configure your selected type." +public static string TypeDetailsHelp=>T("TypeDetailsHelp"); +///"Optional" +public static string Optional=>T("Optional"); +///"Optional fields may be left blank." +public static string OptionalHelp=>T("OptionalHelp"); +///"No" +public static string OptionalFalseLabel=>T("OptionalFalseLabel"); +///"Yes" +public static string OptionalTrueLabel=>T("OptionalTrueLabel"); +///"Validation rules" +public static string ValidationRules=>T("ValidationRules"); +///"You can specify strict rules on the data that is entered in this field, i.e. "must be at least 5 characters long", "must be a valid e-mail address", "must be a date in the past" etc." +public static string ValidationRulesHelp=>T("ValidationRulesHelp"); +///"Add validation rules..." +public static string ValidationRulesAdd=>T("ValidationRulesAdd"); +///"Edit validation rules" +public static string ValidationRulesEdit=>T("ValidationRulesEdit"); +///"Field Validation Rules Configuration" +public static string ValidationRulesDialogLabel=>T("ValidationRulesDialogLabel"); +///"Field validation" +public static string FieldValidationGroupLabel=>T("FieldValidationGroupLabel"); +///"Form field presentation" +public static string FieldPresentationGroupLabel=>T("FieldPresentationGroupLabel"); +///"Structural presentation" +public static string FieldStructureGroupLabel=>T("FieldStructureGroupLabel"); +///"Widget type" +public static string Widget=>T("Widget"); +///"You can select which type of input widget (like a textbox) to use when editing this field." +public static string WidgetHelp=>T("WidgetHelp"); +///"Field Widget Configuration" +public static string WidgetDialogLabel=>T("WidgetDialogLabel"); +///"Position" +public static string Position=>T("Position"); +///"Last" +public static string PositionLast=>T("PositionLast"); +///"The position of the field. This controls the order of the fields." +public static string PositionHelp=>T("PositionHelp"); +///"Tree grouping" +public static string GroupByPriority=>T("GroupByPriority"); +///"(no grouping)..." +public static string GroupByPriorityNone=>T("GroupByPriorityNone"); +///"Group by this field" +public static string GroupByPriorityFirst=>T("GroupByPriorityFirst"); +///"Group as {0}. priority" +public static string GroupByPriorityN(object parameter0)=>string.Format(T("GroupByPriorityN"), parameter0); +///"You can specify that a field should be used to group data - this can improve readability when viewing long lists. Use priority when multiple fields are used for grouping." +public static string GroupByPriorityHelp=>T("GroupByPriorityHelp"); +///"Tree ordering" +public static string TreeOrdering=>T("TreeOrdering"); +///"(no ordering)..." +public static string TreeOrderingNone=>T("TreeOrderingNone"); +///"Order ascending (A-Z)" +public static string TreeOrderingFirstAscending=>T("TreeOrderingFirstAscending"); +///"Order descending (Z-A)" +public static string TreeOrderingFirstDescending=>T("TreeOrderingFirstDescending"); +///"Order {0}. ascending" +public static string TreeOrderingNAscending(object parameter0)=>string.Format(T("TreeOrderingNAscending"), parameter0); +///"Order {0}. descending" +public static string TreeOrderingNDescending(object parameter0)=>string.Format(T("TreeOrderingNDescending"), parameter0); +///"You can specify that a field should be used to order data in the tree view - this can improve readability when a field is used to position elements on the website." +public static string TreeOrderingHelp=>T("TreeOrderingHelp"); +///"Is title field" +public static string IsTitleField=>T("IsTitleField"); +///"Check this if you wish this field to be used as the title field. Title fields are used when listing data, like in the tree to the left." +public static string IsTitleFieldHelp=>T("IsTitleFieldHelp"); +///"Use this as title field in lists" +public static string IsTitleFieldLabel=>T("IsTitleFieldLabel"); +///"Field default value" +public static string DefaultValueGroupLabel=>T("DefaultValueGroupLabel"); +///"Default value" +public static string DefaultValue=>T("DefaultValue"); +///"You can define a default value for this field." +public static string DefaultValueHelp=>T("DefaultValueHelp"); +///"Field default value configuration" +public static string DefaultValueDialogLabel=>T("DefaultValueDialogLabel"); +///"Data url" +public static string DataUrlGroupLabel=>T("DataUrlGroupLabel"); +///"Field appears in data url" +public static string AppearsInUrlLabel=>T("AppearsInUrlLabel"); +///"Use in data urls" +public static string AppearsInUrlItemLabel=>T("AppearsInUrlItemLabel"); +///"When checked the field will appear in data urls" +public static string AppearsInUrlHelp=>T("AppearsInUrlHelp"); +///"Order" +public static string DataUrlOrderLabel=>T("DataUrlOrderLabel"); +///"Order in which the field appear in data url route" +public static string DataUrlOrderHelp=>T("DataUrlOrderHelp"); +///"Format" +public static string DataUrlDateFormatLabel=>T("DataUrlDateFormatLabel"); +///"Chose in what format the date field will appear in url" +public static string DataUrlDateFormatHelp=>T("DataUrlDateFormatHelp"); +///"Year" +public static string DataUrlDateFormat_Year=>T("DataUrlDateFormat_Year"); +///"Month" +public static string DataUrlDateFormat_Month=>T("DataUrlDateFormat_Month"); +///"Day" +public static string DataUrlDateFormat_Day=>T("DataUrlDateFormat_Day"); +///"String maximum length" +public static string StringMaximumLength=>T("StringMaximumLength"); +///"16 character maximum" +public static string _16CharMax=>T("16CharMax"); +///"32 character maximum" +public static string _32CharMax=>T("32CharMax"); +///"64 character maximum" +public static string _64CharMax=>T("64CharMax"); +///"128 character maximum" +public static string _128CharMax=>T("128CharMax"); +///"256 character maximum" +public static string _256CharMax=>T("256CharMax"); +///"512 character maximum" +public static string _512CharMax=>T("512CharMax"); +///"1024 character maximum" +public static string _1024CharMax=>T("1024CharMax"); +///"Unlimited length" +public static string Unlimited=>T("Unlimited"); +///"Decimal number format" +public static string DecimalNumberFormat=>T("DecimalNumberFormat"); +///"1 decimal place" +public static string _1DecimalPlace=>T("1DecimalPlace"); +///"{0} decimal places" +public static string nDecimalPlaces(object parameter0)=>string.Format(T("nDecimalPlaces"), parameter0); +///"Reference Type" +public static string ReferenceType=>T("ReferenceType"); +///"The specified name is not valid." +public static string FieldNameSyntaxInvalid=>T("FieldNameSyntaxInvalid"); +///"Can not save... Another Field has the same name. Please change the name." +public static string CannotSave=>T("CannotSave"); +///"Invalid name. Data field names can not contain spaces. You can write a readable name in the Label field below." +public static string SpaceInNameError=>T("SpaceInNameError"); +///"Data field names can not be empty. Please specify a name." +public static string NameEmptyError=>T("NameEmptyError"); +///"Another field uses this name. Data field names must be unique." +public static string NameAlreadyInUseError=>T("NameAlreadyInUseError"); +///"The selected type can not be optional." +public static string NotAnOptionalTypeError=>T("NotAnOptionalTypeError"); +///"Remember to specify a widget..." +public static string NoWidgetSelected=>T("NoWidgetSelected"); +///"(no widget specified)" +public static string NoWidgetSelectedLabel=>T("NoWidgetSelectedLabel"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Web.FormControl.TypeFieldDesigner", key); @@ -5977,54 +6569,54 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Web_PageBrowser { - /// "Page source" - public static string Menu_ViewSource { get { return T("Menu.ViewSource"); } } - /// "View mode" - public static string Menu_ViewMode { get { return T("Menu.ViewMode"); } } - /// "Back" - public static string ContextMenu_Back { get { return T("ContextMenu.Back"); } } - /// "Forward" - public static string ContextMenu_Forward { get { return T("ContextMenu.Forward"); } } - /// "Refresh" - public static string ContextMenu_Refresh { get { return T("ContextMenu.Refresh"); } } - /// "View Page Source" - public static string ContextMenu_ViewSource { get { return T("ContextMenu.ViewSource"); } } - /// "Go back one page" - public static string ToolBarButton_Back_ToolTip { get { return T("ToolBarButton.Back.ToolTip"); } } - /// "Go forward one page" - public static string ToolBarButton_Forward_ToolTip { get { return T("ToolBarButton.Forward.ToolTip"); } } - /// "Refresh page" - public static string ToolBarButton_Refresh_ToolTip { get { return T("ToolBarButton.Refresh.ToolTip"); } } - /// "Show Tree" - public static string ToolBarButton_TreeView_ToolTip { get { return T("ToolBarButton.TreeView.ToolTip"); } } - /// "Go to the address in the location bar" - public static string ToolBarButton_Go_ToolTip { get { return T("ToolBarButton.Go.ToolTip"); } } - /// "Go to the Start page" - public static string ToolBarButton_Home_ToolTip { get { return T("ToolBarButton.Home.ToolTip"); } } - /// "Access denied" - public static string AddressBar_Invalid_DialogTitle_External { get { return T("AddressBar.Invalid.DialogTitle.External"); } } - /// "External URL cannot loaded." - public static string AddressBar_Invalid_DialogText_External { get { return T("AddressBar.Invalid.DialogText.External"); } } - /// "Bad URL" - public static string AddressBar_Invalid_DialogTitle_BadRequest { get { return T("AddressBar.Invalid.DialogTitle.BadRequest"); } } - /// "The URL is invalid and cannot be loaded." - public static string AddressBar_Invalid_DialogText_BadRequest { get { return T("AddressBar.Invalid.DialogText.BadRequest"); } } - /// "Not authorized" - public static string AddressBar_Invalid_DialogTitle_Unauthorized { get { return T("AddressBar.Invalid.DialogTitle.Unauthorized"); } } - /// "You are not authorized to view the page on specified URL." - public static string AddressBar_Invalid_DialogText_Unauthorized { get { return T("AddressBar.Invalid.DialogText.Unauthorized"); } } - /// "Page not found" - public static string AddressBar_Invalid_DialogTitle_NotFound { get { return T("AddressBar.Invalid.DialogTitle.NotFound"); } } - /// "Page not found on the specified URL." - public static string AddressBar_Invalid_DialogText_NotFound { get { return T("AddressBar.Invalid.DialogText.NotFound"); } } - /// "Server error" - public static string AddressBar_Invalid_DialogTitle_InternalError { get { return T("AddressBar.Invalid.DialogTitle.InternalError"); } } - /// "The server has reported an error on the specified URL. The page cannot be loaded." - public static string AddressBar_Invalid_DialogText_InternalError { get { return T("AddressBar.Invalid.DialogText.InternalError"); } } - /// "Page not loaded" - public static string AddressBar_Invalid_DialogTitle_Default { get { return T("AddressBar.Invalid.DialogTitle.Default"); } } - /// "An error prevents the URL from being loaded." - public static string AddressBar_Invalid_DialogText_Default { get { return T("AddressBar.Invalid.DialogText.Default"); } } +///"Page source" +public static string Menu_ViewSource=>T("Menu.ViewSource"); +///"View mode" +public static string Menu_ViewMode=>T("Menu.ViewMode"); +///"Back" +public static string ContextMenu_Back=>T("ContextMenu.Back"); +///"Forward" +public static string ContextMenu_Forward=>T("ContextMenu.Forward"); +///"Refresh" +public static string ContextMenu_Refresh=>T("ContextMenu.Refresh"); +///"View Page Source" +public static string ContextMenu_ViewSource=>T("ContextMenu.ViewSource"); +///"Go back one page" +public static string ToolBarButton_Back_ToolTip=>T("ToolBarButton.Back.ToolTip"); +///"Go forward one page" +public static string ToolBarButton_Forward_ToolTip=>T("ToolBarButton.Forward.ToolTip"); +///"Refresh page" +public static string ToolBarButton_Refresh_ToolTip=>T("ToolBarButton.Refresh.ToolTip"); +///"Show Tree" +public static string ToolBarButton_TreeView_ToolTip=>T("ToolBarButton.TreeView.ToolTip"); +///"Go to the address in the location bar" +public static string ToolBarButton_Go_ToolTip=>T("ToolBarButton.Go.ToolTip"); +///"Go to the Start page" +public static string ToolBarButton_Home_ToolTip=>T("ToolBarButton.Home.ToolTip"); +///"Access denied" +public static string AddressBar_Invalid_DialogTitle_External=>T("AddressBar.Invalid.DialogTitle.External"); +///"External URL cannot loaded." +public static string AddressBar_Invalid_DialogText_External=>T("AddressBar.Invalid.DialogText.External"); +///"Bad URL" +public static string AddressBar_Invalid_DialogTitle_BadRequest=>T("AddressBar.Invalid.DialogTitle.BadRequest"); +///"The URL is invalid and cannot be loaded." +public static string AddressBar_Invalid_DialogText_BadRequest=>T("AddressBar.Invalid.DialogText.BadRequest"); +///"Not authorized" +public static string AddressBar_Invalid_DialogTitle_Unauthorized=>T("AddressBar.Invalid.DialogTitle.Unauthorized"); +///"You are not authorized to view the page on specified URL." +public static string AddressBar_Invalid_DialogText_Unauthorized=>T("AddressBar.Invalid.DialogText.Unauthorized"); +///"Page not found" +public static string AddressBar_Invalid_DialogTitle_NotFound=>T("AddressBar.Invalid.DialogTitle.NotFound"); +///"Page not found on the specified URL." +public static string AddressBar_Invalid_DialogText_NotFound=>T("AddressBar.Invalid.DialogText.NotFound"); +///"Server error" +public static string AddressBar_Invalid_DialogTitle_InternalError=>T("AddressBar.Invalid.DialogTitle.InternalError"); +///"The server has reported an error on the specified URL. The page cannot be loaded." +public static string AddressBar_Invalid_DialogText_InternalError=>T("AddressBar.Invalid.DialogText.InternalError"); +///"Page not loaded" +public static string AddressBar_Invalid_DialogTitle_Default=>T("AddressBar.Invalid.DialogTitle.Default"); +///"An error prevents the URL from being loaded." +public static string AddressBar_Invalid_DialogText_Default=>T("AddressBar.Invalid.DialogText.Default"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Web.PageBrowser", key); @@ -6034,38 +6626,38 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Web_SEOAssistant { - /// "SEO Assistant" - public static string SEOAssistant { get { return T("SEOAssistant"); } } - /// "Search engine optimization" - public static string SEOAssistant_ToolTip { get { return T("SEOAssistant.ToolTip"); } } - /// "Generate a page preview to compute the SEO indication." - public static string IntroText { get { return T("IntroText"); } } - /// "Result" - public static string TabResult { get { return T("TabResult"); } } - /// "Keywords" - public static string TabKeywords { get { return T("TabKeywords"); } } - /// "Keywords found in page preview:" - public static string ResultHeading { get { return T("ResultHeading"); } } - /// "No keywords configured." - public static string NoKeywordsWarning { get { return T("NoKeywordsWarning"); } } - /// "In title" - public static string isInTitle { get { return T("isInTitle"); } } - /// "In URL" - public static string isInURL { get { return T("isInURL"); } } - /// "In menu title" - public static string isInMenuTitle { get { return T("isInMenuTitle"); } } - /// "In description" - public static string isInDescription { get { return T("isInDescription"); } } - /// "In heading" - public static string isInHeading { get { return T("isInHeading"); } } - /// "In content" - public static string isInContent { get { return T("isInContent"); } } - /// "No keywords found in page preview" - public static string NoKeywords { get { return T("NoKeywords"); } } - /// "Failed to analyze the keywords because the markup is not valid" - public static string IncorrectHtml { get { return T("IncorrectHtml"); } } - /// "Add SEO word ..." - public static string AddKeywordInputPlaceholder { get { return T("AddKeywordInputPlaceholder"); } } +///"SEO Assistant" +public static string SEOAssistant=>T("SEOAssistant"); +///"Search engine optimization" +public static string SEOAssistant_ToolTip=>T("SEOAssistant.ToolTip"); +///"Generate a page preview to compute the SEO indication." +public static string IntroText=>T("IntroText"); +///"Result" +public static string TabResult=>T("TabResult"); +///"Keywords" +public static string TabKeywords=>T("TabKeywords"); +///"Keywords found in page preview:" +public static string ResultHeading=>T("ResultHeading"); +///"No keywords configured." +public static string NoKeywordsWarning=>T("NoKeywordsWarning"); +///"In title" +public static string isInTitle=>T("isInTitle"); +///"In URL" +public static string isInURL=>T("isInURL"); +///"In menu title" +public static string isInMenuTitle=>T("isInMenuTitle"); +///"In description" +public static string isInDescription=>T("isInDescription"); +///"In heading" +public static string isInHeading=>T("isInHeading"); +///"In content" +public static string isInContent=>T("isInContent"); +///"No keywords found in page preview" +public static string NoKeywords=>T("NoKeywords"); +///"Failed to analyze the keywords because the markup is not valid" +public static string IncorrectHtml=>T("IncorrectHtml"); +///"Add SEO word ..." +public static string AddKeywordInputPlaceholder=>T("AddKeywordInputPlaceholder"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Web.SEOAssistant", key); @@ -6075,460 +6667,391 @@ private static string T(string key) /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Web_SourceEditor { - /// "Retrieved on SourceEditorBinding startup to make sure strings are loaded :)" - public static string Preload_Key { get { return T("Preload.Key"); } } - /// "Invalid XHTML" - public static string Invalid_HTML_DialogTitle { get { return T("Invalid.HTML.DialogTitle"); } } - /// "The root <html> tag is missing." - public static string Invalid_HTML_MissingHtml { get { return T("Invalid.HTML.MissingHtml"); } } - /// "The <head> tag is missing." - public static string Invalid_HTML_MissingHead { get { return T("Invalid.HTML.MissingHead"); } } - /// "The <body> tag is missing." - public static string Invalid_HTML_MissingBody { get { return T("Invalid.HTML.MissingBody"); } } - /// "The <head> tag must precede <body>." - public static string Invalid_HTML_HeadBodyIndex { get { return T("Invalid.HTML.HeadBodyIndex"); } } - /// "The root namespace is wrong." - public static string Invalid_HTML_NamespaceURI { get { return T("Invalid.HTML.NamespaceURI"); } } - /// "Only one <body> tag allowed." - public static string Invalid_HTML_MultipleBody { get { return T("Invalid.HTML.MultipleBody"); } } - /// "Only one <head> tag allowed." - public static string Invalid_HTML_MultipleHead { get { return T("Invalid.HTML.MultipleHead"); } } - /// "The root <html> tag can only have <head> and <body> tags as children." - public static string Invalid_HTML_NotAllowedHtmlChild { get { return T("Invalid.HTML.NotAllowedHtmlChild"); } } - /// "Source format aborted" - public static string Format_XML_ErrorDialog_Title { get { return T("Format.XML.ErrorDialog.Title"); } } - /// "XML source formatting requires a well-formed document structure." - public static string Format_XML_ErrorDialog_Text { get { return T("Format.XML.ErrorDialog.Text"); } } - /// "Plain Edit" - public static string Switch_PlainEdit_Label { get { return T("Switch.PlainEdit.Label"); } } - /// "No syntax highlight, faster performance" - public static string Switch_PlainEdit_ToolTip { get { return T("Switch.PlainEdit.ToolTip"); } } - /// "Colored Edit" - public static string Switch_ColoredEdit_Label { get { return T("Switch.ColoredEdit.Label"); } } - /// "Syntax highlight, slower performance" - public static string Switch_ColoredEdit_ToolTip { get { return T("Switch.ColoredEdit.ToolTip"); } } - /// "Insert" - public static string Toolbar_Insert_Label { get { return T("Toolbar.Insert.Label"); } } - /// "Format" - public static string Toolbar_Format_Label { get { return T("Toolbar.Format.Label"); } } - /// "Format XML source" - public static string Toolbar_Format_ToolTip { get { return T("Toolbar.Format.ToolTip"); } } - /// "Page URL" - public static string Insert_PageURL_Label { get { return T("Insert.PageURL.Label"); } } - /// "Image URL" - public static string Insert_ImageURL_Label { get { return T("Insert.ImageURL.Label"); } } - /// "Media URL" - public static string Insert_MediaURL_Label { get { return T("Insert.MediaURL.Label"); } } - /// "Frontend URL" - public static string Insert_FrontendURL_Label { get { return T("Insert.FrontendURL.Label"); } } - /// "Function Markup" - public static string Insert_FunctionMarkup_Label { get { return T("Insert.FunctionMarkup.Label"); } } +///"Retrieved on SourceEditorBinding startup to make sure strings are loaded :)" +public static string Preload_Key=>T("Preload.Key"); +///"Invalid XHTML" +public static string Invalid_HTML_DialogTitle=>T("Invalid.HTML.DialogTitle"); +///"The root <html> tag is missing." +public static string Invalid_HTML_MissingHtml=>T("Invalid.HTML.MissingHtml"); +///"The <head> tag is missing." +public static string Invalid_HTML_MissingHead=>T("Invalid.HTML.MissingHead"); +///"The <body> tag is missing." +public static string Invalid_HTML_MissingBody=>T("Invalid.HTML.MissingBody"); +///"The <head> tag must precede <body>." +public static string Invalid_HTML_HeadBodyIndex=>T("Invalid.HTML.HeadBodyIndex"); +///"The root namespace is wrong." +public static string Invalid_HTML_NamespaceURI=>T("Invalid.HTML.NamespaceURI"); +///"Only one <body> tag allowed." +public static string Invalid_HTML_MultipleBody=>T("Invalid.HTML.MultipleBody"); +///"Only one <head> tag allowed." +public static string Invalid_HTML_MultipleHead=>T("Invalid.HTML.MultipleHead"); +///"The root <html> tag can only have <head> and <body> tags as children." +public static string Invalid_HTML_NotAllowedHtmlChild=>T("Invalid.HTML.NotAllowedHtmlChild"); +///"Source format aborted" +public static string Format_XML_ErrorDialog_Title=>T("Format.XML.ErrorDialog.Title"); +///"XML source formatting requires a well-formed document structure." +public static string Format_XML_ErrorDialog_Text=>T("Format.XML.ErrorDialog.Text"); +///"Plain Edit" +public static string Switch_PlainEdit_Label=>T("Switch.PlainEdit.Label"); +///"No syntax highlight, faster performance" +public static string Switch_PlainEdit_ToolTip=>T("Switch.PlainEdit.ToolTip"); +///"Colored Edit" +public static string Switch_ColoredEdit_Label=>T("Switch.ColoredEdit.Label"); +///"Syntax highlight, slower performance" +public static string Switch_ColoredEdit_ToolTip=>T("Switch.ColoredEdit.ToolTip"); +///"Insert" +public static string Toolbar_Insert_Label=>T("Toolbar.Insert.Label"); +///"Format" +public static string Toolbar_Format_Label=>T("Toolbar.Format.Label"); +///"Format XML source" +public static string Toolbar_Format_ToolTip=>T("Toolbar.Format.ToolTip"); +///"Page URL" +public static string Insert_PageURL_Label=>T("Insert.PageURL.Label"); +///"Image URL" +public static string Insert_ImageURL_Label=>T("Insert.ImageURL.Label"); +///"Media URL" +public static string Insert_MediaURL_Label=>T("Insert.MediaURL.Label"); +///"Frontend URL" +public static string Insert_FrontendURL_Label=>T("Insert.FrontendURL.Label"); +///"Function Markup" +public static string Insert_FunctionMarkup_Label=>T("Insert.FunctionMarkup.Label"); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Web.SourceEditor", key); } } - /// - [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] - public static class Composite_Web_UrlConfiguration { - /// "URL Configuration" - public static string Tree_ConfigurationElementLabel { get { return T("Tree.ConfigurationElementLabel"); } } - /// "This section allows configuring shorter and friendlier urls" - public static string Tree_ConfigurationElementToolTip { get { return T("Tree.ConfigurationElementToolTip"); } } - /// "Edit URL Configuration" - public static string Tree_ConfigurationElementEditLabel { get { return T("Tree.ConfigurationElementEditLabel"); } } - /// "Edit URL Configuration" - public static string Tree_ConfigurationElementEditToolTip { get { return T("Tree.ConfigurationElementEditToolTip"); } } - /// "Hostnames" - public static string Tree_HostnamesFolderLabel { get { return T("Tree.HostnamesFolderLabel"); } } - /// "Here you can map a hostname to a site" - public static string Tree_HostnamesFolderToolTip { get { return T("Tree.HostnamesFolderToolTip"); } } - /// "Add Hostname" - public static string Tree_AddHostnameLabel { get { return T("Tree.AddHostnameLabel"); } } - /// "Add a new hostname mapping" - public static string Tree_AddHostnameToolTip { get { return T("Tree.AddHostnameToolTip"); } } - /// "Edit Hostname" - public static string Tree_EditHostnameLabel { get { return T("Tree.EditHostnameLabel"); } } - /// "Edit this hostname mapping" - public static string Tree_EditHostnameToolTip { get { return T("Tree.EditHostnameToolTip"); } } - /// "Delete Hostname" - public static string Tree_DeleteHostnameLabel { get { return T("Tree.DeleteHostnameLabel"); } } - /// "Delete this hostname mapping" - public static string Tree_DeleteHostnameToolTip { get { return T("Tree.DeleteHostnameToolTip"); } } - /// "UrlConfiguration" - public static string Tree_UrlConfigurationLabel { get { return T("Tree.UrlConfigurationLabel"); } } - /// "URL Configuration" - public static string UrlConfiguration_Title { get { return T("UrlConfiguration.Title"); } } - /// "Page URL Suffix" - public static string UrlConfiguration_PageUrlSuffix_Label { get { return T("UrlConfiguration.PageUrlSuffix.Label"); } } - /// "A string that will be appended to all page urls. F.e. '.aspx' or '.html', leaving this field empty will produce extensionless urls" - public static string UrlConfiguration_PageUrlSuffix_Help { get { return T("UrlConfiguration.PageUrlSuffix.Help"); } } - /// "New Hostname" - public static string HostnameBinding_AddNewHostnameTitle { get { return T("HostnameBinding.AddNewHostnameTitle"); } } - /// "Hostname" - public static string HostnameBinding_Hostname_Label { get { return T("HostnameBinding.Hostname.Label"); } } - /// "Hostname to which current url building rules will be applied" - public static string HostnameBinding_Hostname_Help { get { return T("HostnameBinding.Hostname.Help"); } } - /// "Page" - public static string HostnameBinding_Page_Label { get { return T("HostnameBinding.Page.Label"); } } - /// "Root page that will be the default page for the current hostname" - public static string HostnameBinding_Page_Help { get { return T("HostnameBinding.Page.Help"); } } - /// "URL" - public static string HostnameBinding_IncludeHomepageUrlTitle_Label { get { return T("HostnameBinding.IncludeHomepageUrlTitle.Label"); } } - /// "Include homepage URL Title" - public static string HostnameBinding_IncludeHomepageUrlTitle_ItemLabel { get { return T("HostnameBinding.IncludeHomepageUrlTitle.ItemLabel"); } } - /// "Determines whether root page's title should be a part of url. Not having it checked produces shorter urls" - public static string HostnameBinding_IncludeHomepageUrlTitle_Help { get { return T("HostnameBinding.IncludeHomepageUrlTitle.Help"); } } - /// "Include language URL mapping" - public static string HostnameBinding_IncludeLanguageUrlMapping_ItemLabel { get { return T("HostnameBinding.IncludeLanguageUrlMapping.ItemLabel"); } } - /// "Determines whether language code should be a part of a url" - public static string HostnameBinding_IncludeLanguageUrlMapping_Help { get { return T("HostnameBinding.IncludeLanguageUrlMapping.Help"); } } - /// "Custom 404 Page" - public static string HostnameBinding_Custom404Page_Label { get { return T("HostnameBinding.Custom404Page.Label"); } } - /// "Url to which request will be redirected in the case there's a request to non-existent c1 page" - public static string HostnameBinding_Custom404Page_Help { get { return T("HostnameBinding.Custom404Page.Help"); } } - /// "Alias hostnames" - public static string HostnameBinding_Aliases_Label { get { return T("HostnameBinding.Aliases.Label"); } } - /// "Hostnames from which all requests will be redirected to the current hostname" - public static string HostnameBinding_Aliases_Help { get { return T("HostnameBinding.Aliases.Help"); } } - private static string T(string key) - { - return StringResourceSystemFacade.GetString("Composite.Web.UrlConfiguration", key); - } -} - /// [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class Composite_Web_VisualEditor { - /// "Retrieved on VisualEditorBinding startup to make sure strings are loaded :)" - public static string Preload_Key { get { return T("Preload.Key"); } } - /// "Strong text" - public static string ToolBar_ToolTipStrong { get { return T("ToolBar.ToolTipStrong"); } } - /// "Emphasize text" - public static string ToolBar_ToolTipEmphasize { get { return T("ToolBar.ToolTipEmphasize"); } } - /// "Underline text" - public static string ToolBar_ToolTipUnderline { get { return T("ToolBar.ToolTipUnderline"); } } - /// "Strike text" - public static string ToolBar_ToolTipStrike { get { return T("ToolBar.ToolTipStrike"); } } - /// "Align left" - public static string ToolBar_ToolTipAlignLeft { get { return T("ToolBar.ToolTipAlignLeft"); } } - /// "Align right" - public static string ToolBar_ToolTipAlignRight { get { return T("ToolBar.ToolTipAlignRight"); } } - /// "Justify left" - public static string ToolBar_ToolTipJustifyLeft { get { return T("ToolBar.ToolTipJustifyLeft"); } } - /// "Justify right" - public static string ToolBar_ToolTipJustifyRight { get { return T("ToolBar.ToolTipJustifyRight"); } } - /// "Justify center" - public static string ToolBar_ToolTipJustifyCenter { get { return T("ToolBar.ToolTipJustifyCenter"); } } - /// "Justify full" - public static string ToolBar_ToolTipJustifyFull { get { return T("ToolBar.ToolTipJustifyFull"); } } - /// "Unordered list" - public static string ToolBar_ToolTipUnorderedList { get { return T("ToolBar.ToolTipUnorderedList"); } } - /// "Ordered list" - public static string ToolBar_ToolTipOrderedList { get { return T("ToolBar.ToolTipOrderedList"); } } - /// "Link" - public static string ToolBar_ToolTipLink { get { return T("ToolBar.ToolTipLink"); } } - /// "Delete link" - public static string ToolBar_ToolTipDeleteLink { get { return T("ToolBar.ToolTipDeleteLink"); } } - /// "Cleanup messy code" - public static string ToolBar_ToolTipCleanup { get { return T("ToolBar.ToolTipCleanup"); } } - /// "Undo" - public static string ToolBar_ToolTipUndo { get { return T("ToolBar.ToolTipUndo"); } } - /// "Redo" - public static string ToolBar_ToolTipRedo { get { return T("ToolBar.ToolTipRedo"); } } - /// "Source" - public static string ToolBar_LabelSource { get { return T("ToolBar.LabelSource"); } } - /// "Visual" - public static string ToolBar_LabelWysiwyg { get { return T("ToolBar.LabelWysiwyg"); } } - /// "Paragraph" - public static string FormatSelector_LabelParagraph { get { return T("FormatSelector.LabelParagraph"); } } - /// "Address" - public static string FormatSelector_LabelAddress { get { return T("FormatSelector.LabelAddress"); } } - /// "Blockquote" - public static string FormatSelector_LabelBlockQuote { get { return T("FormatSelector.LabelBlockQuote"); } } - /// "Division" - public static string FormatSelector_LabelDivision { get { return T("FormatSelector.LabelDivision"); } } - /// "Heading 1" - public static string FormatSelector_LabelHeading1 { get { return T("FormatSelector.LabelHeading1"); } } - /// "Heading 2" - public static string FormatSelector_LabelHeading2 { get { return T("FormatSelector.LabelHeading2"); } } - /// "Heading 3" - public static string FormatSelector_LabelHeading3 { get { return T("FormatSelector.LabelHeading3"); } } - /// "Heading 4" - public static string FormatSelector_LabelHeading4 { get { return T("FormatSelector.LabelHeading4"); } } - /// "Heading 5" - public static string FormatSelector_LabelHeading5 { get { return T("FormatSelector.LabelHeading5"); } } - /// "Heading 6" - public static string FormatSelector_LabelHeading6 { get { return T("FormatSelector.LabelHeading6"); } } - /// "(None)" - public static string ClassSelector_LabelNone { get { return T("ClassSelector.LabelNone"); } } - /// "Insert" - public static string ContextMenu_LabelInsert { get { return T("ContextMenu.LabelInsert"); } } - /// "Paste" - public static string ContextMenu_LabelPaste { get { return T("ContextMenu.LabelPaste"); } } - /// "Link" - public static string ContextMenu_LabelLink { get { return T("ContextMenu.LabelLink"); } } - /// "Unlink" - public static string ContextMenu_LabelUnLink { get { return T("ContextMenu.LabelUnLink"); } } - /// "Link Properties" - public static string ContextMenu_LabelLinkProperties { get { return T("ContextMenu.LabelLinkProperties"); } } - /// "Table…" - public static string ContextMenu_LabelTable { get { return T("ContextMenu.LabelTable"); } } - /// "Manage Table" - public static string ContextMenu_LabelTableManage { get { return T("ContextMenu.LabelTableManage"); } } - /// "Image…" - public static string ContextMenu_LabelImage { get { return T("ContextMenu.LabelImage"); } } - /// "As Simple Text…" - public static string ContextMenu_LabelAsText { get { return T("ContextMenu.LabelAsText"); } } - /// "Field" - public static string ContextMenu_LabelField { get { return T("ContextMenu.LabelField"); } } - /// "Delete Field" - public static string ContextMenu_LabelFieldDelete { get { return T("ContextMenu.LabelFieldDelete"); } } - /// "Function…" - public static string ContextMenu_LabelRendering { get { return T("ContextMenu.LabelRendering"); } } - /// "Character…" - public static string ContextMenu_LabelCharacter { get { return T("ContextMenu.LabelCharacter"); } } - /// "Image Properties…" - public static string ContextMenu_LabelImageProperties { get { return T("ContextMenu.LabelImageProperties"); } } - /// "Function Properties…" - public static string ContextMenu_LabelRenderingProperties { get { return T("ContextMenu.LabelRenderingProperties"); } } - /// "Cut Row" - public static string ContextMenu_LabelCutRow { get { return T("ContextMenu.LabelCutRow"); } } - /// "Copy Row" - public static string ContextMenu_LabelCopyRow { get { return T("ContextMenu.LabelCopyRow"); } } - /// "Paste Row" - public static string ContextMenu_LabelPasteRow { get { return T("ContextMenu.LabelPasteRow"); } } - /// "Before" - public static string ContextMenu_LabelBefore { get { return T("ContextMenu.LabelBefore"); } } - /// "After" - public static string ContextMenu_LabelAfter { get { return T("ContextMenu.LabelAfter"); } } - /// "Table Properties" - public static string ContextMenu_LabelTableProperties { get { return T("ContextMenu.LabelTableProperties"); } } - /// "Cell Properties" - public static string ContextMenu_LabelCellProperties { get { return T("ContextMenu.LabelCellProperties"); } } - /// "Row Properties" - public static string ContextMenu_LabelRowProperties { get { return T("ContextMenu.LabelRowProperties"); } } - /// "Insert Row" - public static string ContextMenu_LabelInsertRow { get { return T("ContextMenu.LabelInsertRow"); } } - /// "Delete Row" - public static string ContextMenu_LabelDeleteRow { get { return T("ContextMenu.LabelDeleteRow"); } } - /// "Insert Column" - public static string ContextMenu_LabelInsertcolumn { get { return T("ContextMenu.LabelInsertcolumn"); } } - /// "Delete Column" - public static string ContextMenu_LabelDeleteColumn { get { return T("ContextMenu.LabelDeleteColumn"); } } - /// "Merge Table Cells" - public static string ContextMenu_LabelMergeTableCells { get { return T("ContextMenu.LabelMergeTableCells"); } } - /// "Split Merged Cells" - public static string ContextMenu_LabelSplitMergedCells { get { return T("ContextMenu.LabelSplitMergedCells"); } } - /// "Delete Table" - public static string ContextMenu_LabelDeleteTable { get { return T("ContextMenu.LabelDeleteTable"); } } - /// "Align Image" - public static string ContextMenu_LabelAlignImage { get { return T("ContextMenu.LabelAlignImage"); } } - /// "Right" - public static string ContextMenu_LabelAlignImageRight { get { return T("ContextMenu.LabelAlignImageRight"); } } - /// "Left" - public static string ContextMenu_LabelAlignImageLeft { get { return T("ContextMenu.LabelAlignImageLeft"); } } - /// "None" - public static string ContextMenu_LabelAlignImageNone { get { return T("ContextMenu.LabelAlignImageNone"); } } - /// "Source code error" - public static string ContentError_DialogTitle { get { return T("ContentError.DialogTitle"); } } - /// "Error in source code:" - public static string ContentError_DialogText { get { return T("ContentError.DialogText"); } } - /// "No placeholders in template." - public static string TemplateTree_NoTemplateWarning { get { return T("TemplateTree.NoTemplateWarning"); } } - /// "Basic" - public static string LabelTabBasic { get { return T("LabelTabBasic"); } } - /// "Advanced" - public static string LabelTabAdvanced { get { return T("LabelTabAdvanced"); } } - /// "Class" - public static string LabelClass { get { return T("LabelClass"); } } - /// "The class attribute specifies a CSS classname for an element." - public static string HelpClass { get { return T("HelpClass"); } } - /// "ID" - public static string LabelId { get { return T("LabelId"); } } - /// "The id attribute can be used by JavaScript or CSS to make changes to an element." - public static string HelpId { get { return T("HelpId"); } } - /// "Clipboard disabled" - public static string MozSecurityNote_LabelSecurityStuff { get { return T("MozSecurityNote.LabelSecurityStuff"); } } - /// "For security reasons, access to the clipboard was blocked by your browser. Please use standard keyboard shortcuts. For a technical description of, how to configure your browser for use with {applicationname}, press the "More Info" button." - public static string MozSecurityNote_TextSecurityStuff { get { return T("MozSecurityNote.TextSecurityStuff"); } } - /// "Insert Link" - public static string Link_LabelInsertLink { get { return T("Link.LabelInsertLink"); } } - /// "Link Properties" - public static string Link_LabelLinkProperties { get { return T("Link.LabelLinkProperties"); } } - /// "URL" - public static string Link_LinkDestination { get { return T("Link.LinkDestination"); } } - /// "Role" - public static string Link_LinkRole { get { return T("Link.LinkRole"); } } - /// "Title" - public static string Link_TitleText { get { return T("Link.TitleText"); } } - /// "Target" - public static string Link_LinkTarget { get { return T("Link.LinkTarget"); } } - /// "Open in new window" - public static string Link_LinkTarget_LabelCheckBox { get { return T("Link.LinkTarget.LabelCheckBox"); } } - /// "The title text is rendered as a tooltip when the mouse hovers over the link. This can be used to let your customers know where the link is going without disturbing the flow of your text." - public static string Link_TitleTextToolTip { get { return T("Link.TitleTextToolTip"); } } - /// "Link properties" - public static string Link_LabelLink { get { return T("Link.LabelLink"); } } - /// "Cell type" - public static string Tables_Cell_CellType { get { return T("Tables.Cell.CellType"); } } - /// "Cell width" - public static string Tables_Cell_LabelWidth { get { return T("Tables.Cell.LabelWidth"); } } - /// "Horizontal alignment" - public static string Tables_Cell_HorizontalAlignment { get { return T("Tables.Cell.HorizontalAlignment"); } } - /// "Vertical alignment" - public static string Tables_Cell_VerticalAlignment { get { return T("Tables.Cell.VerticalAlignment"); } } - /// "Apply changes to" - public static string Tables_Cell_ApplyTo { get { return T("Tables.Cell.ApplyTo"); } } - /// "Cell Properties" - public static string Tables_Cell_LabelCellProperties { get { return T("Tables.Cell.LabelCellProperties"); } } - /// "Layout" - public static string Tables_Cell_LabelLayout { get { return T("Tables.Cell.LabelLayout"); } } - /// "Data Cell" - public static string Tables_Cell_LabelDataCell { get { return T("Tables.Cell.LabelDataCell"); } } - /// "Header Cell" - public static string Tables_Cell_LabelHeaderCell { get { return T("Tables.Cell.LabelHeaderCell"); } } - /// "Left" - public static string Tables_Cell_LabelLeft { get { return T("Tables.Cell.LabelLeft"); } } - /// "Right" - public static string Tables_Cell_LabelRight { get { return T("Tables.Cell.LabelRight"); } } - /// "Top" - public static string Tables_Cell_LabelTop { get { return T("Tables.Cell.LabelTop"); } } - /// "Center" - public static string Tables_Cell_LabelCenter { get { return T("Tables.Cell.LabelCenter"); } } - /// "Bottom" - public static string Tables_Cell_LabelBottom { get { return T("Tables.Cell.LabelBottom"); } } - /// "Scope" - public static string Tables_Cell_LabelScope { get { return T("Tables.Cell.LabelScope"); } } - /// "Current cell" - public static string Tables_Cell_LabelCurrentCell { get { return T("Tables.Cell.LabelCurrentCell"); } } - /// "All cells in row" - public static string Tables_Cell_LabelAllRowCells { get { return T("Tables.Cell.LabelAllRowCells"); } } - /// "All cells in table" - public static string Tables_Cell_LabelAllTableCells { get { return T("Tables.Cell.LabelAllTableCells"); } } - /// "Columns" - public static string Tables_Merge_Columns { get { return T("Tables.Merge.Columns"); } } - /// "Rows" - public static string Tables_Merge_Rows { get { return T("Tables.Merge.Rows"); } } - /// "Merge Table Cells" - public static string Tables_Merge_LabelMergeCells { get { return T("Tables.Merge.LabelMergeCells"); } } - /// "Row in table part" - public static string Tables_Row_Rows { get { return T("Tables.Row.Rows"); } } - /// "Horizontal Alignment" - public static string Tables_Row_HorizontalAlignment { get { return T("Tables.Row.HorizontalAlignment"); } } - /// "Vertical Alignment" - public static string Tables_Row_VerticalAlignment { get { return T("Tables.Row.VerticalAlignment"); } } - /// "Apply changes to" - public static string Tables_Row_ApplyTo { get { return T("Tables.Row.ApplyTo"); } } - /// "Row Properties" - public static string Tables_Row_LabelRowProperties { get { return T("Tables.Row.LabelRowProperties"); } } - /// "Layout" - public static string Tables_Row_LabelLayout { get { return T("Tables.Row.LabelLayout"); } } - /// "Table Head" - public static string Tables_Row_LabelTableHead { get { return T("Tables.Row.LabelTableHead"); } } - /// "Table Body" - public static string Tables_Row_LabelTableBody { get { return T("Tables.Row.LabelTableBody"); } } - /// "Table Foot" - public static string Tables_Row_LabelTableFoot { get { return T("Tables.Row.LabelTableFoot"); } } - /// "Left" - public static string Tables_Row_LabelLeft { get { return T("Tables.Row.LabelLeft"); } } - /// "Center" - public static string Tables_Row_LabelCenter { get { return T("Tables.Row.LabelCenter"); } } - /// "Right" - public static string Tables_Row_LabelRight { get { return T("Tables.Row.LabelRight"); } } - /// "Top" - public static string Tables_Row_LabelTop { get { return T("Tables.Row.LabelTop"); } } - /// "Bottom" - public static string Tables_Row_LabelBottom { get { return T("Tables.Row.LabelBottom"); } } - /// "Scope" - public static string Tables_Row_LabelScope { get { return T("Tables.Row.LabelScope"); } } - /// "Current row" - public static string Tables_Row_LabelCurrentRow { get { return T("Tables.Row.LabelCurrentRow"); } } - /// "Odd rows in table" - public static string Tables_Row_LabelOddRows { get { return T("Tables.Row.LabelOddRows"); } } - /// "Even rows in table" - public static string Tables_Row_LabelEvenRows { get { return T("Tables.Row.LabelEvenRows"); } } - /// "All rows in table" - public static string Tables_Row_LabelAllRows { get { return T("Tables.Row.LabelAllRows"); } } - /// "Insert Table" - public static string Tables_Table_TitleInsert { get { return T("Tables.Table.TitleInsert"); } } - /// "Table Properties" - public static string Tables_Table_TitleUpdate { get { return T("Tables.Table.TitleUpdate"); } } - /// "Columns" - public static string Tables_Table_Columns { get { return T("Tables.Table.Columns"); } } - /// "Rows" - public static string Tables_Table_Rows { get { return T("Tables.Table.Rows"); } } - /// "Summary" - public static string Tables_Table_Summary { get { return T("Tables.Table.Summary"); } } - /// "The summary explains the table content and structure so that people using non-visual browsers (such as blind people) may better understand it. This is especially important for tables without captions." - public static string Tables_Table_SummaryHelp { get { return T("Tables.Table.SummaryHelp"); } } - /// "Table layout" - public static string Tables_Table_LabelLayout { get { return T("Tables.Table.LabelLayout"); } } - /// "Table description" - public static string Tables_Table_LabelMeta { get { return T("Tables.Table.LabelMeta"); } } - /// "Source" - public static string Image_Source { get { return T("Image.Source"); } } - /// "Alternate text" - public static string Image_AlternativeText { get { return T("Image.AlternativeText"); } } - /// "The alternate text is displayed as visible text in browsers where images cannot be rendered normally. This may be the case for mobile phone browsers and special browsers for the visually impaired. The alt attribute should clearly describe the content of the image." - public static string Image_AlternativeTextToolTip { get { return T("Image.AlternativeTextToolTip"); } } - /// "Title text" - public static string Image_TitleText { get { return T("Image.TitleText"); } } - /// "The title text is rendered as a tooltip when the mouse hovers over the image. An image that might be confusing for the viewer can be instantly clarified by a title." - public static string Image_TitleTextToolTip { get { return T("Image.TitleTextToolTip"); } } - /// "Image properties" - public static string Image_LabelImage { get { return T("Image.LabelImage"); } } - /// "Insert Image" - public static string Image_LabelInsertImage { get { return T("Image.LabelInsertImage"); } } - /// "Image Properties" - public static string Image_LabelImageProperties { get { return T("Image.LabelImageProperties"); } } - /// "Maximum Width" - public static string Image_MaxWidth { get { return T("Image.MaxWidth"); } } - /// "If the width of the image is bigger that the specified value, it will be downsized to the specified value." - public static string Image_MaxWidthToolTip { get { return T("Image.MaxWidthToolTip"); } } - /// "Maximum Height" - public static string Image_MaxHeight { get { return T("Image.MaxHeight"); } } - /// "If the height of the image is bigger that the specified value, it will be downsized to the specified value." - public static string Image_MaxHeightToolTip { get { return T("Image.MaxHeightToolTip"); } } - /// "Select Character" - public static string CharMap_LabelSelectSpecialChar { get { return T("CharMap.LabelSelectSpecialChar"); } } - /// "General" - public static string CharMap_LabelGeneral { get { return T("CharMap.LabelGeneral"); } } - /// "Alphabetical" - public static string CharMap_LabelAlphabetical { get { return T("CharMap.LabelAlphabetical"); } } - /// "Math & Symbols" - public static string CharMap_LabelMathSymbols { get { return T("CharMap.LabelMathSymbols"); } } - /// "Common" - public static string CharMap_LabelCommon { get { return T("CharMap.LabelCommon"); } } - /// "Quotation" - public static string CharMap_LabelQuotation { get { return T("CharMap.LabelQuotation"); } } - /// "Currency" - public static string CharMap_LabelCurrency { get { return T("CharMap.LabelCurrency"); } } - /// "Latin" - public static string CharMap_LabelLatin { get { return T("CharMap.LabelLatin"); } } - /// "Greek" - public static string CharMap_LabelGreek { get { return T("CharMap.LabelGreek"); } } - /// "Math and Logic" - public static string CharMap_LabelMathAndLogic { get { return T("CharMap.LabelMathAndLogic"); } } - /// "Symbols" - public static string CharMap_LabelSymbols { get { return T("CharMap.LabelSymbols"); } } - /// "Arrows" - public static string CharMap_LabelArrows { get { return T("CharMap.LabelArrows"); } } - /// "Paste as Text" - public static string TextPaste_Label { get { return T("TextPaste.Label"); } } - /// "Paste content here. Then press OK." - public static string TextPaste_PasteHereContent { get { return T("TextPaste.PasteHereContent"); } } - /// "How to spell check ..." - public static string SpellCheck_InfoLabel { get { return T("SpellCheck.InfoLabel"); } } - /// "How to spell check in the Visual Editor" - public static string SpellCheck_InfoCaption { get { return T("SpellCheck.InfoCaption"); } } - /// "To get suggestions for a misspelled word, press your SHIFT key down when you invoke the context menu." - public static string SpellCheck_InfoText { get { return T("SpellCheck.InfoText"); } } - /// "Edit" - public static string Function_Edit { get { return T("Function.Edit"); } } - /// "Edit {0}" - public static string LaunchButton_Label(object parameter0) { return string.Format(T("LaunchButton.Label"), parameter0); } +///"Retrieved on VisualEditorBinding startup to make sure strings are loaded :)" +public static string Preload_Key=>T("Preload.Key"); +///"Strong text" +public static string ToolBar_ToolTipStrong=>T("ToolBar.ToolTipStrong"); +///"Emphasize text" +public static string ToolBar_ToolTipEmphasize=>T("ToolBar.ToolTipEmphasize"); +///"Underline text" +public static string ToolBar_ToolTipUnderline=>T("ToolBar.ToolTipUnderline"); +///"Strike text" +public static string ToolBar_ToolTipStrike=>T("ToolBar.ToolTipStrike"); +///"Align left" +public static string ToolBar_ToolTipAlignLeft=>T("ToolBar.ToolTipAlignLeft"); +///"Align right" +public static string ToolBar_ToolTipAlignRight=>T("ToolBar.ToolTipAlignRight"); +///"Justify left" +public static string ToolBar_ToolTipJustifyLeft=>T("ToolBar.ToolTipJustifyLeft"); +///"Justify right" +public static string ToolBar_ToolTipJustifyRight=>T("ToolBar.ToolTipJustifyRight"); +///"Justify center" +public static string ToolBar_ToolTipJustifyCenter=>T("ToolBar.ToolTipJustifyCenter"); +///"Justify full" +public static string ToolBar_ToolTipJustifyFull=>T("ToolBar.ToolTipJustifyFull"); +///"Unordered list" +public static string ToolBar_ToolTipUnorderedList=>T("ToolBar.ToolTipUnorderedList"); +///"Ordered list" +public static string ToolBar_ToolTipOrderedList=>T("ToolBar.ToolTipOrderedList"); +///"Link" +public static string ToolBar_ToolTipLink=>T("ToolBar.ToolTipLink"); +///"Delete link" +public static string ToolBar_ToolTipDeleteLink=>T("ToolBar.ToolTipDeleteLink"); +///"Cleanup messy code" +public static string ToolBar_ToolTipCleanup=>T("ToolBar.ToolTipCleanup"); +///"Undo" +public static string ToolBar_ToolTipUndo=>T("ToolBar.ToolTipUndo"); +///"Redo" +public static string ToolBar_ToolTipRedo=>T("ToolBar.ToolTipRedo"); +///"Source" +public static string ToolBar_LabelSource=>T("ToolBar.LabelSource"); +///"Visual" +public static string ToolBar_LabelWysiwyg=>T("ToolBar.LabelWysiwyg"); +///"Paragraph" +public static string FormatSelector_LabelParagraph=>T("FormatSelector.LabelParagraph"); +///"Address" +public static string FormatSelector_LabelAddress=>T("FormatSelector.LabelAddress"); +///"Blockquote" +public static string FormatSelector_LabelBlockQuote=>T("FormatSelector.LabelBlockQuote"); +///"Division" +public static string FormatSelector_LabelDivision=>T("FormatSelector.LabelDivision"); +///"Heading 1" +public static string FormatSelector_LabelHeading1=>T("FormatSelector.LabelHeading1"); +///"Heading 2" +public static string FormatSelector_LabelHeading2=>T("FormatSelector.LabelHeading2"); +///"Heading 3" +public static string FormatSelector_LabelHeading3=>T("FormatSelector.LabelHeading3"); +///"Heading 4" +public static string FormatSelector_LabelHeading4=>T("FormatSelector.LabelHeading4"); +///"Heading 5" +public static string FormatSelector_LabelHeading5=>T("FormatSelector.LabelHeading5"); +///"Heading 6" +public static string FormatSelector_LabelHeading6=>T("FormatSelector.LabelHeading6"); +///"(None)" +public static string ClassSelector_LabelNone=>T("ClassSelector.LabelNone"); +///"Insert" +public static string ContextMenu_LabelInsert=>T("ContextMenu.LabelInsert"); +///"Paste" +public static string ContextMenu_LabelPaste=>T("ContextMenu.LabelPaste"); +///"Link" +public static string ContextMenu_LabelLink=>T("ContextMenu.LabelLink"); +///"Unlink" +public static string ContextMenu_LabelUnLink=>T("ContextMenu.LabelUnLink"); +///"Link Properties" +public static string ContextMenu_LabelLinkProperties=>T("ContextMenu.LabelLinkProperties"); +///"Table…" +public static string ContextMenu_LabelTable=>T("ContextMenu.LabelTable"); +///"Manage Table" +public static string ContextMenu_LabelTableManage=>T("ContextMenu.LabelTableManage"); +///"Image…" +public static string ContextMenu_LabelImage=>T("ContextMenu.LabelImage"); +///"As Simple Text…" +public static string ContextMenu_LabelAsText=>T("ContextMenu.LabelAsText"); +///"Field" +public static string ContextMenu_LabelField=>T("ContextMenu.LabelField"); +///"Delete Field" +public static string ContextMenu_LabelFieldDelete=>T("ContextMenu.LabelFieldDelete"); +///"Function…" +public static string ContextMenu_LabelRendering=>T("ContextMenu.LabelRendering"); +///"Character…" +public static string ContextMenu_LabelCharacter=>T("ContextMenu.LabelCharacter"); +///"Image Properties…" +public static string ContextMenu_LabelImageProperties=>T("ContextMenu.LabelImageProperties"); +///"Function Properties…" +public static string ContextMenu_LabelRenderingProperties=>T("ContextMenu.LabelRenderingProperties"); +///"Cut Row" +public static string ContextMenu_LabelCutRow=>T("ContextMenu.LabelCutRow"); +///"Copy Row" +public static string ContextMenu_LabelCopyRow=>T("ContextMenu.LabelCopyRow"); +///"Paste Row" +public static string ContextMenu_LabelPasteRow=>T("ContextMenu.LabelPasteRow"); +///"Before" +public static string ContextMenu_LabelBefore=>T("ContextMenu.LabelBefore"); +///"After" +public static string ContextMenu_LabelAfter=>T("ContextMenu.LabelAfter"); +///"Table Properties" +public static string ContextMenu_LabelTableProperties=>T("ContextMenu.LabelTableProperties"); +///"Cell Properties" +public static string ContextMenu_LabelCellProperties=>T("ContextMenu.LabelCellProperties"); +///"Row Properties" +public static string ContextMenu_LabelRowProperties=>T("ContextMenu.LabelRowProperties"); +///"Insert Row" +public static string ContextMenu_LabelInsertRow=>T("ContextMenu.LabelInsertRow"); +///"Delete Row" +public static string ContextMenu_LabelDeleteRow=>T("ContextMenu.LabelDeleteRow"); +///"Insert Column" +public static string ContextMenu_LabelInsertcolumn=>T("ContextMenu.LabelInsertcolumn"); +///"Delete Column" +public static string ContextMenu_LabelDeleteColumn=>T("ContextMenu.LabelDeleteColumn"); +///"Merge Table Cells" +public static string ContextMenu_LabelMergeTableCells=>T("ContextMenu.LabelMergeTableCells"); +///"Split Merged Cells" +public static string ContextMenu_LabelSplitMergedCells=>T("ContextMenu.LabelSplitMergedCells"); +///"Delete Table" +public static string ContextMenu_LabelDeleteTable=>T("ContextMenu.LabelDeleteTable"); +///"Align Image" +public static string ContextMenu_LabelAlignImage=>T("ContextMenu.LabelAlignImage"); +///"Right" +public static string ContextMenu_LabelAlignImageRight=>T("ContextMenu.LabelAlignImageRight"); +///"Left" +public static string ContextMenu_LabelAlignImageLeft=>T("ContextMenu.LabelAlignImageLeft"); +///"None" +public static string ContextMenu_LabelAlignImageNone=>T("ContextMenu.LabelAlignImageNone"); +///"Source code error" +public static string ContentError_DialogTitle=>T("ContentError.DialogTitle"); +///"Error in source code:" +public static string ContentError_DialogText=>T("ContentError.DialogText"); +///"No placeholders in template." +public static string TemplateTree_NoTemplateWarning=>T("TemplateTree.NoTemplateWarning"); +///"Basic" +public static string LabelTabBasic=>T("LabelTabBasic"); +///"Advanced" +public static string LabelTabAdvanced=>T("LabelTabAdvanced"); +///"Class" +public static string LabelClass=>T("LabelClass"); +///"The class attribute specifies a CSS classname for an element." +public static string HelpClass=>T("HelpClass"); +///"ID" +public static string LabelId=>T("LabelId"); +///"The id attribute can be used by JavaScript or CSS to make changes to an element." +public static string HelpId=>T("HelpId"); +///"Clipboard disabled" +public static string MozSecurityNote_LabelSecurityStuff=>T("MozSecurityNote.LabelSecurityStuff"); +///"For security reasons, access to the clipboard was blocked by your browser. Please use standard keyboard shortcuts. For a technical description of, how to configure your browser for use with {applicationname}, press the "More Info" button." +public static string MozSecurityNote_TextSecurityStuff=>T("MozSecurityNote.TextSecurityStuff"); +///"Insert Link" +public static string Link_LabelInsertLink=>T("Link.LabelInsertLink"); +///"Link Properties" +public static string Link_LabelLinkProperties=>T("Link.LabelLinkProperties"); +///"URL" +public static string Link_LinkDestination=>T("Link.LinkDestination"); +///"Role" +public static string Link_LinkRole=>T("Link.LinkRole"); +///"Title" +public static string Link_TitleText=>T("Link.TitleText"); +///"Target" +public static string Link_LinkTarget=>T("Link.LinkTarget"); +///"Open in new window" +public static string Link_LinkTarget_LabelCheckBox=>T("Link.LinkTarget.LabelCheckBox"); +///"The title text is rendered as a tooltip when the mouse hovers over the link. This can be used to let your customers know where the link is going without disturbing the flow of your text." +public static string Link_TitleTextToolTip=>T("Link.TitleTextToolTip"); +///"Link properties" +public static string Link_LabelLink=>T("Link.LabelLink"); +///"Cell type" +public static string Tables_Cell_CellType=>T("Tables.Cell.CellType"); +///"Cell width" +public static string Tables_Cell_LabelWidth=>T("Tables.Cell.LabelWidth"); +///"Horizontal alignment" +public static string Tables_Cell_HorizontalAlignment=>T("Tables.Cell.HorizontalAlignment"); +///"Vertical alignment" +public static string Tables_Cell_VerticalAlignment=>T("Tables.Cell.VerticalAlignment"); +///"Apply changes to" +public static string Tables_Cell_ApplyTo=>T("Tables.Cell.ApplyTo"); +///"Cell Properties" +public static string Tables_Cell_LabelCellProperties=>T("Tables.Cell.LabelCellProperties"); +///"Layout" +public static string Tables_Cell_LabelLayout=>T("Tables.Cell.LabelLayout"); +///"Data Cell" +public static string Tables_Cell_LabelDataCell=>T("Tables.Cell.LabelDataCell"); +///"Header Cell" +public static string Tables_Cell_LabelHeaderCell=>T("Tables.Cell.LabelHeaderCell"); +///"Left" +public static string Tables_Cell_LabelLeft=>T("Tables.Cell.LabelLeft"); +///"Right" +public static string Tables_Cell_LabelRight=>T("Tables.Cell.LabelRight"); +///"Top" +public static string Tables_Cell_LabelTop=>T("Tables.Cell.LabelTop"); +///"Center" +public static string Tables_Cell_LabelCenter=>T("Tables.Cell.LabelCenter"); +///"Bottom" +public static string Tables_Cell_LabelBottom=>T("Tables.Cell.LabelBottom"); +///"Scope" +public static string Tables_Cell_LabelScope=>T("Tables.Cell.LabelScope"); +///"Current cell" +public static string Tables_Cell_LabelCurrentCell=>T("Tables.Cell.LabelCurrentCell"); +///"All cells in row" +public static string Tables_Cell_LabelAllRowCells=>T("Tables.Cell.LabelAllRowCells"); +///"All cells in table" +public static string Tables_Cell_LabelAllTableCells=>T("Tables.Cell.LabelAllTableCells"); +///"Columns" +public static string Tables_Merge_Columns=>T("Tables.Merge.Columns"); +///"Rows" +public static string Tables_Merge_Rows=>T("Tables.Merge.Rows"); +///"Merge Table Cells" +public static string Tables_Merge_LabelMergeCells=>T("Tables.Merge.LabelMergeCells"); +///"Row in table part" +public static string Tables_Row_Rows=>T("Tables.Row.Rows"); +///"Horizontal Alignment" +public static string Tables_Row_HorizontalAlignment=>T("Tables.Row.HorizontalAlignment"); +///"Vertical Alignment" +public static string Tables_Row_VerticalAlignment=>T("Tables.Row.VerticalAlignment"); +///"Apply changes to" +public static string Tables_Row_ApplyTo=>T("Tables.Row.ApplyTo"); +///"Row Properties" +public static string Tables_Row_LabelRowProperties=>T("Tables.Row.LabelRowProperties"); +///"Layout" +public static string Tables_Row_LabelLayout=>T("Tables.Row.LabelLayout"); +///"Table Head" +public static string Tables_Row_LabelTableHead=>T("Tables.Row.LabelTableHead"); +///"Table Body" +public static string Tables_Row_LabelTableBody=>T("Tables.Row.LabelTableBody"); +///"Table Foot" +public static string Tables_Row_LabelTableFoot=>T("Tables.Row.LabelTableFoot"); +///"Left" +public static string Tables_Row_LabelLeft=>T("Tables.Row.LabelLeft"); +///"Center" +public static string Tables_Row_LabelCenter=>T("Tables.Row.LabelCenter"); +///"Right" +public static string Tables_Row_LabelRight=>T("Tables.Row.LabelRight"); +///"Top" +public static string Tables_Row_LabelTop=>T("Tables.Row.LabelTop"); +///"Bottom" +public static string Tables_Row_LabelBottom=>T("Tables.Row.LabelBottom"); +///"Scope" +public static string Tables_Row_LabelScope=>T("Tables.Row.LabelScope"); +///"Current row" +public static string Tables_Row_LabelCurrentRow=>T("Tables.Row.LabelCurrentRow"); +///"Odd rows in table" +public static string Tables_Row_LabelOddRows=>T("Tables.Row.LabelOddRows"); +///"Even rows in table" +public static string Tables_Row_LabelEvenRows=>T("Tables.Row.LabelEvenRows"); +///"All rows in table" +public static string Tables_Row_LabelAllRows=>T("Tables.Row.LabelAllRows"); +///"Insert Table" +public static string Tables_Table_TitleInsert=>T("Tables.Table.TitleInsert"); +///"Table Properties" +public static string Tables_Table_TitleUpdate=>T("Tables.Table.TitleUpdate"); +///"Columns" +public static string Tables_Table_Columns=>T("Tables.Table.Columns"); +///"Rows" +public static string Tables_Table_Rows=>T("Tables.Table.Rows"); +///"Summary" +public static string Tables_Table_Summary=>T("Tables.Table.Summary"); +///"The summary explains the table content and structure so that people using non-visual browsers (such as blind people) may better understand it. This is especially important for tables without captions." +public static string Tables_Table_SummaryHelp=>T("Tables.Table.SummaryHelp"); +///"Table layout" +public static string Tables_Table_LabelLayout=>T("Tables.Table.LabelLayout"); +///"Table description" +public static string Tables_Table_LabelMeta=>T("Tables.Table.LabelMeta"); +///"Source" +public static string Image_Source=>T("Image.Source"); +///"Alternate text" +public static string Image_AlternativeText=>T("Image.AlternativeText"); +///"The alternate text is displayed as visible text in browsers where images cannot be rendered normally. This may be the case for mobile phone browsers and special browsers for the visually impaired. The alt attribute should clearly describe the content of the image." +public static string Image_AlternativeTextToolTip=>T("Image.AlternativeTextToolTip"); +///"Title text" +public static string Image_TitleText=>T("Image.TitleText"); +///"The title text is rendered as a tooltip when the mouse hovers over the image. An image that might be confusing for the viewer can be instantly clarified by a title." +public static string Image_TitleTextToolTip=>T("Image.TitleTextToolTip"); +///"Image properties" +public static string Image_LabelImage=>T("Image.LabelImage"); +///"Insert Image" +public static string Image_LabelInsertImage=>T("Image.LabelInsertImage"); +///"Image Properties" +public static string Image_LabelImageProperties=>T("Image.LabelImageProperties"); +///"Maximum Width" +public static string Image_MaxWidth=>T("Image.MaxWidth"); +///"If the width of the image is bigger that the specified value, it will be downsized to the specified value." +public static string Image_MaxWidthToolTip=>T("Image.MaxWidthToolTip"); +///"Maximum Height" +public static string Image_MaxHeight=>T("Image.MaxHeight"); +///"If the height of the image is bigger that the specified value, it will be downsized to the specified value." +public static string Image_MaxHeightToolTip=>T("Image.MaxHeightToolTip"); +///"Select Character" +public static string CharMap_LabelSelectSpecialChar=>T("CharMap.LabelSelectSpecialChar"); +///"General" +public static string CharMap_LabelGeneral=>T("CharMap.LabelGeneral"); +///"Alphabetical" +public static string CharMap_LabelAlphabetical=>T("CharMap.LabelAlphabetical"); +///"Math & Symbols" +public static string CharMap_LabelMathSymbols=>T("CharMap.LabelMathSymbols"); +///"Common" +public static string CharMap_LabelCommon=>T("CharMap.LabelCommon"); +///"Quotation" +public static string CharMap_LabelQuotation=>T("CharMap.LabelQuotation"); +///"Currency" +public static string CharMap_LabelCurrency=>T("CharMap.LabelCurrency"); +///"Latin" +public static string CharMap_LabelLatin=>T("CharMap.LabelLatin"); +///"Greek" +public static string CharMap_LabelGreek=>T("CharMap.LabelGreek"); +///"Math and Logic" +public static string CharMap_LabelMathAndLogic=>T("CharMap.LabelMathAndLogic"); +///"Symbols" +public static string CharMap_LabelSymbols=>T("CharMap.LabelSymbols"); +///"Arrows" +public static string CharMap_LabelArrows=>T("CharMap.LabelArrows"); +///"Paste as Text" +public static string TextPaste_Label=>T("TextPaste.Label"); +///"Paste content here. Then press OK." +public static string TextPaste_PasteHereContent=>T("TextPaste.PasteHereContent"); +///"How to spell check ..." +public static string SpellCheck_InfoLabel=>T("SpellCheck.InfoLabel"); +///"How to spell check in the Visual Editor" +public static string SpellCheck_InfoCaption=>T("SpellCheck.InfoCaption"); +///"To get suggestions for a misspelled word, press your SHIFT key down when you invoke the context menu." +public static string SpellCheck_InfoText=>T("SpellCheck.InfoText"); +///"Edit" +public static string Function_Edit=>T("Function.Edit"); +///"Edit {0}" +public static string LaunchButton_Label(object parameter0)=>string.Format(T("LaunchButton.Label"), parameter0); private static string T(string key) { return StringResourceSystemFacade.GetString("Composite.Web.VisualEditor", key); diff --git a/Composite/Core/ResourceSystem/LocalizationFiles.tt b/Composite/Core/ResourceSystem/LocalizationFiles.tt index 2ff472e805..657f862757 100644 --- a/Composite/Core/ResourceSystem/LocalizationFiles.tt +++ b/Composite/Core/ResourceSystem/LocalizationFiles.tt @@ -99,7 +99,7 @@ namespace Composite.Core.ResourceSystem string key = keyAttr.Value; string value = valueAttr.Value; - string propertyName = key.Replace(".", "_").Replace("-", "_"); + string propertyName = key.Replace(".", "_").Replace("-", "_").Replace(" ", "_").Replace("(", "").Replace(")", "").Replace("+", ""); if (char.IsDigit(propertyName[0])) propertyName = "_" + propertyName; int parametersCount = 0; @@ -109,12 +109,12 @@ namespace Composite.Core.ResourceSystem } - output.Append(" /// "%comment%" \r\n" + output.Append("///"%comment%" \r\n" .Replace("%comment%", XmlEncode(value).Replace("\r\n", "\r\n ///"))); if( parametersCount == 0 ) { - output.Append(" public static string %property% { get { return T(\"%key%\"); } } \r\n" + output.Append("public static string %property%=>T(\"%key%\");\r\n" .Replace("%comment%", XmlEncode(value).Replace("\r\n", "\r\n ///")) .Replace("%key%", key) .Replace("%property%", propertyName)); @@ -131,7 +131,7 @@ namespace Composite.Core.ResourceSystem string parametersDefinitionsStr = string.Join(",", parametersDefinitions); string parametersReferencesStr = string.Join(",", parametersReferences); - output.Append(" public static string %property%(%parametersDef%) { return string.Format(T(\"%key%\"), %parametersRef%); } \r\n" + output.Append("public static string %property%(%parametersDef%)=>string.Format(T(\"%key%\"), %parametersRef%);\r\n" .Replace("%key%", key) .Replace("%property%", propertyName) .Replace("%parametersDef%", parametersDefinitionsStr) diff --git a/Composite/Core/Routing/MediaUrls.cs b/Composite/Core/Routing/MediaUrls.cs index dfc8db4887..534e389cbe 100644 --- a/Composite/Core/Routing/MediaUrls.cs +++ b/Composite/Core/Routing/MediaUrls.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Concurrent; using System.Collections.Specialized; +using System.Management; +using System.Web; using Composite.Core.Extensions; using Composite.Core.WebClient; using Composite.Core.WebClient.Media; @@ -266,9 +268,14 @@ private static string BuildPublicUrl(MediaUrlData mediaUrlData) urlProvider = _defaultMediaUrlProvider.Value; } + + + if (mediaUrlData.QueryParameters.Count > 0) { + string mediaUrl; var resizingOptions = ResizingOptions.Parse(mediaUrlData.QueryParameters); + var noneResizingOptions = mediaUrlData.QueryParameters; if (!resizingOptions.IsEmpty) { @@ -276,8 +283,28 @@ private static string BuildPublicUrl(MediaUrlData mediaUrlData) ? urlProvider as IResizableImageUrlProvider : _defaultMediaUrlProvider.Value; - return imageResizableUrlProvider.GetResizedImageUrl(mediaUrlData.MediaStore, mediaUrlData.MediaId, resizingOptions); + mediaUrl = imageResizableUrlProvider.GetResizedImageUrl(mediaUrlData.MediaStore, mediaUrlData.MediaId, resizingOptions); + + foreach (var key in HttpUtility.ParseQueryString(resizingOptions.ToString()).AllKeys) + { + noneResizingOptions.Remove(key); + } } + else + { + mediaUrl = urlProvider.GetPublicMediaUrl(mediaUrlData.MediaStore, mediaUrlData.MediaId); + } + + if (noneResizingOptions.Count > 0) + { + var urlBuilder = new UrlBuilder(mediaUrl); + + urlBuilder.AddQueryParameters(noneResizingOptions); + + return urlBuilder.ToString(); + } + + return mediaUrl; } return urlProvider.GetPublicMediaUrl(mediaUrlData.MediaStore, mediaUrlData.MediaId); diff --git a/Composite/Core/Types/AssemblyFacade.cs b/Composite/Core/Types/AssemblyFacade.cs index 35e7b0dca3..e4d6138333 100644 --- a/Composite/Core/Types/AssemblyFacade.cs +++ b/Composite/Core/Types/AssemblyFacade.cs @@ -179,5 +179,17 @@ public static IEnumerable GetAllAssemblies() return assemblies; } + + internal static bool AssemblyPotentiallyUsesType(Assembly assembly, Type type) + { + Verify.ArgumentNotNull(assembly, nameof(assembly)); + Verify.ArgumentNotNull(type, nameof(type)); + + var typeAssembly = type.Assembly; + string typeAssemblyName = typeAssembly.GetName().Name; + + return assembly == typeAssembly + || assembly.GetReferencedAssemblies().Any(r => r.Name == typeAssemblyName); + } } } diff --git a/Composite/Core/WebClient/BrowserRender.cs b/Composite/Core/WebClient/BrowserRender.cs index e8d4b615a6..73c1dde5d3 100644 --- a/Composite/Core/WebClient/BrowserRender.cs +++ b/Composite/Core/WebClient/BrowserRender.cs @@ -46,7 +46,8 @@ public enum RenderingResultStatus Error = 2, Timeout = 3, PhantomServerTimeout = 4, - PhantomServerIncorrectResponse = 5 + PhantomServerIncorrectResponse = 5, + PhantomServerNoOutput = 6 } public class RenderingResult @@ -193,7 +194,10 @@ private static bool SystemFullyOnline { get { - return (ApplicationOnlineHandlerFacade.IsApplicationOnline && GlobalInitializerFacade.SystemCoreInitialized && !GlobalInitializerFacade.SystemCoreInitializing && SystemSetupFacade.IsSystemFirstTimeInitialized); + return ApplicationOnlineHandlerFacade.IsApplicationOnline + && GlobalInitializerFacade.SystemCoreInitialized + && !GlobalInitializerFacade.SystemCoreInitializing + && SystemSetupFacade.IsSystemFirstTimeInitialized; } } @@ -216,7 +220,15 @@ private static async Task CheckServerAvailabilityAsync(HttpContext context, Http string outputFileName = Path.Combine(TempDirectoryFacade.TempDirectoryPath, "phantomtest.png"); - await PhantomServer.RenderUrlAsync(cookies, testUrl, outputFileName, "test"); + var result = await PhantomServer.RenderUrlAsync(cookies, testUrl, outputFileName, "test"); + + if (result.Status == RenderingResultStatus.PhantomServerTimeout + || result.Status == RenderingResultStatus.PhantomServerIncorrectResponse + || result.Status == RenderingResultStatus.PhantomServerNoOutput) + { + Enabled = false; + Log.LogWarning(LogTitle, "The function preview feature will be turned off as PhantomJs server failed to complete a test HTTP request"); + } } catch (Exception ex) { diff --git a/Composite/Core/WebClient/BrowserRender_PhantomServer.cs b/Composite/Core/WebClient/BrowserRender_PhantomServer.cs index 314bd6599c..dd91c7c4de 100644 --- a/Composite/Core/WebClient/BrowserRender_PhantomServer.cs +++ b/Composite/Core/WebClient/BrowserRender_PhantomServer.cs @@ -8,6 +8,7 @@ using System.Web; using System.Web.Hosting; using Composite.Core.Application; +using Composite.Core.Configuration; using Composite.Core.Extensions; using Composite.Core.IO; using Composite.Core.Parallelization; @@ -40,13 +41,17 @@ private class PhantomServer : IDisposable [SuppressMessage("Composite.IO", "Composite.DotNotUseStreamWriterClass:DotNotUseStreamWriterClass")] private PhantomServer() { + var tempDirectory = PathUtil.Resolve(GlobalSettingsFacade.TempDirectory); + var cachePath = Path.Combine(tempDirectory, "phantomjs_cache"); + var localStoragePath = Path.Combine(tempDirectory, "phantomjs_ls"); + _process = new Process { StartInfo = { WorkingDirectory = _phantomJsFolder, FileName = "\"" + _phantomJsPath + "\"", - Arguments = string.Format("--config={0} {1}", ConfigFileName, ScriptFileName), + Arguments = $"\"--local-storage-path={localStoragePath}\" \"--disk-cache-path={cachePath}\" --config={ConfigFileName} {ScriptFileName}", RedirectStandardOutput = true, RedirectStandardError = true, RedirectStandardInput = true, @@ -116,7 +121,8 @@ public static async Task RenderUrlAsync(HttpCookie[] cookies, s var renderingResult = Instance.RenderUrlImpl(cookies, url, outputImageFilePath, mode); if (renderingResult.Status == RenderingResultStatus.PhantomServerTimeout - || renderingResult.Status == RenderingResultStatus.PhantomServerIncorrectResponse) + || renderingResult.Status == RenderingResultStatus.PhantomServerIncorrectResponse + || renderingResult.Status == RenderingResultStatus.PhantomServerNoOutput) { Log.LogWarning("PhantomServer", "Shutting down PhantomJs server. Reason: {0}, Output: {1}", renderingResult.Status, renderingResult.Output); @@ -158,7 +164,8 @@ private RenderingResult RenderUrlImpl(HttpCookie[] cookies, string url, string o return _stdout.ReadLine(); }); - double timeout = (DateTime.Now - _process.StartTime).TotalSeconds < 120 ? 65 : 30; + var secondsSinceStartup = (DateTime.Now - _process.StartTime).TotalSeconds; + double timeout = secondsSinceStartup < 120 || mode == "test" ? 65 : 30; readerTask.Wait(TimeSpan.FromSeconds(timeout)); @@ -168,6 +175,14 @@ private RenderingResult RenderUrlImpl(HttpCookie[] cookies, string url, string o { case TaskStatus.RanToCompletion: output = readerTask.Result; + if (output == null) + { + return new RenderingResult + { + Status = RenderingResultStatus.PhantomServerNoOutput, + Output = "(null)" + }; + } break; default: return new RenderingResult @@ -277,34 +292,48 @@ void DisposeInternal(bool silent) _stdin.WriteLine("exit"); } - Task errorFeedbackTask = Task.Factory.StartNew(() => + bool streamsClosed = false; + + Task errorFeedbackTask = null; + string processOutputSummary = null; + + if (!silent) { - try + errorFeedbackTask = Task.Factory.StartNew(() => { - string stdOut = _stdout.ReadToEnd(); - string stdError = _stderror.ReadToEnd(); + try + { + if (streamsClosed) + { + // Simplifies debugging + return null; + } - string result = !string.IsNullOrEmpty(stdOut) ? "output: '{0}'".FormatWith(stdOut) : ""; + string stdOut = _stdout.ReadToEnd(); + string stdError = _stderror.ReadToEnd(); - if (!string.IsNullOrEmpty(stdError)) - { - if (result.Length > 0) { result += ", ";} + string result = !string.IsNullOrEmpty(stdOut) ? $"stdout: '{stdOut}'" : ""; - result += string.Format("error: '{0}'", stdError); + if (!string.IsNullOrWhiteSpace(stdError)) + { + if (result.Length > 0) { result += Environment.NewLine; } + + result += $"stderr: {stdError}"; + } + + return result; + } + catch (Exception ex) + { + return ex.Message; } + }); - return result; - } - catch (Exception ex) - { - return ex.Message; - } - }); - - errorFeedbackTask.Wait(500); + errorFeedbackTask.Wait(500); - string errorFeedback = errorFeedbackTask.Status == TaskStatus.RanToCompletion ? errorFeedbackTask.Result : "Process Hang"; + processOutputSummary = errorFeedbackTask.Status == TaskStatus.RanToCompletion ? errorFeedbackTask.Result : "Process Hang"; + } if (!processHasExited) { @@ -319,6 +348,8 @@ void DisposeInternal(bool silent) if (!processHasExited) { + streamsClosed = true; + _stdin.Close(); _stdout.Close(); _stderror.Close(); @@ -329,6 +360,8 @@ void DisposeInternal(bool silent) int exitCode = _process.ExitCode; + streamsClosed = true; + _stdin.Dispose(); _stdout.Dispose(); _stderror.Dispose(); @@ -338,14 +371,21 @@ void DisposeInternal(bool silent) bool meaningfullExitCode = exitCode != 0 && exitCode != -1073741819 /* Access violation, the ExitCode property returns this value by default for some reason */; - if (!silent && (meaningfullExitCode || errorFeedbackTask.Status != TaskStatus.RanToCompletion)) + if (silent) + { + return; + } + + if (meaningfullExitCode + || errorFeedbackTask.Status != TaskStatus.RanToCompletion + || !string.IsNullOrEmpty(processOutputSummary)) { string errorMessage = "Error executing PhantomJs.exe"; if (meaningfullExitCode) errorMessage += "; Exit code: {0}".FormatWith(exitCode); - if (!string.IsNullOrEmpty(errorFeedback)) + if (!string.IsNullOrEmpty(processOutputSummary)) { - errorMessage += ", " + errorMessage; + errorMessage += Environment.NewLine + processOutputSummary; } throw new InvalidOperationException(errorMessage); } diff --git a/Composite/Core/WebClient/FunctionBoxRouteHandler.cs b/Composite/Core/WebClient/FunctionBoxRouteHandler.cs index 4368077e73..a469bfa733 100644 --- a/Composite/Core/WebClient/FunctionBoxRouteHandler.cs +++ b/Composite/Core/WebClient/FunctionBoxRouteHandler.cs @@ -10,6 +10,7 @@ using System.Web.Routing; using Composite.C1Console.Drawing; using Composite.C1Console.Security; +using Composite.Core.Configuration; using Composite.Core.Extensions; using Composite.Core.WebClient.Renderings; @@ -82,7 +83,7 @@ public override async Task ProcessRequestAsync(HttpContext context) try { - if (encodedMarkup != null) + if (GlobalSettingsFacade.FunctionPreviewEnabled && encodedMarkup != null) { try { @@ -105,7 +106,7 @@ public override async Task ProcessRequestAsync(HttpContext context) } catch (Exception ex) { - Log.LogError("Function preview", ex.Message); + Log.LogError("Function preview", ex); } } @@ -132,10 +133,7 @@ public override async Task ProcessRequestAsync(HttpContext context) } finally { - if (previewImage != null) - { - previewImage.Dispose(); - } + previewImage?.Dispose(); } } catch (Exception ex) @@ -166,12 +164,14 @@ public override async Task ProcessRequestAsync(HttpContext context) private static void GenerateBoxImage(HttpContext context, string boxtype, string title, Bitmap previewImage, List textLines) { - string filePath = context.Server.MapPath(UrlUtils.ResolveAdminUrl(string.Format("images/{0}box.png", boxtype))); - using (Bitmap bitmap = (Bitmap) Bitmap.FromFile(filePath)) + string filePath = context.Server.MapPath(UrlUtils.ResolveAdminUrl($"images/{boxtype}box.png")); + using (var bitmap = (Bitmap) Bitmap.FromFile(filePath)) { - var imageCreator = new ImageTemplatedBoxCreator(bitmap, new Point(55, 40), new Point(176, 78)); + var imageCreator = new ImageTemplatedBoxCreator(bitmap, new Point(55, 40), new Point(176, 78)) + { + MinHeight = 50 + }; - imageCreator.MinHeight = 50; int textLeftPadding = (boxtype == "function" ? 30 : 36); @@ -240,9 +240,6 @@ private static List GetDescriptionLines(string description) /// - public override bool IsReusable - { - get { return true; } - } + public override bool IsReusable => true; } } diff --git a/Composite/Core/WebClient/HttpModules/AdministrativeAuthorizationHttpModule.cs b/Composite/Core/WebClient/HttpModules/AdministrativeAuthorizationHttpModule.cs index 152d6cd9e7..7132541119 100644 --- a/Composite/Core/WebClient/HttpModules/AdministrativeAuthorizationHttpModule.cs +++ b/Composite/Core/WebClient/HttpModules/AdministrativeAuthorizationHttpModule.cs @@ -68,8 +68,8 @@ static AdministrativeAuthorizationHttpModule() if (adminFolderExists) { - LoadConfiguration(); _allowC1ConsoleRequests = true; + LoadConfiguration(); } } @@ -145,14 +145,14 @@ private void context_AuthenticateRequest(object sender, EventArgs e) } Log.LogWarning("Authorization", "DENIED {0} access to {1}", context.Request.UserHostAddress, currentPath); - string redirectUrl = string.Format("{0}?ReturnUrl={1}", _loginPagePath, HttpUtility.UrlEncode(context.Request.Url.PathAndQuery, Encoding.UTF8)); + string redirectUrl =$"{_loginPagePath}?ReturnUrl={HttpUtility.UrlEncode(context.Request.Url.PathAndQuery, Encoding.UTF8)}"; context.Response.Redirect(redirectUrl, true); return; } // On authenticated request make sure these resources gets compiled / launched. - if (ApplicationOnlineHandlerFacade.IsApplicationOnline && GlobalInitializerFacade.SystemCoreInitialized && !GlobalInitializerFacade.SystemCoreInitializing && SystemSetupFacade.IsSystemFirstTimeInitialized) + if (IsConsoleOnline) { BrowserRender.EnsureReadiness(); BuildManagerHelper.InitializeControlPreLoading(); @@ -160,6 +160,11 @@ private void context_AuthenticateRequest(object sender, EventArgs e) } + private bool IsConsoleOnline => + ApplicationOnlineHandlerFacade.IsApplicationOnline + && GlobalInitializerFacade.SystemCoreInitialized + && !GlobalInitializerFacade.SystemCoreInitializing + && SystemSetupFacade.IsSystemFirstTimeInitialized; private bool UserOptedOutOfHttps(HttpContext context) { diff --git a/Composite/Core/WebClient/Renderings/FunctionPreview.cs b/Composite/Core/WebClient/Renderings/FunctionPreview.cs index 8018543990..651f364ba2 100644 --- a/Composite/Core/WebClient/Renderings/FunctionPreview.cs +++ b/Composite/Core/WebClient/Renderings/FunctionPreview.cs @@ -1,6 +1,7 @@ using System.Threading.Tasks; using System.Web; using Composite.C1Console.Events; +using Composite.Core.Configuration; namespace Composite.Core.WebClient.Renderings { @@ -41,6 +42,11 @@ internal static async Task GetPreviewFunctionPreviewImageFile(HttpContex /// public static int GetFunctionPreviewHash() { + if (!GlobalSettingsFacade.FunctionPreviewEnabled) + { + return 0; + } + return BrowserRender.GetLastCacheUpdateTime(RenderingMode).GetHashCode(); } } diff --git a/Composite/Core/WebClient/Services/TreeServiceObjects/ClientAction.cs b/Composite/Core/WebClient/Services/TreeServiceObjects/ClientAction.cs index b808c66fec..cf5be2eab3 100644 --- a/Composite/Core/WebClient/Services/TreeServiceObjects/ClientAction.cs +++ b/Composite/Core/WebClient/Services/TreeServiceObjects/ClientAction.cs @@ -1,5 +1,6 @@ using Composite.Core.ResourceSystem; using System; +using Composite.C1Console.Elements; namespace Composite.Core.WebClient.Services.TreeServiceObjects @@ -35,6 +36,9 @@ public sealed class ClientAction /// public int ActivePositions { get; set; } + /// + public DialogStrings BulkExecutionDialog { get; set; } + /// public string ActionKey { diff --git a/Composite/Core/WebClient/Services/TreeServiceObjects/ExtensionMethods/ElementActionExtensionMethods.cs b/Composite/Core/WebClient/Services/TreeServiceObjects/ExtensionMethods/ElementActionExtensionMethods.cs index 00a4b00592..18dd33abef 100644 --- a/Composite/Core/WebClient/Services/TreeServiceObjects/ExtensionMethods/ElementActionExtensionMethods.cs +++ b/Composite/Core/WebClient/Services/TreeServiceObjects/ExtensionMethods/ElementActionExtensionMethods.cs @@ -21,6 +21,7 @@ from action in actions ToolTip = action.VisualData.ToolTip, Disabled = action.VisualData.Disabled, Icon = action.VisualData.Icon, + BulkExecutionDialog = action.VisualData.BulkExecutionDialog, CheckboxStatus = GetCheckboxStatusString(action.VisualData.ActionCheckedStatus), ActivePositions = (int)action.VisualData.ActivePositions, TagValue = action.TagValue, diff --git a/Composite/Core/WebClient/Services/WysiwygEditor/PageTemplatePreview.cs b/Composite/Core/WebClient/Services/WysiwygEditor/PageTemplatePreview.cs index 54f8c97615..245d917583 100644 --- a/Composite/Core/WebClient/Services/WysiwygEditor/PageTemplatePreview.cs +++ b/Composite/Core/WebClient/Services/WysiwygEditor/PageTemplatePreview.cs @@ -36,7 +36,8 @@ public class PlaceholderInformation public static bool GetPreviewInformation(HttpContext context, Guid pageId, Guid templateId, out string imageFilePath, out PlaceholderInformation[] placeholders) { int updateHash = BrowserRender.GetLastCacheUpdateTime(RenderingMode).GetHashCode(); - string requestUrl = new UrlBuilder(context.Request.Url.ToString()).ServerUrl + ServiceUrl + "?p=" + pageId + "&t=" + templateId + "&hash=" + updateHash; + string requestUrl = new UrlBuilder(context.Request.Url.ToString()).ServerUrl + + ServiceUrl + $"?p={pageId}&t={templateId}&hash={updateHash}"; BrowserRender.RenderingResult result = null; @@ -76,19 +77,24 @@ public static bool GetPreviewInformation(HttpContext context, Guid pageId, Guid foreach (var infoPart in output.Substring(templateInfoPrefix.Length).Split('|')) { string[] parts = infoPart.Split(','); - Verify.That(parts.Length == 5, "Incorrectly serialized template part info: " + infoPart); - int left = Int32.Parse(parts[1]); - int top = Int32.Parse(parts[2]); - int width = Int32.Parse(parts[3]); - int height = Int32.Parse(parts[4]); + double left, top, width, height; + + if (parts.Length != 5 + || !double.TryParse(parts[1], out left) + || !double.TryParse(parts[2], out top) + || !double.TryParse(parts[3], out width) + || !double.TryParse(parts[4], out height)) + { + throw new InvalidOperationException($"Incorrectly serialized template part info: {infoPart}"); + } var zoom = 1.0; pList.Add(new PlaceholderInformation { PlaceholderId = parts[0], - ClientRectangle = new Rectangle(left, top, width, height), + ClientRectangle = new Rectangle((int)left, (int)top, (int)width, (int)height), ClientRectangleWithZoom = new Rectangle( (int)Math.Round(zoom * left), (int)Math.Round(zoom * top), diff --git a/Composite/Core/WebClient/Setup/SetupServiceFacade.cs b/Composite/Core/WebClient/Setup/SetupServiceFacade.cs index 5e9f34926c..5f7eca4679 100644 --- a/Composite/Core/WebClient/Setup/SetupServiceFacade.cs +++ b/Composite/Core/WebClient/Setup/SetupServiceFacade.cs @@ -12,7 +12,6 @@ using Composite.C1Console.Security; using Composite.Core.Application; using Composite.Core.Configuration; -using Composite.Core.Extensions; using Composite.Core.IO; using Composite.Core.Localization; using Composite.Core.PackageSystem; @@ -125,12 +124,16 @@ public static bool SetUp(string setupDescriptionXml, string username, string pas UserSettings.SetUserCultureInfo(username, userCulture); + CultureInfo installedLanguagePackageCulture = InstallLanguagePackage(userCulture); + + UserSettings.SetUserC1ConsoleUiLanguage(username, installedLanguagePackageCulture ?? StringResourceSystemFacade.GetDefaultStringCulture()); + using (new DataScope(locale)) { for (int i = 0; i < packageUrls.Length; i++) { Log.LogVerbose(VerboseLogTitle, "Installing package from url " + packageUrls[i]); - bool packageValidationSucceded = InstallPackage(packageUrls[i], packages[i]); + InstallPackage(packageUrls[i], packages[i]); // Releasing a reference to reduce memory usage packages[i].Dispose(); @@ -138,10 +141,6 @@ public static bool SetUp(string setupDescriptionXml, string username, string pas } } - CultureInfo installedLanguagePackageCulture = InstallLanguagePackage(userCulture); - - UserSettings.SetUserC1ConsoleUiLanguage(username, installedLanguagePackageCulture ?? StringResourceSystemFacade.GetDefaultStringCulture()); - RegisterSetup(setupRegistrationDescription.ToString(), ""); Log.LogInformation(VerboseLogTitle, "Done setting up the system for the first time! Enjoy!"); @@ -182,9 +181,9 @@ public static XElement GetSetupDescription() { SetupSoapClient client = CreateClient(); - XElement xml = client.GetSetupDescription(RuntimeInformation.ProductVersion.ToString(), InstallationInformationFacade.InstallationId.ToString()); - - return xml; + return client.GetSetupDescription( + RuntimeInformation.ProductVersion.ToString(), + InstallationInformationFacade.InstallationId.ToString()); } @@ -194,9 +193,8 @@ public static XElement GetLanguages() { SetupSoapClient client = CreateClient(); - XElement xml = client.GetLanguages(RuntimeInformation.ProductVersion.ToString(), InstallationInformationFacade.InstallationId.ToString()); - - return xml; + return client.GetLanguages(RuntimeInformation.ProductVersion.ToString(), + InstallationInformationFacade.InstallationId.ToString()); } @@ -206,9 +204,11 @@ public static Dictionary GetLanguagePackages() { SetupSoapClient client = CreateClient(); - XElement xml = client.GetLanguagePackages(RuntimeInformation.ProductVersion.ToString(), InstallationInformationFacade.InstallationId.ToString()); + XElement xml = client.GetLanguagePackages(RuntimeInformation.ProductVersion.ToString(), + InstallationInformationFacade.InstallationId.ToString()); - return xml.Descendants("Language").ToDictionary(f => new CultureInfo(f.Attribute("key").Value), f =>f.Attribute("url").Value); + return xml.Descendants("Language") + .ToDictionary(f => new CultureInfo(f.Attribute("key").Value), f => f.Attribute("url").Value); } @@ -217,10 +217,11 @@ public static XmlDocument GetGetLicense() { SetupSoapClient client = CreateClient(); - XElement xml = client.GetGetLicense(RuntimeInformation.ProductVersion.ToString(), InstallationInformationFacade.InstallationId.ToString()); + XElement xml = client.GetGetLicense(RuntimeInformation.ProductVersion.ToString(), + InstallationInformationFacade.InstallationId.ToString()); - XmlDocument doc = new XmlDocument(); - using (XmlReader reader = xml.CreateReader()) + var doc = new XmlDocument(); + using (var reader = xml.CreateReader()) { doc.Load(reader); } @@ -234,7 +235,8 @@ private static void RegisterSetup(string setupDescriptionXml, string exception) { SetupSoapClient client = CreateClient(); - client.RegisterSetup(RuntimeInformation.ProductVersion.ToString(), InstallationInformationFacade.InstallationId.ToString(), setupDescriptionXml, exception); + client.RegisterSetup(RuntimeInformation.ProductVersion.ToString(), + InstallationInformationFacade.InstallationId.ToString(), setupDescriptionXml, exception); } @@ -270,15 +272,16 @@ private static MemoryStream DownloadPackage(string packageUrl) try { - HttpWebRequest request = (HttpWebRequest) WebRequest.Create(packageUrl); - HttpWebResponse response = (HttpWebResponse) request.GetResponse(); + var request = (HttpWebRequest) WebRequest.Create(packageUrl); + var response = (HttpWebResponse) request.GetResponse(); - byte[] buffer = new byte[32768]; + const int bufferSize = 32768; + byte[] buffer = new byte[bufferSize]; using (Stream inputStream = response.GetResponseStream()) { int read; - while ((read = inputStream.Read(buffer, 0, 32768)) > 0) + while ((read = inputStream.Read(buffer, 0, bufferSize)) > 0) { packageStream.Write(buffer, 0, read); } @@ -289,7 +292,7 @@ private static MemoryStream DownloadPackage(string packageUrl) catch(ThreadAbortException) {} catch(Exception ex) { - throw new InvalidOperationException("Failed to download package '{0}'".FormatWith(packageUrl), ex); + throw new InvalidOperationException($"Failed to download package '{packageUrl}'", ex); } packageStream.Seek(0, SeekOrigin.Begin); @@ -297,40 +300,25 @@ private static MemoryStream DownloadPackage(string packageUrl) } - private static bool InstallPackage(string packageUrl, Stream packageStream) + private static void InstallPackage(string packageUrl, Stream packageStream) { - try + PackageManagerInstallProcess packageManagerInstallProcess = PackageManager.Install(packageStream, true); + if (packageManagerInstallProcess.PreInstallValidationResult.Count > 0) { - PackageManagerInstallProcess packageManagerInstallProcess = PackageManager.Install(packageStream, true); - if (packageManagerInstallProcess.PreInstallValidationResult.Count > 0) - { - LogValidationResults(packageManagerInstallProcess.PreInstallValidationResult); - return false; - } + throw WrapFirstValidationException(packageUrl, packageManagerInstallProcess.PreInstallValidationResult); + } - List validationResult = packageManagerInstallProcess.Validate(); + List validationResult = packageManagerInstallProcess.Validate(); - if (validationResult.Count > 0) - { - LogValidationResults(validationResult); - return false; - } - - List installResult = packageManagerInstallProcess.Install(); - if (installResult.Count > 0) - { - LogValidationResults(installResult); - return false; - } - - return true; + if (validationResult.Count > 0) + { + throw WrapFirstValidationException(packageUrl, validationResult); } - catch (Exception ex) + + List installResult = packageManagerInstallProcess.Install(); + if (installResult.Count > 0) { - Log.LogCritical(LogTitle, "Error installing package: " + packageUrl); - Log.LogCritical(LogTitle, ex); - - throw; + throw WrapFirstValidationException(packageUrl, installResult); } } @@ -339,15 +327,17 @@ private static bool InstallPackage(string packageUrl, Stream packageStream) private static SetupSoapClient CreateClient() { - var basicHttpBinding = new BasicHttpBinding(); var timeout = TimeSpan.FromMinutes(RuntimeInformation.IsDebugBuild ? 2 : 1); - basicHttpBinding.CloseTimeout = timeout; - basicHttpBinding.OpenTimeout = timeout; - basicHttpBinding.ReceiveTimeout = timeout; - basicHttpBinding.SendTimeout = timeout; + var basicHttpBinding = new BasicHttpBinding + { + CloseTimeout = timeout, + OpenTimeout = timeout, + ReceiveTimeout = timeout, + SendTimeout = timeout, + MaxReceivedMessageSize = int.MaxValue + }; - basicHttpBinding.MaxReceivedMessageSize = int.MaxValue; if (PackageServerUrl.StartsWith("https://")) { @@ -365,17 +355,22 @@ private static IEnumerable GetPackageUrls(XElement setupDescription) SetupSoapClient client = CreateClient(); - XElement originalSetupDescription = client.GetSetupDescription(RuntimeInformation.ProductVersion.ToString(), InstallationInformationFacade.InstallationId.ToString()); + XElement originalSetupDescription = client.GetSetupDescription(RuntimeInformation.ProductVersion.ToString(), + InstallationInformationFacade.InstallationId.ToString()); var element = (from elm in originalSetupDescription.Descendants() - where elm.Attribute(KeyAttributeName) != null && (int)elm.Attribute(KeyAttributeName) == maxkey + let keyAttr = elm.Attribute(KeyAttributeName) + where keyAttr != null && (int)keyAttr == maxkey select elm).Single(); foreach (XElement packageElement in setupDescription.Descendants(PackageElementName)) { XAttribute idAttribute = packageElement.Attribute(IdAttributeName); - if (idAttribute == null) throw new InvalidOperationException("Setup XML malformed"); + if (idAttribute == null) + { + throw new InvalidOperationException($"Setup XML malformed, '{IdAttributeName}' is missing on a '{PackageElementName}' element"); + } string url = (from elm in element.Descendants(PackageElementName) @@ -397,12 +392,12 @@ private static string ResolvePackageUrl(string url) } - private static void LogValidationResults(IEnumerable packageFragmentValidationResults) + private static Exception WrapFirstValidationException(string packageUrl, IEnumerable packageFragmentValidationResults) { - foreach (PackageFragmentValidationResult packageFragmentValidationResult in packageFragmentValidationResults) - { - throw new InvalidOperationException(packageFragmentValidationResult.Message); - } + var firstError = packageFragmentValidationResults.First(); + var innerException = firstError.Exception ?? new InvalidOperationException(firstError.Message); + + throw new InvalidOperationException($"Failed to install package '{packageUrl}'", innerException); } } } diff --git a/Composite/Data/DataFacadeImpl.cs b/Composite/Data/DataFacadeImpl.cs index 19cd2d5c75..b84dee85ed 100644 --- a/Composite/Data/DataFacadeImpl.cs +++ b/Composite/Data/DataFacadeImpl.cs @@ -32,12 +32,11 @@ static DataFacadeImpl() DataEventSystemFacade.SubscribeToDataAfterUpdate(OnDataChanged, true); DataEventSystemFacade.SubscribeToDataDeleted(OnDataChanged, true); - DataEventSystemFacade.SubscribeToDataBeforeAdd(SetChangeHistoryInformation, true); - DataEventSystemFacade.SubscribeToDataBeforeUpdate(SetChangeHistoryInformation, true); + DataEventSystemFacade.SubscribeToDataBeforeAdd(SetCreationHistoryInformation, true); + DataEventSystemFacade.SubscribeToDataBeforeAdd(SetChangeHistoryInformation, true); + DataEventSystemFacade.SubscribeToDataBeforeUpdate(SetChangeHistoryInformation, true); } - - public IQueryable GetData(bool useCaching, IEnumerable providerNames) where T : class, IData { @@ -637,16 +636,16 @@ private static void OnDataChanged(object sender, DataEventArgs dataEventArgs) private static void SetChangeHistoryInformation(object sender, DataEventArgs dataEventArgs) { - IData data = dataEventArgs.Data; - if (data != null && data is IChangeHistory) + IChangeHistory data = dataEventArgs.Data as IChangeHistory; + if (data != null) { - (data as IChangeHistory).ChangeDate = DateTime.Now; + data.ChangeDate = DateTime.Now; try { if (UserValidationFacade.IsLoggedIn()) { - (data as IChangeHistory).ChangedBy = UserValidationFacade.GetUsername(); + data.ChangedBy = UserValidationFacade.GetUsername(); } } catch @@ -654,6 +653,27 @@ private static void SetChangeHistoryInformation(object sender, DataEventArgs dat // silent } } - } + } + + private static void SetCreationHistoryInformation(object sender, DataEventArgs dataEventArgs) + { + ICreationHistory data = dataEventArgs.Data as ICreationHistory; + if (data != null) + { + data.CreationDate = DateTime.Now; + + try + { + if (UserValidationFacade.IsLoggedIn()) + { + data.CreatedBy = UserValidationFacade.GetUsername(); + } + } + catch + { + // silent + } + } + } } } diff --git a/Composite/Data/DataMetaDataFacade.cs b/Composite/Data/DataMetaDataFacade.cs index ce7d1678ab..6b21a6a065 100644 --- a/Composite/Data/DataMetaDataFacade.cs +++ b/Composite/Data/DataMetaDataFacade.cs @@ -196,12 +196,9 @@ public static DataTypeDescriptor GetDataTypeDescriptor(Guid dataTypeId, bool all if (!allowDataTypeCreation) return null; - var compositeAssemblyName = typeof(IData).Assembly.GetName().Name; - foreach (Assembly assembly in AssemblyFacade.GetLoadedAssembliesFromBin()) { - if (assembly != typeof(IData).Assembly - && !assembly.GetReferencedAssemblies().Any(r => r.Name == compositeAssemblyName)) + if (!AssemblyFacade.AssemblyPotentiallyUsesType(assembly, typeof(IData))) { // Ignoring assemblies that aren't referencing Composite.dll continue; diff --git a/Composite/Data/DataTypeTypesManager.cs b/Composite/Data/DataTypeTypesManager.cs index aee25d3422..5e41a03ebe 100644 --- a/Composite/Data/DataTypeTypesManager.cs +++ b/Composite/Data/DataTypeTypesManager.cs @@ -4,7 +4,6 @@ using System.Linq; using System.Reflection; using Composite.Core; -using Composite.Core.Extensions; using Composite.Core.IO; using Composite.Core.Types; using Composite.Data.DynamicTypes; @@ -34,7 +33,7 @@ internal static class DataTypeTypesManager /// Returns the data type. Never null. public static Type GetDataType(Guid dataTypeId) { - DataTypeDescriptor dataTypeDescriptor = DataMetaDataFacade.GetDataTypeDescriptor(dataTypeId); + var dataTypeDescriptor = DataMetaDataFacade.GetDataTypeDescriptor(dataTypeId); if (dataTypeDescriptor == null) throw new InvalidOperationException("No data type exists with the given data type id: " + dataTypeId); return GetDataType(dataTypeDescriptor); @@ -105,6 +104,11 @@ public static void AddNewAssembly(Assembly assembly) /// public static void AddNewAssembly(Assembly assembly, bool logTypeLoadErrors) { + if (!AssemblyFacade.AssemblyPotentiallyUsesType(assembly, typeof (IData))) + { + return; + } + try { var types = assembly.GetTypes(); @@ -117,7 +121,7 @@ public static void AddNewAssembly(Assembly assembly, bool logTypeLoadErrors) { var exceptionToLog = exception.LoaderExceptions != null ? exception.LoaderExceptions.First() : exception; - Log.LogError(LogTitle, new Exception("Failed to load assebmly '{0}'".FormatWith(assembly.FullName), exceptionToLog)); + Log.LogError(LogTitle, new Exception($"Failed to load assembly '{assembly.FullName}'", exceptionToLog)); } } } diff --git a/Composite/Data/DynamicTypes/DataTypeDescriptorFormsHelper.cs b/Composite/Data/DynamicTypes/DataTypeDescriptorFormsHelper.cs index 5fc95d6e8f..c9d287829d 100644 --- a/Composite/Data/DynamicTypes/DataTypeDescriptorFormsHelper.cs +++ b/Composite/Data/DynamicTypes/DataTypeDescriptorFormsHelper.cs @@ -262,8 +262,8 @@ private static Dictionary GetAvailablePublishingFlowTransitions( { var transitionNames = new Dictionary { - {GenericPublishProcessController.Draft, Texts.DraftTransition}, - {GenericPublishProcessController.AwaitingApproval, Texts.AwaitingApprovalTransition} + {GenericPublishProcessController.Draft, LocalizationFiles.Composite_Management.PublishingStatus_draft}, + {GenericPublishProcessController.AwaitingApproval, LocalizationFiles.Composite_Management.PublishingStatus_awaitingApproval} }; var username = UserValidationFacade.GetUsername(); @@ -275,7 +275,7 @@ private static Dictionary GetAvailablePublishingFlowTransitions( if (GenericPublishProcessController.AwaitingPublicationActionPermissionType.Contains(permissionType)) { transitionNames.Add(GenericPublishProcessController.AwaitingPublication, - LocalizationFiles.Composite_Management.Website_Forms_Administrative_EditPage_AwaitingPublicationTransition); + LocalizationFiles.Composite_Management.PublishingStatus_awaitingPublication); break; } } diff --git a/Composite/Data/DynamicTypes/DynamicTypeManager.cs b/Composite/Data/DynamicTypes/DynamicTypeManager.cs index 4aa1d2dade..af6f4a3f86 100644 --- a/Composite/Data/DynamicTypes/DynamicTypeManager.cs +++ b/Composite/Data/DynamicTypes/DynamicTypeManager.cs @@ -265,26 +265,25 @@ public static void EnsureCreateStore(Type interfaceType, string providerName) dataTypeDescriptor = BuildNewDataTypeDescriptor(interfaceType); } + IEnumerable dynamicProviderNames; + if (providerName == null) { // Checking if any of exising dynamic data providers already has a store for the specified interface type - if (DataProviderRegistry.DynamicDataProviderNames - .Select(DataProviderPluginFacade.GetDataProvider) - .Cast() - .Any(dynamicDataProvider => dynamicDataProvider.GetKnownInterfaces().Contains(interfaceType))) - { - return; - } - providerName = DataProviderRegistry.DefaultDynamicTypeDataProviderName; + dynamicProviderNames = DataProviderRegistry.DynamicDataProviderNames; } else { - var dataProvider = (IDynamicDataProvider) DataProviderPluginFacade.GetDataProvider(providerName); - if (dataProvider.GetKnownInterfaces().Contains(interfaceType)) - { - return; - } + dynamicProviderNames = new[] {providerName}; + } + + if (dynamicProviderNames + .Select(DataProviderPluginFacade.GetDataProvider) + .Cast() + .Any(dynamicDataProvider => dynamicDataProvider.GetKnownInterfaces().Contains(interfaceType))) + { + return; } CreateStore(providerName, dataTypeDescriptor, true); diff --git a/Composite/Data/ForeignKeyAttribute.cs b/Composite/Data/ForeignKeyAttribute.cs index 906377c3d9..2572887b50 100644 --- a/Composite/Data/ForeignKeyAttribute.cs +++ b/Composite/Data/ForeignKeyAttribute.cs @@ -27,15 +27,15 @@ namespace Composite.Data [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] public sealed class ForeignKeyAttribute : Attribute { - private string _interfaceTypeManagerName = null; + private string _interfaceTypeManagerName; - private Type _interfaceType = null; - private string _keyPropertyName = null; + private Type _interfaceType; + private string _keyPropertyName; private object _nullReferenceValue; - private bool _isNullReferenceValueSet = false; + private bool _isNullReferenceValueSet; - private object _lock = new object(); + private readonly object _lock = new object(); @@ -57,7 +57,7 @@ public ForeignKeyAttribute(Type interfaceType, string keyPropertyName) /// A string that will yield a type from the TypeManager. public ForeignKeyAttribute(string interfaceTypeManagerName) { - if (string.IsNullOrEmpty(interfaceTypeManagerName)) throw new ArgumentNullException("interfaceTypeManagerName"); + Verify.ArgumentNotNullOrEmpty(interfaceTypeManagerName, nameof(interfaceTypeManagerName)); _interfaceTypeManagerName = interfaceTypeManagerName; } @@ -65,15 +65,15 @@ public ForeignKeyAttribute(string interfaceTypeManagerName) /// - /// If the "parent" data is deleted and this is set to true, then the datas that - /// references the parent is also deleted. + /// If the "parent" data is deleted and this is set to true, then the data that + /// refer to the parent is also deleted. /// public bool AllowCascadeDeletes { get; set; } /// /// This value is used when foreign key integrity is performed. - /// If this is not set, the data that the foreign key is pointing to must always exists. + /// If this is not set, the data that the foreign key is pointing to must always exists. /// public object NullReferenceValue { diff --git a/Composite/Data/ICreationHistory.cs b/Composite/Data/ICreationHistory.cs new file mode 100644 index 0000000000..d8559b149a --- /dev/null +++ b/Composite/Data/ICreationHistory.cs @@ -0,0 +1,27 @@ +using System; + +namespace Composite.Data +{ + /// + /// + /// + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] + public interface ICreationHistory: IData + { + /// + [StoreFieldType(PhysicalStoreFieldType.DateTime)] + [ImmutableFieldId("{59E10FE8-EC55-4b10-B17A-FDE3EB4690F1}")] + [DefaultFieldNowDateTimeValue()] + [FunctionBasedNewInstanceDefaultFieldValue("")] + [FieldPosition(502)] + DateTime CreationDate { get; set; } + + + /// + [StoreFieldType(PhysicalStoreFieldType.String, 64, IsNullable = true)] + [ImmutableFieldId("{617E34B5-E035-4107-9109-DB0B33078B2B}")] + [DefaultFieldStringValue("")] + [FieldPosition(503)] + string CreatedBy { get; set; } + } +} diff --git a/Composite/Data/ProcessControlled/ProcessControllers/GenericPublishProcessController/GenericPublishProcessController.cs b/Composite/Data/ProcessControlled/ProcessControllers/GenericPublishProcessController/GenericPublishProcessController.cs index cec9cb8e4b..6abfc48b92 100644 --- a/Composite/Data/ProcessControlled/ProcessControllers/GenericPublishProcessController/GenericPublishProcessController.cs +++ b/Composite/Data/ProcessControlled/ProcessControllers/GenericPublishProcessController/GenericPublishProcessController.cs @@ -20,10 +20,10 @@ namespace Composite.Data.ProcessControlled.ProcessControllers.GenericPublishProcessController { - /// + /// /// /// - [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public sealed class GenericPublishProcessController : IPublishProcessController { private static readonly string _oldPublishedStatusTag = "OldPublishedStatus"; @@ -40,6 +40,8 @@ public sealed class GenericPublishProcessController : IPublishProcessController /// public const string Published = "published"; + private static readonly string _bulkPublishingCommands = "BulkPublishingCommands"; + private static readonly string _backToAwaitingApproval = "awaitingApprovalBack"; private static readonly string _forwardToAwaitingApproval = "awaitingApprovalForward"; private static readonly string _backToAwaitingPublication = "awaitingPublicationBack"; @@ -107,13 +109,13 @@ public GenericPublishProcessController() _transitionNames = new Dictionary { - {Draft, "Draft"}, - {AwaitingApproval, "Awaiting Approval"}, - {AwaitingPublication, "Awaiting Publication"}, - {Published, "Published"} + {Draft, StringResourceSystemFacade.GetString("Composite.Management", "PublishingStatus.draft")}, + {AwaitingApproval, StringResourceSystemFacade.GetString("Composite.Management", "PublishingStatus.awaitingApproval")}, + {AwaitingPublication, StringResourceSystemFacade.GetString("Composite.Management", "PublishingStatus.awaitingPublication")}, + {Published, StringResourceSystemFacade.GetString("Composite.Management", "PublishingStatus.published")} }; - Func sendBackToDraftAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendToDraft))) + Func sendBackToDraftAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendToDraft) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData { @@ -128,11 +130,12 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands }; - Func sendForwardToAwaitingApprovalAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForApproval))) + Func sendForwardToAwaitingApprovalAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForApproval) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData { @@ -147,11 +150,12 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands }; - Func sendForwardToAwaitingPublicationAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForPublication))) + Func sendForwardToAwaitingPublicationAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForPublication) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData { @@ -166,11 +170,12 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands }; - Func publishAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.Publish))) + Func publishAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.Publish) {DoIgnoreEntityTokenLocking = true})) { VisualData = new ActionVisualizedData { @@ -178,6 +183,11 @@ public GenericPublishProcessController() ToolTip = StringResourceSystemFacade.GetString("Composite.Plugins.GenericPublishProcessController", "PublishToolTip"), Icon = GenericPublishProcessController.Publish, Disabled = false, + BulkExecutionDialog = new DialogStrings + { + Title = LocalizationFiles.Composite_Plugins_PageElementProvider.ViewUnpublishedItems_PublishConfirmTitle, + Text = LocalizationFiles.Composite_Plugins_PageElementProvider.ViewUnpublishedItems_PublishConfirmText + }, ActionLocation = new ActionLocation { ActionType = ActionType.Other, @@ -185,12 +195,13 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } - }; + }, + TagValue = _bulkPublishingCommands + }; // "arrow pointing left when state change is going backwards" actions - Func sendBackToAwaitingApprovalAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForApproval))) + Func sendBackToAwaitingApprovalAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForApproval) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData { @@ -205,11 +216,12 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands }; - Func sendBackToAwaitingPublicationAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForPublication))) + Func sendBackToAwaitingPublicationAction = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForPublication) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData { @@ -224,12 +236,13 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands, }; - // disabled actions - Func draftActionDisabled = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendToDraft))) + // disabled actions + Func draftActionDisabled = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendToDraft) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData { @@ -244,11 +257,12 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands }; - Func awaitingApprovalActionDisabled = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForApproval))) + Func awaitingApprovalActionDisabled = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForApproval) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData { @@ -263,11 +277,12 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands }; - Func awaitingPublicationActionDisabled = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForPublication))) + Func awaitingPublicationActionDisabled = () => new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.SendForPublication) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData { @@ -282,11 +297,12 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands }; - - - Func publishActionDisabled = () => new ElementAction(new ActionHandle(new DisabledActionToken())) + + + Func publishActionDisabled = () => new ElementAction(new ActionHandle(new DisabledActionToken())) { VisualData = new ActionVisualizedData { @@ -301,7 +317,8 @@ public GenericPublishProcessController() IsInToolbar = true, ActionGroup = WorkflowActionGroup } - } + }, + TagValue = _bulkPublishingCommands }; _visualTransitionsActions = new Dictionary> @@ -347,7 +364,7 @@ public List GetActions(IData data, Type elementProviderType) IData publicData = DataFacade.GetDataFromOtherScope(data, DataScopeIdentifier.Public, true).FirstOrDefault(); if (publicData != null) { - var unpublishAction = new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.Unpublish))) + var unpublishAction = new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.Unpublish) { DoIgnoreEntityTokenLocking = true })) { VisualData = new ActionVisualizedData() { @@ -576,10 +593,10 @@ public FlowToken Execute(EntityToken entityToken, ActionToken actionToken, FlowC DataFacade.Delete(referees, CascadeDeleteType.Disable); } - + DataFacade.Delete(data, CascadeDeleteType.Disable); } - + transactionScope.Complete(); } } @@ -605,7 +622,7 @@ public FlowToken Execute(EntityToken entityToken, ActionToken actionToken, FlowC { throw new ArgumentException("Unknown action token", "actionToken"); } - + DataFacade.Update(publishControlled); treeRefresher.PostRefreshMesseges(publishControlled.GetDataEntityToken()); @@ -651,7 +668,6 @@ public static ActionToken Deserialize(string serializedData) } - [IgnoreEntityTokenLocking()] [ActionExecutor(typeof(PublishActionExecutor))] internal sealed class PublishActionToken : ActionToken { @@ -662,6 +678,7 @@ public override IEnumerable PermissionTypes get { return _permissionTypes; } } + public override bool IgnoreEntityTokenLocking => true; public override string Serialize() { @@ -676,7 +693,6 @@ public static ActionToken Deserialize(string serializedData) } - [IgnoreEntityTokenLocking()] [ActionExecutor(typeof(PublishActionExecutor))] internal sealed class UnpublishActionToken : ActionToken { @@ -687,6 +703,7 @@ public override IEnumerable PermissionTypes get { return _permissionTypes; } } + public override bool IgnoreEntityTokenLocking => true; public override string Serialize() { @@ -701,7 +718,6 @@ public static ActionToken Deserialize(string serializedData) } - [IgnoreEntityTokenLocking()] [ActionExecutor(typeof(PublishActionExecutor))] internal sealed class UndoPublishedChangesActionToken : ActionToken { @@ -712,6 +728,7 @@ public override IEnumerable PermissionTypes get { return _permissionTypes; } } + public override bool IgnoreEntityTokenLocking => true; public override string Serialize() { @@ -726,7 +743,6 @@ public static ActionToken Deserialize(string serializedData) } - [IgnoreEntityTokenLocking()] [ActionExecutor(typeof(PublishActionExecutor))] internal sealed class DraftActionToken : ActionToken { @@ -737,6 +753,7 @@ public override IEnumerable PermissionTypes get { return _permissionTypes; } } + public override bool IgnoreEntityTokenLocking => true; public override string Serialize() { @@ -751,7 +768,6 @@ public static ActionToken Deserialize(string serializedData) } - [IgnoreEntityTokenLocking()] [ActionExecutor(typeof(PublishActionExecutor))] internal sealed class AwaitingApprovalActionToken : ActionToken { @@ -762,6 +778,7 @@ public override IEnumerable PermissionTypes get { return _permissionTypes; } } + public override bool IgnoreEntityTokenLocking => true; public override string Serialize() { @@ -776,7 +793,6 @@ public static Composite.C1Console.Security.ActionToken Deserialize(string serial } - [IgnoreEntityTokenLocking()] [ActionExecutor(typeof(PublishActionExecutor))] internal sealed class AwaitingPublicationActionToken : ActionToken { @@ -787,6 +803,7 @@ public override IEnumerable PermissionTypes get { return _permissionTypes; } } + public override bool IgnoreEntityTokenLocking => true; public override string Serialize() { diff --git a/Composite/Data/ProcessControlled/ProcessControllers/GenericPublishProcessController/GenericPublishProcessDynamicActionTokens.cs b/Composite/Data/ProcessControlled/ProcessControllers/GenericPublishProcessController/GenericPublishProcessDynamicActionTokens.cs index 8d6cf8ed58..295fcfc15d 100644 --- a/Composite/Data/ProcessControlled/ProcessControllers/GenericPublishProcessController/GenericPublishProcessDynamicActionTokens.cs +++ b/Composite/Data/ProcessControlled/ProcessControllers/GenericPublishProcessController/GenericPublishProcessDynamicActionTokens.cs @@ -8,11 +8,11 @@ class GenericPublishProcessDynamicActionTokens { public static void OnBeforeInitialize() { - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.SendForPublication, new GenericPublishProcessController.AwaitingPublicationActionToken()); - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Publish,new GenericPublishProcessController.PublishActionToken()); - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.SendForApproval, new GenericPublishProcessController.AwaitingApprovalActionToken()); - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.SendToDraft, new GenericPublishProcessController.DraftActionToken()); - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Unpublish, new GenericPublishProcessController.UnpublishActionToken()); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.SendForPublication, f => new GenericPublishProcessController.AwaitingPublicationActionToken()); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Publish, f => new GenericPublishProcessController.PublishActionToken()); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.SendForApproval, f => new GenericPublishProcessController.AwaitingApprovalActionToken()); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.SendToDraft, f => new GenericPublishProcessController.DraftActionToken()); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Unpublish, f => new GenericPublishProcessController.UnpublishActionToken()); } public static void OnInitialized() diff --git a/Composite/Data/Types/IPage.cs b/Composite/Data/Types/IPage.cs index 84cf25a0c2..04c43e3aa7 100644 --- a/Composite/Data/Types/IPage.cs +++ b/Composite/Data/Types/IPage.cs @@ -28,7 +28,7 @@ namespace Composite.Data.Types [PublishControlledAuxiliary(typeof(PagePublishControlledAuxiliary))] [PublishProcessControllerTypeAttribute(typeof(GenericPublishProcessController))] [KeyTemplatedXhtmlRenderer(XhtmlRenderingType.Embedable, "{label}")] - public interface IPage : IData, IChangeHistory, IPublishControlled, ILocalizedControlled + public interface IPage : IData, IChangeHistory,ICreationHistory, IPublishControlled, ILocalizedControlled { /// [StoreFieldType(PhysicalStoreFieldType.Guid)] diff --git a/Composite/Data/Types/IPagePlaceholderContent.cs b/Composite/Data/Types/IPagePlaceholderContent.cs index 081110718b..024420a0e4 100644 --- a/Composite/Data/Types/IPagePlaceholderContent.cs +++ b/Composite/Data/Types/IPagePlaceholderContent.cs @@ -23,7 +23,7 @@ namespace Composite.Data.Types [CachingAttribute(CachingType.Full)] [PublishProcessControllerTypeAttribute(typeof(GenericPublishProcessController))] [Title("C1 Page Content")] - public interface IPagePlaceholderContent : IData, IChangeHistory, IPublishControlled, ILocalizedControlled + public interface IPagePlaceholderContent : IData, IChangeHistory,ICreationHistory, IPublishControlled, ILocalizedControlled { /// [StoreFieldType(PhysicalStoreFieldType.Guid)] diff --git a/Composite/Data/Types/IPageType.cs b/Composite/Data/Types/IPageType.cs index 0b26fcd210..179cee8bdd 100644 --- a/Composite/Data/Types/IPageType.cs +++ b/Composite/Data/Types/IPageType.cs @@ -72,54 +72,51 @@ public static IEnumerable GetChildPageSelectablePageTypes(this IPage { return DataFacade.GetData(). - Where(f => (f.Available) && (f.HomepageRelation != PageTypeHomepageRelation.OnlySubPages.ToString())). + Where(f => f.Available && f.HomepageRelation != PageTypeHomepageRelation.OnlySubPages.ToString()). OrderBy(f => f.Name). Evaluate(); } - else + + IEnumerable pageTypes; + if (childPage == null) { - IEnumerable pageTypes; - if (childPage == null) - { - pageTypes = - DataFacade.GetData(). - Where(f => (f.Available) && (f.HomepageRelation != PageTypeHomepageRelation.OnlyHomePages.ToString())). + pageTypes = + DataFacade.GetData(). + Where(f => f.Available && f.HomepageRelation != PageTypeHomepageRelation.OnlyHomePages.ToString()). OrderBy(f => f.Name). Evaluate(); - } - else - { - pageTypes = - DataFacade.GetData(). + } + else + { + pageTypes = + DataFacade.GetData(). Where(f => - (f.Available) && - ((f.HomepageRelation != PageTypeHomepageRelation.OnlyHomePages.ToString()) || (f.Id == childPage.PageTypeId))). + f.Available && + (f.HomepageRelation != PageTypeHomepageRelation.OnlyHomePages.ToString() || f.Id == childPage.PageTypeId)). OrderBy(f => f.Name). Evaluate(); - } + } - List result = new List(); - foreach (IPageType pageType in pageTypes) + var result = new List(); + foreach (IPageType pageType in pageTypes) + { + if (childPage != null && pageType.Id == childPage.PageTypeId) { - if ((childPage != null) && (pageType.Id == childPage.PageTypeId)) - { - result.Add(pageType); - } - else if (DataFacade.GetData().Where(f => f.PageTypeId == pageType.Id).Any()) - { - if (DataFacade.GetData().Where(f => f.PageTypeId == pageType.Id && f.AllowedParentPageTypeId == parentPage.PageTypeId).Any()) - { - result.Add(pageType); - } - } - else - { - result.Add(pageType); - } + result.Add(pageType); + continue; } - return result; + var parentRestrictions = DataFacade.GetData() + .Where(f => f.PageTypeId == pageType.Id) + .ToList(); + + if (parentRestrictions.Count == 0 || parentRestrictions.Any(f => f.AllowedParentPageTypeId == parentPage.PageTypeId)) + { + result.Add(pageType); + } } + + return result; } } diff --git a/Composite/Data/Types/IPageTypeDateFolderTypeLink.cs b/Composite/Data/Types/IPageTypeDateFolderTypeLink.cs index 6f465796d5..c860bb0430 100644 --- a/Composite/Data/Types/IPageTypeDateFolderTypeLink.cs +++ b/Composite/Data/Types/IPageTypeDateFolderTypeLink.cs @@ -46,13 +46,17 @@ public interface IPageTypeDataFolderTypeLink : IData [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class IPageTypeDataFolderTypeLinkExtensionMethods { - /// + /// + /// Removes data items that refer to data types that are not registered, and returns an enumeration of valid links. + /// + /// + /// public static IEnumerable RemoveDeadLinks(this IEnumerable pageTypeDataFolderTypeLinks) { foreach (IPageTypeDataFolderTypeLink pageTypeDataFolderTypeLink in pageTypeDataFolderTypeLinks) { DataTypeDescriptor dataTypeDescriptor; - if (DynamicTypeManager.TryGetDataTypeDescriptor(pageTypeDataFolderTypeLink.DataTypeId, out dataTypeDescriptor) == false) + if (!DynamicTypeManager.TryGetDataTypeDescriptor(pageTypeDataFolderTypeLink.DataTypeId, out dataTypeDescriptor)) { DataFacade.Delete(pageTypeDataFolderTypeLink); } diff --git a/Composite/Data/Types/IPageTypeTreeLink.cs b/Composite/Data/Types/IPageTypeTreeLink.cs index 18a2a0293b..f0f517ddf6 100644 --- a/Composite/Data/Types/IPageTypeTreeLink.cs +++ b/Composite/Data/Types/IPageTypeTreeLink.cs @@ -50,7 +50,11 @@ public interface IPageTypeTreeLink : IData [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class IPageTypeTreeLinkExtensionMethods { - /// + /// + /// Removes data items that refer to trees that are not registered. + /// + /// + /// public static IEnumerable RemoveDeadLinks(this IEnumerable pageTypeTreeLinks) { foreach (IPageTypeTreeLink pageTypeTreeLink in pageTypeTreeLinks) diff --git a/Composite/Data/Types/IUser.cs b/Composite/Data/Types/IUser.cs index b16038a9ac..576fe291d8 100644 --- a/Composite/Data/Types/IUser.cs +++ b/Composite/Data/Types/IUser.cs @@ -12,8 +12,8 @@ namespace Composite.Data.Types /// This data interface represents a administrative user in Composite C1. This can be used to query users through a . /// [AutoUpdateble] - [KeyPropertyName("Id")] - [LabelPropertyName("Username")] + [KeyPropertyName(nameof(Id))] + [LabelPropertyName(nameof(Username))] [DataScope(DataScopeIdentifier.PublicName)] [ImmutableTypeId("{AA086DC1-E5F6-4568-8BED-460D3275380F}")] [Caching(CachingType.Full)] @@ -50,7 +50,7 @@ public interface IUser : IData /// [StoreFieldType(PhysicalStoreFieldType.String, 64, IsNullable = true)] [ImmutableFieldId("{C7A7D63C-EA87-48ac-B009-5D4050A2F248}")] - [Obsolete("User IUserFormLogin type instead. Will be removed in future releases.")] + [Obsolete("Use IUserFormLogin data type instead (new name is 'IUserFormLogin.Folder'). Will be removed in future releases.")] string Group { get; set; } /// @@ -59,7 +59,7 @@ public interface IUser : IData [StoreFieldType(PhysicalStoreFieldType.Boolean)] [DefaultFieldBoolValue(false)] [ImmutableFieldId("{72BFFBDC-E4FF-4BD4-9BB1-B86FAEA39468}")] - [Obsolete("User IUserFormLogin type instead. Will be removed in future releases.")] + [Obsolete("Use IUserFormLogin data type instead. Will be removed in future releases.")] bool IsLocked { get; set; } /// @@ -69,26 +69,26 @@ public interface IUser : IData [StoreFieldType(PhysicalStoreFieldType.Integer)] [DefaultFieldIntValue(0)] [ImmutableFieldId("{39CBCCFA-CFB2-4E79-9204-C9596A3FC0E9}")] - [Obsolete("User IUserFormLogin type instead. Will be removed in future releases.")] + [Obsolete("Use IUserFormLogin data type instead. Will be removed in future releases.")] int LockoutReason { get; set; } /// [StoreFieldType(PhysicalStoreFieldType.String, 256, IsNullable = true)] [ImmutableFieldId("{C0230DEB-5394-4819-BE18-A60CF5FA69F0}")] - [Obsolete("User IUserFormLogin type instead. Will be removed in future releases.")] + [Obsolete("Use IUserFormLogin data type instead. Will be removed in future releases.")] string EncryptedPassword { get; set; } /// [StoreFieldType(PhysicalStoreFieldType.String, 128, IsNullable = true)] [ImmutableFieldId("{CA2CF6F8-489B-4D60-B3C3-AF46D1259647}")] - [Obsolete("User IUserFormLogin type instead. Will be removed in future releases.")] + [Obsolete("Use IUserFormLogin data type instead. Will be removed in future releases.")] string PasswordHashSalt { get; set; } /// [StoreFieldType(PhysicalStoreFieldType.DateTime)] [ImmutableFieldId("{35457DA7-A13E-4A6C-9008-3D619A519F2B}")] [DefaultFieldNowDateTimeValue] - [Obsolete("User IUserFormLogin type instead. Will be removed in future releases.")] + [Obsolete("Use IUserFormLogin data type instead. Will be removed in future releases.")] DateTime LastPasswordChangeDate { get; set; } } } diff --git a/Composite/Data/Types/IUserFormLogin.cs b/Composite/Data/Types/IUserFormLogin.cs index 2bb0fe4def..60df1a0bfb 100644 --- a/Composite/Data/Types/IUserFormLogin.cs +++ b/Composite/Data/Types/IUserFormLogin.cs @@ -18,6 +18,7 @@ public interface IUserFormLogin: IData /// [StoreFieldType(PhysicalStoreFieldType.Guid)] [ImmutableFieldId("{3576f435-1ca4-4e22-94e8-1a5165ee9d60}")] + [ForeignKey(typeof(IUser), "Id", AllowCascadeDeletes = true)] Guid UserId { get; set; } /// diff --git a/Composite/Data/Types/IUserPasswordHistory.cs b/Composite/Data/Types/IUserPasswordHistory.cs index 9f37c43cd1..354e5fedfc 100644 --- a/Composite/Data/Types/IUserPasswordHistory.cs +++ b/Composite/Data/Types/IUserPasswordHistory.cs @@ -25,6 +25,7 @@ public interface IUserPasswordHistory : IData /// [StoreFieldType(PhysicalStoreFieldType.Guid)] [ImmutableFieldId("{2B266EF3-AD8C-4CFD-8407-211A2CF3044E}")] + [ForeignKey(typeof(IUser), "Id", AllowCascadeDeletes = true)] Guid UserId { get; set; } /// diff --git a/Composite/Data/Types/PageInsertPosition.cs b/Composite/Data/Types/PageInsertPosition.cs new file mode 100644 index 0000000000..cfae48e1df --- /dev/null +++ b/Composite/Data/Types/PageInsertPosition.cs @@ -0,0 +1,170 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Composite.C1Console.Users; + +namespace Composite.Data.Types +{ + /// + /// + /// + public interface IPageInsertionPosition + { + /// + void CreatePageStructure(IPage page, Guid parentPageId); + } + + /// + /// Contains awailable page insertion positions + /// + public static class PageInsertPosition + { + /// + /// The page will be added as the last page in the list of child pages. + /// + public static IPageInsertionPosition Bottom => new BottomPageInsertPosition(); + + /// + /// The page will be added as the first page in the list of child pages. + /// + public static IPageInsertionPosition Top => new TopPageInsertPosition(); + + /// + /// A page will be added with respect to the aplhabetic order. + /// + public static IPageInsertionPosition Alphabetic => new AlphabeticPageInsertPosition(); + + /// + /// The page will appear after a given page + /// + /// An existing page after which a new page should be inserted + /// + public static IPageInsertionPosition After(Guid existingPageId) => new AfterPageInsertPosition(existingPageId); + + + internal class BottomPageInsertPosition : IPageInsertionPosition + { + public void CreatePageStructure(IPage page, Guid parentPageId) + { + int siblingPageCount = + (from ps in DataFacade.GetData() + where ps.ParentId == parentPageId + select ps).Count(); + + IPageStructure newPageStructure = DataFacade.BuildNew(); + newPageStructure.ParentId = parentPageId; + newPageStructure.Id = page.Id; + newPageStructure.LocalOrdering = siblingPageCount; + DataFacade.AddNew(newPageStructure); + } + } + + + internal class TopPageInsertPosition : IPageInsertionPosition + { + public void CreatePageStructure(IPage page, Guid parentPageId) + { + PageServices.InsertIntoPositionInternal(page.Id, parentPageId, 0); + } + } + + internal class AlphabeticPageInsertPosition : IPageInsertionPosition + { + public void CreatePageStructure(IPage newPage, Guid parentPageId) + { + List pageStructures = + (from ps in DataFacade.GetData() + where ps.ParentId == parentPageId + orderby ps.LocalOrdering + select ps).ToList(); + + var cultureInfo = UserSettings.CultureInfo; + + int targetLocalOrdering = -1; + + foreach (IPageStructure pageStructure in pageStructures) + { + if (targetLocalOrdering != -1) + { + pageStructure.LocalOrdering++; + continue; + } + + IPage page = + (from p in DataFacade.GetData() + where p.Id == pageStructure.Id + select p).SingleOrDefault(); + + if (page == null) + { + continue; + } + + if (string.Compare(page.Title, newPage.Title, true, cultureInfo) > 0) + { + targetLocalOrdering = pageStructure.LocalOrdering; + pageStructure.LocalOrdering++; + } + } + + if (targetLocalOrdering == -1) + { + targetLocalOrdering = pageStructures.Last().LocalOrdering + 1; + } + else + { + DataFacade.Update(pageStructures.Where(page => page.LocalOrdering > targetLocalOrdering)); + } + + var newPageStructure = DataFacade.BuildNew(); + newPageStructure.ParentId = parentPageId; + newPageStructure.Id = newPage.Id; + newPageStructure.LocalOrdering = targetLocalOrdering; + DataFacade.AddNew(newPageStructure); + } + } + + internal class AfterPageInsertPosition : IPageInsertionPosition + { + private readonly Guid _existingPageId; + + public AfterPageInsertPosition(Guid existingPageId) + { + _existingPageId = existingPageId; + } + + public void CreatePageStructure(IPage newPage, Guid parentPageId) + { + var pageStructures = + (from ps in DataFacade.GetData() + where ps.ParentId == parentPageId + orderby ps.LocalOrdering + select ps).ToList(); + + bool pageInserted = false; + foreach (IPageStructure pageStructure in pageStructures) + { + if (!pageInserted) + { + if (pageStructure.Id == _existingPageId) + { + IPageStructure newPageStructure = DataFacade.BuildNew(); + newPageStructure.ParentId = parentPageId; + newPageStructure.Id = newPage.Id; + newPageStructure.LocalOrdering = pageStructure.LocalOrdering + 1; + DataFacade.AddNew(newPageStructure); + + pageInserted = true; + } + } + else + { + pageStructure.LocalOrdering += 1; + } + } + + DataFacade.Update(pageStructures); + } + } + } +} diff --git a/Composite/Data/Types/PageServices.cs b/Composite/Data/Types/PageServices.cs index f86b6a9bb7..64edf2382a 100644 --- a/Composite/Data/Types/PageServices.cs +++ b/Composite/Data/Types/PageServices.cs @@ -2,7 +2,9 @@ using System.Collections.Generic; using System.Globalization; using System.Linq; +using Composite.C1Console.Trees; using Composite.C1Console.Users; +using Composite.Core.Linq; namespace Composite.Data.Types @@ -10,7 +12,7 @@ namespace Composite.Data.Types /// /// /// - [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public static class PageServices { private static readonly object _lock = new object(); @@ -18,8 +20,9 @@ public static class PageServices /// public static Guid GetParentId(this IPage page) { - Verify.ArgumentNotNull(page, "page"); - Verify.ArgumentCondition(page.DataSourceId.ExistsInStore, "page", "The given data have not been added yet"); + Verify.ArgumentNotNull(page, nameof(page)); + Verify.ArgumentCondition(page.DataSourceId.ExistsInStore, nameof(page), + "The given data have not been added yet"); return PageManager.GetParentId(page.Id); } @@ -28,8 +31,9 @@ public static Guid GetParentId(this IPage page) /// public static int GetLocalOrdering(this IPage page) { - Verify.ArgumentNotNull(page, "page"); - Verify.ArgumentCondition(page.DataSourceId.ExistsInStore, "page", "The given data have not been added yet"); + Verify.ArgumentNotNull(page, nameof(page)); + Verify.ArgumentCondition(page.DataSourceId.ExistsInStore, nameof(page), + "The given data have not been added yet"); using (new DataScope(DataScopeIdentifier.Administrated)) { @@ -41,8 +45,9 @@ public static int GetLocalOrdering(this IPage page) /// public static IQueryable GetChildren(this IPage page) { - Verify.ArgumentNotNull(page, "page"); - Verify.ArgumentCondition(page.DataSourceId.ExistsInStore, "page", "The given data have not been added yet"); + Verify.ArgumentNotNull(page, nameof(page)); + Verify.ArgumentCondition(page.DataSourceId.ExistsInStore, nameof(page), + "The given data have not been added yet"); return GetChildren(page.Id); } @@ -54,9 +59,9 @@ public static IQueryable GetChildren(Guid parentId) var pageIDs = PageManager.GetChildrenIDs(parentId); var result = new List(); - foreach(var id in pageIDs) + foreach (var id in pageIDs) { - var page = PageManager.GetPageById(id); + var page = PageManager.GetPageById(id); // A page can de deleted after getting the child list, in a separate thread if (page != null) { @@ -114,17 +119,17 @@ public static bool IsChildrenAlphabeticOrdered(Guid parentId) public static IPage GetPageFromLocalOrder(Guid parentId, int localOrder) { Guid pageId; - using (DataScope dataScope = new DataScope(DataScopeIdentifier.Administrated)) + using (new DataScope(DataScopeIdentifier.Administrated)) { // FirstOrDefault used here because local ordering could be "corrupt" IPageStructure pageStructure = (from ps in DataFacade.GetData() - where ps.ParentId == parentId && - ps.LocalOrdering == localOrder - select ps).FirstOrDefault(); + where ps.ParentId == parentId && + ps.LocalOrdering == localOrder + select ps).FirstOrDefault(); if (pageStructure == null) return null; - + pageId = pageStructure.Id; } @@ -134,6 +139,7 @@ public static IPage GetPageFromLocalOrder(Guid parentId, int localOrder) /// + [Obsolete("Use Add() method instead")] public static IPage AddPageAtTop(this IPage newPage, Guid parentId) { return AddPageAtTop(newPage, parentId, true); @@ -142,6 +148,7 @@ public static IPage AddPageAtTop(this IPage newPage, Guid parentId) /// + [Obsolete("Use Add() method instead")] public static IPage AddPageAtTop(this IPage newPage, Guid parentId, bool addNewPage) { return newPage.InsertIntoPosition(parentId, 0, addNewPage); @@ -150,6 +157,7 @@ public static IPage AddPageAtTop(this IPage newPage, Guid parentId, bool addNewP /// + [Obsolete("Use Add() method instead")] public static IPage AddPageAtBottom(this IPage newPage, Guid parentId) { return AddPageAtBottom(newPage, parentId, true); @@ -158,85 +166,54 @@ public static IPage AddPageAtBottom(this IPage newPage, Guid parentId) /// + [Obsolete("Use Add() method instead")] public static IPage AddPageAtBottom(this IPage newPage, Guid parentId, bool addNewPage) { - if (newPage == null) throw new ArgumentNullException("newPage"); + Verify.ArgumentNotNull(newPage, nameof(newPage)); lock (_lock) { - int siblingPageCount = - (from ps in DataFacade.GetData() - where ps.ParentId == parentId - select ps).Count(); - - IPageStructure newPageStructure = DataFacade.BuildNew(); - newPageStructure.ParentId = parentId; - newPageStructure.Id = newPage.Id; - newPageStructure.LocalOrdering = siblingPageCount; - DataFacade.AddNew(newPageStructure); + PageInsertPosition.Bottom.CreatePageStructure(newPage, parentId); return addNewPage ? DataFacade.AddNew(newPage) : newPage; } } - - /// - public static IPage AddPageAlphabetic(this IPage newPage, Guid parentId) + /// + /// Adds a page to the specified position. + /// + /// The new page to be added. + /// The parent id. + /// The page insertion position + /// + public static IPage Add(this IPage newPage, Guid parentId, IPageInsertionPosition pageInsertionPosition) { - if (newPage == null) throw new ArgumentNullException("newPage"); + Verify.ArgumentNotNull(newPage, nameof(newPage)); + Verify.ArgumentNotNull(pageInsertionPosition, nameof(pageInsertionPosition)); lock (_lock) { - List pageStructures = - (from ps in DataFacade.GetData() - where ps.ParentId == parentId - orderby ps.LocalOrdering - select ps).ToList(); + pageInsertionPosition.CreatePageStructure(newPage, parentId); - CultureInfo cultureInfo = UserSettings.CultureInfo; + newPage = DataFacade.AddNew(newPage); - int targetLocalOrdering = -1; - - foreach (IPageStructure pageStructure in pageStructures) - { - if(targetLocalOrdering != -1) - { - pageStructure.LocalOrdering++; - continue; - } - - IPage page = - (from p in DataFacade.GetData() - where p.Id == pageStructure.Id - select p).SingleOrDefault(); + AddPageTypeRelatedData(newPage); + } - if (page == null) - { - continue; - } + return newPage; + } - if (string.Compare(page.Title, newPage.Title, true, cultureInfo) > 0) - { - targetLocalOrdering = pageStructure.LocalOrdering; - pageStructure.LocalOrdering++; - } - } - if(targetLocalOrdering == -1) - { - targetLocalOrdering = pageStructures.Last().LocalOrdering + 1; - } - else - { - DataFacade.Update(pageStructures.Where(page => page.LocalOrdering > targetLocalOrdering).Cast()); - } + /// + [Obsolete("Use Add() method instead")] + public static IPage AddPageAlphabetic(this IPage newPage, Guid parentId) + { + Verify.ArgumentNotNull(newPage, nameof(newPage)); - IPageStructure newPageStructure = DataFacade.BuildNew(); - newPageStructure.ParentId = parentId; - newPageStructure.Id = newPage.Id; - newPageStructure.LocalOrdering = targetLocalOrdering; - DataFacade.AddNew(newPageStructure); + lock (_lock) + { + PageInsertPosition.Alphabetic.CreatePageStructure(newPage, parentId); return DataFacade.AddNew(newPage); } @@ -245,6 +222,7 @@ orderby ps.LocalOrdering /// + [Obsolete("Use Add() method instead")] public static IPage AddPageAfter(this IPage newPage, Guid parentId, Guid existingPageId) { return AddPageAfter(newPage, parentId, existingPageId, true); @@ -255,29 +233,29 @@ public static IPage AddPageAfter(this IPage newPage, Guid parentId, Guid existin /// public static IPage MoveTo(this IPage page, Guid parentId, int localOrder, bool addNewPage) { - Verify.ArgumentNotNull(page, "page"); + Verify.ArgumentNotNull(page, nameof(page)); lock (_lock) { IPageStructure pageStructure = DataFacade.GetData(f => f.Id == page.Id).FirstOrDefault(); - if(pageStructure != null) + if (pageStructure != null) { if (pageStructure.ParentId == parentId) { - if(localOrder == pageStructure.LocalOrdering) + if (localOrder == pageStructure.LocalOrdering) { // If page is already has the right order - don't do anything return page; } - if(localOrder > pageStructure.LocalOrdering) + if (localOrder > pageStructure.LocalOrdering) { localOrder--; } } DataFacade.Delete(pageStructure); - if(pageStructure.ParentId != parentId) + if (pageStructure.ParentId != parentId) { FixOrder(pageStructure.ParentId); } @@ -289,13 +267,14 @@ public static IPage MoveTo(this IPage page, Guid parentId, int localOrder, bool private static void FixOrder(Guid parentId) { - List pageStructures = DataFacade.GetData(ps => ps.ParentId == parentId).ToList(); + List pageStructures = + DataFacade.GetData(ps => ps.ParentId == parentId).ToList(); pageStructures = pageStructures.OrderBy(ps => ps.LocalOrdering).ToList(); for (int i = pageStructures.Count - 1; i >= 0; i--) { - if(pageStructures[i].LocalOrdering == i) // If order is correct, skipping the page structure object + if (pageStructures[i].LocalOrdering == i) // If order is correct, skipping the page structure object { pageStructures.RemoveAt(i); continue; @@ -304,7 +283,7 @@ private static void FixOrder(Guid parentId) pageStructures[i].LocalOrdering = i; } - if(pageStructures.Count == 0) return; + if (pageStructures.Count == 0) return; DataFacade.Update(pageStructures); } @@ -312,92 +291,66 @@ private static void FixOrder(Guid parentId) /// public static IPage InsertIntoPosition(this IPage newPage, Guid parentId, int localOrder, bool addNewPage) { - Verify.ArgumentNotNull(newPage, "newPage"); + Verify.ArgumentNotNull(newPage, nameof(newPage)); lock (_lock) { - List pageStructures = + InsertIntoPositionInternal(newPage.Id, parentId, localOrder); + + return addNewPage ? DataFacade.AddNew(newPage) : newPage; + } + } + + + internal static void InsertIntoPositionInternal(Guid newPageId, Guid parentId, int localOrder) + { + List pageStructures = (from ps in DataFacade.GetData(false) where ps.ParentId == parentId orderby ps.LocalOrdering select ps).ToList(); - var toBeUpdated = new List(); - for(int i=0; i < pageStructures.Count; i++) + var toBeUpdated = new List(); + for (int i = 0; i < pageStructures.Count; i++) + { + int newSortOrder = i < localOrder ? i : i + 1; + if (pageStructures[i].LocalOrdering != newSortOrder) { - int newSortOrder = i < localOrder ? i : i + 1; - if(pageStructures[i].LocalOrdering != newSortOrder) - { - pageStructures[i].LocalOrdering = newSortOrder; - toBeUpdated.Add(pageStructures[i]); - } + pageStructures[i].LocalOrdering = newSortOrder; + toBeUpdated.Add(pageStructures[i]); } + } - DataFacade.Update(toBeUpdated); + DataFacade.Update(toBeUpdated); - if(localOrder > pageStructures.Count) - { - localOrder = pageStructures.Count; - } - - var newPageStructure = DataFacade.BuildNew(); - newPageStructure.Id = newPage.Id; - newPageStructure.ParentId = parentId; - newPageStructure.LocalOrdering = localOrder; + if (localOrder > pageStructures.Count) + { + localOrder = pageStructures.Count; + } - DataFacade.AddNew(newPageStructure); + var newPageStructure = DataFacade.BuildNew(); + newPageStructure.Id = newPageId; + newPageStructure.ParentId = parentId; + newPageStructure.LocalOrdering = localOrder; - return addNewPage ? DataFacade.AddNew(newPage) : newPage; - } + DataFacade.AddNew(newPageStructure); } - /// public static IPage AddPageAfter(this IPage newPage, Guid parentId, Guid existingPageId, bool addNewPage) { - if (newPage == null) throw new ArgumentNullException("newPage"); + Verify.ArgumentNotNull(newPage, nameof(newPage)); lock (_lock) { - List pageStructures = - (from ps in DataFacade.GetData() - where ps.ParentId == parentId - orderby ps.LocalOrdering - select ps).ToList(); - - bool pageInserted = false; - foreach (IPageStructure pageStructure in pageStructures) - { - if (pageInserted == false) - { - if (pageStructure.Id == existingPageId) - { - IPageStructure newPageStructure = DataFacade.BuildNew(); - newPageStructure.ParentId = parentId; - newPageStructure.Id = newPage.Id; - newPageStructure.LocalOrdering = pageStructure.LocalOrdering + 1; - DataFacade.AddNew(newPageStructure); - - pageInserted = true; - } - } - else - { - pageStructure.LocalOrdering += 1; - } - } - - DataFacade.Update(pageStructures.Cast()); + PageInsertPosition.After(existingPageId).CreatePageStructure(newPage, parentId); if (addNewPage) { return DataFacade.AddNew(newPage); } - else - { - return newPage; - } + return newPage; } } @@ -406,7 +359,7 @@ orderby ps.LocalOrdering /// public static IEnumerable GetSubChildren(this IPage parentPage) { - if (parentPage == null) throw new ArgumentNullException("parentPage"); + Verify.ArgumentNotNull(parentPage, nameof(parentPage)); lock (_lock) { @@ -418,7 +371,7 @@ public static IEnumerable GetSubChildren(this IPage parentPage) { yield return subPage; } - } + } } } @@ -445,7 +398,9 @@ public static void DeletePageStructure(this IPage page) int localOrdering = structureInfo.LocalOrdering; DataFacade.Delete(structureInfo); - List siblings = DataFacade.GetData(f => f.ParentId == structureInfo.ParentId && f.LocalOrdering >= localOrdering).ToList(); + List siblings = + DataFacade.GetData( + f => f.ParentId == structureInfo.ParentId && f.LocalOrdering >= localOrdering).ToList(); // If there's a page with the same local ordering - we're not changing anything if (siblings.Count == 0 @@ -466,9 +421,11 @@ public static void DeletePageStructure(this IPage page) private static bool ExistsInOtherLocale(IPage page) { - foreach (CultureInfo cultureInfo in DataLocalizationFacade.ActiveLocalizationCultures.Except(new CultureInfo[] { page.DataSourceId.LocaleScope })) + var otherLocales = + DataLocalizationFacade.ActiveLocalizationCultures.Except(new[] {page.DataSourceId.LocaleScope}); + foreach (CultureInfo cultureInfo in otherLocales) { - using (DataScope dataScope = new DataScope(cultureInfo)) + using (new DataScope(cultureInfo)) { bool exists = DataFacade.GetData(f => f.Id == page.Id).Any(); if (exists) @@ -480,5 +437,95 @@ private static bool ExistsInOtherLocale(IPage page) return false; } + + /// + /// Gets a default page type id for a given page type, if available. + /// + /// + public static Guid? GetDefaultPageTemplateId(Guid pageTypeId) + { + IPageType pageType = DataFacade.GetData().Single(f => f.Id == pageTypeId); + + if (pageType.DefaultTemplateId != Guid.Empty) + { + return pageType.DefaultTemplateId; + } + var templateRestrictions = DataFacade.GetData() + .Where(f => f.PageTypeId == pageTypeId); + + return templateRestrictions.FirstOrDefault()?.PageTemplateId; + } + + + /// + /// Creates page type related data for a newly created IPage, based on a given page type id. + /// Including: default placeholder content, page folders, page applications. + /// + /// + public static void AddPageTypeRelatedData(IPage page) + { + Guid pageTypeId = page.PageTypeId; + + Verify.That(pageTypeId != Guid.Empty, "PageTypeId field should not be Guid.Empty"); + + // Adding default page content + IEnumerable pageTypeDefaultPageContents = + DataFacade.GetData(). + Where(f => f.PageTypeId == pageTypeId). + Evaluate(); + + foreach (IPageTypeDefaultPageContent pageTypeDefaultPageContent in pageTypeDefaultPageContents) + { + IPagePlaceholderContent pagePlaceholderContent = DataFacade.BuildNew(); + pagePlaceholderContent.PageId = page.Id; + pagePlaceholderContent.PlaceHolderId = pageTypeDefaultPageContent.PlaceHolderId; + pagePlaceholderContent.Content = pageTypeDefaultPageContent.Content; + DataFacade.AddNew(pagePlaceholderContent); + } + + AddPageTypePageFoldersAndApplications(page); + } + + + internal static bool AddPageTypePageFoldersAndApplications(IPage page) + { + Guid pageTypeId = page.PageTypeId; + + bool treeRefreshindNeeded = false; + + // Adding page folders + IEnumerable pageTypeDataFolderTypeLinks = + DataFacade.GetData(). + Where(f => f.PageTypeId == pageTypeId). + Evaluate(). + RemoveDeadLinks(); + + foreach (IPageTypeDataFolderTypeLink pageTypeDataFolderTypeLink in pageTypeDataFolderTypeLinks) + { + page.AddFolderDefinition(pageTypeDataFolderTypeLink.DataTypeId); + treeRefreshindNeeded = true; + } + + + // Adding applications + IEnumerable pageTypeTreeLinks = + DataFacade.GetData(). + Where(f => f.PageTypeId == pageTypeId). + Evaluate(). + RemoveDeadLinks(); + + + var entityToken = page.GetDataEntityToken(); + foreach (IPageTypeTreeLink pageTypeTreeLink in pageTypeTreeLinks) + { + var tree = TreeFacade.GetTree(pageTypeTreeLink.TreeId); + if (tree.HasAttachmentPoints(entityToken)) continue; + + TreeFacade.AddPersistedAttachmentPoint(pageTypeTreeLink.TreeId, typeof(IPage), page.Id); + treeRefreshindNeeded = true; + } + + return treeRefreshindNeeded; + } } } diff --git a/Composite/Functions/FunctionContextContainer.cs b/Composite/Functions/FunctionContextContainer.cs index 7a3476ec19..17f4e5d502 100644 --- a/Composite/Functions/FunctionContextContainer.cs +++ b/Composite/Functions/FunctionContextContainer.cs @@ -1,13 +1,12 @@ -using System.Collections.Generic; using System; +using System.Collections.Generic; using System.Threading; +using System.Web; using System.Web.UI; +using System.Xml.Linq; using Composite.Core; using Composite.Core.Types; -using System.Xml.Linq; using Composite.Core.Xml; -using Composite.Plugins.PageTemplates.MasterPages.Controls.Functions; - namespace Composite.Functions { @@ -134,7 +133,8 @@ public bool ProcessException(string functionName, Exception exception, string lo || exception is ThreadAbortException || exception is ThreadInterruptedException || exception is AppDomainUnloadedException - || exception is OutOfMemoryException) + || exception is OutOfMemoryException + || IsHttpException(exception)) { errorBoxHtml = null; return false; @@ -146,5 +146,10 @@ public bool ProcessException(string functionName, Exception exception, string lo return true; } + + private bool IsHttpException(Exception exception) + { + return exception is HttpException || (exception.InnerException != null && IsHttpException(exception.InnerException)); + } } } diff --git a/Composite/Plugins/Application/ApplicationStartupHandlers/AttributeBasedApplicationStartupHandler/AttributeBasedApplicationStartupHandler.cs b/Composite/Plugins/Application/ApplicationStartupHandlers/AttributeBasedApplicationStartupHandler/AttributeBasedApplicationStartupHandler.cs index 15e074482b..9bbee57753 100644 --- a/Composite/Plugins/Application/ApplicationStartupHandlers/AttributeBasedApplicationStartupHandler/AttributeBasedApplicationStartupHandler.cs +++ b/Composite/Plugins/Application/ApplicationStartupHandlers/AttributeBasedApplicationStartupHandler/AttributeBasedApplicationStartupHandler.cs @@ -287,7 +287,11 @@ private static StartupHandlerInfo[] GetSubscribedTypes( return null; } - + + if (!AssemblyFacade.AssemblyPotentiallyUsesType(assembly, typeof (ApplicationStartupAttribute))) + { + return null; + } Type[] types; diff --git a/Composite/Plugins/Data/DataProviders/XmlDataProvider/XmlDataProvider.cs b/Composite/Plugins/Data/DataProviders/XmlDataProvider/XmlDataProvider.cs index a714e10419..122ae9f2b7 100644 --- a/Composite/Plugins/Data/DataProviders/XmlDataProvider/XmlDataProvider.cs +++ b/Composite/Plugins/Data/DataProviders/XmlDataProvider/XmlDataProvider.cs @@ -65,7 +65,7 @@ public DataProviderContext Context public IEnumerable GetSupportedInterfaces() { - return _xmlDataTypeStoresContainer.SupportedInterface; + return _xmlDataTypeStoresContainer.SupportedInterfaces; } diff --git a/Composite/Plugins/Data/DataProviders/XmlDataProvider/XmlDataTypeStoresContainer.cs b/Composite/Plugins/Data/DataProviders/XmlDataProvider/XmlDataTypeStoresContainer.cs index 5692be40b0..4d5bd6e41a 100644 --- a/Composite/Plugins/Data/DataProviders/XmlDataProvider/XmlDataTypeStoresContainer.cs +++ b/Composite/Plugins/Data/DataProviders/XmlDataProvider/XmlDataTypeStoresContainer.cs @@ -10,12 +10,12 @@ internal sealed class XmlDataTypeStoresContainer { private readonly string _providerName; - private readonly List _supportedInterface = new List(); - private readonly List _knownInterface = new List(); - private readonly List _generatedInterface = new List(); + private readonly List _supportedInterfaces = new List(); + private readonly List _knownInterfaces = new List(); + private readonly List _generatedInterfaces = new List(); // Data type -> XmlDataTypeStore - private readonly Dictionary _dataTypeStores = new Dictionary(); + private readonly Dictionary _dataTypeStores = new Dictionary(); public XmlDataTypeStoresContainer(string providerName) @@ -27,29 +27,28 @@ public XmlDataTypeStoresContainer(string providerName) /// /// All working data types /// - public IEnumerable SupportedInterface { get { return _supportedInterface; } } + public IEnumerable SupportedInterfaces => _supportedInterfaces; /// /// All data types, including non working due to config error or something else /// - public IEnumerable KnownInterfaces { get { return _knownInterface; } } + public IEnumerable KnownInterfaces => _knownInterfaces; /// /// All working generated data types /// - public IEnumerable GeneratedInterfaces { get { return _generatedInterface; } } - + public IEnumerable GeneratedInterfaces => _generatedInterfaces; public XmlDataTypeStore GetDataTypeStore(Type interfaceType) { XmlDataTypeStore result; - if (_dataTypeStores.TryGetValue(interfaceType, out result) == false) + if (!_dataTypeStores.TryGetValue(interfaceType, out result)) { - throw new ArgumentException(string.Format("The interface type '{0}' is not supported by the XmlDataProvider named '{1}", interfaceType, _providerName)); + throw new ArgumentException($"The interface type '{interfaceType}' is not supported by the XmlDataProvider named '{_providerName}"); } return result; @@ -64,14 +63,16 @@ public XmlDataTypeStore GetDataTypeStore(Type interfaceType) /// internal void AddSupportedDataTypeStore(Type interfaceType, XmlDataTypeStore xmlDataTypeStore) { + Verify.That(!_dataTypeStores.ContainsKey(interfaceType), $"Interface type {interfaceType.FullName} has already been registered"); + _dataTypeStores.Add(interfaceType, xmlDataTypeStore); - _supportedInterface.Add(interfaceType); + _supportedInterfaces.Add(interfaceType); AddKnownInterface(interfaceType); if (xmlDataTypeStore.IsGeneratedDataType) { - _generatedInterface.Add(interfaceType); + _generatedInterfaces.Add(interfaceType); } } @@ -79,22 +80,24 @@ internal void AddSupportedDataTypeStore(Type interfaceType, XmlDataTypeStore xml internal void UpdateSupportedDataTypeStore(Type interfaceType, XmlDataTypeStore xmlDataTypeStore) { - Type type = _dataTypeStores.Where(f => f.Value.DataTypeDescriptor.DataTypeId == interfaceType.GetImmutableTypeId()).Select(f => f.Key).Single(); + Guid typeId = interfaceType.GetImmutableTypeId(); + Type type = _dataTypeStores.Where(f => f.Value.DataTypeDescriptor.DataTypeId == typeId).Select(f => f.Key).Single(); + _dataTypeStores.Remove(type); _dataTypeStores.Add(interfaceType, xmlDataTypeStore); - _supportedInterface.Remove(type); - _supportedInterface.Add(interfaceType); + _supportedInterfaces.Remove(type); + _supportedInterfaces.Add(interfaceType); - _knownInterface.Remove(type); - _knownInterface.Add(interfaceType); + _knownInterfaces.Remove(type); + _knownInterfaces.Add(interfaceType); } internal void AddKnownInterface(Type interfaceType) { - _knownInterface.Add(interfaceType); + _knownInterfaces.Add(interfaceType); } } } diff --git a/Composite/Plugins/Elements/ElementProviders/GeneratedDataTypesElementProvider/GeneratedDataTypesElementDynamicActionTokens.cs b/Composite/Plugins/Elements/ElementProviders/GeneratedDataTypesElementProvider/GeneratedDataTypesElementDynamicActionTokens.cs index e25425feb0..ff80aaaffd 100644 --- a/Composite/Plugins/Elements/ElementProviders/GeneratedDataTypesElementProvider/GeneratedDataTypesElementDynamicActionTokens.cs +++ b/Composite/Plugins/Elements/ElementProviders/GeneratedDataTypesElementProvider/GeneratedDataTypesElementDynamicActionTokens.cs @@ -15,8 +15,8 @@ public static class GeneratedDataTypesElementDynamicActionTokens /// public static void OnBeforeInitialize() { - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Edit, new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.GeneratedDataTypesElementProvider.EditDataWorkflow"))); - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Delete, new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.GeneratedDataTypesElementProvider.DeleteDataWorkflow"))); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Edit, f => new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.GeneratedDataTypesElementProvider.EditDataWorkflow"))); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Delete, f => new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.GeneratedDataTypesElementProvider.DeleteDataWorkflow"))); } /// public static void OnInitialized() diff --git a/Composite/Plugins/Elements/ElementProviders/PageElementProvider/LocalOrdering/DisplayLocalOrderingActionToken.cs b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/LocalOrdering/DisplayLocalOrderingActionToken.cs index 206424eb86..e681fa9646 100644 --- a/Composite/Plugins/Elements/ElementProviders/PageElementProvider/LocalOrdering/DisplayLocalOrderingActionToken.cs +++ b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/LocalOrdering/DisplayLocalOrderingActionToken.cs @@ -6,7 +6,6 @@ namespace Composite.Plugins.Elements.ElementProviders.PageElementProvider.LocalOrdering { - [IgnoreEntityTokenLocking()] [ActionExecutor(typeof(DisplayLocalOrderingActionExecutor))] internal sealed class DisplayLocalOrderingActionToken : ActionToken { @@ -25,6 +24,7 @@ public Guid ParentPageId private set; } + public override bool IgnoreEntityTokenLocking => true; public override IEnumerable PermissionTypes { diff --git a/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageAddActionExecuter.cs b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageAddActionExecuter.cs new file mode 100644 index 0000000000..4e7433e685 --- /dev/null +++ b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageAddActionExecuter.cs @@ -0,0 +1,30 @@ +using Composite.C1Console.Actions; +using Composite.C1Console.Actions.Data; +using Composite.C1Console.Security; +using Composite.Data; +using Composite.Data.Types; + +namespace Composite.Plugins.Elements.ElementProviders.PageElementProvider +{ + /// + public class PageAddActionExecuter : IActionExecutorSerializedParameters + { + /// + public FlowToken Execute(EntityToken entityToken, ActionToken actionToken, FlowControllerServicesContainer flowControllerServicesContainer) + { + return Execute(EntityTokenSerializer.Serialize(entityToken), ActionTokenSerializer.Serialize(actionToken), actionToken, flowControllerServicesContainer); + } + /// + public FlowToken Execute(string serializedEntityToken, string serializedActionToken, ActionToken actionToken, FlowControllerServicesContainer flowControllerServicesContainer) + { + PageAddActionToken pageAddActionToken = (PageAddActionToken)actionToken; + + var newPage = DataFacade.BuildNew(); + newPage.PageTypeId = pageAddActionToken.PageTypeId; + + var action = DataActionTokenResolverFacade.Resolve(newPage, ((PageAddActionToken)actionToken).ActionIdentifier); + + return ActionExecutorFacade.Execute(EntityTokenSerializer.Deserialize(serializedEntityToken), action, flowControllerServicesContainer); + } + } +} diff --git a/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageAddActionToken.cs b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageAddActionToken.cs new file mode 100644 index 0000000000..18c9c29062 --- /dev/null +++ b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageAddActionToken.cs @@ -0,0 +1,53 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Composite.C1Console.Actions; +using Composite.C1Console.Actions.Data; +using Composite.C1Console.Security; +using Composite.Core.Serialization; + +namespace Composite.Plugins.Elements.ElementProviders.PageElementProvider +{ + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] + [ActionExecutor(typeof(PageAddActionExecuter))] + class PageAddActionToken : ProxyDataActionToken + { + private readonly Guid _pageTypeId; + /// + public PageAddActionToken(Guid pageTypeId, ActionIdentifier actionIdentifier) : base(actionIdentifier) + { + _pageTypeId = pageTypeId; + } + /// + public PageAddActionToken(Guid pageTypeId, ActionIdentifier actionIdentifier, IEnumerable permissionTypes) : base(actionIdentifier,permissionTypes) + { + _pageTypeId = pageTypeId; + } + /// + public Guid PageTypeId => _pageTypeId; + + public override string Serialize() + { + StringBuilder stringBuilder = new StringBuilder(base.Serialize()); + + StringConversionServices.SerializeKeyValuePair(stringBuilder, "_PageTypeId_", _pageTypeId); + + return stringBuilder.ToString(); + } + /// + public new static ActionToken Deserialize(string serializedData) + { + Dictionary dic = StringConversionServices.ParseKeyValueCollection(serializedData); + + Guid pageTypeId = StringConversionServices.DeserializeValueGuid(dic["_PageTypeId_"]); + + var baseProxyDataActionToken = (ProxyDataActionToken)ProxyDataActionToken.Deserialize(serializedData); + + var result = new PageAddActionToken(pageTypeId, baseProxyDataActionToken.ActionIdentifier, baseProxyDataActionToken.PermissionTypes) { DoIgnoreEntityTokenLocking = baseProxyDataActionToken.IgnoreEntityTokenLocking }; + + return result; + } + } +} + + diff --git a/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageElementDynamicActionTokens.cs b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageElementDynamicActionTokens.cs index 8ce7f877db..63fbba270d 100644 --- a/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageElementDynamicActionTokens.cs +++ b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageElementDynamicActionTokens.cs @@ -1,9 +1,7 @@ -using Composite.C1Console.Actions; using Composite.C1Console.Actions.Data; -using Composite.C1Console.Events; using Composite.C1Console.Workflow; using Composite.Core.Application; -using Composite.Data; +using Composite.Core.Serialization; using Composite.Data.Types; namespace Composite.Plugins.Elements.ElementProviders.PageElementProvider @@ -17,9 +15,9 @@ public static class PageElementDynamicActionTokens /// public static void OnBeforeInitialize() { - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Add, new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.PageElementProvider.AddNewPageWorkflow")) { DoIgnoreEntityTokenLocking = true }); - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Edit, new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.PageElementProvider.EditPageWorkflow"))); - DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Delete, new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.PageElementProvider.DeletePageWorkflow"))); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Add, f => new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.PageElementProvider.AddNewPageWorkflow")) { DoIgnoreEntityTokenLocking = true, Payload = SerializerHandlerFacade.Serialize(f) }); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Edit, f => new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.PageElementProvider.EditPageWorkflow"))); + DataActionTokenResolverFacade.RegisterDefault(ActionIdentifier.Delete, f => new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.PageElementProvider.DeletePageWorkflow"))); } /// diff --git a/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageElementProvider.cs b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageElementProvider.cs index 2d9ddf8ef2..13105a4f84 100644 --- a/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageElementProvider.cs +++ b/Composite/Plugins/Elements/ElementProviders/PageElementProvider/PageElementProvider.cs @@ -2,27 +2,29 @@ using System.Collections.Generic; using System.Linq; using Composite.C1Console.Actions; +using Composite.C1Console.Actions.Data; using Composite.C1Console.Elements; using Composite.C1Console.Elements.ElementProviderHelpers.AssociatedDataElementProviderHelper; using Composite.C1Console.Elements.ElementProviderHelpers.DataGroupingProviderHelper; using Composite.C1Console.Elements.Plugins.ElementProvider; +using Composite.C1Console.Events; +using Composite.C1Console.Security; +using Composite.C1Console.Users; +using Composite.C1Console.Workflow; using Composite.Core.Extensions; using Composite.Core.Linq; -using Composite.Data; -using Composite.Data.ProcessControlled; -using Composite.Data.ProcessControlled.ProcessControllers.GenericPublishProcessController; -using Composite.Data.Types; using Composite.Core.Parallelization; using Composite.Core.ResourceSystem; using Composite.Core.ResourceSystem.Icons; -using Composite.C1Console.Security; +using Composite.Data; +using Composite.Data.ProcessControlled; +using Composite.Data.ProcessControlled.ProcessControllers.GenericPublishProcessController; using Composite.Data.Transactions; -using Composite.C1Console.Users; -using Composite.C1Console.Workflow; +using Composite.Data.Types; using Microsoft.Practices.EnterpriseLibrary.Common.Configuration; using Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ObjectBuilder; using Microsoft.Practices.ObjectBuilder; -using Composite.C1Console.Actions.Data; +using Composite.C1Console.Security.Foundation; namespace Composite.Plugins.Elements.ElementProviders.PageElementProvider { @@ -77,6 +79,7 @@ private static ResourceHandle GetIconHandle(string name) public PageElementProvider() { AuxiliarySecurityAncestorFacade.AddAuxiliaryAncestorProvider(this); + DataEvents.OnStoreChanged += new StoreEventHandler(DataEvents_IPageType_OnStoreChanged); } @@ -105,7 +108,6 @@ public bool ContainsLocalizedData } - public IEnumerable GetRoots(SearchToken searchToken) { int pages; @@ -132,23 +134,38 @@ public IEnumerable GetRoots(SearchToken searchToken) } }; - element.AddAction(new ElementAction(new ActionHandle(new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.Plugins.Elements.ElementProviders.PageElementProvider.AddNewPageWorkflow"), AddWebsitePermissionTypes) { DoIgnoreEntityTokenLocking = true })) + var allPageTypes = DataFacade.GetData(); + + foreach ( + var pageType in + allPageTypes.Where(f => f.HomepageRelation != PageTypeHomepageRelation.OnlySubPages.ToPageTypeHomepageRelationString()) + .OrderByDescending(f=>f.Id)) { - VisualData = new ActionVisualizedData - { - Label = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.AddPageAtRoot"), - ToolTip = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.AddPageAtRootToolTip"), - Icon = PageElementProvider.AddPage, - Disabled = false, - ActionLocation = new ActionLocation + element.AddAction( + new ElementAction( + new ActionHandle(new PageAddActionToken(pageType.Id, ActionIdentifier.Add, AddPermissionTypes) {DoIgnoreEntityTokenLocking = true} )) { - ActionType = ActionType.Add, - IsInFolder = false, - IsInToolbar = true, - ActionGroup = PrimaryActionGroup - } - } - }); + VisualData = new ActionVisualizedData + { + Label = string.Format(StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", + "PageElementProvider.AddPageAtRootFormat"), pageType.Name), + ToolTip = + StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", + "PageElementProvider.AddPageAtRootToolTip"), + Icon = PageElementProvider.AddPage, + Disabled = false, + ActionLocation = new ActionLocation + { + ActionType = ActionType.Add, + IsInFolder = false, + IsInToolbar = true, + ActionGroup = PrimaryActionGroup, + ActionBundle = "AddWebsite" + } + } + + }); + } element.AddAction(new ElementAction(new ActionHandle(new ViewUnpublishedItemsActionToken())) @@ -642,7 +659,7 @@ private List GetElements(List> pag string editPageToolTip = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.EditPageToolTip"); string localizePageLabel = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.LocalizePage"); string localizePageToolTip = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.LocalizePageToolTip"); - string addNewPageLabel = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.AddSubPage"); + string addNewPageLabel = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.AddSubPageFormat"); string addNewPageToolTip = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.AddSubPageToolTip"); string deletePageLabel = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.Delete"); string deletePageToolTip = StringResourceSystemFacade.GetString("Composite.Plugins.PageElementProvider", "PageElementProvider.DeleteToolTip"); @@ -654,6 +671,7 @@ private List GetElements(List> pag } var elements = new Element[pages.Count]; + var allPageTypes = DataFacade.GetData(); ParallelFacade.For("PageElementProvider. Getting elements", 0, pages.Count, i => { @@ -693,23 +711,30 @@ private List GetElements(List> pag } }); - element.AddAction(new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.Add,AddPermissionTypes))) + IPageType parentPageType = allPageTypes.First(f => f.Id == page.PageTypeId); + + foreach (var pageType in page.GetChildPageSelectablePageTypes().OrderByDescending(pt => pt.Id == parentPageType.DefaultChildPageType)) { - VisualData = new ActionVisualizedData + element.AddAction(new ElementAction(new ActionHandle(new PageAddActionToken(pageType.Id,ActionIdentifier.Add, AddPermissionTypes) { DoIgnoreEntityTokenLocking = true })) { - Label = addNewPageLabel, - ToolTip = addNewPageToolTip, - Icon = PageElementProvider.AddPage, - Disabled = false, - ActionLocation = new ActionLocation + VisualData = new ActionVisualizedData { - ActionType = ActionType.Add, - IsInFolder = false, - IsInToolbar = true, - ActionGroup = PrimaryActionGroup + Label = string.Format(addNewPageLabel, pageType.Name), + ToolTip = pageType.Description, + Icon = PageElementProvider.AddPage, + Disabled = false, + ActionLocation = new ActionLocation + { + ActionType = ActionType.Add, + IsInFolder = false, + IsInToolbar = true, + ActionGroup = PrimaryActionGroup, + ActionBundle = "AddPage" + } } - } - }); + }); + } + element.AddAction(new ElementAction(new ActionHandle(new ProxyDataActionToken(ActionIdentifier.Delete,DeletePermissionTypes))) { @@ -839,6 +864,24 @@ private ElementVisualizedData MakeVisualData(IPage page, PageLocaleState pageLoc } + + + private void DataEvents_IPageType_OnStoreChanged(object sender, StoreEventArgs storeEventArgs) + { + EntityToken entityToken = new PageElementProviderEntityToken(_context.ProviderName); + + var parents = HookingFacade.GetHookies(entityToken); + + if (parents != null) + { + foreach (var parentEntityToken in parents) + { + ConsoleMessageQueueFacade.Enqueue(new RefreshTreeMessageQueueItem { EntityToken = parentEntityToken }, null); + } + } + } + + #region IDataExchangingElementProvider Members public object GetData(string name) diff --git a/Composite/Plugins/Elements/ElementProviders/VirtualElementProvider/VirtualElementProvider.cs b/Composite/Plugins/Elements/ElementProviders/VirtualElementProvider/VirtualElementProvider.cs index 01dc600bf4..3f24527ca2 100644 --- a/Composite/Plugins/Elements/ElementProviders/VirtualElementProvider/VirtualElementProvider.cs +++ b/Composite/Plugins/Elements/ElementProviders/VirtualElementProvider/VirtualElementProvider.cs @@ -207,11 +207,34 @@ private void AddRootActions(Element element) ActionType = ActionType.Other, IsInFolder = false, IsInToolbar = false, - ActionGroup = PrimaryActionGroup + ActionGroup = PrimaryActionGroup, + ActionBundle = StringResourceSystemFacade.GetString("Composite.Management", "VirtualElementProviderElementProvider.RootActions.GlobalSetting") } } }); + element.AddAction( + new ElementAction( + new ActionHandle( + new WorkflowActionToken( + WorkflowFacade.GetWorkflowType("Composite.C1Console.Tools.SetTimeZoneWorkflow")))) + { + VisualData = new ActionVisualizedData + { + Label = StringResourceSystemFacade.GetString("Composite.Management", "VirtualElementProviderElementProvider.RootActions.SetTimezoneLabel"), + ToolTip = StringResourceSystemFacade.GetString("Composite.Management", "VirtualElementProviderElementProvider.RootActions.SetTimezoneTooltip"), + Icon = VirtualElementProvider.ChangeOwnCultureIcon, + Disabled = false, + ActionLocation = new ActionLocation + { + ActionType = ActionType.Other, + IsInFolder = false, + IsInToolbar = false, + ActionGroup = PrimaryActionGroup, + ActionBundle = StringResourceSystemFacade.GetString("Composite.Management", "VirtualElementProviderElementProvider.RootActions.GlobalSetting") + } + } + }); element.AddAction(new ElementAction(new ActionHandle(new WorkflowActionToken(WorkflowFacade.GetWorkflowType("Composite.C1Console.Tools.SendMessageToConsolesWorkflow")))) { @@ -230,8 +253,9 @@ private void AddRootActions(Element element) } } }); - - + + + element.AddAction(new ElementAction(new ActionHandle(new RestartApplicationActionToken())) { VisualData = new ActionVisualizedData diff --git a/Composite/Plugins/Elements/UrlToEntityToken/DataUrlToEntityTokenMapper.cs b/Composite/Plugins/Elements/UrlToEntityToken/DataUrlToEntityTokenMapper.cs index 3ebcbd79a3..79d5eb77c4 100644 --- a/Composite/Plugins/Elements/UrlToEntityToken/DataUrlToEntityTokenMapper.cs +++ b/Composite/Plugins/Elements/UrlToEntityToken/DataUrlToEntityTokenMapper.cs @@ -1,6 +1,4 @@ -using System; -using System.Linq; -using System.Web; +using System.Linq; using Composite.C1Console.Elements; using Composite.C1Console.Security; using Composite.Core.Extensions; @@ -16,12 +14,7 @@ public string TryGetUrl(EntityToken entityToken) { var dataEntityToken = entityToken as DataEntityToken; - if (dataEntityToken == null) - { - return null; - } - - var data = dataEntityToken.Data; + var data = dataEntityToken?.Data; if (data == null) { return null; @@ -47,7 +40,6 @@ public string TryGetUrl(EntityToken entityToken) public BrowserViewSettings TryGetBrowserViewSettings(EntityToken entityToken, bool showPublishedView) { var dataEntityToken = entityToken as DataEntityToken; - if (dataEntityToken == null) { return null; @@ -81,19 +73,12 @@ public BrowserViewSettings TryGetBrowserViewSettings(EntityToken entityToken, bo } string url = TryGetUrl(entityToken); - return (url == null ? null : new BrowserViewSettings { Url = url, ToolingOn = true }); + return url == null ? null : new BrowserViewSettings { Url = url, ToolingOn = true }; } private static string GetPagePreviewUrl(PageUrlData pageUrlData) { - var httpContext = HttpContext.Current; - - var urlSpace = new UrlSpace(); - if (HostnameBindingsFacade.GetBindingForCurrentRequest() != null - || HostnameBindingsFacade.GetAliasBinding(httpContext) != null) - { - urlSpace.ForceRelativeUrls = true; - } + var urlSpace = new UrlSpace {ForceRelativeUrls = true}; return PageUrls.BuildUrl(pageUrlData, UrlKind.Public, urlSpace) ?? PageUrls.BuildUrl(pageUrlData, UrlKind.Renderer, urlSpace); @@ -122,9 +107,8 @@ public EntityToken TryGetEntityToken(string url) } IPage page = pageUrlData.GetPage(); - if (page == null) return null; - return page.GetDataEntityToken(); + return page?.GetDataEntityToken(); } } } diff --git a/Composite/Plugins/Forms/WebChannel/UiControlFactories/TemplatedHierarchicalSelectorUiControlFactory.cs b/Composite/Plugins/Forms/WebChannel/UiControlFactories/TemplatedHierarchicalSelectorUiControlFactory.cs index 7901a352b9..e1ec466fb2 100644 --- a/Composite/Plugins/Forms/WebChannel/UiControlFactories/TemplatedHierarchicalSelectorUiControlFactory.cs +++ b/Composite/Plugins/Forms/WebChannel/UiControlFactories/TemplatedHierarchicalSelectorUiControlFactory.cs @@ -46,7 +46,7 @@ internal void InitializeWebViewState() public IEnumerable TreeNodes { get; set; } /// - public bool MultiSelection { get; set; } + public bool AutoSelectChildren { get; set; } /// public bool Required { get; set; } @@ -83,7 +83,7 @@ public Control BuildWebControl() _userControl.SelectedKeys = this.SelectedKeys; _userControl.TreeNodes = this.TreeNodes; - _userControl.MultiSelection = this.MultiSelection; + _userControl.AutoSelectChildren = this.AutoSelectChildren; _userControl.Required = this.Required; return _userControl; diff --git a/Composite/Plugins/GlobalSettings/GlobalSettingsProviders/ConfigBasedGlobalSettingsProvider.cs b/Composite/Plugins/GlobalSettings/GlobalSettingsProviders/ConfigBasedGlobalSettingsProvider.cs index 3a6ca7e1f1..3e3a1dd824 100644 --- a/Composite/Plugins/GlobalSettings/GlobalSettingsProviders/ConfigBasedGlobalSettingsProvider.cs +++ b/Composite/Plugins/GlobalSettings/GlobalSettingsProviders/ConfigBasedGlobalSettingsProvider.cs @@ -4,6 +4,7 @@ using Composite.Core.Configuration; using Composite.Core.Configuration.Plugins.GlobalSettingsProvider; +using Composite.Core.Extensions; using Microsoft.Practices.EnterpriseLibrary.Common.Configuration; using Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ObjectBuilder; using Microsoft.Practices.ObjectBuilder; @@ -237,6 +238,10 @@ public bool PrettifyRenderFunctionExceptions return _configurationData.PrettifyRenderFunctionExceptions; } } + + public bool FunctionPreviewEnabled => _configurationData.FunctionPreviewEnabled; + + public TimeZoneInfo TimeZone => TimeZoneInfo.FindSystemTimeZoneById(_configurationData.TimeZone.IsNullOrEmpty()?TimeZoneInfo.Local.Id: _configurationData.TimeZone); } internal class ConfigCachingSettings: ICachingSettings @@ -667,6 +672,24 @@ public bool PrettifyRenderFunctionExceptions get { return (bool)base[_prettifyRenderFunctionExceptionsPropertyName]; } set { base[_prettifyRenderFunctionExceptionsPropertyName] = value; } } + + private const string _functionPreviewEnabledPropertyName = "functionPreviewEnabled"; + [ConfigurationProperty(_functionPreviewEnabledPropertyName, DefaultValue = true)] + public bool FunctionPreviewEnabled + { + get { return (bool)base[_functionPreviewEnabledPropertyName]; } + set { base[_functionPreviewEnabledPropertyName] = value; } + } + + private const string TimeZonePropertyName = "timezone"; + [ConfigurationProperty(TimeZonePropertyName, DefaultValue = null)] + public string TimeZone { + get + { + return (string)base[TimeZonePropertyName]; + } + set { base[TimeZonePropertyName] = value; } + } } diff --git a/Composite/Properties/AssemblyInfo.cs b/Composite/Properties/AssemblyInfo.cs index 87e7c6e553..c9d5f3b96b 100644 --- a/Composite/Properties/AssemblyInfo.cs +++ b/Composite/Properties/AssemblyInfo.cs @@ -8,16 +8,16 @@ // associated with an assembly. #if !InternalBuild -[assembly: AssemblyTitle("Composite C1 5.0")] +[assembly: AssemblyTitle("Composite C1 5.1")] #else -[assembly: AssemblyTitle("Composite C1 5.0 (Internal Build)")] +[assembly: AssemblyTitle("Composite C1 5.1 (Internal Build)")] #endif [assembly: AssemblyDescription("Composite C1 Core classes")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Composite A/S")] [assembly: AssemblyProduct("Composite C1")] -[assembly: AssemblyCopyright("Copyright Composite A/S 2015")] +[assembly: AssemblyCopyright("Copyright Composite A/S 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -39,7 +39,7 @@ // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.*")] +[assembly: AssemblyVersion("5.1.*")] [assembly: InternalsVisibleTo("UpgradePackage")] [assembly: InternalsVisibleTo("Composite.Workflows")] \ No newline at end of file diff --git a/CompositeC1.sln b/CompositeC1.sln index 4efa1675ce..6c6b61cccc 100644 --- a/CompositeC1.sln +++ b/CompositeC1.sln @@ -1,40 +1,17 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.30501.0 -MinimumVisualStudioVersion = 10.0.40219.1 +# Visual Studio 14 +VisualStudioVersion = 14.0.24720.0 +MinimumVisualStudioVersion = 14.0.0.0 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{44113BBC-CB18-41CF-AB26-6D190BA4E117}" - ProjectSection(SolutionItems) = preProject - LocalTestRun.testrunconfig = LocalTestRun.testrunconfig - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Composite.Workflows", "Composite.Workflows\Composite.Workflows.csproj", "{1FE08476-346A-4053-813D-8807C0E0FC36}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebSite", "Website\WebSite.csproj", "{D0A3D7D5-1D1F-40BC-89C1-93CDCEDF262C}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Composite.Workflows", "Composite.Workflows\Composite.Workflows.csproj", "{1FE08476-346A-4053-813D-8807C0E0FC36}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Composite", "Composite\Composite.csproj", "{F8D87A5F-D090-4D24-80C1-DBCD938C6CAB}" EndProject Global - GlobalSection(TeamFoundationVersionControl) = preSolution - SccNumberOfProjects = 3 - SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} - SccTeamFoundationServer = http://core03:8080/tfs/compositecore03 - SccProjectUniqueName0 = Composite\\Composite.csproj - SccProjectName0 = Composite - SccAuxPath0 = http://core03:8080/tfs/compositecore03 - SccLocalPath0 = Composite - SccProvider0 = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} - SccProjectUniqueName1 = Composite.Workflows\\Composite.Workflows.csproj - SccProjectName1 = Composite.Workflows - SccAuxPath1 = http://core03:8080/tfs/compositecore03 - SccLocalPath1 = Composite.Workflows - SccProvider1 = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} - SccProjectUniqueName2 = Website\\WebSite.csproj - SccProjectName2 = Website - SccAuxPath2 = http://core03:8080/tfs/compositecore03 - SccLocalPath2 = Website - SccProvider2 = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} - EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|.NET = Debug|.NET Debug|Any CPU = Debug|Any CPU @@ -44,16 +21,6 @@ Global Release|Mixed Platforms = Release|Mixed Platforms EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|.NET.ActiveCfg = Debug|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|.NET.ActiveCfg = Release|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|Any CPU.Build.0 = Release|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|Mixed Platforms.Build.0 = Release|Any CPU {D0A3D7D5-1D1F-40BC-89C1-93CDCEDF262C}.Debug|.NET.ActiveCfg = Debug|Any CPU {D0A3D7D5-1D1F-40BC-89C1-93CDCEDF262C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D0A3D7D5-1D1F-40BC-89C1-93CDCEDF262C}.Debug|Any CPU.Build.0 = Debug|Any CPU @@ -64,6 +31,16 @@ Global {D0A3D7D5-1D1F-40BC-89C1-93CDCEDF262C}.Release|Any CPU.Build.0 = Release|Any CPU {D0A3D7D5-1D1F-40BC-89C1-93CDCEDF262C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {D0A3D7D5-1D1F-40BC-89C1-93CDCEDF262C}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|.NET.ActiveCfg = Debug|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|.NET.ActiveCfg = Release|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|Any CPU.Build.0 = Release|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {1FE08476-346A-4053-813D-8807C0E0FC36}.Release|Mixed Platforms.Build.0 = Release|Any CPU {F8D87A5F-D090-4D24-80C1-DBCD938C6CAB}.Debug|.NET.ActiveCfg = Debug|Any CPU {F8D87A5F-D090-4D24-80C1-DBCD938C6CAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F8D87A5F-D090-4D24-80C1-DBCD938C6CAB}.Debug|Any CPU.Build.0 = Debug|Any CPU diff --git a/README.md b/README.md index c13b75a650..2ab8ff56e5 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ # Composite C1 CMS -[![Join the chat at https://gitter.im/Orckestra/C1-CMS](https://badges.gitter.im/Orckestra/C1-CMS.svg)](https://gitter.im/Orckestra/C1-CMS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Composite C1 Web Content Management System - .NET based, open source and a bundle of joy! [![screen shots from the new Composite C1 user interface (the C1 Console)](http://hackathon.composite.net/maw/github/6-pack-screenshots-small.png)](http://hackathon.composite.net/maw/github/6-pack-screenshots.png) +[![Join the chat at https://gitter.im/Orckestra/C1-CMS](https://badges.gitter.im/Orckestra/C1-CMS.svg)](https://gitter.im/Orckestra/C1-CMS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + This project has moved from https://compositec1.codeplex.com/ (September 29th 2015). You can still use the forums at CodePlex, but we encourage you submit issues here. ## Getting started ## diff --git a/Website/App_Data/Composite/Composite.config b/Website/App_Data/Composite/DebugBuild.Composite.config similarity index 99% rename from Website/App_Data/Composite/Composite.config rename to Website/App_Data/Composite/DebugBuild.Composite.config index 596f56ae01..0a465c3148 100644 --- a/Website/App_Data/Composite/Composite.config +++ b/Website/App_Data/Composite/DebugBuild.Composite.config @@ -98,6 +98,7 @@ imageQuality="80" prettifyPublicMarkup="true" prettifyRenderFunctionExceptions="true" + functionPreviewEnabled="true" > diff --git a/Website/App_Data/Composite/PhantomJs/config.json b/Website/App_Data/Composite/PhantomJs/config.json index bf6578737a..2ae9bd89a7 100644 --- a/Website/App_Data/Composite/PhantomJs/config.json +++ b/Website/App_Data/Composite/PhantomJs/config.json @@ -1,6 +1,8 @@ { "ignoreSslErrors": true, "localToRemoteUrlAccessEnabled": true, + "diskCacheEnabled": true, + "webSecurityEnabled": false //"proxy": "address:port", //specifies the proxy server to use (e.g. "proxy" : "192.168.1.42:8080") //"proxyType": "[http|socks5|none]", //specifies the type of the proxy server (default is "http"). //"proxyAuth": "username:password" //specifies the authentication information for the proxy. diff --git a/Website/App_Data/Composite/PhantomJs/renderingServer.js b/Website/App_Data/Composite/PhantomJs/renderingServer.js index dce1f075f1..f5cb0501a9 100644 --- a/Website/App_Data/Composite/PhantomJs/renderingServer.js +++ b/Website/App_Data/Composite/PhantomJs/renderingServer.js @@ -49,13 +49,14 @@ function BuildFunctionPreview(system, console, address, output, cookies, mode) { } } - if (mode == "template") { - page.viewportSize = { width: 1920, height: 600 }; - } else { - page.viewportSize = { width: 1920, height: 600 }; - } + if (mode == "test") { + page.viewportSize = { width: 320, height: 200 }; + page.clipRect = { top: 0, left: 0, height: 320, width: 200 }; + } else { + page.viewportSize = { width: 1920, height: 600 }; + } - page.settings.resourceTimeout = (mode == "test") ? 15000 : 30000; + page.settings.resourceTimeout = 30000; page.onResourceTimeout = function (request) { if (request.id == 1) { @@ -70,9 +71,13 @@ function BuildFunctionPreview(system, console, address, output, cookies, mode) { // if js errors happen on the page page.onError = function (msg, trace) { - // ignore in page js errors - some dev writing sloppy js, should not affect us + // ignore in page js errors - some dev writing sloppy js, should not affect us } + page.onResourceError = function (resourceError) { + page.fail_reason = "Error opening url '" + resourceError.url + "'; Error code: " + resourceError.errorCode + ". Description: " + resourceError.errorString; + }; + // redirects ... page.onResourceReceived = function (response) { if (response.id == 1) { @@ -149,11 +154,12 @@ function BuildFunctionPreview(system, console, address, output, cookies, mode) { page.open(address, function (status) { if (status !== 'success') { clearGlobalTimeout(); - console.log('ERROR, page.open: ' + status); + console.log('ERROR, page.open: ' + status + + "; " + page.fail_reason); WaitForInput(system, console); } else { - if (mode == "test") { + if (mode === "test") { clearGlobalTimeout(); page.render(output); diff --git a/Website/App_Data/Composite/ReleaseBuild.Composite.config b/Website/App_Data/Composite/ReleaseBuild.Composite.config index 06dbd2bc43..58ea20e8b7 100644 --- a/Website/App_Data/Composite/ReleaseBuild.Composite.config +++ b/Website/App_Data/Composite/ReleaseBuild.Composite.config @@ -93,6 +93,7 @@ imageQuality="80" prettifyPublicMarkup="true" prettifyRenderFunctionExceptions="true" + functionPreviewEnabled="true" > diff --git a/Website/Composite/content/dialogs/functions/editFunctionCall.aspx b/Website/Composite/content/dialogs/functions/editFunctionCall.aspx index 8800561ab0..f5f5a6dab4 100644 --- a/Website/Composite/content/dialogs/functions/editFunctionCall.aspx +++ b/Website/Composite/content/dialogs/functions/editFunctionCall.aspx @@ -47,7 +47,6 @@ resizable="false" label="<%= this.DialogLabel %>" class="with-top-toolbar <% =ActiveTab == Tab.Basic? " functionview-basic" : " functionview-adv" %>"> - @@ -69,6 +68,7 @@ + diff --git a/Website/Composite/content/dialogs/treeselector/TreeSelectorDialogPageBinding.js b/Website/Composite/content/dialogs/treeselector/TreeSelectorDialogPageBinding.js index 825f342d67..f5fdab68f3 100644 --- a/Website/Composite/content/dialogs/treeselector/TreeSelectorDialogPageBinding.js +++ b/Website/Composite/content/dialogs/treeselector/TreeSelectorDialogPageBinding.js @@ -5,14 +5,14 @@ TreeSelectorDialogPageBinding.superclass = DialogPageBinding.prototype; /* HOW TO USE: - + var handler = { handleDialogResponse : function ( response, result ) { if ( response == Dialog.RESPONSE_ACCEPT ) { getQueryTreeBinding ().buildFromServer ( result.get ( 0 )); } } - } + } var arg = { label : "Select Image", key : "ReadOnlyXmlProviderElementProvider", @@ -34,13 +34,13 @@ function TreeSelectorDialogPageBinding () { * @type {SystemLogger} */ this.logger = SystemLogger.getLogger ( "TreeSelectorDialogPageBinding" ); - + /** * @type {string} * this._key = null; */ - + /** * @type {SystemTreeBinding} */ @@ -51,11 +51,16 @@ function TreeSelectorDialogPageBinding () { */ this._genericViewBinding = null; + /** + * @type {SystemToolbarBinding} + */ + this._toolbarBinding = null; + /** * @type {TabBinding} */ this._previewTab = null; - + /** * @type {TabBinding} */ @@ -66,14 +71,14 @@ function TreeSelectorDialogPageBinding () { * @type {string} */ this._selectionProperty = null; - + /** - * The (optional) treenode property value on which to base tree selection. Multiple + * The (optional) treenode property value on which to base tree selection. Multiple * values supported, separated by whitespace. Omit to allow all values for property. * @type {string} Whitespace-separated list of values. */ this._selectionValue = null; - + /** * The name of the treenode property whose value will form the RESULT. * @type {string} @@ -85,7 +90,7 @@ function TreeSelectorDialogPageBinding () { * @type {boolean} */ this._hasPreview = false; - + /** * The (optional) action groups. * @type {tring}} @@ -96,16 +101,16 @@ function TreeSelectorDialogPageBinding () { * @type {boolean} */ this._isPushingUrl = false; - + /** * Search token. * @type {string} * this._selectionSearch = null; */ - + /** - * Root nodes in tree. Each object in array may have two properties, + * Root nodes in tree. Each object in array may have two properties, * a required named provider key and an optional search token. * @type {Array} */ @@ -140,7 +145,7 @@ TreeSelectorDialogPageBinding.prototype.toString = function () { return "[TreeSelectorDialogPageBinding]"; } -/** +/** * Fetch properties from page argument. * @overloads {PageBinding#setPageArgument} * @param {object} arg @@ -208,7 +213,7 @@ TreeSelectorDialogPageBinding.prototype.onBindingRegister = function () { TreeSelectorDialogPageBinding.prototype.handleBroadcast = function (broadcast, arg) { /** - * Doublecheck that this tree is actually focused. Although if + * Doublecheck that this tree is actually focused. Although if * the server transmits a refresh signal, this is not required. */ switch (broadcast) { @@ -251,30 +256,32 @@ TreeSelectorDialogPageBinding.prototype.handleBroadcast = function (broadcast, a * @overloads {PageBinding#onBeforePageInitialize} */ TreeSelectorDialogPageBinding.prototype.onBeforePageInitialize = function () { - + this._treeBinding = this.bindingWindow.bindingMap.selectiontree; this._treeBinding.addActionListener ( TreeBinding.ACTION_SELECTIONCHANGED, this ); this._treeBinding.addActionListener(TreeBinding.ACTION_NOSELECTION, this); - + this._treeBinding.setSelectable ( true ); this._treeBinding.setSelectionProperty ( this._selectionProperty ); this._treeBinding.setSelectionValue(this._selectionValue); this._treeBinding.setActionGroup(this._actionGroup); //Remove default double click action - this._treeBinding.removeActionListener(TreeNodeBinding.ACTION_COMMAND); - + this._treeBinding.removeActionListener(TreeNodeBinding.ACTION_COMMAND); + + this._treeBinding.unsubscribe(BroadcastMessages.SYSTEMTREEBINDING_REFRESH); + /* * Build root nodes. */ - this._injectTreeNodes ( + this._injectTreeNodes ( new List ( this._nodes ) ); StageBinding.treeSelector = this._treeBinding; - + this._genericViewBinding = this.bindingWindow.bindingMap.genericview; this._genericViewBinding.addActionListener(TreeBinding.ACTION_SELECTIONCHANGED, this); this._genericViewBinding.addActionListener(TreeBinding.ACTION_NOSELECTION, this); @@ -289,9 +296,9 @@ TreeSelectorDialogPageBinding.prototype.onBeforePageInitialize = function () { this._previewTab = this.bindingWindow.bindingMap.previewtab; this._genericTab = this.bindingWindow.bindingMap.generictab; - var toolbar = this.bindingWindow.bindingMap.toolbar; - if (toolbar) { - toolbar.setSyncHandle(this.getSyncHandle()); + this._toolbarBinding = this.bindingWindow.bindingMap.toolbar; + if (this._toolbarBinding) { + this._toolbarBinding.setSyncHandle(this.getSyncHandle()); } this._clearHistory(); @@ -315,7 +322,7 @@ TreeSelectorDialogPageBinding.prototype.select = function (entityToken) { */ TreeSelectorDialogPageBinding.prototype.push = function (node) { - if (this._hasPreview) { + if (this._hasPreview && node) { var entityToken = node.getEntityToken(); var self = this; TreeService.GetBrowserUrlByEntityToken(entityToken, false, function (result) { @@ -325,7 +332,7 @@ TreeSelectorDialogPageBinding.prototype.push = function (node) { self._updateBroadcasters(); } else { self.setNode(node); - + } }); } else { @@ -342,9 +349,20 @@ TreeSelectorDialogPageBinding.prototype.setNode = function (node) { this._genericViewBinding.setNode(node); var generictab = this.bindingWindow.bindingMap.generictab; generictab.containingTabBoxBinding.select(generictab); - this._updateHistory(node.getEntityToken()); + this._updateHistory(node ? node.getEntityToken() : null); this._updateBroadcasters(); this._updateAddressBar(node); + + if (node == undefined) { + if (this._toolbarBinding) { + this._toolbarBinding.handleBroadcast(BroadcastMessages.SYSTEM_ACTIONPROFILE_PUBLISHED, { + activePosition: this._activePosition, + actionProfile: null, + syncHandle: this.getSyncHandle(), + source: this + }); + } + } } @@ -369,8 +387,10 @@ TreeSelectorDialogPageBinding.prototype.refreshView = function () { var selectedTreeNode = this._treeBinding.getFocusedTreeNodeBindings().getFirst(); if (selectedTreeNode) { this.push(selectedTreeNode.node); + this._updateDisplayAndResult(this._treeBinding); } else { this.push(undefined); + this._clearDisplayAndResult(); } } @@ -423,7 +443,7 @@ TreeSelectorDialogPageBinding.prototype._injectTreeNodes = function (list) { } // Fill list of parents, used for handle refreshed tree - + var parents = TreeService.GetAllParents(treenode.node.getEntityToken()); new List(parents).each( function (parent) { @@ -443,7 +463,7 @@ TreeSelectorDialogPageBinding.prototype._injectTreeNodes = function (list) { var self = this; setTimeout(function () { - + }, 0); } @@ -495,7 +515,7 @@ TreeSelectorDialogPageBinding.prototype.handleAction = function (action) { break; case TreeBinding.ACTION_SELECTIONCHANGED: this._updateDisplayAndResult(action.target); - + break; case TreeBinding.ACTION_NOSELECTION : this._clearDisplayAndResult(); @@ -507,13 +527,13 @@ TreeSelectorDialogPageBinding.prototype.handleAction = function (action) { } else { bindingMap.buttonAccept.fireCommand(); } - + break; case PathBinding.ACTION_COMMAND: this.select(action.target.entityToken); break; } - + TreeSelectorDialogPageBinding.superclass.handleAction.call ( this, action ); } } @@ -569,14 +589,14 @@ TreeSelectorDialogPageBinding.prototype._saveOpenedSystemNodes = function () { */ TreeSelectorDialogPageBinding.prototype._updateDisplayAndResult = function (tree) { - + var selections = tree.getSelectedTreeNodeBindings (); var dataInput = this.bindingWindow.DataManager.getDataBinding ( "treeselectionresult" ); var okButton = bindingMap.buttonAccept; var result = new List (); var value = new String ( "" ); var prop = this._selectionResult; - + selections.each ( function ( binding ) { if (prop == "EntityToken" && binding.node) { @@ -593,12 +613,12 @@ TreeSelectorDialogPageBinding.prototype._updateDisplayAndResult = function (tree value += "; "; } }); - + if ( dataInput.isDisabled ) { dataInput.enable (); okButton.enable (); } - + dataInput.setValue ( value ); this.result = result; } @@ -610,12 +630,12 @@ TreeSelectorDialogPageBinding.prototype._clearDisplayAndResult = function () { var dataInput = this.bindingWindow.DataManager.getDataBinding ( "treeselectionresult" ); var okButton = bindingMap.buttonAccept; - + if ( !dataInput.isDisabled ) { dataInput.disable (); okButton.disable (); } - + dataInput.setValue ( "" ); this.result = null; } @@ -643,6 +663,8 @@ TreeSelectorDialogPageBinding.prototype._updateAddressBar = function (address) { } } bar.showBreadcrumb(treenode.node, parents); + } else { + bar.showBreadcrumb(); } } } @@ -709,13 +731,13 @@ TreeSelectorDialogPageBinding.prototype._updateHistory = function (item) { if (this._isHistoryBrowsing == true) { this._isHistoryBrowsing = false; } else { - - while (this._current.history.getLength() - 1 > this._current.index) { - this._current.history.extractLast(); + if (item != null) { + while (this._current.history.getLength() - 1 > this._current.index) { + this._current.history.extractLast(); + } + this._current.history.add(item); + this._current.index++; } - this._current.history.add(item); - this._current.index++; - } } diff --git a/Website/Composite/content/dialogs/treeselector/treeselector.css b/Website/Composite/content/dialogs/treeselector/treeselector.css index 200d0baf86..1c1d6baab5 100644 --- a/Website/Composite/content/dialogs/treeselector/treeselector.css +++ b/Website/Composite/content/dialogs/treeselector/treeselector.css @@ -15,6 +15,8 @@ ui|datainput#treeselectionresult ui|box input { color: #343434; padding: 10px 0 0 0 !important; font-size: 12px; + width: 100%; + text-align: left; } #addressbar input { width: 100%; diff --git a/Website/Composite/content/forms/Administrative/AddNewPageStep1.xml b/Website/Composite/content/forms/Administrative/AddNewPageStep1.xml index b49f892d54..3ba46a99dd 100644 --- a/Website/Composite/content/forms/Administrative/AddNewPageStep1.xml +++ b/Website/Composite/content/forms/Administrative/AddNewPageStep1.xml @@ -5,8 +5,13 @@ + + - + + + + @@ -19,17 +24,6 @@ - - - - - - - - - diff --git a/Website/Composite/content/forms/Administrative/AddNewPageStep2.xml b/Website/Composite/content/forms/Administrative/AddNewPageStep2.xml index af6aad8fa8..164e110775 100644 --- a/Website/Composite/content/forms/Administrative/AddNewPageStep2.xml +++ b/Website/Composite/content/forms/Administrative/AddNewPageStep2.xml @@ -5,8 +5,12 @@ + + + + diff --git a/Website/Composite/content/forms/Administrative/PageTypeEditPageType.xml b/Website/Composite/content/forms/Administrative/PageTypeEditPageType.xml index c455b5570e..983cc46641 100644 --- a/Website/Composite/content/forms/Administrative/PageTypeEditPageType.xml +++ b/Website/Composite/content/forms/Administrative/PageTypeEditPageType.xml @@ -34,10 +34,6 @@ - - - -